--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/config.tests/all/simpleapp/main.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,29 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the Config module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+int main()
+{
+ return 0;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/config.tests/all/simpleapp/simpleapp.pro Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,35 @@
+#
+#############################################################################
+##
+## Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+## All rights reserved.
+## Contact: Nokia Corporation (developer.feedback@nokia.com)
+##
+## This file is part of the UI Extensions for Mobile.
+##
+## GNU Lesser General Public License Usage
+## This file may be used under the terms of the GNU Lesser General Public
+## License version 2.1 as published by the Free Software Foundation and
+## appearing in the file LICENSE.LGPL included in the packaging of this file.
+## Please review the following information to ensure the GNU Lesser General
+## Public License version 2.1 requirements will be met:
+## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+##
+## In addition, as a special exception, Nokia gives you certain additional
+## rights. These rights are described in the Nokia Qt LGPL Exception
+## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+##
+## If you have questions regarding the use of this file, please contact
+## Nokia at developer.feedback@nokia.com.
+##
+#############################################################################
+#
+
+TEMPLATE = app
+TARGET = hbconftest_simpleapp
+CONFIG -= qt
+DEPENDPATH += .
+INCLUDEPATH += .
+
+# Input
+SOURCES += main.cpp
--- a/configure.py Wed Aug 18 10:05:37 2010 +0300
+++ b/configure.py Thu Sep 02 20:44:51 2010 +0300
@@ -719,6 +719,8 @@
config = ConfigFile()
test = ConfigTest(BUILDENV.sourcedir(), BUILDENV.builddir())
print("\nDetecting available features...")
+ working_qmake_and_make = test.compile("config.tests/all/simpleapp")
+ print("INFO: Working qmake and make:\t\t%s" % working_qmake_and_make)
if options.qtmobility == None:
options.qtmobility = test.compile("config.tests/all/mobility")
if options.qtmobility:
@@ -961,6 +963,11 @@
print line
print "###############################################################################"
+ if not working_qmake_and_make:
+ print("")
+ print("WARNING: There does not seem to be a working qmake and/or make in the environment.")
+ print(" Please check the environment and/or configuration parameters.")
+
# print summary
print("")
if MAKE.bin() == "nmake" and options.msvc:
--- a/hb.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/hb.pro Thu Sep 02 20:44:51 2010 +0300
@@ -76,10 +76,13 @@
INSTALLS += cssbinary
symbian {
- cssbinary.commands += $$hbCopyCommand($$cssbinary.files, $$${EPOCROOT}/epoc32/data/z/resource/hb/themes/)
- cssbinary.commands += && $$hbCopyCommand($$cssbinary.files, $$${EPOCROOT}/epoc32/release/winscw/udeb/z/resource/hb/themes/)
- QMAKE_DISTCLEAN += $$${EPOCROOT}/epoc32/data/z/resource/hb/themes/$$cssbinary.files
- QMAKE_DISTCLEAN += $$${EPOCROOT}/epoc32/release/winscw/udeb/z/resource/hb/themes/$$cssbinary.files
+ # TODO: Magic ahead
+ makefile_epocroot=$${EPOCROOT}
+ hbUnixStyle():makefile_epocroot=$$${EPOCROOT}/
+ cssbinary.commands += $$hbCopyCommand($$cssbinary.files, $${makefile_epocroot}epoc32/data/z/resource/hb/themes/)
+ cssbinary.commands += && $$hbCopyCommand($$cssbinary.files, $${makefile_epocroot}epoc32/release/winscw/udeb/z/resource/hb/themes/)
+ QMAKE_DISTCLEAN += $${makefile_epocroot}epoc32/data/z/resource/hb/themes/$$cssbinary.files
+ QMAKE_DISTCLEAN += $${makefile_epocroot}epoc32/release/winscw/udeb/z/resource/hb/themes/$$cssbinary.files
QMAKE_EXTRA_TARGETS += cssbinary
}
--- a/mkspecs/docml2bin.prf Wed Aug 18 10:05:37 2010 +0300
+++ b/mkspecs/docml2bin.prf Thu Sep 02 20:44:51 2010 +0300
@@ -14,11 +14,17 @@
DOCMLFILE_PWD = $${_PRO_FILE_PWD_}/$${DOCMLFILE}
rcc.depends += $${DOCMLFILE_PWD}.bin
- BLD_INF_RULES.prj_extensions += "START EXTENSION qt/qmake_extra_pre_targetdep.export" \
+ DOCML2BINEXTENSION = \
+ "START EXTENSION qt/qmake_extra_pre_targetdep.export" \
"OPTION PREDEP_TARGET $${DOCMLFILE_PWD}.bin" \
"OPTION DEPS $${DOCMLFILE_PWD}" \
"OPTION COMMAND $${QMAKE_DOCML2BIN} -s $${DOCMLFILE_PWD} -t $${DOCMLFILE_PWD}.bin" \
- "END"
+ "END"
+ symbian_test {
+ BLD_INF_RULES.prj_testextensions += $$DOCML2BINEXTENSION
+ } else {
+ BLD_INF_RULES.prj_extensions += $$DOCML2BINEXTENSION
+ }
}
QMAKE_EXTRA_COMPILERS += docml2bin
--- a/mkspecs/hb_functions.prf Wed Aug 18 10:05:37 2010 +0300
+++ b/mkspecs/hb_functions.prf Thu Sep 02 20:44:51 2010 +0300
@@ -65,6 +65,29 @@
return(true)
}
+# params: <path>
+# eg. foo_path = $$hbStripDriveLetter($$PWD)/foo.txt
+defineReplace(hbStripDriveLetter) {
+ stripped_path = $$1
+ symbian {
+ contains(QMAKE_HOST.os, Windows) {
+ colons_found = $$find( stripped_path, "\\:" )
+ !isEmpty(colons_found) {
+ stripped_path = $$section(stripped_path, ":", 1)
+ }
+ }
+ }
+ return($$stripped_path)
+}
+
+# params: <sourcepath> <targetpath>
+# e.g. hbPrjExport("$${PWD}/foo.txt", "$${EPOCROOT}epoc32/release/foo.txt")
+defineTest(hbPrjExport) {
+ BLD_INF_RULES.prj_exports += "$$hbStripDriveLetter($$1) $$hbStripDriveLetter($$2)"
+ export(BLD_INF_RULES.prj_exports)
+ return(true)
+}
+
# params: <collection>
# NOTE: exports PUBLIC_HEADERS, RESTRICTED_HEADERS and CONVENIENCE_HEADERS
# eg. hbExportHeaders(hbcore)
@@ -131,8 +154,10 @@
system($$1 > $$DEVNULL 2>&1):return($$1)
# host build is runnable?
- hbtoolcmd = $$hbNativePath($$HB_BUILD_DIR/bin/$$1)
- system($$hbtoolcmd > $$DEVNULL 2>&1):return($$hbtoolcmd)
+ !isEmpty(HB_BUILD_DIR) {
+ hbtoolcmd = $$hbNativePath($$HB_BUILD_DIR/bin/$$1)
+ system($$hbtoolcmd > $$DEVNULL 2>&1):return($$hbtoolcmd)
+ }
# tool in HB_BIN_DIR?
hbtoolcmd = $$hbNativePath($$HB_BIN_DIR/$$1)
@@ -142,8 +167,14 @@
hbtoolcmd = $$hbNativePath($$sprintf("%1%2", $$HB_SOURCE_DIR/bin/$$1, "_symbian.exe"))
system($$hbtoolcmd > $$DEVNULL 2>&1):return($$hbtoolcmd)
}
- # fall back to <builddir>/bin
- return($$hbNativePath($$HB_BUILD_DIR/bin/$$1))
+
+ !isEmpty(HB_BUILD_DIR) {
+ # prefer <builddir>/bin
+ return($$hbNativePath($$HB_BUILD_DIR/bin/$$1))
+ } else {
+ # fall back to <bindir>
+ return($$hbNativePath($$HB_BIN_DIR/$$1))
+ }
}
# params: <file> <dir>
--- a/src/hbapps/hbfeatureconfigapp/infoview.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbapps/hbfeatureconfigapp/infoview.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,7 +36,7 @@
#include "infoview.h"
InfoView::InfoView(HbDocumentLoader* loader, HbMainWindow *window) :
- mWindow(window),
+ mWindow(window),
mLoader(loader),
mResolutionLabel(0),
mOrientationLabel(0),
--- a/src/hbapps/hbfeatureconfigapp/infoview.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbapps/hbfeatureconfigapp/infoview.h Thu Sep 02 20:44:51 2010 +0300
@@ -34,10 +34,10 @@
class InfoView : public HbView
{
- Q_OBJECT
-
+ Q_OBJECT
+
public:
- InfoView(HbDocumentLoader* loader, HbMainWindow *window = 0);
+ InfoView(HbDocumentLoader* loader, HbMainWindow *window = 0);
void setSettingsView(HbView *view);
private:
@@ -49,7 +49,7 @@
void goToSettingsView();
private:
- HbMainWindow* mWindow;
+ HbMainWindow* mWindow;
HbDocumentLoader* mLoader;
HbLabel* mResolutionLabel;
HbLabel* mOrientationLabel;
--- a/src/hbapps/hbfeatureconfigapp/main.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbapps/hbfeatureconfigapp/main.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -50,7 +50,7 @@
} else {
qFatal("Unable to read :/docml/hbfeatureconfigapp.docml");
}
-
+
window->show();
return app.exec();
}
--- a/src/hbapps/hbfeatureconfigapp/settingsview.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbapps/hbfeatureconfigapp/settingsview.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -45,15 +45,15 @@
#endif
SettingsView::SettingsView(HbDocumentLoader* loader, HbMainWindow *window, HbView *infoView) :
- mWindow(window),
- mLoader(loader),
+ mWindow(window),
+ mLoader(loader),
mResolutionComboBox(0),
- mOrientationComboBox(0),
+ mOrientationComboBox(0),
mLayoutDirectionComboBox(0),
- mTouchAreaComboBox(0),
+ mTouchAreaComboBox(0),
mTextItemComboBox(0),
mIconItemComboBox(0),
- mLocalizationComboBox(0),
+ mLocalizationComboBox(0),
mTestUtilityComboBox(0),
mFpsCounterComboBox(0),
mInfoView(infoView)
@@ -130,11 +130,11 @@
mIconItemComboBox = qobject_cast<HbComboBox *>(mLoader->findWidget("iconitemSettingCombo"));
mIconItemComboBox->setModel(new QStringListModel(QStringList() << tr("Invisible") << tr("Visible")));
}
-
- if (!mFpsCounterComboBox) {
- mFpsCounterComboBox = qobject_cast<HbComboBox *>(mLoader->findWidget("fpscounterSettingCombo"));
- mFpsCounterComboBox->setModel(new QStringListModel(QStringList() << tr("Invisible") << tr("Visible")));
- }
+
+ if (!mFpsCounterComboBox) {
+ mFpsCounterComboBox = qobject_cast<HbComboBox *>(mLoader->findWidget("fpscounterSettingCombo"));
+ mFpsCounterComboBox->setModel(new QStringListModel(QStringList() << tr("Invisible") << tr("Visible")));
+ }
if( !mLocalizationComboBox ) {
mLocalizationComboBox = qobject_cast<HbComboBox *>(mLoader->findWidget("localizationSettingCombo"));
@@ -169,9 +169,9 @@
void SettingsView::changeResolution(int index)
{
#if defined(Q_OS_SYMBIAN)
- sendEvent(KChangeDeviceProfile, index);
+ sendEvent(KChangeDeviceProfile, index);
#else
- Q_UNUSED(index);
+ Q_UNUSED(index);
#endif
}
@@ -223,9 +223,9 @@
void SettingsView::changeFpsCounterVisibility(int index)
{
#if defined(Q_OS_SYMBIAN)
- sendEvent(KChangeFpsCounterVis, index);
+ sendEvent(KChangeFpsCounterVis, index);
#else
- Q_UNUSED(index);
+ Q_UNUSED(index);
#endif
}
@@ -275,7 +275,7 @@
connect(mLayoutDirectionComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeLayoutDirection(int)));
connect(mOrientationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeOrientation(int)));
connect(mResolutionComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeResolution(int)));
- connect(mFpsCounterComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeFpsCounterVisibility(int)));
+ connect(mFpsCounterComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeFpsCounterVisibility(int)));
connect(mLocalizationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeLocMode(int)));
connect(mTestUtilityComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeTestUtilMode(int)));
}
@@ -288,7 +288,7 @@
disconnect(mLayoutDirectionComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeLayoutDirection(int)));
disconnect(mOrientationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeOrientation(int)));
disconnect(mResolutionComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeResolution(int)));
- disconnect(mFpsCounterComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeFpsCounterVisibility(int)));
+ disconnect(mFpsCounterComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeFpsCounterVisibility(int)));
disconnect(mLocalizationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeLocMode(int)));
disconnect(mTestUtilityComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(changeTestUtilMode(int)));
}
--- a/src/hbapps/hbfeatureconfigapp/settingsview.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbapps/hbfeatureconfigapp/settingsview.h Thu Sep 02 20:44:51 2010 +0300
@@ -36,10 +36,10 @@
class SettingsView : public HbView
{
- Q_OBJECT
+ Q_OBJECT
public:
- SettingsView(HbDocumentLoader* loader, HbMainWindow *window, HbView *infoView);
+ SettingsView(HbDocumentLoader* loader, HbMainWindow *window, HbView *infoView);
private:
void setupMenu();
@@ -51,7 +51,7 @@
private slots:
void changeOrientation();
- void changeResolution(int index);
+ void changeResolution(int index);
void changeOrientation(int index);
void changeLayoutDirection(int index);
void changeTouchAreaVisibility(int index);
@@ -59,7 +59,7 @@
void changeIconItemVisibility(int index);
void changeLocMode(int index);
void changeTestUtilMode(int index);
- void changeFpsCounterVisibility(int index);
+ void changeFpsCounterVisibility(int index);
void updateLayout();
void updateSelections();
@@ -77,8 +77,8 @@
HbComboBox* mIconItemComboBox;
HbComboBox* mLocalizationComboBox;
HbComboBox* mTestUtilityComboBox;
- HbComboBox* mFpsCounterComboBox;
- HbView* mInfoView;
+ HbComboBox* mFpsCounterComboBox;
+ HbView* mInfoView;
};
--- a/src/hbapps/hbthemechanger/hbthemechanger.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbapps/hbthemechanger/hbthemechanger.pro Thu Sep 02 20:44:51 2010 +0300
@@ -30,8 +30,6 @@
QT += network
DEFINES += HB_RESOURCES_DIR=\"\\\"$${HB_RESOURCES_DIR}\\\"\"
-CONFIG += hb
-
# directories
DESTDIR = $${HB_BUILD_DIR}/bin
--- a/src/hbcore/3rdparty/qtsingleapplication/src/qtsinglecoreapplication.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/3rdparty/qtsingleapplication/src/qtsinglecoreapplication.pri Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-INCLUDEPATH += $$PWD
+INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
-HEADERS += $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h
-SOURCES += $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp
+HEADERS += $$PWD/qtsinglecoreapplication.h $$PWD/qtlocalpeer.h
+SOURCES += $$PWD/qtsinglecoreapplication.cpp $$PWD/qtlocalpeer.cpp
QT *= network
--- a/src/hbcore/core/hbapplication.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbapplication.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -138,6 +138,9 @@
} else if (flags & Hb::SplashFixedHorizontal) {
splashFlags |= HbSplashScreen::FixedHorizontal;
}
+ if (flags & Hb::ForceQtSplash) {
+ splashFlags |= HbSplashScreen::ForceQt;
+ }
#if defined(Q_OS_SYMBIAN) && defined(HBAPP_LOGGING)
ELAPSED_TIMER t;
@@ -160,7 +163,7 @@
// This function contains code that needs to be executed before
// the QApplication constructor.
- if (!HbSplashScreenExt::needsQt()) {
+ if (!HbSplashScreenExt::needsQt() && !flags.testFlag(Hb::ForceQtSplash)) {
// The splash screen is capable of working without relying on Qt in any
// way. So launch it now. This is the ideal case because we don't have
// to wait for the potentially slow QApplication construction.
@@ -180,7 +183,7 @@
static void handleQtBasedSplash(Hb::ApplicationFlags flags)
{
- if (HbSplashScreenExt::needsQt()) {
+ if (HbSplashScreenExt::needsQt() || flags.testFlag(Hb::ForceQtSplash)) {
// Splash needs Qt so it has not yet been started. Launch it now.
initSplash(flags);
} else {
--- a/src/hbcore/core/hbglobal.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbglobal.h Thu Sep 02 20:44:51 2010 +0300
@@ -31,7 +31,7 @@
//#pragma hb_header(HbGlobal)
// HB_VERSION_STR="M.N.P-B" (M=major, N=minor, P=patch, B=build=[dev|tag])
-#define HB_VERSION_STR "0.5.0-2010wk31"
+#define HB_VERSION_STR "0.5.0-2010wk33"
// HB_VERSION=0xMMNNPP (MM=major, NN=minor, PP=patch)
#define HB_VERSION 0x000500
--- a/src/hbcore/core/hbgraphicsscene.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbgraphicsscene.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -84,7 +84,7 @@
mToolTip(0),
mInputFocusSet(0),
mPolishWidgets(false),
- mRepolishWidgets(false),
+ mRepolishWidgets(false),
mDrawCount(0),
mFPS(0),
mFPSTime(0),
@@ -312,7 +312,14 @@
{
QGraphicsItem *oldFocusItem = focusItem();
- QGraphicsScene::mousePressEvent(mouseEvent);
+ QGraphicsScene::mousePressEvent(mouseEvent);
+
+ // Return when fouswidget is a vanilla widget. no need to reset iputcontext.
+ // as in case of vanilla widgets reseting happens bit differently (via Qt framework)
+ QInputContext *ic = qApp->inputContext();
+ if (ic && ic->focusWidget() && !ic->focusWidget()->inherits("HbMainWindow")) {
+ return;
+ }
// If old focus item doesn't accept input method events, we might need to reset input context
// manually because that is done automatically only when focus changes between items that
--- a/src/hbcore/core/hbnamespace.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbnamespace.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -256,19 +256,36 @@
/*! \var Hb::ApplicationFlag Hb::NoSplash
- Disables the splash screen that is shown during HbApplication construction.
+ Disables the splash screen that is shown during HbApplication construction. Note that
+ the splash screen can still be launched manually using HbSplashScreen::start().
*/
/*! \var Hb::ApplicationFlag Hb::SplashFixedVertical
Indicates that the application will force its orientation to vertical. As a result the
splash screen will also be forced to vertical orientation.
+
+ \sa HbSplashScreen::FixedVertical
*/
/*! \var Hb::ApplicationFlag Hb::SplashFixedHorizontal
Indicates that the application will force its orientation to horizontal. As a result the
splash screen will also be forced to horizontal orientation.
+
+ \sa HbSplashScreen::FixedHorizontal
+*/
+
+/*! \var Hb::ApplicationFlag Hb::ForceQtSplash
+
+ Forces the usage of QWidget-based splash screens, even on platforms where a more
+ optimal, non-Qt dependent implementation would be available. Use this when it must be
+ guaranteed that the splash screen will use the same graphics system as Qt (e.g. because
+ the application forces 'raster'). The downside is a decrease in performance and user
+ experience, because in this case the splash can only be shown after constructing
+ QApplication.
+
+ \sa HbSplashScreen::ForceQt
*/
/*!
@@ -501,6 +518,21 @@
\image html interaction_rotated90degrees.png
*/
+/*! \var Hb::InstantSelectionChanged
+ Sent went a selectable widget (like a check box) changes its selection state.
+*/
+
+/*! \deprecated Hb::InstantMultitouchActivated
+ is deprecated. Use Hb::InstantAdvancedGestureActivated instead.
+*/
+
+/*! \var Hb::InstantAdvancedGestureActivated
+ Sent when a touch gesture involving more then one finger can be performed.
+ For example a second touch point is detected and a pinch gesture can be performed.
+*/
+
+
+
/*! \var Hb::InstantInstantUser
User-defined interaction event type.
*/
--- a/src/hbcore/core/hbnamespace.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbnamespace.h Thu Sep 02 20:44:51 2010 +0300
@@ -239,7 +239,8 @@
DefaultApplicationFlags = 0x00,
NoSplash = 0x01,
SplashFixedVertical = 0x02,
- SplashFixedHorizontal = 0x04
+ SplashFixedHorizontal = 0x04,
+ ForceQtSplash = 0x08
};
Q_DECLARE_FLAGS(ApplicationFlags, ApplicationFlag)
@@ -302,7 +303,8 @@
InstantBoundaryReached,
InstantRotated90Degrees,
InstantSelectionChanged,
- InstantMultitouchActivated,
+ InstantMultitouchActivated, // deprecated
+ InstantAdvancedGestureActivated,
/* add new standard instant interactions here */
NumberOfInstantInteractions,
InstantUser = 1000,
--- a/src/hbcore/core/hborientationstatus.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hborientationstatus.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -115,16 +115,28 @@
#endif
{
#ifdef Q_OS_SYMBIAN
+ // Set up the communication link between the foreground/sleep status handler
+ // and the sensor listener.
HbForegroundWatcher::instance()->setSensorListener(mSensorListener);
+
// Create orientation property for Qt/Hb.
RProperty::Define(KHbPsHardwareCoarseOrientationCategoryUid, KHbPsHardwareCoarseQtOrientationKey,
RProperty::EInt, KRdPolicy, KWrPolicy);
mQtProperty.Attach(KHbPsHardwareCoarseOrientationCategoryUid, KHbPsHardwareCoarseQtOrientationKey);
+
// Create orientation property for Window Server.
RProperty::Define(KHbPsHardwareCoarseOrientationCategoryUid, KHbPsHardwareCoarseWsOrientationKey,
RProperty::EInt, KRdPolicy, KWrPolicy);
mWsProperty.Attach(KHbPsHardwareCoarseOrientationCategoryUid, KHbPsHardwareCoarseWsOrientationKey);
- storeOrientation(defaultOrientation);
+
+ // Publish the default orientation, but storeOrientation() cannot be called directly
+ // because it would lead to infinite loop in case of the themeserver process. If there
+ // is another storeOrientation() call meanwhile, overwriting the value in
+ // mOrientationToBeStored is perfectly fine because then there is no sense in
+ // publishing the default orientation anymore.
+ mOrientationToBeStored = defaultOrientation;
+ QMetaObject::invokeMethod(this, "storeOrientation", Qt::QueuedConnection);
+
#else
Q_UNUSED(parent);
Q_UNUSED(defaultOrientation);
@@ -133,7 +145,8 @@
void HbOrientationStatus::sensorOrientationChanged(Qt::Orientation newOrientation)
{
- storeOrientation(newOrientation);
+ mOrientationToBeStored = newOrientation;
+ storeOrientation();
}
void HbOrientationStatus::sensorStatusChanged(bool status, bool notify)
@@ -144,25 +157,26 @@
// orientation because the state when lights come back can be anything so we
// need to have a clean start then.
if (status == false) {
- storeOrientation(mDefaultOrientation);
+ mOrientationToBeStored = mDefaultOrientation;
+ storeOrientation();
}
#else
Q_UNUSED(status)
#endif
}
-void HbOrientationStatus::storeOrientation(Qt::Orientation orientation)
+void HbOrientationStatus::storeOrientation()
{
#ifdef Q_OS_SYMBIAN
- mQtProperty.Set(orientation);
+
+ mQtProperty.Set(mOrientationToBeStored);
+
#ifdef HB_WSERV_HAS_RENDER_ORIENTATION
- int orientationForWserv = mapOriToRenderOri(orientation);
+ int orientationForWserv = mapOriToRenderOri(mOrientationToBeStored);
mWsProperty.Set(orientationForWserv);
#endif
-#else
- Q_UNUSED(orientation);
-#endif
+#endif // Q_OS_SYMBIAN
}
/*!
--- a/src/hbcore/core/hborientationstatus_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hborientationstatus_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -60,11 +60,13 @@
HbWsOrientationListenerPrivate *d;
};
+private slots:
+ void storeOrientation();
+
private:
HbOrientationStatus(QObject *parent, Qt::Orientation defaultOrientation);
void sensorOrientationChanged(Qt::Orientation newOrientation);
void sensorStatusChanged(bool status, bool notify);
- void storeOrientation(Qt::Orientation orientation);
private:
#ifdef Q_OS_SYMBIAN
@@ -73,6 +75,7 @@
RProperty mWsProperty;
Qt::Orientation mDefaultOrientation;
#endif
+ Qt::Orientation mOrientationToBeStored;
};
#endif // HBORIENTATIONSTATUS_P_H
--- a/src/hbcore/core/hbs60events.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbs60events.h Thu Sep 02 20:44:51 2010 +0300
@@ -26,12 +26,12 @@
#ifndef HBS60EVENTS_H
#define HBS60EVENTS_H
-const int KChangeDirection = 0x20028671;
-const int KChangeOrientation = 0x20028672;
-const int KChangeDeviceProfile = 0x20028673;
-const int KChangeTouchAreaVis = 0x20028674;
-const int KChangeTextItemVis = 0x20028675;
-const int KChangeIconItemVis = 0x20028676;
+const int KChangeDirection = 0x20028671;
+const int KChangeOrientation = 0x20028672;
+const int KChangeDeviceProfile = 0x20028673;
+const int KChangeTouchAreaVis = 0x20028674;
+const int KChangeTextItemVis = 0x20028675;
+const int KChangeIconItemVis = 0x20028676;
const int KChangeFpsCounterVis = 0x20028677;
#endif // HBS60EVENTS_H
--- a/src/hbcore/core/hbsharedmemoryallocators_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbsharedmemoryallocators_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -61,11 +61,11 @@
void *data();
int size() const;
-#ifdef HB_HAVE_PROTECTED_CHUNK
+#if defined(HB_HAVE_PROTECTED_CHUNK) && defined(Q_OS_SYMBIAN)
void setErrorString(const QString &function, TInt errorCode);
#endif
private:
-#ifdef HB_HAVE_PROTECTED_CHUNK
+#if defined(HB_HAVE_PROTECTED_CHUNK) && defined(Q_OS_SYMBIAN)
QSharedMemory::SharedMemoryError wrapperError;
QString errorString;
const QString key;
@@ -174,7 +174,7 @@
qptrdiff alloc(int size);
int allocatedSize(qptrdiff offset);
void free(qptrdiff offset);
- void initialize(HbSharedMemoryWrapper *sharedChunk,
+ void initialize(HbSharedMemoryWrapper *sharedChunk,
const quintptr offset = 0,
HbSharedMemoryAllocator *mainAllocator = 0);
#ifdef HB_THEME_SERVER_MEMORY_REPORT
--- a/src/hbcore/core/hbsharedmemorymanager_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbsharedmemorymanager_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -52,7 +52,7 @@
HbSharedMemoryManager *HbSharedMemoryManager::memManager = 0;
-#ifdef HB_HAVE_PROTECTED_CHUNK // Symbian, protected chunk
+#if defined(HB_HAVE_PROTECTED_CHUNK) && defined(Q_OS_SYMBIAN)
HbSharedMemoryWrapper::HbSharedMemoryWrapper(const QString &key, QObject *parent) :
wrapperError(QSharedMemory::NoError),
key(key),
@@ -455,7 +455,7 @@
fullAllocationHistory.append(QPair<quint32, quint32>(newSize | reallocIdentifier, offset));
}
#endif
- newOffset = alloc(newSize);
+ newOffset = alloc(newSize);
int allocatedSize = ALIGN(newSize);
if (offset > 0) {
#ifdef HB_BIN_CSS
--- a/src/hbcore/core/hbsharedmemorymanagerut_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbsharedmemorymanagerut_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -92,8 +92,8 @@
}
}
}
- success = true;
- }
+ success = true;
+ }
return success;
}
--- a/src/hbcore/core/hbstring_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbstring_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -332,7 +332,7 @@
HbStringData* newData =
getStringData(mMemoryType, dataOffset.get());
new(newData) HbStringData();
-
+
// Allocate new string buffer if given size is greater than zero
if (size > 0) {
newData->mStartOffset = manager->alloc(size*sizeof(QChar));
@@ -475,7 +475,7 @@
}
QChar *ptr = getAddress<QChar>(mMemoryType, data->mStartOffset, mShared);
- QChar *otherPtr = getAddress<QChar>(other.mMemoryType, otherData->mStartOffset, other.mShared);
+ QChar *otherPtr = getAddress<QChar>(other.mMemoryType, otherData->mStartOffset, other.mShared);
return memEquals((quint16 *)ptr, (quint16 *)otherPtr, data->mLength);
}
--- a/src/hbcore/core/hbvector_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/core/hbvector_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -706,7 +706,7 @@
~HbVectorData()
{
-#ifdef HB_BIN_CSS
+#ifdef HB_BIN_CSS
HbCssConverterUtils::unregisterOffsetHolder(mStart.offsetPtr());
#endif //HB_BIN_CSS
destroyAll();
--- a/src/hbcore/cssparser/hbcssformatter_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hbcssformatter_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -28,13 +28,13 @@
/*!
\class HbCssFormatter
\brief Internal class for converting in-memory CSS structures (declarations and rules)
- to string representations.
-
- These functions only work in builds configured with the --developer flag; in other
- builds the implementation is defined-out to reduce ROM size, and an empty string
- is returned from all functions.
-
- Example usage would be:
+ to string representations.
+
+ These functions only work in builds configured with the --developer flag; in other
+ builds the implementation is defined-out to reduce ROM size, and an empty string
+ is returned from all functions.
+
+ Example usage would be:
HbVector<HbCss::WeightedRule> rules;
[...]
qDebug() << HbCssFormatter::weightedStyleRulesToString(rules);
@@ -47,14 +47,14 @@
*/
QString HbCssFormatter::weightedStyleRulesToString(const HbVector<HbCss::WeightedRule> &rules)
{
- QString str;
+ QString str;
#ifdef HB_DEVELOPER
- foreach (const HbCss::WeightedRule &rule, rules) {
- if (str.length() > 0) {
- str.append("\n");
- }
- str.append(styleRuleToString(rule.second, rule.first));
- }
+ foreach (const HbCss::WeightedRule &rule, rules) {
+ if (str.length() > 0) {
+ str.append("\n");
+ }
+ str.append(styleRuleToString(rule.second, rule.first));
+ }
#else
Q_UNUSED( rules );
#endif
--- a/src/hbcore/cssparser/hbcssparser_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hbcssparser_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -624,7 +624,7 @@
#endif
// Data
- uint classNameHash;
+ uint classNameHash;
HbVector<StyleRule> styleRules;
HbVector<StyleRule> portraitRules;
HbVector<StyleRule> landscapeRules;
@@ -816,11 +816,11 @@
class HB_CORE_PRIVATE_EXPORT Parser //krazy:exclude=multiclasses
{
public:
- enum Error{
- NoError,
- OutOfMemoryError,
- UnknownError
- };
+ enum Error{
+ NoError,
+ OutOfMemoryError,
+ UnknownError
+ };
Parser();
explicit Parser(const QString &css, bool file = false);
@@ -851,8 +851,8 @@
bool parseFunction(HbString *name, HbString *args);
bool parseHexColor(QColor *col);
bool testAndParseUri(HbString *uri);
-
- void addRuleToWidgetStack(StyleSheet *sheet, const QString &stackName, StyleRule &rule);
+
+ void addRuleToWidgetStack(StyleSheet *sheet, const QString &stackName, StyleRule &rule);
inline bool testRuleset() { return testSelector(); }
inline bool testSelector() { return testSimpleSelector(); }
@@ -905,7 +905,7 @@
QVector<Symbol> symbols;
int index;
int errorIndex;
- Error errorCode;
+ Error errorCode;
bool hasEscapeSequences;
QString sourcePath;
QString sourceFile;
--- a/src/hbcore/cssparser/hblayeredstyleloader_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hblayeredstyleloader_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -45,7 +45,7 @@
};
struct Layer {
- HbStyleSelector styleSelector;
+ HbStyleSelector styleSelector;
};
enum Concern {
@@ -82,7 +82,7 @@
HbVector<HbCss::Declaration> declarationsForNode(HbStyleSelector::NodePtr node,
const Qt::Orientation orientation, const char *extraPseudo = 0) const;
HbVector<HbCss::StyleRule> styleRulesForNode(HbStyleSelector::NodePtr node,
- const Qt::Orientation orientation) const;
+ const Qt::Orientation orientation) const;
void variableRuleSets(QHash<QString, HbCss::Declaration> *variables) const;
protected:
--- a/src/hbcore/cssparser/hbstyleloader.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hbstyleloader.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -28,7 +28,7 @@
#include "hbwidgetstyleloader_p.h"
/*!
- @stable
+ @stable
@hbcore
\class HbStyleLoader
\brief allows an application to override platform layout and stylesheet definitions
@@ -100,3 +100,4 @@
HbLayeredStyleLoader::Concern_All,
HbLayeredStyleLoader::Priority_Application);
}
+
--- a/src/hbcore/cssparser/hbstyleloader.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hbstyleloader.h Thu Sep 02 20:44:51 2010 +0300
@@ -31,8 +31,8 @@
class HB_CORE_EXPORT HbStyleLoader
{
public:
- static bool registerFilePath(const QString &filePath);
- static bool unregisterFilePath(const QString &filePath);
+ static bool registerFilePath(const QString &filePath);
+ static bool unregisterFilePath(const QString &filePath);
};
#endif // HBSTYLELOADER_H
--- a/src/hbcore/cssparser/hbwidgetstyleloader_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hbwidgetstyleloader_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -50,22 +50,22 @@
\class HbWidgetStyleLoader
\brief allows collections of widget-specific CSS files to be automatically loaded when needed
- HbWidgetStyleLoader allows widget-specific CSS files to be automatically loaded and unloaded
- into the layered CSS system on demand. CSS style rules should be split into separate files
- based on the widget they apply to, and named after the widget they apply to (in lower case).
-
- Multiple FileSets can be active at any given time, and apply to any layer of any stack.
-
- A list of class names that CSS has been loaded for is maintained for each FileSet, and the
+ HbWidgetStyleLoader allows widget-specific CSS files to be automatically loaded and unloaded
+ into the layered CSS system on demand. CSS style rules should be split into separate files
+ based on the widget they apply to, and named after the widget they apply to (in lower case).
+
+ Multiple FileSets can be active at any given time, and apply to any layer of any stack.
+
+ A list of class names that CSS has been loaded for is maintained for each FileSet, and the
parent hierarchy is navigated up to HbWidget to load CSS for all parent classes.
-
- \note When a FileSet is removed, the corresponding layer of the CSS stack will be cleared.
- Any other FileSets active on the same layer will have their loaded list cleared, and required
- CSS will be reloaded at the next polish event, but any CSS files manually loaded to the layer
- will be cleared without warning. It is therefore recommended to only load CSS either manually
- or via this class for any given layer of the stack.
+
+ \note When a FileSet is removed, the corresponding layer of the CSS stack will be cleared.
+ Any other FileSets active on the same layer will have their loaded list cleared, and required
+ CSS will be reloaded at the next polish event, but any CSS files manually loaded to the layer
+ will be cleared without warning. It is therefore recommended to only load CSS either manually
+ or via this class for any given layer of the stack.
- \sa HbLayeredStyleLoader
+ \sa HbLayeredStyleLoader
*/
@@ -79,7 +79,7 @@
*/
HbWidgetStyleLoader* HbWidgetStyleLoader::instance()
{
- return globalWidgetStyleLoader();
+ return globalWidgetStyleLoader();
}
@@ -181,7 +181,7 @@
into the specified layer based on the filename pattern given.
The replacement string "%w" will be substituted for the widget class name, and ".css" or
- ".widgetml" will be appended when loading appropriate files. For example,
+ ".widgetml" will be appended when loading appropriate files. For example,
the pathPattern:
":/css/widgets/%w"
would become:
@@ -199,16 +199,16 @@
\note The pathPattern is treated as a unique identifier, so only one FileSet can be created
for any given path.
-
+
\param pathPattern, path to load CSS files from, with %w representing the widget class name
- \param concern, the CSS concern stack to load the CSS files into
- \param priority, the layer of the CSS stack to load the files into
+ \param concern, the CSS concern stack to load the CSS files into
+ \param priority, the layer of the CSS stack to load the files into
\return whether the addition was successful
*/
/*
bool HbWidgetStyleLoader::addFileSet(const QString &pathPattern,
const HbLayeredStyleLoader::Concern concern,
- const HbLayeredStyleLoader::LayerPriority priority)
+ const HbLayeredStyleLoader::LayerPriority priority)
{
return doAddFileSet(pathPattern, FileSetType_Pattern, concern, priority);
}
@@ -223,10 +223,10 @@
const HbLayeredStyleLoader::Concern concern,
const HbLayeredStyleLoader::LayerPriority priority)
{
- for(int i=0; i<mFileSets.count(); i++){
- if(mFileSets.at(i).path == path){
+ for(int i=0; i<mFileSets.count(); i++){
+ if(mFileSets.at(i).path == path){
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Fileset already exists with path" << path;
+ qDebug() << "Fileset already exists with path" << path;
#endif
if ( mFileSets.at(i).concern == concern
&& mFileSets.at(i).priority == priority ) {
@@ -234,21 +234,21 @@
#ifdef WIDGETSTYLELOADER_DEBUG
qDebug() << "Increased reference count to" << mFileSets[i].referenceCount;
#endif
- return true;
+ return true;
} else {
#ifdef WIDGETSTYLELOADER_DEBUG
qDebug() << "Concern and/or priority do not match";
#endif
return false;
}
- }
- }
-
+ }
+ }
+
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Adding fileset for filename pattern" << path << "with concern" << concern << "and priority" << priority;
+ qDebug() << "Adding fileset for filename pattern" << path << "with concern" << concern << "and priority" << priority;
#endif
- FileSet set(path, type, pattern, concern, priority);
- mFileSets.append(set);
+ FileSet set(path, type, pattern, concern, priority);
+ mFileSets.append(set);
mFullyLoadedWidgets.clear();
#ifndef HB_BIN_CSS
@@ -259,9 +259,9 @@
#endif
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "WidgetStyleLoader now contains" << mFileSets.count() << "filters";
+ qDebug() << "WidgetStyleLoader now contains" << mFileSets.count() << "filters";
#endif
- return true;
+ return true;
}
@@ -274,7 +274,7 @@
\note If any CSS has been manually loaded into the same layer as the specified fileset, it
will be unloaded without warning. It is therefore recommended to keep CSS files loaded manually
and via this class in separate layers.
-
+
\param pathPattern, path to load CSS files from, with %w representing the widget class name
\return whether the removal was successful - returns false if the pathPattern is not found
*/
@@ -291,10 +291,10 @@
bool HbWidgetStyleLoader::doRemoveFileSet(
const QString &path,
const HbLayeredStyleLoader::Concern concern,
- const HbLayeredStyleLoader::LayerPriority priority)
+ const HbLayeredStyleLoader::LayerPriority priority)
{
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Removing fileset for filename pattern" << path;
+ qDebug() << "Removing fileset for filename pattern" << path;
#endif
bool found = false;
@@ -316,16 +316,16 @@
#ifdef WIDGETSTYLELOADER_DEBUG
qDebug() << "Fileset removed";
#endif
- if(fs.loadedCss.count()){
- HbLayeredStyleLoader *stack = HbLayeredStyleLoader::getStack(fs.concern);
- if(stack){
+ if(fs.loadedCss.count()){
+ HbLayeredStyleLoader *stack = HbLayeredStyleLoader::getStack(fs.concern);
+ if(stack){
QList<int> handles = fs.loadedCss.values();
foreach( int handle, handles ) {
stack->unload(handle, priority);
}
}
- }
- mFileSets.removeAt(i);
+ }
+ mFileSets.removeAt(i);
#ifndef HB_BIN_CSS
if (HbInstancePrivate::d_ptr()->mStyle) {
HbInstancePrivate::d_ptr()->mStyle->d_func()->clearStyleSheetCaches();
@@ -338,10 +338,10 @@
}
#endif
found = true;
- }
- }
-
- return found;
+ }
+ }
+
+ return found;
}
@@ -351,25 +351,25 @@
Attempts to load CSS for the given widget (and all parent classes) based on the currently
existing filesets. Note that a list of loaded CSS files is stored, so calling this function
on a widget whose CSS is already loaded will NOT cause duplicate CSS.
- Failed attempts to load a file will also be cached to avoid repeated filesystem access
+ Failed attempts to load a file will also be cached to avoid repeated filesystem access
requests.
-
+
\param widget, Widget to load CSS for
*/
void HbWidgetStyleLoader::loadCss(const HbWidget *widget)
{
- if(!widget){
- return;
- }
+ if(!widget){
+ return;
+ }
const char *classNameChar = widget->metaObject()->className();
uint classNameHash = qHash(classNameChar);
if (mFullyLoadedWidgets.contains(classNameHash)) {
return;
}
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "loadCssForWidget called for " << widget->metaObject()->className();
+ qDebug() << "loadCssForWidget called for " << widget->metaObject()->className();
#endif
- for(int i=0; i<mFileSets.count(); i++){
+ for(int i=0; i<mFileSets.count(); i++){
if ( !(mFileSets.at(i).type == FileSetType_Pattern
|| mFileSets.at(i).type == FileSetType_CSS ) ) {
continue;
@@ -378,72 +378,72 @@
&& mFileSets.at(i).patternType != PatternType_CSS) {
continue;
}
- HbLayeredStyleLoader *stack = HbLayeredStyleLoader::getStack(mFileSets[i].concern);
- if(!stack){
- continue;
- }
+ HbLayeredStyleLoader *stack = HbLayeredStyleLoader::getStack(mFileSets[i].concern);
+ if(!stack){
+ continue;
+ }
if (mFileSets[i].type == FileSetType_CSS) {
if (mFileSets[i].loadedCss.count() || mFileSets[i].missedCss.count()) {
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Already loaded CSS from file" << mFileSets[i].path;
+ qDebug() << "Already loaded CSS from file" << mFileSets[i].path;
#endif
} else {
- int hand = stack->load(mFileSets[i].path, mFileSets[i].priority);
- if (hand) {
+ int hand = stack->load(mFileSets[i].path, mFileSets[i].priority);
+ if (hand) {
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Successfully loaded CSS from file" << mFileSets[i].path;
+ qDebug() << "Successfully loaded CSS from file" << mFileSets[i].path;
#endif
- mFileSets[i].loadedCss.insert(0, hand);
- } else {
+ mFileSets[i].loadedCss.insert(0, hand);
+ } else {
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Failed to load CSS from file" << mFileSets[i].path;
+ qDebug() << "Failed to load CSS from file" << mFileSets[i].path;
#endif
mFileSets[i].missedCss.append(0);
- }
+ }
}
continue;
}
// Else -> pattern file set
- const QMetaObject *meta = widget->metaObject();
- QString className = meta->className();
- while(className != HBWIDGETBASE_CLASSNAME){
- className = meta->className();
+ const QMetaObject *meta = widget->metaObject();
+ QString className = meta->className();
+ while(className != HBWIDGETBASE_CLASSNAME){
+ className = meta->className();
uint classNameHash = qHash(className);
- meta = meta->superClass();
- if (!meta) {
- break;
- }
+ meta = meta->superClass();
+ if (!meta) {
+ break;
+ }
if (mFileSets[i].loadedCss.contains(classNameHash)){
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "CSS already loaded for" << className;
+ qDebug() << "CSS already loaded for" << className;
#endif
- continue;
- }
+ continue;
+ }
if (mFileSets[i].missedCss.contains(classNameHash)){
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "CSS already searched but missed for" << className;
+ qDebug() << "CSS already searched but missed for" << className;
#endif
- continue;
+ continue;
}
- QString filename = mFileSets[i].path;
+ QString filename = mFileSets[i].path;
filename.replace(PATTERN_WILDCARD, className.toLatin1().toLower());
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Loading CSS for widget" << className << "from file" << filename;
+ qDebug() << "Loading CSS for widget" << className << "from file" << filename;
#endif
- int hand = stack->load(filename, mFileSets[i].priority);
- if (hand) {
+ int hand = stack->load(filename, mFileSets[i].priority);
+ if (hand) {
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Successfully loaded CSS for" << className;
+ qDebug() << "Successfully loaded CSS for" << className;
#endif
- mFileSets[i].loadedCss.insert(classNameHash, hand);
- } else {
+ mFileSets[i].loadedCss.insert(classNameHash, hand);
+ } else {
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Failed to load CSS for" << className;
+ qDebug() << "Failed to load CSS for" << className;
#endif
mFileSets[i].missedCss.append(classNameHash);
- }
- }
- }
+ }
+ }
+ }
mFullyLoadedWidgets.append(classNameHash);
}
@@ -452,8 +452,8 @@
*
This function attempts to load the specified layout from a WidgetML file with the matching
widget name (matched by the %w substitution in the pathPatterns of loaded filesets).
- If the file is not found or the layout name does not exist in the file, the pathPattern is
- re-substituted with the parent widget name and loading is attempted again.
+ If the file is not found or the layout name does not exist in the file, the pathPattern is
+ re-substituted with the parent widget name and loading is attempted again.
\sa addFileSet
@@ -467,19 +467,19 @@
bool HbWidgetStyleLoader::loadWidgetML(
HbWidget *widget, const QString &layoutName, const QString §ionName)
{
- if(!widget){
- return false;
- }
- bool loaded = false;
-
+ if(!widget){
+ return false;
+ }
+ bool loaded = false;
+
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Looking for layout" << layoutName << "in section" << sectionName;
+ qDebug() << "Looking for layout" << layoutName << "in section" << sectionName;
#endif
- // Iterate backwards to ensure filesets override correctly (eg landscape delta overrides
+ // Iterate backwards to ensure filesets override correctly (eg landscape delta overrides
// portrait)
- int c = mFileSets.count();
- while(c-- && !loaded){
+ int c = mFileSets.count();
+ while(c-- && !loaded){
if ( !(mFileSets.at(c).type == FileSetType_Pattern
|| mFileSets.at(c).type == FileSetType_WidgetML ) ) {
continue;
@@ -488,13 +488,13 @@
&& mFileSets.at(c).patternType != PatternType_WidgetML) {
continue;
}
- const QMetaObject *meta = widget->metaObject();
- QString className = meta->className();
+ const QMetaObject *meta = widget->metaObject();
+ QString className = meta->className();
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Checking fileset " << mFileSets[c].path;
+ qDebug() << "Checking fileset " << mFileSets[c].path;
#endif
- while(className != HBWIDGETBASE_CLASSNAME){
- QString filename = mFileSets[c].path;
+ while(className != HBWIDGETBASE_CLASSNAME){
+ QString filename = mFileSets[c].path;
bool attemptToLoad(true);
if ( mFileSets[c].type == FileSetType_Pattern ) {
filename.replace(PATTERN_WILDCARD, className.toLatin1().toLower());
@@ -503,17 +503,17 @@
classFilename.append(WIDGETML_EXTENSION);
if (!filename.endsWith(classFilename)) {
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Not a WidgetML file" << filename << "for class" << className;
+ qDebug() << "Not a WidgetML file" << filename << "for class" << className;
#endif
attemptToLoad = false;
}
#ifdef WIDGETSTYLELOADER_DEBUG
else {
- qDebug() << "Attempting to load WidgetML from non-pattern file" << filename;
+ qDebug() << "Attempting to load WidgetML from non-pattern file" << filename;
}
#endif
}
-
+
if ( attemptToLoad ) {
static HbWidgetLoader loader;
#ifdef WIDGETSTYLELOADER_DEBUG
@@ -534,59 +534,59 @@
}
className = meta->className();
}
- }
+ }
return loaded;
}
#endif
/*!
- For any filesets loaded with the given concern, the list of loaded CSS files is cleared causing
- them to be reloaded on the nextstyleRulesForNode/declarationsForNode call. This should only be
- called from the LayeredStyleLoader's clear function, to keep this 'cache' up to date.
+ For any filesets loaded with the given concern, the list of loaded CSS files is cleared causing
+ them to be reloaded on the nextstyleRulesForNode/declarationsForNode call. This should only be
+ called from the LayeredStyleLoader's clear function, to keep this 'cache' up to date.
\param concern, Concern which has been cleared
*/
void HbWidgetStyleLoader::clearConcernFileList(const HbLayeredStyleLoader::Concern concern)
{
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Clearing list for stack" << concern;
+ qDebug() << "Clearing list for stack" << concern;
#endif
- for(int i=0; i<mFileSets.count(); i++){
- if(mFileSets.at(i).concern == concern){
- mFileSets[i].loadedCss.clear();
+ for(int i=0; i<mFileSets.count(); i++){
+ if(mFileSets.at(i).concern == concern){
+ mFileSets[i].loadedCss.clear();
mFileSets[i].missedCss.clear();
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Cleared fileset" << i;
+ qDebug() << "Cleared fileset" << i;
#endif
- }
- }
+ }
+ }
mFullyLoadedWidgets.clear();
}
/*!
- For any filesets loaded with the given concern and priority, the list of loaded CSS files is
- cleared causing them to be reloaded on the next styleRulesForNode/declarationsForNode call.
- This should only be called from the LayeredStyleLoader's clear function, to keep this 'cache'
- up to date.
+ For any filesets loaded with the given concern and priority, the list of loaded CSS files is
+ cleared causing them to be reloaded on the next styleRulesForNode/declarationsForNode call.
+ This should only be called from the LayeredStyleLoader's clear function, to keep this 'cache'
+ up to date.
\param concern, Concern of layer which has been cleared
\param priority, Priority of layer which has been cleared
*/
void HbWidgetStyleLoader::clearLayerFileList(const HbLayeredStyleLoader::Concern concern,
- const HbLayeredStyleLoader::LayerPriority priority)
+ const HbLayeredStyleLoader::LayerPriority priority)
{
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Clearing list for stack" << concern << "and layer" << priority;
+ qDebug() << "Clearing list for stack" << concern << "and layer" << priority;
#endif
- for(int i=0; i<mFileSets.count(); i++){
- if(mFileSets.at(i).concern == concern && mFileSets.at(i).priority == priority){
- mFileSets[i].loadedCss.clear();
+ for(int i=0; i<mFileSets.count(); i++){
+ if(mFileSets.at(i).concern == concern && mFileSets.at(i).priority == priority){
+ mFileSets[i].loadedCss.clear();
mFileSets[i].missedCss.clear();
#ifdef WIDGETSTYLELOADER_DEBUG
- qDebug() << "Cleared fileset" << i;
+ qDebug() << "Cleared fileset" << i;
#endif
- }
- }
+ }
+ }
mFullyLoadedWidgets.clear();
}
--- a/src/hbcore/cssparser/hbwidgetstyleloader_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/cssparser/hbwidgetstyleloader_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -35,27 +35,27 @@
class HB_CORE_PRIVATE_EXPORT HbWidgetStyleLoader
{
public:
-
+
static HbWidgetStyleLoader *instance();
- bool addFilePath(const QString &filePath,
+ bool addFilePath(const QString &filePath,
const HbLayeredStyleLoader::Concern concern,
const HbLayeredStyleLoader::LayerPriority priority);
- bool removeFilePath(const QString &filePath,
+ bool removeFilePath(const QString &filePath,
const HbLayeredStyleLoader::Concern concern,
const HbLayeredStyleLoader::LayerPriority priority);
- void clearConcernFileList(const HbLayeredStyleLoader::Concern concern);
- void clearLayerFileList(
+ void clearConcernFileList(const HbLayeredStyleLoader::Concern concern);
+ void clearLayerFileList(
const HbLayeredStyleLoader::Concern concern,
- const HbLayeredStyleLoader::LayerPriority priority);
-
- void loadCss(const HbWidget *widget);
-
- bool loadWidgetML(
+ const HbLayeredStyleLoader::LayerPriority priority);
+
+ void loadCss(const HbWidget *widget);
+
+ bool loadWidgetML(
HbWidget *widget, const QString &layoutName, const QString §ion = QString());
-
+
private:
enum FileSetType {
@@ -76,38 +76,38 @@
FileSetType type,
PatternType patternType,
const HbLayeredStyleLoader::Concern concern,
- const HbLayeredStyleLoader::LayerPriority priority);
+ const HbLayeredStyleLoader::LayerPriority priority);
- bool doRemoveFileSet(
+ bool doRemoveFileSet(
const QString &path,
const HbLayeredStyleLoader::Concern concern,
- const HbLayeredStyleLoader::LayerPriority priority);
+ const HbLayeredStyleLoader::LayerPriority priority);
struct FileSet {
- QString path;
+ QString path;
FileSetType type;
PatternType patternType;
- HbLayeredStyleLoader::Concern concern;
- HbLayeredStyleLoader::LayerPriority priority;
- QHash<uint,int> loadedCss;
+ HbLayeredStyleLoader::Concern concern;
+ HbLayeredStyleLoader::LayerPriority priority;
+ QHash<uint,int> loadedCss;
QList<uint> missedCss;
int referenceCount;
-
- FileSet(const QString &pat,
+
+ FileSet(const QString &pat,
FileSetType typ,
PatternType pattern,
const HbLayeredStyleLoader::Concern con,
- const HbLayeredStyleLoader::LayerPriority pri) {
- path = pat;
+ const HbLayeredStyleLoader::LayerPriority pri) {
+ path = pat;
type = typ;
patternType = pattern;
- concern = con;
- priority = pri;
+ concern = con;
+ priority = pri;
referenceCount = 1;
- }
- };
-
- QList<FileSet> mFileSets;
+ }
+ };
+
+ QList<FileSet> mFileSets;
QVector<uint> mFullyLoadedWidgets;
};
--- a/src/hbcore/decorators/hbbatteryindicator.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbbatteryindicator.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -105,7 +105,7 @@
updatePrimitives();
#ifdef HB_HAVE_QT_MOBILITY
- Q_D(HbBatteryIndicator);
+ Q_D(HbBatteryIndicator);
connect(d->mSystemDeviceInfo, SIGNAL(batteryLevelChanged(int)), this, SLOT(setLevel(int)));
connect(d->mSystemDeviceInfo, SIGNAL(powerStateChanged(QSystemDeviceInfo::PowerState)), this,
SLOT(_q_setPowerState(QSystemDeviceInfo::PowerState)));
--- a/src/hbcore/decorators/hbindicatorleveliconitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbindicatorleveliconitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -46,7 +46,7 @@
const QStyleOptionGraphicsItem *option,
QWidget *widget)
{
- Q_UNUSED(widget);
+ Q_UNUSED(widget);
QRectF iconRect(boundingRect());
--- a/src/hbcore/decorators/hbstatusbar.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbstatusbar.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -53,7 +53,7 @@
\brief HbStatusBar is the class implementing statusbar decorator.
Statusbar is a container for two indicator groups (left and right),
a clock which is located in the middle of indicator groups and for
- a battery and signal status indicators.
+ a battery and signal status indicators.
*/
HbStatusBarPrivate::HbStatusBarPrivate() :
@@ -193,23 +193,56 @@
emit q->contentChanged(HbStatusBar::IndicatorsChanged);
}
+QString HbStatusBarPrivate::timeFormat(){
+
+ QString timeFormat = "";
+ HbExtendedLocale extendedLocale = HbExtendedLocale();
+
+ // time separator
+ timeFormat.append("hh");
+ // Index0 HH Index1 MM Index2 SS Index3
+ int indexOfHourMinuteSeparator(1);
+ timeFormat.append(extendedLocale.timeSeparator(indexOfHourMinuteSeparator));
+ timeFormat.append("mm");
+
+ if (extendedLocale.timeStyle() == HbExtendedLocale::Time24){
+ // 24-hour format
+ return timeFormat;
+ }
+
+ // 12-hour time format
+ QString amPm = "ap";
+ QString space = " ";
+ if (extendedLocale.amPmSpace()){
+ // case: space between time & amPm text
+ if (extendedLocale.amPmSymbolPosition() == HbExtendedLocale::After){
+ amPm.prepend(space);
+ timeFormat.append(amPm);
+ }else if (extendedLocale.amPmSymbolPosition() == HbExtendedLocale::Before){
+ amPm.append(space);
+ timeFormat.prepend(amPm);
+ }
+ } else {
+ // case: no space between time & amPm text
+ if (extendedLocale.amPmSymbolPosition() == HbExtendedLocale::After){
+ timeFormat.append(amPm);
+ }else if (extendedLocale.amPmSymbolPosition() == HbExtendedLocale::Before){
+ timeFormat.prepend(amPm);
+ }
+ }
+ return timeFormat;
+}
+
+
void HbStatusBarPrivate::updateTime()
{
Q_Q(HbStatusBar);
- QString timeFormat;
- // set the time format accordingly
- if (HbExtendedLocale().timeStyle() == HbExtendedLocale::Time12) {
- timeFormat = "hh:mm ap";
- } else {
- timeFormat = "hh:mm";
- }
-
QTime current = QTime::currentTime();
// set time, using a proper formatting
QString oldTimeText = mTimeText;
- mTimeText = current.toString(timeFormat);
+ mTimeText = current.toString(timeFormat());
q->updatePrimitives();
@@ -327,7 +360,7 @@
void HbStatusBar::initStyleOption(HbStyleOptionStatusBar *option) const
{
const Q_D(HbStatusBar);
- HbWidget::initStyleOption(option);
+ HbWidget::initStyleOption(option);
option->timeText = d->mTimeText;
--- a/src/hbcore/decorators/hbstatusbar_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbstatusbar_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -40,11 +40,11 @@
public:
enum ContentChangeFlag {
- TimeChanged,
- BatteryLevelChanged,
- SignalLevelChanged,
- IndicatorsChanged,
- BatteryCharging
+ TimeChanged,
+ BatteryLevelChanged,
+ SignalLevelChanged,
+ IndicatorsChanged,
+ BatteryCharging
};
Q_DECLARE_FLAGS(ContentChangeFlags, ContentChangeFlag)
--- a/src/hbcore/decorators/hbstatusbar_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbstatusbar_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -48,6 +48,7 @@
void delayedConstruction();
void init();
void updateTime();
+ QString timeFormat();
#if defined(Q_OS_SYMBIAN)
static TInt EnvChangeCallback(TAny *aObject);
--- a/src/hbcore/decorators/hbtitlepane.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbtitlepane.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -44,7 +44,7 @@
#include <QGraphicsSceneMouseEvent>
/*!
- @beta
+ @beta
@hbcore
\class HbTitlePane
\brief HbTitlePane represents a title pane decorator.
--- a/src/hbcore/decorators/hbtitlepane_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/decorators/hbtitlepane_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -65,7 +65,7 @@
HbTitlePane(HbTitlePanePrivate &dd, QGraphicsItem *parent = 0);
void initStyleOption(HbStyleOptionTitlePane *option) const;
-
+
void gestureEvent(QGestureEvent *event);
void polish(HbStyleParameters ¶ms);
bool eventFilter(QObject *object, QEvent *event);
--- a/src/hbcore/defs/bwins/HbCoreu.def Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/defs/bwins/HbCoreu.def Thu Sep 02 20:44:51 2010 +0300
@@ -32,7 +32,7 @@
?aboutToShow@HbPopupBase@@IAEXXZ @ 31 NONAME ABSENT ; void HbPopupBase::aboutToShow(void)
?showItems@HbView@@QAEXV?$QFlags@W4SceneItem@Hb@@@@@Z @ 32 NONAME ; void HbView::showItems(class QFlags<enum Hb::SceneItem>)
?m_instance@HbDirectoryNameLocalizer@@0PAV1@A @ 33 NONAME ABSENT ; class HbDirectoryNameLocalizer * HbDirectoryNameLocalizer::m_instance
- ?activeTouchKeyboardChanged@HbInputSettingProxy@@IAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 34 NONAME ; void HbInputSettingProxy::activeTouchKeyboardChanged(class QFlags<enum HbKeyboardTypeFlag>)
+ ?activeTouchKeyboardChanged@HbInputSettingProxy@@IAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 34 NONAME ABSENT ; void HbInputSettingProxy::activeTouchKeyboardChanged(class QFlags<enum HbKeyboardTypeFlag>)
?trUtf8@HbWidget@@SA?AVQString@@PBD0@Z @ 35 NONAME ; class QString HbWidget::trUtf8(char const *, char const *)
??_EHbInputLowerCaseFilter@@UAE@I@Z @ 36 NONAME ; HbInputLowerCaseFilter::~HbInputLowerCaseFilter(unsigned int)
?defaultSize@HbIconItem@@QBE?AVQSizeF@@XZ @ 37 NONAME ; class QSizeF HbIconItem::defaultSize(void) const
@@ -84,7 +84,7 @@
?instance@HbInputSettingProxy@@SAPAV1@XZ @ 83 NONAME ; class HbInputSettingProxy * HbInputSettingProxy::instance(void)
?gestureStopped@HbInteractionListener@@MAEXPBVQObject@@W4Gesture@Ia@@@Z @ 84 NONAME ABSENT ; void HbInteractionListener::gestureStopped(class QObject const *, enum Ia::Gesture)
?visualDirection@HbLayoutUtils@@SA?AW4LayoutDirection@Qt@@PAVQGraphicsLayout@@@Z @ 85 NONAME ; enum Qt::LayoutDirection HbLayoutUtils::visualDirection(class QGraphicsLayout *)
- ?screenOrientation@HbInputSettingProxy@@QAE?AW4Orientation@Qt@@XZ @ 86 NONAME ; enum Qt::Orientation HbInputSettingProxy::screenOrientation(void)
+ ?screenOrientation@HbInputSettingProxy@@QAE?AW4Orientation@Qt@@XZ @ 86 NONAME ABSENT ; enum Qt::Orientation HbInputSettingProxy::screenOrientation(void)
?textFormat@HbLabel@@QBE?AW4TextFormat@Qt@@XZ @ 87 NONAME ABSENT ; enum Qt::TextFormat HbLabel::textFormat(void) const
??0HbStyleOptionMessageBox@@QAE@XZ @ 88 NONAME ; HbStyleOptionMessageBox::HbStyleOptionMessageBox(void)
?menu@HbAction@@QBEPAVHbMenu@@XZ @ 89 NONAME ; class HbMenu * HbAction::menu(void) const
@@ -138,7 +138,7 @@
??0HbViewPrivate@@QAE@XZ @ 137 NONAME ; HbViewPrivate::HbViewPrivate(void)
?brushValues@Declaration@HbCss@@QBEXPAVQBrush@@ABVQPalette@@@Z @ 138 NONAME ABSENT ; void HbCss::Declaration::brushValues(class QBrush *, class QPalette const &) const
?add@HbEffect@@SA_NABVQString@@00@Z @ 139 NONAME ; bool HbEffect::add(class QString const &, class QString const &, class QString const &)
- ?orientationAboutToChange@HbInputSettingProxy@@IAEXXZ @ 140 NONAME ; void HbInputSettingProxy::orientationAboutToChange(void)
+ ?orientationAboutToChange@HbInputSettingProxy@@IAEXXZ @ 140 NONAME ABSENT ; void HbInputSettingProxy::orientationAboutToChange(void)
?insert@HbListItemStandardLayout@@QAEXPAVQGraphicsLayoutItem@@HHH@Z @ 141 NONAME ABSENT ; void HbListItemStandardLayout::insert(class QGraphicsLayoutItem *, int, int, int)
?setPredictiveInputStatus@HbInputSettingProxy@@QAEXH@Z @ 142 NONAME ABSENT ; void HbInputSettingProxy::setPredictiveInputStatus(int)
?cleanup@HbMultiSegmentAlgo@@QAEXXZ @ 143 NONAME ABSENT ; void HbMultiSegmentAlgo::cleanup(void)
@@ -473,7 +473,7 @@
??_EHbEvent@@UAE@I@Z @ 472 NONAME ; HbEvent::~HbEvent(unsigned int)
?removeAction@HbSoftKey@@QAEXPAVHbAction@@@Z @ 473 NONAME ABSENT ; void HbSoftKey::removeAction(class HbAction *)
?rawNumericModeSpecialCharacterData@HbKeyMapData@@MBEPAVQChar@@V?$QFlags@W4HbKeyboardTypeFlag@@@@AAH@Z @ 474 NONAME ABSENT ; class QChar * HbKeyMapData::rawNumericModeSpecialCharacterData(class QFlags<enum HbKeyboardTypeFlag>, int &) const
- ?orientationChangeCompleted@HbInputSettingProxy@@QBE_NXZ @ 475 NONAME ; bool HbInputSettingProxy::orientationChangeCompleted(void) const
+ ?orientationChangeCompleted@HbInputSettingProxy@@QBE_NXZ @ 475 NONAME ABSENT ; bool HbInputSettingProxy::orientationChangeCompleted(void) const
??0HbInputUpperCaseFilter@@AAE@XZ @ 476 NONAME ; HbInputUpperCaseFilter::HbInputUpperCaseFilter(void)
?staticMetaObject@HbDeviceDialogPlugin@@2UQMetaObject@@B @ 477 NONAME ; struct QMetaObject const HbDeviceDialogPlugin::staticMetaObject
?inputPluginInstance@HbInputUtils@@SAPAVQInputContextPlugin@@ABVQString@@@Z @ 478 NONAME ABSENT ; class QInputContextPlugin * HbInputUtils::inputPluginInstance(class QString const &)
@@ -837,7 +837,7 @@
?setTimeout@HbPopupBase@@QAEXW4DefaultTimeout@1@@Z @ 836 NONAME ABSENT ; void HbPopupBase::setTimeout(enum HbPopupBase::DefaultTimeout)
??1HbGraphicsScene@@UAE@XZ @ 837 NONAME ; HbGraphicsScene::~HbGraphicsScene(void)
??0HbInteractionListener@@QAE@PAVHbInteractionManager@@@Z @ 838 NONAME ABSENT ; HbInteractionListener::HbInteractionListener(class HbInteractionManager *)
- ?setScreenOrientation@HbInputSettingProxy@@QAEXW4Orientation@Qt@@@Z @ 839 NONAME ; void HbInputSettingProxy::setScreenOrientation(enum Qt::Orientation)
+ ?setScreenOrientation@HbInputSettingProxy@@QAEXW4Orientation@Qt@@@Z @ 839 NONAME ABSENT ; void HbInputSettingProxy::setScreenOrientation(enum Qt::Orientation)
?attachmentValue@Declaration@HbCss@@QBE?AW4Attachment@2@XZ @ 840 NONAME ABSENT ; enum HbCss::Attachment HbCss::Declaration::attachmentValue(void) const
?trUtf8@HbDeviceDialogServer@@SA?AVQString@@PBD0H@Z @ 841 NONAME ; class QString HbDeviceDialogServer::trUtf8(char const *, char const *, int)
?tr@HbSignalIndicator@@SA?AVQString@@PBD0H@Z @ 842 NONAME ; class QString HbSignalIndicator::tr(char const *, char const *, int)
@@ -887,7 +887,7 @@
?getStaticMetaObject@HbSoftKey@@SAABUQMetaObject@@XZ @ 886 NONAME ABSENT ; struct QMetaObject const & HbSoftKey::getStaticMetaObject(void)
??1HbStyle@@UAE@XZ @ 887 NONAME ; HbStyle::~HbStyle(void)
?setEnabled@HbListWidgetItem@@QAEX_N@Z @ 888 NONAME ABSENT ; void HbListWidgetItem::setEnabled(bool)
- ?setPluginBaseId@HbWidget@@IAEXH@Z @ 889 NONAME ; void HbWidget::setPluginBaseId(int)
+ ?setPluginBaseId@HbWidget@@IAEXH@Z @ 889 NONAME ABSENT ; void HbWidget::setPluginBaseId(int)
?setSelectionModel@HbAbstractItemView@@QAEXPAVQItemSelectionModel@@@Z @ 890 NONAME ABSENT ; void HbAbstractItemView::setSelectionModel(class QItemSelectionModel *)
??0HbWidgetParams@@QAE@XZ @ 891 NONAME ABSENT ; HbWidgetParams::HbWidgetParams(void)
??1HbToolButton@@UAE@XZ @ 892 NONAME ; HbToolButton::~HbToolButton(void)
@@ -1189,7 +1189,7 @@
?globalDigitType@HbInputSettingProxy@@QBE?AW4HbInputDigitType@@XZ @ 1188 NONAME ; enum HbInputDigitType HbInputSettingProxy::globalDigitType(void) const
?findByButtonCode@HbInputCustomButtonBank@@QAEPAVHbInputCustomButton@@H@Z @ 1189 NONAME ABSENT ; class HbInputCustomButton * HbInputCustomButtonBank::findByButtonCode(int)
?paint@HbSignalIndicator@@UAEXPAVQPainter@@PBVQStyleOptionGraphicsItem@@PAVQWidget@@@Z @ 1190 NONAME ABSENT ; void HbSignalIndicator::paint(class QPainter *, class QStyleOptionGraphicsItem const *, class QWidget *)
- ?primitive@HbToolButton@@UBEPAVQGraphicsItem@@W4Primitive@HbStyle@@@Z @ 1191 NONAME ; class QGraphicsItem * HbToolButton::primitive(enum HbStyle::Primitive) const
+ ?primitive@HbToolButton@@UBEPAVQGraphicsItem@@W4Primitive@HbStyle@@@Z @ 1191 NONAME ABSENT ; class QGraphicsItem * HbToolButton::primitive(enum HbStyle::Primitive) const
?trUtf8@HbInteractionManager@@SA?AVQString@@PBD0@Z @ 1192 NONAME ABSENT ; class QString HbInteractionManager::trUtf8(char const *, char const *)
?setFrameType@HbFrameDrawer@@QAEXW4FrameType@1@@Z @ 1193 NONAME ; void HbFrameDrawer::setFrameType(enum HbFrameDrawer::FrameType)
??0HbTextItem@@QAE@PAVQGraphicsItem@@@Z @ 1194 NONAME ; HbTextItem::HbTextItem(class QGraphicsItem *)
@@ -1259,7 +1259,7 @@
?getStaticMetaObject@HbSignalIndicator@@SAABUQMetaObject@@XZ @ 1258 NONAME ; struct QMetaObject const & HbSignalIndicator::getStaticMetaObject(void)
??1ImportRule@HbCss@@QAE@XZ @ 1259 NONAME ; HbCss::ImportRule::~ImportRule(void)
?released@HbListWidget@@IAEXPAVHbListWidgetItem@@@Z @ 1260 NONAME ABSENT ; void HbListWidget::released(class HbListWidgetItem *)
- ?activeTouchKeyboard@HbInputSettingProxy@@QBE?AV?$QFlags@W4HbKeyboardTypeFlag@@@@XZ @ 1261 NONAME ; class QFlags<enum HbKeyboardTypeFlag> HbInputSettingProxy::activeTouchKeyboard(void) const
+ ?activeTouchKeyboard@HbInputSettingProxy@@QBE?AV?$QFlags@W4HbKeyboardTypeFlag@@@@XZ @ 1261 NONAME ABSENT ; class QFlags<enum HbKeyboardTypeFlag> HbInputSettingProxy::activeTouchKeyboard(void) const
?trUtf8@HbInputSettingProxy@@SA?AVQString@@PBD0@Z @ 1262 NONAME ; class QString HbInputSettingProxy::trUtf8(char const *, char const *)
?trUtf8@HbAction@@SA?AVQString@@PBD0H@Z @ 1263 NONAME ; class QString HbAction::trUtf8(char const *, char const *, int)
?tr@HbFocusObjectWidget@@SA?AVQString@@PBD0@Z @ 1264 NONAME ABSENT ; class QString HbFocusObjectWidget::tr(char const *, char const *)
@@ -1476,7 +1476,7 @@
??0HbStyleOptionDecorator@@QAE@ABV0@@Z @ 1475 NONAME ABSENT ; HbStyleOptionDecorator::HbStyleOptionDecorator(class HbStyleOptionDecorator const &)
?tr@HbAbstractViewItem@@SA?AVQString@@PBD0H@Z @ 1476 NONAME ABSENT ; class QString HbAbstractViewItem::tr(char const *, char const *, int)
?indexOf@HbTreeLayout@@QBEHPAVQGraphicsLayoutItem@@@Z @ 1477 NONAME ABSENT ; int HbTreeLayout::indexOf(class QGraphicsLayoutItem *) const
- ?setActiveTouchKeyboard@HbInputSettingProxy@@QAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1478 NONAME ; void HbInputSettingProxy::setActiveTouchKeyboard(class QFlags<enum HbKeyboardTypeFlag>)
+ ?setActiveTouchKeyboard@HbInputSettingProxy@@QAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1478 NONAME ABSENT ; void HbInputSettingProxy::setActiveTouchKeyboard(class QFlags<enum HbKeyboardTypeFlag>)
??1HbKeyMapFactory@@AAE@XZ @ 1479 NONAME ABSENT ; HbKeyMapFactory::~HbKeyMapFactory(void)
??0HbExtraDictionaryCollection@@QAE@XZ @ 1480 NONAME ; HbExtraDictionaryCollection::HbExtraDictionaryCollection(void)
?hasVowelSequences@HbKeyMapData@@UBE_NV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1481 NONAME ABSENT ; bool HbKeyMapData::hasVowelSequences(class QFlags<enum HbKeyboardTypeFlag>) const
@@ -1628,8 +1628,8 @@
?d_func@HbView@@AAEPAVHbViewPrivate@@XZ @ 1627 NONAME ; class HbViewPrivate * HbView::d_func(void)
??1HbVkbHost@@UAE@XZ @ 1628 NONAME ; HbVkbHost::~HbVkbHost(void)
?activeMethod@HbInputModeCache@@QBEPAVHbInputMethod@@XZ @ 1629 NONAME ; class HbInputMethod * HbInputModeCache::activeMethod(void) const
- ?notifyScreenOrientationChange@HbInputSettingProxy@@QAEXXZ @ 1630 NONAME ; void HbInputSettingProxy::notifyScreenOrientationChange(void)
- ?updatePrimitive@HbStyle@@UBEXPAVQGraphicsItem@@W4Primitive@1@PBVQStyleOption@@@Z @ 1631 NONAME ; void HbStyle::updatePrimitive(class QGraphicsItem *, enum HbStyle::Primitive, class QStyleOption const *) const
+ ?notifyScreenOrientationChange@HbInputSettingProxy@@QAEXXZ @ 1630 NONAME ABSENT ; void HbInputSettingProxy::notifyScreenOrientationChange(void)
+ ?updatePrimitive@HbStyle@@UBEXPAVQGraphicsItem@@W4Primitive@1@PBVQStyleOption@@@Z @ 1631 NONAME ABSENT ; void HbStyle::updatePrimitive(class QGraphicsItem *, enum HbStyle::Primitive, class QStyleOption const *) const
?d_func@HbToolBarExtension@@AAEPAVHbToolBarExtensionPrivate@@XZ @ 1632 NONAME ; class HbToolBarExtensionPrivate * HbToolBarExtension::d_func(void)
??1HbListWidgetViewItemPrivate@@UAE@XZ @ 1633 NONAME ABSENT ; HbListWidgetViewItemPrivate::~HbListWidgetViewItemPrivate(void)
??0HbStyleOptionToolBarExtension@@QAE@XZ @ 1634 NONAME ABSENT ; HbStyleOptionToolBarExtension::HbStyleOptionToolBarExtension(void)
@@ -1687,7 +1687,7 @@
?tr@HbInteractionManager@@SA?AVQString@@PBD0H@Z @ 1686 NONAME ABSENT ; class QString HbInteractionManager::tr(char const *, char const *, int)
?globalInputLanguageChanged@HbInputSettingProxy@@IAEXABVHbInputLanguage@@@Z @ 1687 NONAME ; void HbInputSettingProxy::globalInputLanguageChanged(class HbInputLanguage const &)
?qt_metacast@HbDeviceDialog@@UAEPAXPBD@Z @ 1688 NONAME ; void * HbDeviceDialog::qt_metacast(char const *)
- ?pluginBaseId@HbWidget@@QBEHXZ @ 1689 NONAME ; int HbWidget::pluginBaseId(void) const
+ ?pluginBaseId@HbWidget@@QBEHXZ @ 1689 NONAME ABSENT ; int HbWidget::pluginBaseId(void) const
?symbol@Parser@HbCss@@QBEABUSymbol@2@XZ @ 1690 NONAME ; struct HbCss::Symbol const & HbCss::Parser::symbol(void) const
?qt_metacall@HbListWidgetViewItem@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1691 NONAME ABSENT ; int HbListWidgetViewItem::qt_metacall(enum QMetaObject::Call, int, void * *)
?qt_metacall@HbGesture@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1692 NONAME ABSENT ; int HbGesture::qt_metacall(enum QMetaObject::Call, int, void * *)
@@ -1695,7 +1695,7 @@
?setTextCase@HbEditorInterface@@QAEXH@Z @ 1694 NONAME ABSENT ; void HbEditorInterface::setTextCase(int)
?negativeCurrencyFormat@HbExtendedLocale@@QBE?AW4NegativeCurrencyFormat@1@XZ @ 1695 NONAME ; enum HbExtendedLocale::NegativeCurrencyFormat HbExtendedLocale::negativeCurrencyFormat(void) const
?dataChanged@HbIndicatorInterface@@IAEXXZ @ 1696 NONAME ; void HbIndicatorInterface::dataChanged(void)
- ?activeHwKeyboardChanged@HbInputSettingProxy@@IAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1697 NONAME ; void HbInputSettingProxy::activeHwKeyboardChanged(class QFlags<enum HbKeyboardTypeFlag>)
+ ?activeHwKeyboardChanged@HbInputSettingProxy@@IAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1697 NONAME ABSENT ; void HbInputSettingProxy::activeHwKeyboardChanged(class QFlags<enum HbKeyboardTypeFlag>)
?isLatinAlphabetLanguage@HbInputLanguage@@QBE_NXZ @ 1698 NONAME ; bool HbInputLanguage::isLatinAlphabetLanguage(void) const
?error@HbDeviceDialog@@QBEHXZ @ 1699 NONAME ; int HbDeviceDialog::error(void) const
??0HbStyleOptionGridViewItem@@QAE@XZ @ 1700 NONAME ; HbStyleOptionGridViewItem::HbStyleOptionGridViewItem(void)
@@ -1793,7 +1793,7 @@
?qt_metacall@HbSoftKey@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1792 NONAME ABSENT ; int HbSoftKey::qt_metacall(enum QMetaObject::Call, int, void * *)
?parseSelector@Parser@HbCss@@QAE_NPAUSelector@2@@Z @ 1793 NONAME ; bool HbCss::Parser::parseSelector(struct HbCss::Selector *)
??1HbXmlLoaderAbstractActions@@UAE@XZ @ 1794 NONAME ; HbXmlLoaderAbstractActions::~HbXmlLoaderAbstractActions(void)
- ?setActiveHwKeyboard@HbInputSettingProxy@@QAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1795 NONAME ; void HbInputSettingProxy::setActiveHwKeyboard(class QFlags<enum HbKeyboardTypeFlag>)
+ ?setActiveHwKeyboard@HbInputSettingProxy@@QAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 1795 NONAME ABSENT ; void HbInputSettingProxy::setActiveHwKeyboard(class QFlags<enum HbKeyboardTypeFlag>)
?layoutDirectionChangeFinished@HbLayoutDirectionNotifier@@IAEXXZ @ 1796 NONAME ; void HbLayoutDirectionNotifier::layoutDirectionChangeFinished(void)
?addAction@HbToolBar@@QAEPAVHbAction@@ABVHbIcon@@ABVQString@@@Z @ 1797 NONAME ; class HbAction * HbToolBar::addAction(class HbIcon const &, class QString const &)
?setFilter@HbEditorInterface@@QAEXPAVHbInputFilter@@@Z @ 1798 NONAME ; void HbEditorInterface::setFilter(class HbInputFilter *)
@@ -2231,7 +2231,7 @@
?primaryAction@HbPopup@@QBEPAVHbAction@@XZ @ 2230 NONAME ABSENT ; class HbAction * HbPopup::primaryAction(void) const
?getStaticMetaObject@HbView@@SAABUQMetaObject@@XZ @ 2231 NONAME ; struct QMetaObject const & HbView::getStaticMetaObject(void)
?qt_metacast@HbInteractionListener@@UAEPAXPBD@Z @ 2232 NONAME ABSENT ; void * HbInteractionListener::qt_metacast(char const *)
- ?orientationChanged@HbInputSettingProxy@@IAEXW4Orientation@Qt@@@Z @ 2233 NONAME ; void HbInputSettingProxy::orientationChanged(enum Qt::Orientation)
+ ?orientationChanged@HbInputSettingProxy@@IAEXW4Orientation@Qt@@@Z @ 2233 NONAME ABSENT ; void HbInputSettingProxy::orientationChanged(enum Qt::Orientation)
?setBackground@HbListWidgetItem@@QAEXABVQVariant@@@Z @ 2234 NONAME ABSENT ; void HbListWidgetItem::setBackground(class QVariant const &)
??0HbSoftKey@@IAE@AAVHbSoftKeyPrivate@@W4SoftKeyId@Hb@@PAVQGraphicsItem@@@Z @ 2235 NONAME ABSENT ; HbSoftKey::HbSoftKey(class HbSoftKeyPrivate &, enum Hb::SoftKeyId, class QGraphicsItem *)
?removeAnchor@HbAnchorLayout@@QAEXPAVQGraphicsLayoutItem@@W4Edge@Hb@@01@Z @ 2236 NONAME ABSENT ; void HbAnchorLayout::removeAnchor(class QGraphicsLayoutItem *, enum Hb::Edge, class QGraphicsLayoutItem *, enum Hb::Edge)
@@ -2369,6 +2369,7 @@
?setAspectRatioMode@HbLabel@@QAEXW4AspectRatioMode@Qt@@@Z @ 2368 NONAME ABSENT ; void HbLabel::setAspectRatioMode(enum Qt::AspectRatioMode)
?predictiveInputStatus@HbInputSettingProxy@@QBEHXZ @ 2369 NONAME ABSENT ; int HbInputSettingProxy::predictiveInputStatus(void) const
?tr@HbListModel@@SA?AVQString@@PBD0H@Z @ 2370 NONAME ABSENT ; class QString HbListModel::tr(char const *, char const *, int)
+
?q_func@HbPopupPrivate@@ABEPBVHbPopup@@XZ @ 2371 NONAME ; class HbPopup const * HbPopupPrivate::q_func(void) const
?setIndentation@HbTreeLayout@@QAEXM@Z @ 2372 NONAME ABSENT ; void HbTreeLayout::setIndentation(float)
?tr@HbInputContextProxy@@SA?AVQString@@PBD0@Z @ 2373 NONAME ; class QString HbInputContextProxy::tr(char const *, char const *)
@@ -3182,7 +3183,7 @@
??_EHbUrlFilter@@UAE@I@Z @ 3181 NONAME ; HbUrlFilter::~HbUrlFilter(unsigned int)
?focusObjectDestroyed@HbInputMethod@@QAEXPBVHbInputFocusObject@@@Z @ 3182 NONAME ABSENT ; void HbInputMethod::focusObjectDestroyed(class HbInputFocusObject const *)
?setId@HbExtraUserDictionary@@QAEXH@Z @ 3183 NONAME ; void HbExtraUserDictionary::setId(int)
- ?activeHwKeyboard@HbInputSettingProxy@@QBE?AV?$QFlags@W4HbKeyboardTypeFlag@@@@XZ @ 3184 NONAME ; class QFlags<enum HbKeyboardTypeFlag> HbInputSettingProxy::activeHwKeyboard(void) const
+ ?activeHwKeyboard@HbInputSettingProxy@@QBE?AV?$QFlags@W4HbKeyboardTypeFlag@@@@XZ @ 3184 NONAME ABSENT ; class QFlags<enum HbKeyboardTypeFlag> HbInputSettingProxy::activeHwKeyboard(void) const
??0HbListModel@@QAE@PAVQObject@@@Z @ 3185 NONAME ABSENT ; HbListModel::HbListModel(class QObject *)
?dismissPolicy@HbPopupBase@@QBE?AW4DismissPolicy@1@XZ @ 3186 NONAME ABSENT ; enum HbPopupBase::DismissPolicy HbPopupBase::dismissPolicy(void) const
?currentIndex@HbAbstractItemView@@QBE?AVQModelIndex@@XZ @ 3187 NONAME ABSENT ; class QModelIndex HbAbstractItemView::currentIndex(void) const
@@ -3270,7 +3271,7 @@
??1HbStyleOptionSettingForm@@QAE@XZ @ 3269 NONAME ABSENT ; HbStyleOptionSettingForm::~HbStyleOptionSettingForm(void)
?trUtf8@HbAbstractButton@@SA?AVQString@@PBD0@Z @ 3270 NONAME ; class QString HbAbstractButton::trUtf8(char const *, char const *)
?tr@HbToolBarExtension@@SA?AVQString@@PBD0@Z @ 3271 NONAME ; class QString HbToolBarExtension::tr(char const *, char const *)
- ?createPrimitive@HbStyle@@UBEPAVQGraphicsItem@@W4Primitive@1@PAV2@@Z @ 3272 NONAME ; class QGraphicsItem * HbStyle::createPrimitive(enum HbStyle::Primitive, class QGraphicsItem *) const
+ ?createPrimitive@HbStyle@@UBEPAVQGraphicsItem@@W4Primitive@1@PAV2@@Z @ 3272 NONAME ABSENT ; class QGraphicsItem * HbStyle::createPrimitive(enum HbStyle::Primitive, class QGraphicsItem *) const
?setText@HbListWidgetItem@@QAEXABVQString@@HW4ListContentType@1@W4ContentVisibility@1@@Z @ 3273 NONAME ABSENT ; void HbListWidgetItem::setText(class QString const &, int, enum HbListWidgetItem::ListContentType, enum HbListWidgetItem::ContentVisibility)
?d_func@HbStackedWidget@@ABEPBVHbStackedWidgetPrivate@@XZ @ 3274 NONAME ; class HbStackedWidgetPrivate const * HbStackedWidget::d_func(void) const
?type@HbAbstractButton@@UBEHXZ @ 3275 NONAME ; int HbAbstractButton::type(void) const
@@ -3924,7 +3925,7 @@
?tr@HbTitleBarHandle@@SA?AVQString@@PBD0H@Z @ 3923 NONAME ; class QString HbTitleBarHandle::tr(char const *, char const *, int)
?changeContentGeometry@HbTitleBar@@QAEXXZ @ 3924 NONAME ABSENT ; void HbTitleBar::changeContentGeometry(void)
??0HbTitleBarHandle@@QAE@PAVQGraphicsItem@@@Z @ 3925 NONAME ; HbTitleBarHandle::HbTitleBarHandle(class QGraphicsItem *)
- ?initializeOrientation@HbInputSettingProxy@@QAEXW4Orientation@Qt@@@Z @ 3926 NONAME ; void HbInputSettingProxy::initializeOrientation(enum Qt::Orientation)
+ ?initializeOrientation@HbInputSettingProxy@@QAEXW4Orientation@Qt@@@Z @ 3926 NONAME ABSENT ; void HbInputSettingProxy::initializeOrientation(enum Qt::Orientation)
?rightBoundary@HbScrollAreaPrivate@@UAEMXZ @ 3927 NONAME ; float HbScrollAreaPrivate::rightBoundary(void)
??_EHbLinearLayoutHelper@@UAE@I@Z @ 3928 NONAME ABSENT ; HbLinearLayoutHelper::~HbLinearLayoutHelper(unsigned int)
??_EHbGridLayoutHelper@@UAE@I@Z @ 3929 NONAME ABSENT ; HbGridLayoutHelper::~HbGridLayoutHelper(unsigned int)
@@ -4081,7 +4082,7 @@
?setTextWrapping@HbRichTextItem@@QAEXW4TextWrapping@Hb@@@Z @ 4080 NONAME ; void HbRichTextItem::setTextWrapping(enum Hb::TextWrapping)
?setTextVisible@HbRichTextItem@@QAEX_N@Z @ 4081 NONAME ; void HbRichTextItem::setTextVisible(bool)
?keyboard@HbKeymap@@QBEPBUHbKeyboardMap@@V?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 4082 NONAME ; struct HbKeyboardMap const * HbKeymap::keyboard(class QFlags<enum HbKeyboardTypeFlag>) const
- ?activeKeyboardChanged@HbInputSettingProxy@@IAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 4083 NONAME ; void HbInputSettingProxy::activeKeyboardChanged(class QFlags<enum HbKeyboardTypeFlag>)
+ ?activeKeyboardChanged@HbInputSettingProxy@@IAEXV?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 4083 NONAME ABSENT ; void HbInputSettingProxy::activeKeyboardChanged(class QFlags<enum HbKeyboardTypeFlag>)
?receivesInteractionsChanged@HbFeedbackEngine@@IAEX_N@Z @ 4084 NONAME ; void HbFeedbackEngine::receivesInteractionsChanged(bool)
??_EHbWidgetLoaderSyntax@@UAE@I@Z @ 4085 NONAME ABSENT ; HbWidgetLoaderSyntax::~HbWidgetLoaderSyntax(unsigned int)
?networkSignalStrengthChanged@HbSystemNetworkInfo@@IAEXW4NetworkMode@1@H@Z @ 4086 NONAME ABSENT ; void HbSystemNetworkInfo::networkSignalStrengthChanged(enum HbSystemNetworkInfo::NetworkMode, int)
@@ -4313,7 +4314,7 @@
?getStaticMetaObject@HbFeedback@@SAABUQMetaObject@@XZ @ 4312 NONAME ; struct QMetaObject const & HbFeedback::getStaticMetaObject(void)
?staticMetaObject@HbFeedbackEngine@@2UQMetaObject@@B @ 4313 NONAME ; struct QMetaObject const HbFeedbackEngine::staticMetaObject
?trUtf8@HbFeedbackManager@@SA?AVQString@@PBD0H@Z @ 4314 NONAME ; class QString HbFeedbackManager::trUtf8(char const *, char const *, int)
- ?activeKeyboard@HbInputSettingProxy@@QBE?AV?$QFlags@W4HbKeyboardTypeFlag@@@@XZ @ 4315 NONAME ; class QFlags<enum HbKeyboardTypeFlag> HbInputSettingProxy::activeKeyboard(void) const
+ ?activeKeyboard@HbInputSettingProxy@@QBE?AV?$QFlags@W4HbKeyboardTypeFlag@@@@XZ @ 4315 NONAME ABSENT ; class QFlags<enum HbKeyboardTypeFlag> HbInputSettingProxy::activeKeyboard(void) const
?editorRootState@HbInputMethod@@QBEXAAVHbInputState@@@Z @ 4316 NONAME ; void HbInputMethod::editorRootState(class HbInputState &) const
??1HbStyleOptionProgressDialog@@QAE@XZ @ 4317 NONAME ; HbStyleOptionProgressDialog::~HbStyleOptionProgressDialog(void)
?homeMobileNetworkCode@HbSystemNetworkInfo@@QBE?AVQString@@XZ @ 4318 NONAME ABSENT ; class QString HbSystemNetworkInfo::homeMobileNetworkCode(void) const
@@ -4435,7 +4436,7 @@
?d_func@HbOogmWatcher@@ABEPBVHbOogmWatcherPrivate@@XZ @ 4434 NONAME ; class HbOogmWatcherPrivate const * HbOogmWatcher::d_func(void) const
?setTextCase@HbEditorInterface@@QAEXW4HbTextCase@@@Z @ 4435 NONAME ; void HbEditorInterface::setTextCase(enum HbTextCase)
?inputStateFromEditor@HbInputMethodPrivate@@QAEXAAVHbInputState@@@Z @ 4436 NONAME ; void HbInputMethodPrivate::inputStateFromEditor(class HbInputState &)
- ?activeCustomInputMethod@HbInputSettingProxy@@QBE?AVHbInputMethodDescriptor@@XZ @ 4437 NONAME ; class HbInputMethodDescriptor HbInputSettingProxy::activeCustomInputMethod(void) const
+ ?activeCustomInputMethod@HbInputSettingProxy@@QBE?AVHbInputMethodDescriptor@@XZ @ 4437 NONAME ABSENT ; class HbInputMethodDescriptor HbInputSettingProxy::activeCustomInputMethod(void) const
?addDefinition@HbIconAnimationManagerPrivate@@QAEXABVQString@@ABVHbIconAnimationDefinition@@@Z @ 4438 NONAME ; void HbIconAnimationManagerPrivate::addDefinition(class QString const &, class HbIconAnimationDefinition const &)
?stateAllowedInEditor@HbInputMethodPrivate@@QAE_NABVHbInputState@@@Z @ 4439 NONAME ; bool HbInputMethodPrivate::stateAllowedInEditor(class HbInputState const &)
?HandleGainingForeground@HbForegroundWatcher@@UAEXXZ @ 4440 NONAME ABSENT ; void HbForegroundWatcher::HandleGainingForeground(void)
@@ -4478,7 +4479,7 @@
?addFilePath@HbWidgetStyleLoader@@QAE_NABVQString@@W4Concern@HbLayeredStyleLoader@@W4LayerPriority@4@@Z @ 4477 NONAME ; bool HbWidgetStyleLoader::addFilePath(class QString const &, enum HbLayeredStyleLoader::Concern, enum HbLayeredStyleLoader::LayerPriority)
?staticMetaObject@HbForegroundWatcher@@2UQMetaObject@@B @ 4478 NONAME ; struct QMetaObject const HbForegroundWatcher::staticMetaObject
?qt_metacall@HbTextMeasurementUtility@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 4479 NONAME ABSENT ; int HbTextMeasurementUtility::qt_metacall(enum QMetaObject::Call, int, void * *)
- ?setActiveCustomInputMethod@HbInputSettingProxy@@QAEXABVHbInputMethodDescriptor@@@Z @ 4480 NONAME ; void HbInputSettingProxy::setActiveCustomInputMethod(class HbInputMethodDescriptor const &)
+ ?setActiveCustomInputMethod@HbInputSettingProxy@@QAEXABVHbInputMethodDescriptor@@@Z @ 4480 NONAME ABSENT ; void HbInputSettingProxy::setActiveCustomInputMethod(class HbInputMethodDescriptor const &)
?removeDefinition@HbIconAnimationManagerPrivate@@QAEXABVQString@@@Z @ 4481 NONAME ; void HbIconAnimationManagerPrivate::removeDefinition(class QString const &)
?findStateLanguage@HbInputMethodPrivate@@QBE?AVHbInputLanguage@@XZ @ 4482 NONAME ; class HbInputLanguage HbInputMethodPrivate::findStateLanguage(void) const
?displayName@HbInputMethodDescriptor@@QBE?AVQString@@XZ @ 4483 NONAME ; class QString HbInputMethodDescriptor::displayName(void) const
@@ -4513,7 +4514,7 @@
?tr@HbForegroundWatcher@@SA?AVQString@@PBD0@Z @ 4512 NONAME ; class QString HbForegroundWatcher::tr(char const *, char const *)
??1HbTextMeasurementUtility@@UAE@XZ @ 4513 NONAME ; HbTextMeasurementUtility::~HbTextMeasurementUtility(void)
?transfer@HbInputMethodPrivate@@QAEXPAVHbInputMethod@@@Z @ 4514 NONAME ; void HbInputMethodPrivate::transfer(class HbInputMethod *)
- ?loadIcon@HbIconLoader@@QAEPAVHbIconImpl@@ABVQString@@W4IconDataType@1@W4Purpose@1@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@V?$QFlags@W4IconLoaderOption@HbIconLoader@@@@PAVHbIconAnimator@@ABVQColor@@@Z @ 4515 NONAME ; class HbIconImpl * HbIconLoader::loadIcon(class QString const &, enum HbIconLoader::IconDataType, enum HbIconLoader::Purpose, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, class QFlags<enum HbIconLoader::IconLoaderOption>, class HbIconAnimator *, class QColor const &)
+ ?loadIcon@HbIconLoader@@QAEPAVHbIconImpl@@ABVQString@@W4IconDataType@1@W4Purpose@1@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@V?$QFlags@W4IconLoaderOption@HbIconLoader@@@@PAVHbIconAnimator@@ABVQColor@@@Z @ 4515 NONAME ABSENT ; class HbIconImpl * HbIconLoader::loadIcon(class QString const &, enum HbIconLoader::IconDataType, enum HbIconLoader::Purpose, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, class QFlags<enum HbIconLoader::IconLoaderOption>, class HbIconAnimator *, class QColor const &)
?trUtf8@HbTextMeasurementUtility@@SA?AVQString@@PBD0H@Z @ 4516 NONAME ABSENT ; class QString HbTextMeasurementUtility::trUtf8(char const *, char const *, int)
?d_func@HbInputModeCache@@AAEPAVHbInputModeCachePrivate@@XZ @ 4517 NONAME ; class HbInputModeCachePrivate * HbInputModeCache::d_func(void)
?testApiProtectionFlag@HbWidgetBasePrivate@@QBE_NW4ApiCssProtectionFlags@1@@Z @ 4518 NONAME ; bool HbWidgetBasePrivate::testApiProtectionFlag(enum HbWidgetBasePrivate::ApiCssProtectionFlags) const
@@ -4572,7 +4573,7 @@
?setSmileyTheme@HbEditorInterface@@QAEXABVHbSmileyTheme@@@Z @ 4571 NONAME ; void HbEditorInterface::setSmileyTheme(class HbSmileyTheme const &)
?qt_metacall@HbForegroundWatcher@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 4572 NONAME ; int HbForegroundWatcher::qt_metacall(enum QMetaObject::Call, int, void * *)
?editorRootState@HbInputMethodPrivate@@QBEXAAVHbInputState@@@Z @ 4573 NONAME ; void HbInputMethodPrivate::editorRootState(class HbInputState &) const
- ?defaultInputMode@HbInputMethodPrivate@@QBE?AV?$QFlags@W4HbInputModeTypeFlag@@@@ABVHbInputLanguage@@@Z @ 4574 NONAME ; class QFlags<enum HbInputModeTypeFlag> HbInputMethodPrivate::defaultInputMode(class HbInputLanguage const &) const
+ ?defaultInputMode@HbInputMethodPrivate@@QBE?AV?$QFlags@W4HbInputModeTypeFlag@@@@ABVHbInputLanguage@@@Z @ 4574 NONAME ABSENT ; class QFlags<enum HbInputModeTypeFlag> HbInputMethodPrivate::defaultInputMode(class HbInputLanguage const &) const
?stateFromMode@HbInputMethodPrivate@@QAEXABVHbInputModeProperties@@AAVHbInputState@@@Z @ 4575 NONAME ABSENT ; void HbInputMethodPrivate::stateFromMode(class HbInputModeProperties const &, class HbInputState &)
??0HbSmileyTheme@@QAE@ABVQString@@@Z @ 4576 NONAME ; HbSmileyTheme::HbSmileyTheme(class QString const &)
?addDefinitionFile@HbIconAnimationManagerPrivate@@QAE_NABVQString@@@Z @ 4577 NONAME ; bool HbIconAnimationManagerPrivate::addDefinitionFile(class QString const &)
@@ -5103,7 +5104,7 @@
?performEffect@HbVgColorizeEffect@@MAEXPAVQPainter@@ABVQPointF@@ABVQVariant@@ABVQSize@@@Z @ 5102 NONAME ; void HbVgColorizeEffect::performEffect(class QPainter *, class QPointF const &, class QVariant const &, class QSize const &)
?metaObject@HbVgEffect@@UBEPBUQMetaObject@@XZ @ 5103 NONAME ; struct QMetaObject const * HbVgEffect::metaObject(void) const
?hasAlreadyInputFrameworkFocus@HbInputContextProxy@@ABE_NPAVHbInputMethod@@PAVQWidget@@@Z @ 5104 NONAME ABSENT ; bool HbInputContextProxy::hasAlreadyInputFrameworkFocus(class HbInputMethod *, class QWidget *) const
- ?deletePixmapIfLargerThan@HbIconSource@@QAEXH@Z @ 5105 NONAME ; void HbIconSource::deletePixmapIfLargerThan(int)
+ ?deletePixmapIfLargerThan@HbIconSource@@QAEXH@Z @ 5105 NONAME ABSENT ; void HbIconSource::deletePixmapIfLargerThan(int)
?hue@HbVgHslEffect@@QBEMXZ @ 5106 NONAME ; float HbVgHslEffect::hue(void) const
?Cancel@CHbDeviceDialogSymbian@@QAEXXZ @ 5107 NONAME ; void CHbDeviceDialogSymbian::Cancel(void)
?boundingRectFor@HbVgOutlineEffect@@UBE?AVQRectF@@ABV2@@Z @ 5108 NONAME ; class QRectF HbVgOutlineEffect::boundingRectFor(class QRectF const &) const
@@ -5193,7 +5194,7 @@
?staticMetaObject@HbVgBlurEffect@@2UQMetaObject@@B @ 5192 NONAME ; struct QMetaObject const HbVgBlurEffect::staticMetaObject
?d_func@HbVgReflectionEffect@@AAEPAVHbVgReflectionEffectPrivate@@XZ @ 5193 NONAME ; class HbVgReflectionEffectPrivate * HbVgReflectionEffect::d_func(void)
?loadPixmapIcon@HbIconLoader@@AAEXAAUHbIconLoadingParams@@ABVQString@@@Z @ 5194 NONAME ; void HbIconLoader::loadPixmapIcon(struct HbIconLoadingParams &, class QString const &)
- ?pixmap@HbIconSource@@QAEPAVQPixmap@@XZ @ 5195 NONAME ; class QPixmap * HbIconSource::pixmap(void)
+ ?pixmap@HbIconSource@@QAEPAVQPixmap@@XZ @ 5195 NONAME ABSENT ; class QPixmap * HbIconSource::pixmap(void)
?tr@HbVgHslEffect@@SA?AVQString@@PBD0@Z @ 5196 NONAME ; class QString HbVgHslEffect::tr(char const *, char const *)
?qt_metacast@HbVgHslEffect@@UAEPAXPBD@Z @ 5197 NONAME ; void * HbVgHslEffect::qt_metacast(char const *)
?tr@HbVgLightEffect@@SA?AVQString@@PBD0H@Z @ 5198 NONAME ABSENT ; class QString HbVgLightEffect::tr(char const *, char const *, int)
@@ -6241,7 +6242,7 @@
?effectsResourceFolder@HbThemeUtils@@2PBDB @ 6240 NONAME ; char const * const HbThemeUtils::effectsResourceFolder
?destroy@HbSplashScreen@@SAXXZ @ 6241 NONAME ; void HbSplashScreen::destroy(void)
?q_func@HbPanGesturePrivate@@QAEPAVHbPanGesture@@XZ @ 6242 NONAME ; class HbPanGesture * HbPanGesturePrivate::q_func(void)
- ?unLoadIcon@HbIconLoader@@QAEXPAVHbIconImpl@@_N@Z @ 6243 NONAME ; void HbIconLoader::unLoadIcon(class HbIconImpl *, bool)
+ ?unLoadIcon@HbIconLoader@@QAEXPAVHbIconImpl@@_N@Z @ 6243 NONAME ABSENT ; void HbIconLoader::unLoadIcon(class HbIconImpl *, bool)
?removeIconEngineInfo@HbIconLoader@@QAEXPAVHbIconEngine@@@Z @ 6244 NONAME ; void HbIconLoader::removeIconEngineInfo(class HbIconEngine *)
??0HbPinchGesture@@IAE@AAVHbPinchGesturePrivate@@PAVQObject@@@Z @ 6245 NONAME ; HbPinchGesture::HbPinchGesture(class HbPinchGesturePrivate &, class QObject *)
?tr@HbThemeSystemEffect@@SA?AVQString@@PBD0H@Z @ 6246 NONAME ; class QString HbThemeSystemEffect::tr(char const *, char const *, int)
@@ -6635,7 +6636,7 @@
?setGridLayoutRowHeights@HbXmlLoaderBinaryActions@@UAE_NHABUHbXmlLengthValue@@0000@Z @ 6634 NONAME ; bool HbXmlLoaderBinaryActions::setGridLayoutRowHeights(int, struct HbXmlLengthValue const &, struct HbXmlLengthValue const &, struct HbXmlLengthValue const &, struct HbXmlLengthValue const &, struct HbXmlLengthValue const &)
?addGridLayoutCell@HbXmlLoaderBinaryActions@@UAE_NABVQString@@HHPAH1PAV?$QFlags@W4AlignmentFlag@Qt@@@@@Z @ 6635 NONAME ; bool HbXmlLoaderBinaryActions::addGridLayoutCell(class QString const &, int, int, int *, int *, class QFlags<enum Qt::AlignmentFlag> *)
?processDocument@HbXmlLoaderBinarySyntax@@AAE_NABVQString@@@Z @ 6636 NONAME ; bool HbXmlLoaderBinarySyntax::processDocument(class QString const &)
- ?initStyleOption@HbToolButton@@IAEXPAVHbStyleOptionToolButton@@@Z @ 6637 NONAME ; void HbToolButton::initStyleOption(class HbStyleOptionToolButton *)
+ ?initStyleOption@HbToolButton@@IAEXPAVHbStyleOptionToolButton@@@Z @ 6637 NONAME ABSENT ; void HbToolButton::initStyleOption(class HbStyleOptionToolButton *)
?parseSetToolTip@HbXmlLoaderBinarySyntax@@AAE_NXZ @ 6638 NONAME ; bool HbXmlLoaderBinarySyntax::parseSetToolTip(void)
?setSizeHint@HbXmlLoaderAbstractActions@@UAE_NW4SizeHint@Qt@@ABUHbXmlLengthValue@@1_N@Z @ 6639 NONAME ; bool HbXmlLoaderAbstractActions::setSizeHint(enum Qt::SizeHint, struct HbXmlLengthValue const &, struct HbXmlLengthValue const &, bool)
??1HbXmlVariable@@QAE@XZ @ 6640 NONAME ; HbXmlVariable::~HbXmlVariable(void)
@@ -7626,16 +7627,16 @@
?unLoadMultiIcon@HbThemeClient@@QAEXABVQStringList@@ABV?$QVector@VQSizeF@@@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NABVQColor@@W4HbRenderingMode@@@Z @ 7625 NONAME ; void HbThemeClient::unLoadMultiIcon(class QStringList const &, class QVector<class QSizeF> const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QColor const &, enum HbRenderingMode)
??0HbNvgIconImpl@@QAE@ABUHbSharedIconInfo@@ABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NW4HbRenderingMode@@@Z @ 7626 NONAME ; HbNvgIconImpl::HbNvgIconImpl(struct HbSharedIconInfo const &, class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, enum HbRenderingMode)
?getMultiPartIconInfo@HbThemeClient@@QAE?AUHbSharedIconInfo@@ABVQStringList@@ABUHbMultiPartSizeData@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7627 NONAME ; struct HbSharedIconInfo HbThemeClient::getMultiPartIconInfo(class QStringList const &, struct HbMultiPartSizeData const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
- ?getSharedIconInfo@HbThemeClientPrivate@@QAE?AUHbSharedIconInfo@@ABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7628 NONAME ; struct HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
+ ?getSharedIconInfo@HbThemeClientPrivate@@QAE?AUHbSharedIconInfo@@ABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7628 NONAME ABSENT ; struct HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
?getMultiIconInfo@HbThemeClientPrivate@@QAE?AUHbSharedIconInfoList@@ABVQStringList@@ABV?$QVector@VQSizeF@@@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7629 NONAME ; struct HbSharedIconInfoList HbThemeClientPrivate::getMultiIconInfo(class QStringList const &, class QVector<class QSizeF> const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
- ?unloadIcon@HbThemeClientPrivate@@QAEXABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NABVQColor@@W4HbRenderingMode@@@Z @ 7630 NONAME ; void HbThemeClientPrivate::unloadIcon(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QColor const &, enum HbRenderingMode)
+ ?unloadIcon@HbThemeClientPrivate@@QAEXABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NABVQColor@@W4HbRenderingMode@@@Z @ 7630 NONAME ABSENT ; void HbThemeClientPrivate::unloadIcon(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QColor const &, enum HbRenderingMode)
?unLoadMultiIcon@HbThemeClientPrivate@@QAEXABVQStringList@@ABV?$QVector@VQSizeF@@@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NABVQColor@@W4HbRenderingMode@@@Z @ 7631 NONAME ; void HbThemeClientPrivate::unLoadMultiIcon(class QStringList const &, class QVector<class QSizeF> const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QColor const &, enum HbRenderingMode)
?getMultiIconInfo@HbThemeClient@@QAE?AUHbSharedIconInfoList@@ABVQStringList@@ABV?$QVector@VQSizeF@@@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7632 NONAME ; struct HbSharedIconInfoList HbThemeClient::getMultiIconInfo(class QStringList const &, class QVector<class QSizeF> const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
- ?getSharedIconInfo@HbThemeClient@@QAE?AUHbSharedIconInfo@@ABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7633 NONAME ; struct HbSharedIconInfo HbThemeClient::getSharedIconInfo(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
+ ?getSharedIconInfo@HbThemeClient@@QAE?AUHbSharedIconInfo@@ABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@@Z @ 7633 NONAME ABSENT ; struct HbSharedIconInfo HbThemeClient::getSharedIconInfo(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode)
??0HbPixmapIconImpl@@QAE@UHbSharedIconInfo@@AAVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NW4HbRenderingMode@@@Z @ 7634 NONAME ; HbPixmapIconImpl::HbPixmapIconImpl(struct HbSharedIconInfo, class QString &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, enum HbRenderingMode)
?switchRenderingMode@HbThemeClient@@QAE_NW4HbRenderingMode@@@Z @ 7635 NONAME ; bool HbThemeClient::switchRenderingMode(enum HbRenderingMode)
?updateRenderingMode@HbIconLoader@@QAEXW4Type@QPaintEngine@@@Z @ 7636 NONAME ; void HbIconLoader::updateRenderingMode(enum QPaintEngine::Type)
- ?unloadIcon@HbThemeClient@@QAEXABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NABVQColor@@W4HbRenderingMode@@@Z @ 7637 NONAME ; void HbThemeClient::unloadIcon(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QColor const &, enum HbRenderingMode)
+ ?unloadIcon@HbThemeClient@@QAEXABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NABVQColor@@W4HbRenderingMode@@@Z @ 7637 NONAME ABSENT ; void HbThemeClient::unloadIcon(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QColor const &, enum HbRenderingMode)
?switchRenderingMode@HbIconLoader@@QAEXW4HbRenderingMode@@@Z @ 7638 NONAME ; void HbIconLoader::switchRenderingMode(enum HbRenderingMode)
?hash@HbThemeIndex@@SAIABVQString@@@Z @ 7639 NONAME ; unsigned int HbThemeIndex::hash(class QString const &)
?getItemData@HbThemeIndex@@QAEPBUHbThemeIndexItemData@@ABVQString@@@Z @ 7640 NONAME ; struct HbThemeIndexItemData const * HbThemeIndex::getItemData(class QString const &)
@@ -7731,7 +7732,7 @@
?preferredInputMethodCustomData@HbInputSettingProxy@@QBE?AVQByteArray@@W4Orientation@Qt@@@Z @ 7730 NONAME ; class QByteArray HbInputSettingProxy::preferredInputMethodCustomData(enum Qt::Orientation) const
?setPreferredInputMethod@HbInputSettingProxy@@QAEXW4Orientation@Qt@@ABVHbInputMethodDescriptor@@ABVQByteArray@@@Z @ 7731 NONAME ; void HbInputSettingProxy::setPreferredInputMethod(enum Qt::Orientation, class HbInputMethodDescriptor const &, class QByteArray const &)
?descriptor@HbInputMethod@@IBE?AVHbInputMethodDescriptor@@XZ @ 7732 NONAME ; class HbInputMethodDescriptor HbInputMethod::descriptor(void) const
- ?preferredInputMethod@HbInputSettingProxy@@QBE?AVHbInputMethodDescriptor@@XZ @ 7733 NONAME ; class HbInputMethodDescriptor HbInputSettingProxy::preferredInputMethod(void) const
+ ?preferredInputMethod@HbInputSettingProxy@@QBE?AVHbInputMethodDescriptor@@XZ @ 7733 NONAME ABSENT ; class HbInputMethodDescriptor HbInputSettingProxy::preferredInputMethod(void) const
?descriptor@HbInputModeCache@@QBE?AVHbInputMethodDescriptor@@PBVHbInputMethod@@@Z @ 7734 NONAME ; class HbInputMethodDescriptor HbInputModeCache::descriptor(class HbInputMethod const *) const
?acceptsState@HbInputModeCache@@QBE_NPBVHbInputMethod@@ABVHbInputState@@@Z @ 7735 NONAME ; bool HbInputModeCache::acceptsState(class HbInputMethod const *, class HbInputState const &) const
?booleanFromString@HbThemeSystemEffect@@CA_NABVQString@@@Z @ 7736 NONAME ; bool HbThemeSystemEffect::booleanFromString(class QString const &)
@@ -8121,9 +8122,9 @@
?getSharedStyleSheet@HbThemeClientPrivate@@QAEPAUStyleSheet@HbCss@@ABVQString@@W4LayerPriority@HbLayeredStyleLoader@@AA_N@Z @ 8120 NONAME ; struct HbCss::StyleSheet * HbThemeClientPrivate::getSharedStyleSheet(class QString const &, enum HbLayeredStyleLoader::LayerPriority, bool &)
?doAddFileSet@HbWidgetStyleLoader@@AAE_NABVQString@@W4FileSetType@1@W4PatternType@1@W4Concern@HbLayeredStyleLoader@@W4LayerPriority@6@@Z @ 8121 NONAME ; bool HbWidgetStyleLoader::doAddFileSet(class QString const &, enum HbWidgetStyleLoader::FileSetType, enum HbWidgetStyleLoader::PatternType, enum HbLayeredStyleLoader::Concern, enum HbLayeredStyleLoader::LayerPriority)
?getSharedLayoutDefs@HbThemeClientPrivate@@QAEPAULayoutDefinition@HbWidgetLoader@@ABVQString@@00AA_N@Z @ 8122 NONAME ; struct HbWidgetLoader::LayoutDefinition * HbThemeClientPrivate::getSharedLayoutDefs(class QString const &, class QString const &, class QString const &, bool &)
- ?activateParentLayout@HbWidgetBasePrivate@@QAEXXZ @ 8123 NONAME ; void HbWidgetBasePrivate::activateParentLayout(void)
+ ?activateParentLayout@HbWidgetBasePrivate@@QAEXXZ @ 8123 NONAME ABSENT ; void HbWidgetBasePrivate::activateParentLayout(void)
?updateGeometry@HbWidgetBase@@MAEXXZ @ 8124 NONAME ; void HbWidgetBase::updateGeometry(void)
- ?ignoreGeometryUpdate@HbWidgetBasePrivate@@QAE_NXZ @ 8125 NONAME ; bool HbWidgetBasePrivate::ignoreGeometryUpdate(void)
+ ?ignoreGeometryUpdate@HbWidgetBasePrivate@@QAE_NXZ @ 8125 NONAME ABSENT ; bool HbWidgetBasePrivate::ignoreGeometryUpdate(void)
?updateGeometry@HbTextItem@@MAEXXZ @ 8126 NONAME ; void HbTextItem::updateGeometry(void)
?clearPrefSizeCache@HbRichTextItemPrivate@@QAEXXZ @ 8127 NONAME ; void HbRichTextItemPrivate::clearPrefSizeCache(void)
?setDocumentWidth@HbRichTextItemPrivate@@QAEXM@Z @ 8128 NONAME ; void HbRichTextItemPrivate::setDocumentWidth(float)
@@ -8145,5 +8146,107 @@
??0HbKeymapFactoryPrivate@@QAE@XZ @ 8144 NONAME ; HbKeymapFactoryPrivate::HbKeymapFactoryPrivate(void)
?keymap@HbKeymapFactoryPrivate@@QBEPAVHbKeymap@@ABVHbInputLanguage@@@Z @ 8145 NONAME ; class HbKeymap * HbKeymapFactoryPrivate::keymap(class HbInputLanguage const &) const
?setLoopCount@HbIconAnimator@@QAEXH@Z @ 8146 NONAME ; void HbIconAnimator::setLoopCount(int)
- ?resizePopup@HbPopupPrivate@@QAEXXZ @ 8147 NONAME ; void HbPopupPrivate::resizePopup(void)
+ ?resizePopup@HbPopupPrivate@@QAEXXZ @ 8147 NONAME ABSENT ; void HbPopupPrivate::resizePopup(void)
?polish@HbPopup@@MAEXAAVHbStyleParameters@@@Z @ 8148 NONAME ; void HbPopup::polish(class HbStyleParameters &)
+ ?chineseDefaultKeypadChanged@HbInputSettingProxy@@IAEX_N@Z @ 8149 NONAME ; void HbInputSettingProxy::chineseDefaultKeypadChanged(bool)
+ ?useWesternDefaultKeypadForChinese@HbInputSettingProxy@@QBE_NXZ @ 8150 NONAME ; bool HbInputSettingProxy::useWesternDefaultKeypadForChinese(void) const
+ ?setWesternDefaultKeypadForChinese@HbInputSettingProxy@@QAEX_N@Z @ 8151 NONAME ; void HbInputSettingProxy::setWesternDefaultKeypadForChinese(bool)
+ ??0HbStylePrimitiveData@@QAE@HH@Z @ 8152 NONAME ; HbStylePrimitiveData::HbStylePrimitiveData(int, int)
+ ??0HbStyleMarqueePrimitiveData@@QAE@XZ @ 8153 NONAME ; HbStyleMarqueePrimitiveData::HbStyleMarqueePrimitiveData(void)
+ ??0HbStyleTextPrimitiveData@@QAE@XZ @ 8154 NONAME ; HbStyleTextPrimitiveData::HbStyleTextPrimitiveData(void)
+ ??1HbStyleTextPrimitiveData@@QAE@XZ @ 8155 NONAME ; HbStyleTextPrimitiveData::~HbStyleTextPrimitiveData(void)
+ ??0HbStyleTouchAreaPrimitiveData@@QAE@XZ @ 8156 NONAME ; HbStyleTouchAreaPrimitiveData::HbStyleTouchAreaPrimitiveData(void)
+ ?image@HbVgImageIconRenderer@@QBEKXZ @ 8157 NONAME ; unsigned long HbVgImageIconRenderer::image(void) const
+ ??0HbStyleRichTextPrimitiveData@@QAE@XZ @ 8158 NONAME ; HbStyleRichTextPrimitiveData::HbStyleRichTextPrimitiveData(void)
+ ?createPrimitive@HbStyle@@UBEPAVQGraphicsObject@@W4PrimitiveType@1@ABVQString@@PAV2@@Z @ 8159 NONAME ; class QGraphicsObject * HbStyle::createPrimitive(enum HbStyle::PrimitiveType, class QString const &, class QGraphicsObject *) const
+ ?updatePrimitive@HbStyle@@UBE_NPAVQGraphicsObject@@PBVHbStylePrimitiveData@@0@Z @ 8160 NONAME ; bool HbStyle::updatePrimitive(class QGraphicsObject *, class HbStylePrimitiveData const *, class QGraphicsObject *) const
+ ??0HbStyleFramePrimitiveData@@QAE@XZ @ 8161 NONAME ; HbStyleFramePrimitiveData::HbStyleFramePrimitiveData(void)
+ ?initPrimitiveData@HbToolButton@@IAEXPAVHbStylePrimitiveData@@PBVQGraphicsObject@@@Z @ 8162 NONAME ; void HbToolButton::initPrimitiveData(class HbStylePrimitiveData *, class QGraphicsObject const *)
+ ?initPrimitiveData@HbWidgetBase@@IAEXPAVHbStylePrimitiveData@@PBVQGraphicsObject@@@Z @ 8163 NONAME ; void HbWidgetBase::initPrimitiveData(class HbStylePrimitiveData *, class QGraphicsObject const *)
+ ??0HbStyleIconPrimitiveData@@QAE@XZ @ 8164 NONAME ; HbStyleIconPrimitiveData::HbStyleIconPrimitiveData(void)
+ ?initPrimitiveData@HbAbstractButton@@IAEXPAVHbStylePrimitiveData@@PBVQGraphicsObject@@@Z @ 8165 NONAME ; void HbAbstractButton::initPrimitiveData(class HbStylePrimitiveData *, class QGraphicsObject const *)
+ ??1HbStyleFramePrimitiveData@@QAE@XZ @ 8166 NONAME ; HbStyleFramePrimitiveData::~HbStyleFramePrimitiveData(void)
+ ??1HbStyleIconPrimitiveData@@QAE@XZ @ 8167 NONAME ; HbStyleIconPrimitiveData::~HbStyleIconPrimitiveData(void)
+ ?cancelGetSharedIconInfo@HbThemeClientPrivate@@QAEXP6A_NABUHbSharedIconInfo@@PAX@Z1@Z @ 8168 NONAME ; void HbThemeClientPrivate::cancelGetSharedIconInfo(bool (*)(struct HbSharedIconInfo const &, void *), void *)
+ ?getSharedIconInfo@HbThemeClient@@QAEXABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@P6A_NABUHbSharedIconInfo@@PAX@Z9@Z @ 8169 NONAME ABSENT ; void HbThemeClient::getSharedIconInfo(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode, bool (*)(struct HbSharedIconInfo const &, void *), void *)
+ ?getSharedIconInfo@HbThemeClientPrivate@@QAEXABVQString@@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@_NV?$QFlags@W4IconLoaderOption@HbIconLoader@@@@ABVQColor@@W4HbRenderingMode@@P6A_NABUHbSharedIconInfo@@PAX@Z9@Z @ 8170 NONAME ABSENT ; void HbThemeClientPrivate::getSharedIconInfo(class QString const &, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, bool, class QFlags<enum HbIconLoader::IconLoaderOption>, class QColor const &, enum HbRenderingMode, bool (*)(struct HbSharedIconInfo const &, void *), void *)
+ ?deleteImageIfLargerThan@HbIconSource@@QAEXH@Z @ 8171 NONAME ; void HbIconSource::deleteImageIfLargerThan(int)
+ ?setAsync@HbIconItem@@QAEX_N@Z @ 8172 NONAME ; void HbIconItem::setAsync(bool)
+ ?unLoadIcon@HbIconLoader@@QAEXPAVHbIconImpl@@_N1@Z @ 8173 NONAME ; void HbIconLoader::unLoadIcon(class HbIconImpl *, bool, bool)
+ ?loadIcon@HbIconLoader@@QAEPAVHbIconImpl@@ABVQString@@W4IconDataType@1@W4Purpose@1@ABVQSizeF@@W4AspectRatioMode@Qt@@W4Mode@QIcon@@V?$QFlags@W4IconLoaderOption@HbIconLoader@@@@PAVHbIconAnimator@@ABVQColor@@P6AXPAV2@PAX_N@ZPAX@Z @ 8174 NONAME ; class HbIconImpl * HbIconLoader::loadIcon(class QString const &, enum HbIconLoader::IconDataType, enum HbIconLoader::Purpose, class QSizeF const &, enum Qt::AspectRatioMode, enum QIcon::Mode, class QFlags<enum HbIconLoader::IconLoaderOption>, class HbIconAnimator *, class QColor const &, void (*)(class HbIconImpl *, void *, bool), void *)
+ ?scheduleQueueCheck@HbThemeClientPrivate@@QAEXXZ @ 8175 NONAME ; void HbThemeClientPrivate::scheduleQueueCheck(void)
+ ?finishGetIconFromServer@HbIconLoader@@AAEPAVHbIconImpl@@AAUHbSharedIconInfo@@AAUHbIconLoadingParams@@@Z @ 8176 NONAME ; class HbIconImpl * HbIconLoader::finishGetIconFromServer(struct HbSharedIconInfo &, struct HbIconLoadingParams &)
+ ?lookupInCache@HbIconLoader@@AAEPAVHbIconImpl@@ABUHbIconLoadingParams@@PAVQByteArray@@@Z @ 8177 NONAME ; class HbIconImpl * HbIconLoader::lookupInCache(struct HbIconLoadingParams const &, class QByteArray *)
+ ?cancelGetSharedIconInfo@HbThemeClient@@QAEXP6A_NABUHbSharedIconInfo@@PAX@Z1@Z @ 8178 NONAME ; void HbThemeClient::cancelGetSharedIconInfo(bool (*)(struct HbSharedIconInfo const &, void *), void *)
+ ?image@HbIconSource@@QAEPAVQImage@@XZ @ 8179 NONAME ; class QImage * HbIconSource::image(void)
+ ?cancelLoadIcon@HbIconLoader@@QAEXP6AXPAVHbIconImpl@@PAX_N@Z1@Z @ 8180 NONAME ; void HbIconLoader::cancelLoadIcon(void (*)(class HbIconImpl *, void *, bool), void *)
+ ?getIconFromServerAsync@HbIconLoader@@AAEXAAUHbIconLoadingParams@@P6AXPAVHbIconImpl@@PAX_N@Z2@Z @ 8181 NONAME ; void HbIconLoader::getIconFromServerAsync(struct HbIconLoadingParams &, void (*)(class HbIconImpl *, void *, bool), void *)
+ ?loadLocal@HbIconLoader@@AAEXAAUHbIconLoadingParams@@ABVQString@@@Z @ 8182 NONAME ; void HbIconLoader::loadLocal(struct HbIconLoadingParams &, class QString const &)
+ ?loadLocalAsync@HbIconLoader@@AAEXABUHbIconLoadingParams@@ABVQString@@P6AXPAVHbIconImpl@@PAX_N@Z3@Z @ 8183 NONAME ; void HbIconLoader::loadLocalAsync(struct HbIconLoadingParams const &, class QString const &, void (*)(class HbIconImpl *, void *, bool), void *)
+ ?asyncCallback@HbIconLoader@@CA_NABUHbSharedIconInfo@@PAX@Z @ 8184 NONAME ; bool HbIconLoader::asyncCallback(struct HbSharedIconInfo const &, void *)
+ ?localLoadReady@HbIconLoader@@AAEXABUHbIconLoadingParams@@PAX@Z @ 8185 NONAME ; void HbIconLoader::localLoadReady(struct HbIconLoadingParams const &, void *)
+ ?finishLocal@HbIconLoader@@AAEPAVHbIconImpl@@AAUHbIconLoadingParams@@@Z @ 8186 NONAME ; class HbIconImpl * HbIconLoader::finishLocal(struct HbIconLoadingParams &)
+ ?async@HbIconItem@@QBE_NXZ @ 8187 NONAME ; bool HbIconItem::async(void) const
+ ?cacheIcon@HbIconLoader@@AAEXABUHbIconLoadingParams@@PAVHbIconImpl@@PAVQByteArray@@@Z @ 8188 NONAME ; void HbIconLoader::cacheIcon(struct HbIconLoadingParams const &, class HbIconImpl *, class QByteArray *)
+ ?updateIconItem@HbIconItemPrivate@@QAEXXZ @ 8189 NONAME ; void HbIconItemPrivate::updateIconItem(void)
+ ?recalculateBoundingRect@HbIconItemPrivate@@QBEXXZ @ 8190 NONAME ; void HbIconItemPrivate::recalculateBoundingRect(void) const
+ ?clearStoredIconContent@HbIconItemPrivate@@QAEXXZ @ 8191 NONAME ; void HbIconItemPrivate::clearStoredIconContent(void)
+ ?setAsyncCallbackFilter@HbIconItemPrivate@@QAEXP6A_NPAVHbIconItem@@PAX@Z1@Z @ 8192 NONAME ; void HbIconItemPrivate::setAsyncCallbackFilter(bool (*)(class HbIconItem *, void *), void *)
+ ??_EHbIconItemPrivate@@UAE@I@Z @ 8193 NONAME ; HbIconItemPrivate::~HbIconItemPrivate(unsigned int)
+ ??0HbIconItemPrivate@@QAE@ABVHbIcon@@@Z @ 8194 NONAME ; HbIconItemPrivate::HbIconItemPrivate(class HbIcon const &)
+ ?outlinesEnabled@HbIconItemPrivate@@2_NA @ 8195 NONAME ; bool HbIconItemPrivate::outlinesEnabled
+ ??1HbIconItemPrivate@@UAE@XZ @ 8196 NONAME ; HbIconItemPrivate::~HbIconItemPrivate(void)
+ ?updateIconParams@HbIconItemPrivate@@QAEXXZ @ 8197 NONAME ; void HbIconItemPrivate::updateIconParams(void)
+ ?q_func@HbIconItemPrivate@@AAEPAVHbIconItem@@XZ @ 8198 NONAME ; class HbIconItem * HbIconItemPrivate::q_func(void)
+ ?d_ptr@HbIconItemPrivate@@SAPAV1@PAVHbIconItem@@@Z @ 8199 NONAME ; class HbIconItemPrivate * HbIconItemPrivate::d_ptr(class HbIconItem *)
+ ?q_func@HbIconItemPrivate@@ABEPBVHbIconItem@@XZ @ 8200 NONAME ; class HbIconItem const * HbIconItemPrivate::q_func(void) const
+ ?setThemedColor@HbIconItemPrivate@@QAEXABVQColor@@@Z @ 8201 NONAME ; void HbIconItemPrivate::setThemedColor(class QColor const &)
+ ?unloadIcon@HbThemeClientPrivate@@QAEXABUIconReqInfo@HbThemeClient@@@Z @ 8202 NONAME ; void HbThemeClientPrivate::unloadIcon(struct HbThemeClient::IconReqInfo const &)
+ ?batchUnloadIcon@HbThemeClient@@QAEXABV?$QVector@UIconReqInfo@HbThemeClient@@@@@Z @ 8203 NONAME ; void HbThemeClient::batchUnloadIcon(class QVector<struct HbThemeClient::IconReqInfo> const &)
+ ?getSharedIconInfo@HbThemeClient@@QAE?AUHbSharedIconInfo@@ABUIconReqInfo@1@@Z @ 8204 NONAME ; struct HbSharedIconInfo HbThemeClient::getSharedIconInfo(struct HbThemeClient::IconReqInfo const &)
+ ?getSharedIconInfo@HbThemeClient@@QAEXABUIconReqInfo@1@P6A_NABUHbSharedIconInfo@@PAX@Z2@Z @ 8205 NONAME ; void HbThemeClient::getSharedIconInfo(struct HbThemeClient::IconReqInfo const &, bool (*)(struct HbSharedIconInfo const &, void *), void *)
+ ?unloadIcon@HbThemeClient@@QAEXABUIconReqInfo@1@@Z @ 8206 NONAME ; void HbThemeClient::unloadIcon(struct HbThemeClient::IconReqInfo const &)
+ ?getSharedIconInfo@HbThemeClientPrivate@@QAEXABUIconReqInfo@HbThemeClient@@P6A_NABUHbSharedIconInfo@@PAX@Z2@Z @ 8207 NONAME ; void HbThemeClientPrivate::getSharedIconInfo(struct HbThemeClient::IconReqInfo const &, bool (*)(struct HbSharedIconInfo const &, void *), void *)
+ ?getSharedIconInfo@HbThemeClientPrivate@@QAE?AUHbSharedIconInfo@@ABUIconReqInfo@HbThemeClient@@@Z @ 8208 NONAME ; struct HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(struct HbThemeClient::IconReqInfo const &)
+ ?batchUnloadIcon@HbThemeClientPrivate@@QAEXABV?$QVector@UIconReqInfo@HbThemeClient@@@@@Z @ 8209 NONAME ; void HbThemeClientPrivate::batchUnloadIcon(class QVector<struct HbThemeClient::IconReqInfo> const &)
+ ?advancedGestureActivated@HbFeedbackEngine@@MAEXPBVHbWidget@@@Z @ 8210 NONAME ; void HbFeedbackEngine::advancedGestureActivated(class HbWidget const *)
+ ?getStaticMetaObject@HbEditorInterfacePrivateCache@@SAABUQMetaObject@@XZ @ 8211 NONAME ; struct QMetaObject const & HbEditorInterfacePrivateCache::getStaticMetaObject(void)
+ ?destroyed@HbEditorInterfacePrivateCache@@QAEXPAVQObject@@@Z @ 8212 NONAME ; void HbEditorInterfacePrivateCache::destroyed(class QObject *)
+ ?getStaticMetaObject@HbEditorInterfacePrivate@@SAABUQMetaObject@@XZ @ 8213 NONAME ; struct QMetaObject const & HbEditorInterfacePrivate::getStaticMetaObject(void)
+ ?setInputMethodHints@HbEditorInterfacePrivate@@QAEXV?$QFlags@W4InputMethodHint@Qt@@@@@Z @ 8214 NONAME ; void HbEditorInterfacePrivate::setInputMethodHints(class QFlags<enum Qt::InputMethodHint>)
+ ?staticMetaObject@HbEditorInterfacePrivateCache@@2UQMetaObject@@B @ 8215 NONAME ; struct QMetaObject const HbEditorInterfacePrivateCache::staticMetaObject
+ ?tr@HbEditorInterfacePrivateCache@@SA?AVQString@@PBD0@Z @ 8216 NONAME ; class QString HbEditorInterfacePrivateCache::tr(char const *, char const *)
+ ?notifyValueChanged@HbEditorInterfacePrivateCache@@QAEXPAVQObject@@@Z @ 8217 NONAME ; void HbEditorInterfacePrivateCache::notifyValueChanged(class QObject *)
+ ?actionDestroyed@HbEditorInterfacePrivateCache@@QAEXPAVQObject@@@Z @ 8218 NONAME ; void HbEditorInterfacePrivateCache::actionDestroyed(class QObject *)
+ ??_EHbEditorInterfacePrivateCache@@UAE@I@Z @ 8219 NONAME ; HbEditorInterfacePrivateCache::~HbEditorInterfacePrivateCache(unsigned int)
+ ?inputMethodHints@HbEditorInterfacePrivate@@QBE?AV?$QFlags@W4InputMethodHint@Qt@@@@XZ @ 8220 NONAME ; class QFlags<enum Qt::InputMethodHint> HbEditorInterfacePrivate::inputMethodHints(void) const
+ ??1HbEditorInterfacePrivate@@UAE@XZ @ 8221 NONAME ; HbEditorInterfacePrivate::~HbEditorInterfacePrivate(void)
+ ??1HbEditorInterfacePrivateCache@@EAE@XZ @ 8222 NONAME ; HbEditorInterfacePrivateCache::~HbEditorInterfacePrivateCache(void)
+ ?qt_metacast@HbEditorInterfacePrivateCache@@UAEPAXPBD@Z @ 8223 NONAME ; void * HbEditorInterfacePrivateCache::qt_metacast(char const *)
+ ?cursorPositionChanged@HbEditorInterfacePrivate@@QAEXXZ @ 8224 NONAME ; void HbEditorInterfacePrivate::cursorPositionChanged(void)
+ ?tr@HbEditorInterfacePrivateCache@@SA?AVQString@@PBD0H@Z @ 8225 NONAME ; class QString HbEditorInterfacePrivateCache::tr(char const *, char const *, int)
+ ?trUtf8@HbEditorInterfacePrivate@@SA?AVQString@@PBD0H@Z @ 8226 NONAME ; class QString HbEditorInterfacePrivate::trUtf8(char const *, char const *, int)
+ ?tr@HbEditorInterfacePrivate@@SA?AVQString@@PBD0@Z @ 8227 NONAME ; class QString HbEditorInterfacePrivate::tr(char const *, char const *)
+ ?notifyCursorPositionChange@HbEditorInterfacePrivate@@QAEXHH@Z @ 8228 NONAME ; void HbEditorInterfacePrivate::notifyCursorPositionChange(int, int)
+ ?tr@HbEditorInterfacePrivate@@SA?AVQString@@PBD0H@Z @ 8229 NONAME ; class QString HbEditorInterfacePrivate::tr(char const *, char const *, int)
+ ?qt_metacall@HbEditorInterfacePrivate@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 8230 NONAME ; int HbEditorInterfacePrivate::qt_metacall(enum QMetaObject::Call, int, void * *)
+ ?trUtf8@HbEditorInterfacePrivateCache@@SA?AVQString@@PBD0H@Z @ 8231 NONAME ; class QString HbEditorInterfacePrivateCache::trUtf8(char const *, char const *, int)
+ ?hasInterface@HbEditorInterfacePrivate@@QBE_NPAVHbEditorInterface@@@Z @ 8232 NONAME ; bool HbEditorInterfacePrivate::hasInterface(class HbEditorInterface *) const
+ ??_EHbEditorInterfacePrivate@@UAE@I@Z @ 8233 NONAME ; HbEditorInterfacePrivate::~HbEditorInterfacePrivate(unsigned int)
+ ?interfaceDestroyed@HbEditorInterfacePrivateCache@@QAEXPAVQObject@@@Z @ 8234 NONAME ; void HbEditorInterfacePrivateCache::interfaceDestroyed(class QObject *)
+ ?trUtf8@HbEditorInterfacePrivateCache@@SA?AVQString@@PBD0@Z @ 8235 NONAME ; class QString HbEditorInterfacePrivateCache::trUtf8(char const *, char const *)
+ ?metaObject@HbEditorInterfacePrivateCache@@UBEPBUQMetaObject@@XZ @ 8236 NONAME ; struct QMetaObject const * HbEditorInterfacePrivateCache::metaObject(void) const
+ ?qt_metacast@HbEditorInterfacePrivate@@UAEPAXPBD@Z @ 8237 NONAME ; void * HbEditorInterfacePrivate::qt_metacast(char const *)
+ ?lock@HbEditorInterfacePrivate@@QAEXXZ @ 8238 NONAME ; void HbEditorInterfacePrivate::lock(void)
+ ?metaObject@HbEditorInterfacePrivate@@UBEPBUQMetaObject@@XZ @ 8239 NONAME ; struct QMetaObject const * HbEditorInterfacePrivate::metaObject(void) const
+ ?cursorPositionChanged@HbEditorInterfacePrivate@@IAEXHH@Z @ 8240 NONAME ; void HbEditorInterfacePrivate::cursorPositionChanged(int, int)
+ ?unlock@HbEditorInterfacePrivate@@QAEXXZ @ 8241 NONAME ; void HbEditorInterfacePrivate::unlock(void)
+ ?qt_metacall@HbEditorInterfacePrivateCache@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 8242 NONAME ; int HbEditorInterfacePrivateCache::qt_metacall(enum QMetaObject::Call, int, void * *)
+ ??0HbEditorInterfacePrivateCache@@AAE@XZ @ 8243 NONAME ; HbEditorInterfacePrivateCache::HbEditorInterfacePrivateCache(void)
+ ?instance@HbEditorInterfacePrivateCache@@SAPAV1@XZ @ 8244 NONAME ; class HbEditorInterfacePrivateCache * HbEditorInterfacePrivateCache::instance(void)
+ ?isConnected@HbEditorInterfacePrivateCache@@QAE_NPAVQObject@@@Z @ 8245 NONAME ; bool HbEditorInterfacePrivateCache::isConnected(class QObject *)
+ ?staticMetaObject@HbEditorInterfacePrivate@@2UQMetaObject@@B @ 8246 NONAME ; struct QMetaObject const HbEditorInterfacePrivate::staticMetaObject
+ ??0HbEditorInterfacePrivate@@QAE@XZ @ 8247 NONAME ; HbEditorInterfacePrivate::HbEditorInterfacePrivate(void)
+ ?trUtf8@HbEditorInterfacePrivate@@SA?AVQString@@PBD0@Z @ 8248 NONAME ; class QString HbEditorInterfacePrivate::trUtf8(char const *, char const *)
+ ?attachEditor@HbEditorInterfacePrivateCache@@QAEPAVHbEditorInterfacePrivate@@PAVQObject@@PAVHbEditorInterface@@@Z @ 8249 NONAME ; class HbEditorInterfacePrivate * HbEditorInterfacePrivateCache::attachEditor(class QObject *, class HbEditorInterface *)
+
--- a/src/hbcore/defs/eabi/HbCoreu.def Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/defs/eabi/HbCoreu.def Thu Sep 02 20:44:51 2010 +0300
@@ -1335,33 +1335,33 @@
_ZN19HbInputSettingProxy16staticMetaObjectE @ 1334 NONAME DATA 16
_ZN19HbInputSettingProxy16togglePredictionEv @ 1335 NONAME
_ZN19HbInputSettingProxy17keymapPluginPathsEv @ 1336 NONAME
- _ZN19HbInputSettingProxy17screenOrientationEv @ 1337 NONAME
- _ZN19HbInputSettingProxy18orientationChangedEN2Qt11OrientationE @ 1338 NONAME
+ _ZN19HbInputSettingProxy17screenOrientationEv @ 1337 NONAME ABSENT
+ _ZN19HbInputSettingProxy18orientationChangedEN2Qt11OrientationE @ 1338 NONAME ABSENT
_ZN19HbInputSettingProxy18setGlobalDigitTypeE16HbInputDigitType @ 1339 NONAME
_ZN19HbInputSettingProxy19extraDictionaryPathEv @ 1340 NONAME
_ZN19HbInputSettingProxy19getStaticMetaObjectEv @ 1341 NONAME
- _ZN19HbInputSettingProxy19setActiveHwKeyboardE6QFlagsI18HbKeyboardTypeFlagE @ 1342 NONAME
+ _ZN19HbInputSettingProxy19setActiveHwKeyboardE6QFlagsI18HbKeyboardTypeFlagE @ 1342 NONAME ABSENT
_ZN19HbInputSettingProxy19setCustomPluginNameERK7QString @ 1343 NONAME ABSENT
_ZN19HbInputSettingProxy20languageDatabasePathEv @ 1344 NONAME
_ZN19HbInputSettingProxy20setCustomMethodInUseEb @ 1345 NONAME ABSENT
- _ZN19HbInputSettingProxy20setScreenOrientationEN2Qt11OrientationE @ 1346 NONAME
+ _ZN19HbInputSettingProxy20setScreenOrientationEN2Qt11OrientationE @ 1346 NONAME ABSENT
_ZN19HbInputSettingProxy20specialCharacterUsedE5QChar @ 1347 NONAME ABSENT
_ZN19HbInputSettingProxy21predictionEnginePathsEv @ 1348 NONAME
_ZN19HbInputSettingProxy22connectObservingObjectEP7QObject @ 1349 NONAME
_ZN19HbInputSettingProxy22inputMethodPluginPathsEv @ 1350 NONAME
- _ZN19HbInputSettingProxy22setActiveTouchKeyboardE6QFlagsI18HbKeyboardTypeFlagE @ 1351 NONAME
+ _ZN19HbInputSettingProxy22setActiveTouchKeyboardE6QFlagsI18HbKeyboardTypeFlagE @ 1351 NONAME ABSENT
_ZN19HbInputSettingProxy22setGlobalInputLanguageERK15HbInputLanguage @ 1352 NONAME
- _ZN19HbInputSettingProxy23activeHwKeyboardChangedE6QFlagsI18HbKeyboardTypeFlagE @ 1353 NONAME
- _ZN19HbInputSettingProxy24orientationAboutToChangeEv @ 1354 NONAME
+ _ZN19HbInputSettingProxy23activeHwKeyboardChangedE6QFlagsI18HbKeyboardTypeFlagE @ 1353 NONAME ABSENT
+ _ZN19HbInputSettingProxy24orientationAboutToChangeEv @ 1354 NONAME ABSENT
_ZN19HbInputSettingProxy24setPredictiveInputStatusEi @ 1355 NONAME ABSENT
_ZN19HbInputSettingProxy25disconnectObservingObjectEP7QObject @ 1356 NONAME
_ZN19HbInputSettingProxy25mostUsedSpecialCharactersEiR7QStringP13HbInputFilter @ 1357 NONAME ABSENT
- _ZN19HbInputSettingProxy26activeTouchKeyboardChangedE6QFlagsI18HbKeyboardTypeFlagE @ 1358 NONAME
+ _ZN19HbInputSettingProxy26activeTouchKeyboardChangedE6QFlagsI18HbKeyboardTypeFlagE @ 1358 NONAME ABSENT
_ZN19HbInputSettingProxy26globalInputLanguageChangedERK15HbInputLanguage @ 1359 NONAME
_ZN19HbInputSettingProxy27predictiveInputStateChangedEi @ 1360 NONAME ABSENT
_ZN19HbInputSettingProxy28automaticTextCasingForQwertyEv @ 1361 NONAME
_ZN19HbInputSettingProxy28setCharacterPreviewForQwertyEb @ 1362 NONAME
- _ZN19HbInputSettingProxy29notifyScreenOrientationChangeEv @ 1363 NONAME
+ _ZN19HbInputSettingProxy29notifyScreenOrientationChangeEv @ 1363 NONAME ABSENT
_ZN19HbInputSettingProxy31setAutomaticTextCasingForQwertyEb @ 1364 NONAME
_ZN19HbInputSettingProxy31setGlobalSecondaryInputLanguageERK15HbInputLanguage @ 1365 NONAME
_ZN19HbInputSettingProxy34isCharacterPreviewForQwertyEnabledEv @ 1366 NONAME
@@ -2439,6 +2439,7 @@
_ZN7HbPopup19getStaticMetaObjectEv @ 2438 NONAME
_ZN7HbPopup4execEv @ 2439 NONAME ABSENT
_ZN7HbPopup5eventEP6QEvent @ 2440 NONAME
+
_ZN7HbPopupC1EP13QGraphicsItem @ 2441 NONAME
_ZN7HbPopupC1ER14HbPopupPrivateP13QGraphicsItem @ 2442 NONAME
_ZN7HbPopupC2EP13QGraphicsItem @ 2443 NONAME
@@ -2539,7 +2540,7 @@
_ZN8HbWidget12setAttributeEN2Hb15WidgetAttributeEb @ 2538 NONAME ABSENT
_ZN8HbWidget12setAttributeEN2Qt15WidgetAttributeEb @ 2539 NONAME ABSENT
_ZN8HbWidget13focusOutEventEP11QFocusEvent @ 2540 NONAME
- _ZN8HbWidget15setPluginBaseIdEi @ 2541 NONAME
+ _ZN8HbWidget15setPluginBaseIdEi @ 2541 NONAME ABSENT
_ZN8HbWidget16staticMetaObjectE @ 2542 NONAME DATA 16
_ZN8HbWidget16updatePrimitivesEv @ 2543 NONAME
_ZN8HbWidget19getStaticMetaObjectEv @ 2544 NONAME
@@ -2812,7 +2813,7 @@
_ZNK12HbToolButton15initStyleOptionEP23HbStyleOptionToolButton @ 2811 NONAME ABSENT
_ZNK12HbToolButton15toolButtonStyleEv @ 2812 NONAME ABSENT
_ZNK12HbToolButton6actionEv @ 2813 NONAME
- _ZNK12HbToolButton9primitiveEN7HbStyle9PrimitiveE @ 2814 NONAME
+ _ZNK12HbToolButton9primitiveEN7HbStyle9PrimitiveE @ 2814 NONAME ABSENT
_ZNK12HbTreeLayout11indentationEv @ 2815 NONAME ABSENT
_ZNK12HbTreeLayout17uniformSizedItemsEv @ 2816 NONAME ABSENT
_ZNK12HbTreeLayout5countEv @ 2817 NONAME ABSENT
@@ -3052,13 +3053,13 @@
_ZNK19HbInputCustomButton8iconFileEv @ 3051 NONAME ABSENT
_ZNK19HbInputSettingProxy10metaObjectEv @ 3052 NONAME
_ZNK19HbInputSettingProxy15globalDigitTypeEv @ 3053 NONAME
- _ZNK19HbInputSettingProxy16activeHwKeyboardEv @ 3054 NONAME
+ _ZNK19HbInputSettingProxy16activeHwKeyboardEv @ 3054 NONAME ABSENT
_ZNK19HbInputSettingProxy17customMethodInUseEv @ 3055 NONAME ABSENT
- _ZNK19HbInputSettingProxy19activeTouchKeyboardEv @ 3056 NONAME
+ _ZNK19HbInputSettingProxy19activeTouchKeyboardEv @ 3056 NONAME ABSENT
_ZNK19HbInputSettingProxy19availableHwKeyboardER5QListI6QFlagsI18HbKeyboardTypeFlagEE @ 3057 NONAME
_ZNK19HbInputSettingProxy19globalInputLanguageEv @ 3058 NONAME
_ZNK19HbInputSettingProxy21predictiveInputStatusEv @ 3059 NONAME ABSENT
- _ZNK19HbInputSettingProxy26orientationChangeCompletedEv @ 3060 NONAME
+ _ZNK19HbInputSettingProxy26orientationChangeCompletedEv @ 3060 NONAME ABSENT
_ZNK19HbInputSettingProxy28globalSecondaryInputLanguageEv @ 3061 NONAME
_ZNK19HbInteractionPlugin10metaObjectEv @ 3062 NONAME ABSENT
_ZNK19HbInteractionPlugin11featureNameEv @ 3063 NONAME ABSENT
@@ -3270,8 +3271,8 @@
_ZNK7HbPopup13primaryActionEv @ 3269 NONAME ABSENT
_ZNK7HbPopup15secondaryActionEv @ 3270 NONAME ABSENT
_ZNK7HbStyle10metaObjectEv @ 3271 NONAME
- _ZNK7HbStyle15createPrimitiveENS_9PrimitiveEP13QGraphicsItem @ 3272 NONAME
- _ZNK7HbStyle15updatePrimitiveEP13QGraphicsItemNS_9PrimitiveEPK12QStyleOption @ 3273 NONAME
+ _ZNK7HbStyle15createPrimitiveENS_9PrimitiveEP13QGraphicsItem @ 3272 NONAME ABSENT
+ _ZNK7HbStyle15updatePrimitiveEP13QGraphicsItemNS_9PrimitiveEPK12QStyleOption @ 3273 NONAME ABSENT
_ZNK7HbTheme10metaObjectEv @ 3274 NONAME
_ZNK7HbTheme11descriptionEv @ 3275 NONAME
_ZNK7HbTheme4nameEv @ 3276 NONAME
@@ -3298,7 +3299,7 @@
_ZNK8HbStringneERKS_ @ 3297 NONAME
_ZNK8HbWidget10mainWindowEv @ 3298 NONAME
_ZNK8HbWidget10metaObjectEv @ 3299 NONAME
- _ZNK8HbWidget12pluginBaseIdEv @ 3300 NONAME
+ _ZNK8HbWidget12pluginBaseIdEv @ 3300 NONAME ABSENT
_ZNK8HbWidget13testAttributeEN2Hb15WidgetAttributeE @ 3301 NONAME ABSENT
_ZNK8HbWidget13testAttributeEN2Qt15WidgetAttributeE @ 3302 NONAME ABSENT
_ZNK8HbWidget15initStyleOptionEP13HbStyleOption @ 3303 NONAME ABSENT
@@ -4016,7 +4017,7 @@
_ZN18HbPredictionEngine14disableFeatureE6QFlagsI28HbInputPredictionFeatureFlagE @ 4015 NONAME
_ZN18HbPredictionEngine16isFeatureEnabledE6QFlagsI28HbInputPredictionFeatureFlagE @ 4016 NONAME
_ZN19HbFocusObjectWidget19setInputMethodHintsE6QFlagsIN2Qt15InputMethodHintEE @ 4017 NONAME ABSENT
- _ZN19HbInputSettingProxy21initializeOrientationEN2Qt11OrientationE @ 4018 NONAME
+ _ZN19HbInputSettingProxy21initializeOrientationEN2Qt11OrientationE @ 4018 NONAME ABSENT
_ZN19HbScrollAreaPrivate16_q_groovePressedEfN2Qt11OrientationE @ 4019 NONAME
_ZN19HbScrollAreaPrivate16createPrimitivesEv @ 4020 NONAME
_ZN19HbScrollAreaPrivate16updateIndicatorsE7QPointF @ 4021 NONAME ABSENT
@@ -4540,7 +4541,7 @@
_ZN18HbSystemDeviceInfoD1Ev @ 4539 NONAME ABSENT
_ZN18HbSystemDeviceInfoD2Ev @ 4540 NONAME ABSENT
_ZN19HbInputSettingProxy17setActiveKeyboardE6QFlagsI18HbKeyboardTypeFlagE @ 4541 NONAME
- _ZN19HbInputSettingProxy21activeKeyboardChangedE6QFlagsI18HbKeyboardTypeFlagE @ 4542 NONAME
+ _ZN19HbInputSettingProxy21activeKeyboardChangedE6QFlagsI18HbKeyboardTypeFlagE @ 4542 NONAME ABSENT
_ZN19HbScrollAreaPrivate14startAnimatingEv @ 4543 NONAME
_ZN19HbSystemNetworkInfo11qt_metacallEN11QMetaObject4CallEiPPv @ 4544 NONAME ABSENT
_ZN19HbSystemNetworkInfo11qt_metacastEPKc @ 4545 NONAME ABSENT
@@ -4703,7 +4704,7 @@
_ZNK18HbSystemDeviceInfo4imsiEv @ 4702 NONAME ABSENT
_ZNK18HbSystemDeviceInfo5modelEv @ 4703 NONAME ABSENT
_ZNK18HbSystemDeviceInfo9simStatusEv @ 4704 NONAME ABSENT
- _ZNK19HbInputSettingProxy14activeKeyboardEv @ 4705 NONAME
+ _ZNK19HbInputSettingProxy14activeKeyboardEv @ 4705 NONAME ABSENT
_ZNK19HbSystemNetworkInfo10macAddressENS_11NetworkModeE @ 4706 NONAME ABSENT
_ZNK19HbSystemNetworkInfo10metaObjectEv @ 4707 NONAME ABSENT
_ZNK19HbSystemNetworkInfo11networkNameENS_11NetworkModeE @ 4708 NONAME ABSENT
@@ -4806,7 +4807,7 @@
_ZN10HbTextItem15setMinimumLinesEi @ 4805 NONAME
_ZN10HbTitleBar16sceneEventFilterEP13QGraphicsItemP6QEvent @ 4806 NONAME
_ZN10HbTitleBar6polishER17HbStyleParameters @ 4807 NONAME
- _ZN12HbIconLoader8loadIconERK7QStringNS_12IconDataTypeENS_7PurposeERK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeE6QFlagsINS_16IconLoaderOptionEEP14HbIconAnimatorRK6QColor @ 4808 NONAME
+ _ZN12HbIconLoader8loadIconERK7QStringNS_12IconDataTypeENS_7PurposeERK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeE6QFlagsINS_16IconLoaderOptionEEP14HbIconAnimatorRK6QColor @ 4808 NONAME ABSENT
_ZN12HbIconLoader8loadIconERK7QStringNS_7PurposeERK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeE6QFlagsINS_16IconLoaderOptionEEP14HbIconAnimatorRK6QColor @ 4809 NONAME
_ZN13HbInputMethod20activateCustomMethodERK23HbInputMethodDescriptor @ 4810 NONAME ABSENT
_ZN13HbInputMethod22listCustomInputMethodsEv @ 4811 NONAME
@@ -4870,7 +4871,7 @@
_ZN19HbForegroundWatcher8instanceEv @ 4869 NONAME
_ZN19HbForegroundWatcherC1EP7QObject @ 4870 NONAME
_ZN19HbForegroundWatcherC2EP7QObject @ 4871 NONAME
- _ZN19HbInputSettingProxy26setActiveCustomInputMethodERK23HbInputMethodDescriptor @ 4872 NONAME
+ _ZN19HbInputSettingProxy26setActiveCustomInputMethodERK23HbInputMethodDescriptor @ 4872 NONAME ABSENT
_ZN19HbScrollAreaPrivate18setContentPositionEfN2Qt11OrientationEb @ 4873 NONAME
_ZN19HbWidgetStyleLoader11addFilePathERK7QStringN20HbLayeredStyleLoader7ConcernENS3_13LayerPriorityE @ 4874 NONAME
_ZN19HbWidgetStyleLoader12doAddFileSetERK7QStringNS_11FileSetTypeEN20HbLayeredStyleLoader7ConcernENS4_13LayerPriorityE @ 4875 NONAME ABSENT
@@ -4958,14 +4959,14 @@
_ZNK16HbInputModeCache18listInputLanguagesEv @ 4957 NONAME
_ZNK17HbEditorInterface11smileyThemeEv @ 4958 NONAME
_ZNK19HbForegroundWatcher10metaObjectEv @ 4959 NONAME
- _ZNK19HbInputSettingProxy23activeCustomInputMethodEv @ 4960 NONAME
+ _ZNK19HbInputSettingProxy23activeCustomInputMethodEv @ 4960 NONAME ABSENT
_ZNK20HbInputMethodPrivate12editorFilterEv @ 4961 NONAME
_ZNK20HbInputMethodPrivate14activeKeyboardEv @ 4962 NONAME
_ZNK20HbInputMethodPrivate14activeLanguageEv @ 4963 NONAME
_ZNK20HbInputMethodPrivate15editorRootStateER12HbInputState @ 4964 NONAME
_ZNK20HbInputMethodPrivate15initialTextCaseE6QFlagsI19HbInputModeTypeFlagE @ 4965 NONAME
_ZNK20HbInputMethodPrivate15textCaseAppliesEv @ 4966 NONAME
- _ZNK20HbInputMethodPrivate16defaultInputModeERK15HbInputLanguage @ 4967 NONAME
+ _ZNK20HbInputMethodPrivate16defaultInputModeERK15HbInputLanguage @ 4967 NONAME ABSENT
_ZNK20HbInputMethodPrivate16initialInputModeERK15HbInputLanguage @ 4968 NONAME
_ZNK20HbInputMethodPrivate17editorConstraintsEv @ 4969 NONAME
_ZNK20HbInputMethodPrivate17findStateLanguageEv @ 4970 NONAME
@@ -5303,9 +5304,9 @@
_ZN12HbIconSource11svgRendererEv @ 5302 NONAME
_ZN12HbIconSource16clearImageReaderEv @ 5303 NONAME ABSENT
_ZN12HbIconSource16clearSvgRendererEv @ 5304 NONAME ABSENT
- _ZN12HbIconSource24deletePixmapIfLargerThanEi @ 5305 NONAME
+ _ZN12HbIconSource24deletePixmapIfLargerThanEi @ 5305 NONAME ABSENT
_ZN12HbIconSource4typeEv @ 5306 NONAME
- _ZN12HbIconSource6pixmapEv @ 5307 NONAME
+ _ZN12HbIconSource6pixmapEv @ 5307 NONAME ABSENT
_ZN12HbIconSource7pictureEv @ 5308 NONAME
_ZN12HbIconSourceC1ERK7QString @ 5309 NONAME
_ZN12HbIconSourceC1ERK7QStringS2_ @ 5310 NONAME
@@ -6372,7 +6373,7 @@
_ZN11HbIndicator13userActivatedERK7QStringRK4QMapIS0_8QVariantE @ 6371 NONAME
_ZN11HbStatusBar19delayedConstructionEv @ 6372 NONAME
_ZN11HbTouchArea12gestureEventEP13QGestureEvent @ 6373 NONAME
- _ZN12HbIconLoader10unLoadIconEP10HbIconImplb @ 6374 NONAME
+ _ZN12HbIconLoader10unLoadIconEP10HbIconImplb @ 6374 NONAME ABSENT
_ZN12HbIconLoader15freeGpuIconDataEv @ 6375 NONAME
_ZN12HbIconLoader17removeItemInCacheEP10HbIconImpl @ 6376 NONAME
_ZN12HbIconLoader19storeIconEngineInfoEP12HbIconEngine @ 6377 NONAME
@@ -6718,7 +6719,7 @@
_ZN12HbMainWindow17aboutToChangeViewEP6HbViewS1_ @ 6717 NONAME
_ZN12HbTlvWrapper17getTlvEncodedDataERK7QStringRK6QSizeFN2Qt15AspectRatioModeE @ 6718 NONAME ABSENT
_ZN12HbTlvWrapper24getTlvEncodedDataFromDomERKjR6QSizeFN2Qt15AspectRatioModeE @ 6719 NONAME ABSENT
- _ZN12HbToolButton15initStyleOptionEP23HbStyleOptionToolButton @ 6720 NONAME
+ _ZN12HbToolButton15initStyleOptionEP23HbStyleOptionToolButton @ 6720 NONAME ABSENT
_ZN13HbXmlVariableC1Ev @ 6721 NONAME
_ZN13HbXmlVariableC2Ev @ 6722 NONAME
_ZN13HbXmlVariableD1Ev @ 6723 NONAME
@@ -8015,18 +8016,18 @@
_ZN12HbIconLoader26getMultiIconImplFromServerER11QStringListR7QVectorI6QSizeFEN2Qt15AspectRatioModeEN5QIcon4ModeEbb6QFlagsINS_16IconLoaderOptionEERK6QColorNS_12IconDataTypeENS_7PurposeERS2_IP10HbIconImplE15HbRenderingMode @ 8014 NONAME
_ZN13HbNvgIconImplC1ERK16HbSharedIconInfoRK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb15HbRenderingMode @ 8015 NONAME
_ZN13HbNvgIconImplC2ERK16HbSharedIconInfoRK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb15HbRenderingMode @ 8016 NONAME
- _ZN13HbThemeClient10unloadIconERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEbRK6QColor15HbRenderingMode @ 8017 NONAME
+ _ZN13HbThemeClient10unloadIconERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEbRK6QColor15HbRenderingMode @ 8017 NONAME ABSENT
_ZN13HbThemeClient15unLoadMultiIconERK11QStringListRK7QVectorI6QSizeFEN2Qt15AspectRatioModeEN5QIcon4ModeEbRK6QColor15HbRenderingMode @ 8018 NONAME
_ZN13HbThemeClient16getMultiIconInfoERK11QStringListRK7QVectorI6QSizeFEN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8019 NONAME
- _ZN13HbThemeClient17getSharedIconInfoERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8020 NONAME
+ _ZN13HbThemeClient17getSharedIconInfoERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8020 NONAME ABSENT
_ZN13HbThemeClient19switchRenderingModeE15HbRenderingMode @ 8021 NONAME
_ZN13HbThemeClient20getMultiPartIconInfoERK11QStringListRK19HbMultiPartSizeDataRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8022 NONAME
_ZN16HbPixmapIconImplC1E16HbSharedIconInfoR7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb15HbRenderingMode @ 8023 NONAME
_ZN16HbPixmapIconImplC2E16HbSharedIconInfoR7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb15HbRenderingMode @ 8024 NONAME
- _ZN20HbThemeClientPrivate10unloadIconERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEbRK6QColor15HbRenderingMode @ 8025 NONAME
+ _ZN20HbThemeClientPrivate10unloadIconERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEbRK6QColor15HbRenderingMode @ 8025 NONAME ABSENT
_ZN20HbThemeClientPrivate15unLoadMultiIconERK11QStringListRK7QVectorI6QSizeFEN2Qt15AspectRatioModeEN5QIcon4ModeEbRK6QColor15HbRenderingMode @ 8026 NONAME
_ZN20HbThemeClientPrivate16getMultiIconInfoERK11QStringListRK7QVectorI6QSizeFEN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8027 NONAME
- _ZN20HbThemeClientPrivate17getSharedIconInfoERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8028 NONAME
+ _ZN20HbThemeClientPrivate17getSharedIconInfoERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8028 NONAME ABSENT
_ZN20HbThemeClientPrivate19switchRenderingModeE15HbRenderingMode @ 8029 NONAME
_ZN20HbThemeClientPrivate20getMultiPartIconInfoERK11QStringListRK19HbMultiPartSizeDataRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingMode @ 8030 NONAME
_ZN12HbThemeIndex11getItemDataERK7QString @ 8031 NONAME
@@ -8126,7 +8127,7 @@
_ZNK16HbInputModeCache10descriptorEPK13HbInputMethod @ 8125 NONAME
_ZNK16HbInputModeCache12acceptsStateEPK13HbInputMethodRK12HbInputState @ 8126 NONAME
_ZNK19HbInputSettingProxy20preferredInputMethodEN2Qt11OrientationE @ 8127 NONAME
- _ZNK19HbInputSettingProxy20preferredInputMethodEv @ 8128 NONAME
+ _ZNK19HbInputSettingProxy20preferredInputMethodEv @ 8128 NONAME ABSENT
_ZNK19HbInputSettingProxy30preferredInputMethodCustomDataEN2Qt11OrientationE @ 8129 NONAME
_ZN19HbInputSettingProxy23setPreferredInputMethodEN2Qt11OrientationERK23HbInputMethodDescriptorRK10QByteArray @ 8130 NONAME
_ZTI18HbShrinkingVkbHost @ 8131 NONAME
@@ -8516,8 +8517,8 @@
_ZN20HbThemeClientPrivate19getSharedStyleSheetERK7QStringN20HbLayeredStyleLoader13LayerPriorityERb @ 8515 NONAME
_ZN20HbThemeClientPrivate20getSharedMissedHbCssEv @ 8516 NONAME
_ZN12HbWidgetBase14updateGeometryEv @ 8517 NONAME
- _ZN19HbWidgetBasePrivate20activateParentLayoutEv @ 8518 NONAME
- _ZN19HbWidgetBasePrivate20ignoreGeometryUpdateEv @ 8519 NONAME
+ _ZN19HbWidgetBasePrivate20activateParentLayoutEv @ 8518 NONAME ABSENT
+ _ZN19HbWidgetBasePrivate20ignoreGeometryUpdateEv @ 8519 NONAME ABSENT
_ZThn16_N12HbWidgetBase14updateGeometryEv @ 8520 NONAME
_ZN10HbTextItem14updateGeometryEv @ 8521 NONAME
_ZThn16_N10HbTextItem14updateGeometryEv @ 8522 NONAME
@@ -8544,5 +8545,105 @@
_ZNK22HbKeymapFactoryPrivate7isValidEPK8HbKeymap @ 8543 NONAME
_ZN14HbIconAnimator12setLoopCountEi @ 8544 NONAME
_ZN7HbPopup6polishER17HbStyleParameters @ 8545 NONAME
- _ZN14HbPopupPrivate11resizePopupEv @ 8546 NONAME
+ _ZN14HbPopupPrivate11resizePopupEv @ 8546 NONAME ABSENT
+ _ZN19HbInputSettingProxy27chineseDefaultKeypadChangedEb @ 8547 NONAME
+ _ZN19HbInputSettingProxy33setWesternDefaultKeypadForChineseEb @ 8548 NONAME
+ _ZNK19HbInputSettingProxy33useWesternDefaultKeypadForChineseEv @ 8549 NONAME
+ _ZN12HbToolButton17initPrimitiveDataEP20HbStylePrimitiveDataPK15QGraphicsObject @ 8550 NONAME
+ _ZN12HbWidgetBase17initPrimitiveDataEP20HbStylePrimitiveDataPK15QGraphicsObject @ 8551 NONAME
+ _ZN16HbAbstractButton17initPrimitiveDataEP20HbStylePrimitiveDataPK15QGraphicsObject @ 8552 NONAME
+ _ZN20HbStylePrimitiveDataC1Eii @ 8553 NONAME
+ _ZN20HbStylePrimitiveDataC2Eii @ 8554 NONAME
+ _ZN24HbStyleIconPrimitiveDataC1Ev @ 8555 NONAME
+ _ZN24HbStyleIconPrimitiveDataC2Ev @ 8556 NONAME
+ _ZN24HbStyleTextPrimitiveDataC1Ev @ 8557 NONAME
+ _ZN24HbStyleTextPrimitiveDataC2Ev @ 8558 NONAME
+ _ZN25HbStyleFramePrimitiveDataC1Ev @ 8559 NONAME
+ _ZN25HbStyleFramePrimitiveDataC2Ev @ 8560 NONAME
+ _ZN27HbStyleMarqueePrimitiveDataC1Ev @ 8561 NONAME
+ _ZN27HbStyleMarqueePrimitiveDataC2Ev @ 8562 NONAME
+ _ZN28HbStyleRichTextPrimitiveDataC1Ev @ 8563 NONAME
+ _ZN28HbStyleRichTextPrimitiveDataC2Ev @ 8564 NONAME
+ _ZN29HbStyleTouchAreaPrimitiveDataC1Ev @ 8565 NONAME
+ _ZN29HbStyleTouchAreaPrimitiveDataC2Ev @ 8566 NONAME
+ _ZNK7HbStyle15createPrimitiveENS_13PrimitiveTypeERK7QStringP15QGraphicsObject @ 8567 NONAME
+ _ZNK7HbStyle15updatePrimitiveEP15QGraphicsObjectPK20HbStylePrimitiveDataS1_ @ 8568 NONAME
+ _ZN10HbIconItem8setAsyncEb @ 8569 NONAME
+ _ZN12HbIconLoader10unLoadIconEP10HbIconImplbb @ 8570 NONAME
+ _ZN12HbIconLoader11finishLocalER19HbIconLoadingParams @ 8571 NONAME
+ _ZN12HbIconLoader13asyncCallbackERK16HbSharedIconInfoPv @ 8572 NONAME
+ _ZN12HbIconLoader13lookupInCacheERK19HbIconLoadingParamsP10QByteArray @ 8573 NONAME
+ _ZN12HbIconLoader14cancelLoadIconEPFvP10HbIconImplPvbES2_ @ 8574 NONAME
+ _ZN12HbIconLoader14loadLocalAsyncERK19HbIconLoadingParamsRK7QStringPFvP10HbIconImplPvbES8_ @ 8575 NONAME
+ _ZN12HbIconLoader14localLoadReadyERK19HbIconLoadingParamsPv @ 8576 NONAME
+ _ZN12HbIconLoader22getIconFromServerAsyncER19HbIconLoadingParamsPFvP10HbIconImplPvbES4_ @ 8577 NONAME
+ _ZN12HbIconLoader23finishGetIconFromServerER16HbSharedIconInfoR19HbIconLoadingParams @ 8578 NONAME
+ _ZN12HbIconLoader8loadIconERK7QStringNS_12IconDataTypeENS_7PurposeERK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeE6QFlagsINS_16IconLoaderOptionEEP14HbIconAnimatorRK6QColorPFvP10HbIconImplPvbESM_ @ 8579 NONAME
+ _ZN12HbIconLoader9cacheIconERK19HbIconLoadingParamsP10HbIconImplP10QByteArray @ 8580 NONAME
+ _ZN12HbIconLoader9loadLocalER19HbIconLoadingParamsRK7QString @ 8581 NONAME
+ _ZN12HbIconSource23deleteImageIfLargerThanEi @ 8582 NONAME
+ _ZN12HbIconSource5imageEv @ 8583 NONAME
+ _ZN13HbThemeClient17getSharedIconInfoERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingModePFbRK16HbSharedIconInfoPvESL_ @ 8584 NONAME ABSENT
+ _ZN13HbThemeClient23cancelGetSharedIconInfoEPFbRK16HbSharedIconInfoPvES3_ @ 8585 NONAME
+ _ZN20HbThemeClientPrivate17getSharedIconInfoERK7QStringRK6QSizeFN2Qt15AspectRatioModeEN5QIcon4ModeEb6QFlagsIN12HbIconLoader16IconLoaderOptionEERK6QColor15HbRenderingModePFbRK16HbSharedIconInfoPvESL_ @ 8586 NONAME ABSENT
+ _ZN20HbThemeClientPrivate18scheduleQueueCheckEv @ 8587 NONAME
+ _ZN20HbThemeClientPrivate23cancelGetSharedIconInfoEPFbRK16HbSharedIconInfoPvES3_ @ 8588 NONAME
+ _ZNK10HbIconItem5asyncEv @ 8589 NONAME
+ _ZN17HbIconItemPrivate14setThemedColorERK6QColor @ 8590 NONAME
+ _ZN17HbIconItemPrivate14updateIconItemEv @ 8591 NONAME
+ _ZN17HbIconItemPrivate15outlinesEnabledE @ 8592 NONAME DATA 1
+ _ZN17HbIconItemPrivate16updateIconParamsEv @ 8593 NONAME
+ _ZN17HbIconItemPrivate22clearStoredIconContentEv @ 8594 NONAME
+ _ZN17HbIconItemPrivate22setAsyncCallbackFilterEPFbP10HbIconItemPvES2_ @ 8595 NONAME
+ _ZN17HbIconItemPrivateC1ERK6HbIcon @ 8596 NONAME
+ _ZN17HbIconItemPrivateC2ERK6HbIcon @ 8597 NONAME
+ _ZN17HbIconItemPrivateD0Ev @ 8598 NONAME
+ _ZN17HbIconItemPrivateD1Ev @ 8599 NONAME
+ _ZN17HbIconItemPrivateD2Ev @ 8600 NONAME
+ _ZNK17HbIconItemPrivate23recalculateBoundingRectEv @ 8601 NONAME
+ _ZTI17HbIconItemPrivate @ 8602 NONAME
+ _ZTV17HbIconItemPrivate @ 8603 NONAME
+ _ZN13HbThemeClient10unloadIconERKNS_11IconReqInfoE @ 8604 NONAME
+ _ZN13HbThemeClient15batchUnloadIconERK7QVectorINS_11IconReqInfoEE @ 8605 NONAME
+ _ZN13HbThemeClient17getSharedIconInfoERKNS_11IconReqInfoE @ 8606 NONAME
+ _ZN13HbThemeClient17getSharedIconInfoERKNS_11IconReqInfoEPFbRK16HbSharedIconInfoPvES6_ @ 8607 NONAME
+ _ZN20HbThemeClientPrivate10unloadIconERKN13HbThemeClient11IconReqInfoE @ 8608 NONAME
+ _ZN20HbThemeClientPrivate15batchUnloadIconERK7QVectorIN13HbThemeClient11IconReqInfoEE @ 8609 NONAME
+ _ZN20HbThemeClientPrivate17getSharedIconInfoERKN13HbThemeClient11IconReqInfoE @ 8610 NONAME
+ _ZN20HbThemeClientPrivate17getSharedIconInfoERKN13HbThemeClient11IconReqInfoEPFbRK16HbSharedIconInfoPvES7_ @ 8611 NONAME
+ _ZN16HbFeedbackEngine24advancedGestureActivatedEPK8HbWidget @ 8612 NONAME
+ _ZN24HbEditorInterfacePrivate11qt_metacallEN11QMetaObject4CallEiPPv @ 8613 NONAME
+ _ZN24HbEditorInterfacePrivate11qt_metacastEPKc @ 8614 NONAME
+ _ZN24HbEditorInterfacePrivate16staticMetaObjectE @ 8615 NONAME DATA 16
+ _ZN24HbEditorInterfacePrivate19getStaticMetaObjectEv @ 8616 NONAME
+ _ZN24HbEditorInterfacePrivate19setInputMethodHintsE6QFlagsIN2Qt15InputMethodHintEE @ 8617 NONAME
+ _ZN24HbEditorInterfacePrivate21cursorPositionChangedEii @ 8618 NONAME
+ _ZN24HbEditorInterfacePrivate21cursorPositionChangedEv @ 8619 NONAME
+ _ZN24HbEditorInterfacePrivate26notifyCursorPositionChangeEii @ 8620 NONAME
+ _ZN24HbEditorInterfacePrivate4lockEv @ 8621 NONAME
+ _ZN24HbEditorInterfacePrivate6unlockEv @ 8622 NONAME
+ _ZN29HbEditorInterfacePrivateCache11isConnectedEP7QObject @ 8623 NONAME
+ _ZN29HbEditorInterfacePrivateCache11qt_metacallEN11QMetaObject4CallEiPPv @ 8624 NONAME
+ _ZN29HbEditorInterfacePrivateCache11qt_metacastEPKc @ 8625 NONAME
+ _ZN29HbEditorInterfacePrivateCache12attachEditorEP7QObjectP17HbEditorInterface @ 8626 NONAME
+ _ZN29HbEditorInterfacePrivateCache15actionDestroyedEP7QObject @ 8627 NONAME
+ _ZN29HbEditorInterfacePrivateCache16staticMetaObjectE @ 8628 NONAME DATA 16
+ _ZN29HbEditorInterfacePrivateCache18interfaceDestroyedEP7QObject @ 8629 NONAME
+ _ZN29HbEditorInterfacePrivateCache18notifyValueChangedEP7QObject @ 8630 NONAME
+ _ZN29HbEditorInterfacePrivateCache19getStaticMetaObjectEv @ 8631 NONAME
+ _ZN29HbEditorInterfacePrivateCache8instanceEv @ 8632 NONAME
+ _ZN29HbEditorInterfacePrivateCache9destroyedEP7QObject @ 8633 NONAME
+ _ZN29HbEditorInterfacePrivateCacheC1Ev @ 8634 NONAME
+ _ZN29HbEditorInterfacePrivateCacheC2Ev @ 8635 NONAME
+ _ZN29HbEditorInterfacePrivateCacheD0Ev @ 8636 NONAME
+ _ZN29HbEditorInterfacePrivateCacheD1Ev @ 8637 NONAME
+ _ZN29HbEditorInterfacePrivateCacheD2Ev @ 8638 NONAME
+ _ZNK24HbEditorInterfacePrivate10metaObjectEv @ 8639 NONAME
+ _ZNK24HbEditorInterfacePrivate12hasInterfaceEP17HbEditorInterface @ 8640 NONAME
+ _ZNK24HbEditorInterfacePrivate16inputMethodHintsEv @ 8641 NONAME
+ _ZNK29HbEditorInterfacePrivateCache10metaObjectEv @ 8642 NONAME
+ _ZTI24HbEditorInterfacePrivate @ 8643 NONAME
+ _ZTI29HbEditorInterfacePrivateCache @ 8644 NONAME
+ _ZTV24HbEditorInterfacePrivate @ 8645 NONAME
+ _ZTV29HbEditorInterfacePrivateCache @ 8646 NONAME
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -40,7 +40,6 @@
#include <hbpopup.h>
#include <hbgraphicsscene.h>
#include <hbcorepskeys_r.h>
-
#if defined(Q_OS_SYMBIAN)
#include <coemain.h>
#include <coecntrl.h>
@@ -112,18 +111,18 @@
}
bool RegionUpdateFilter::eventFilter(QObject* obj, QEvent *event)
- {
- if (event->type() == QEvent::QEvent::GraphicsSceneResize) {
- HbPopup *popup = qobject_cast<HbPopup*>(obj);
- if (popup) {
- QRectF rect = popup->rect();
- rect.moveTo(popup->pos());
- HbDeviceDialogsContainer::Dialog & dialog = mDeviceDialogManger->mDialogs.find(popup);
- mDeviceDialogManger->addRegionRect(dialog.id(), rect);
- }
- }
- return false;
- }
+ {
+ if (event->type() == QEvent::QEvent::GraphicsSceneResize) {
+ HbPopup *popup = qobject_cast<HbPopup*>(obj);
+ if (popup) {
+ QRectF rect = popup->rect();
+ rect.moveTo(popup->pos());
+ HbDeviceDialogsContainer::Dialog & dialog = mDeviceDialogManger->mDialogs.find(popup);
+ mDeviceDialogManger->addRegionRect(dialog.id(), rect);
+ }
+ }
+ return false;
+ }
#endif
/*!
@@ -143,6 +142,7 @@
,mMousePressCatcher(this)
,mRegionUpdateFilter(this)
,mWindowRegion()
+ ,mWgOrdinalPriority(ECoeWinPriorityNormal)
#endif
{
TRACE_ENTRY
@@ -155,13 +155,13 @@
connect(mIndicatorPluginManager, SIGNAL( indicatorUpdated(const IndicatorClientInfo) ),
this, SLOT(indicatorUpdated(const IndicatorClientInfo)));
connect(mIndicatorPluginManager, SIGNAL(indicatorUserActivated(QVariantMap)),
- q, SIGNAL(indicatorUserActivated(QVariantMap)));
+ q, SIGNAL(indicatorUserActivated(QVariantMap)));
// Server publishes it's status. Applications use it to delay showing of notification
// dialogs when server is showing.
mServerStatus.setStatus(HbDeviceDialogServerStatus::NoFlags);
qApp->installEventFilter(this);
init();
-#if defined(Q_OS_SYMBIAN)
+#if defined(Q_OS_SYMBIAN)
_LIT_SECURITY_POLICY_PASS(KRdPolicy); // all pass
_LIT_SECURITY_POLICY_S0(KWrPolicy, KHbPsForegroundAppOrientationCategoryUid.iUid); // pass device dialog server
@@ -264,14 +264,18 @@
}
id = dialog.id();
- if (info.group == HbDeviceDialogPlugin::DeviceNotificationDialogGroup) {
+ // Set popup priority
+ HbDeviceDialogsContainer::Dialog::Flags flags = dialog.flags();
+ setDialogPriority(popup, flags);
+
+ if (flags & HbDeviceDialogsContainer::Dialog::NotificationGroup) {
// Disable HbNotificationDialog sequential show feature. Server takes care of
// showing sequentially.
popup->setProperty("sequentialShow", false);
}
showDialogs();
-
+ controlForeground();
updateStatus();
TRACE_EXIT
@@ -379,30 +383,68 @@
}
#if defined(Q_OS_SYMBIAN)
-// Move application to fore/background
-void HbDeviceDialogManagerPrivate::moveToForeground(bool foreground)
-{
- TRACE_ENTRY_ARGS(foreground)
-
- if (foreground) {
- if(!mMainWindow->isVisible() || !mMainWindow->isActiveWindow()) {
- mMainWindow->showFullScreen();
- doMoveToForeground(foreground, ECoeWinPriorityAlwaysAtFront);
- }
- } else {
- if(mMainWindow->isVisible()) {
- mMainWindow->hide();
- doMoveToForeground(foreground, ECoeWinPriorityNormal);
- }
- }
- TRACE_EXIT
-}
void HbDeviceDialogManagerPrivate::doMoveToForeground(bool foreground, int priority)
{
- const int positionForeground = foreground ? 0 : -1;
+ if (priority == ECoeWinPriorityNormal) {
+ if (mMainWindow->isVisible()) {
+ mMainWindow->hide();
+ }
+ } else {
+ if (!mMainWindow->isVisible() || !mMainWindow->isActiveWindow()) {
+ mMainWindow->showFullScreen();
+ }
+ }
+ const int position = foreground ? 0 : -1;
RWindowGroup &rootWindowGroup = CCoeEnv::Static()->RootWin();
- rootWindowGroup.SetOrdinalPosition(positionForeground, priority);
+ rootWindowGroup.SetOrdinalPosition(position, priority);
+ mWgOrdinalPriority = priority;
+}
+
+// Move application fore/background and adjust window group priorities
+void HbDeviceDialogManagerPrivate::controlForeground(ForegroundControl control)
+{
+ const HbDeviceDialogsContainer::Dialog::Flags showing(
+ HbDeviceDialogsContainer::Dialog::Showing);
+ const HbDeviceDialogsContainer::Dialog start;
+
+ int numShowing = 0;
+ int numSecurity = 0;
+ int numCritical = 0;
+
+ // Loop over showing dialogs
+ const HbDeviceDialogsContainer::Dialog *current = &mDialogs.next(start, showing, showing);
+ while(current->isValid()) {
+ HbDeviceDialogsContainer::Dialog::Flags flags = current->flags();
+ numShowing++;
+ numSecurity += (flags & HbDeviceDialogsContainer::Dialog::SecurityLevel) ? 1 : 0;
+ numCritical += (flags & HbDeviceDialogsContainer::Dialog::CriticalLevel) ? 1 : 0;
+ current = &mDialogs.next(*current, showing, showing);
+ }
+
+ const int wgBackground = ECoeWinPriorityNormal;
+ const int wgForeground = ECoeWinPriorityAlwaysAtFront;
+ const int wgForegroundCritical = ECoeWinPriorityAlwaysAtFront + 50;
+
+ if (numShowing == 0) {
+ doMoveToForeground(false, wgBackground);
+ return;
+ }
+
+ switch(control) {
+ case FgControlNone:
+ doMoveToForeground(true, numCritical ? wgForegroundCritical : wgForeground);
+ break;
+ case FgControlSecurityCriticalClosed:
+ // Security or critical dialog closed. If there is only one security dialog active,
+ // Give change to other apps at alwaysAtFront priority to come foreground.
+ if (numCritical == 0 && numSecurity == 1) {
+ doMoveToForeground(false, wgForeground);
+ } else {
+ doMoveToForeground(true, numCritical ? wgForegroundCritical : wgForeground);
+ }
+ break;
+ }
}
void HbDeviceDialogManagerPrivate::updateWindowRegion() const
@@ -425,18 +467,17 @@
}
#else
-// Move application to fore/background
-void HbDeviceDialogManagerPrivate::moveToForeground(bool foreground)
-{
- Q_UNUSED(foreground)
-}
-
void HbDeviceDialogManagerPrivate::doMoveToForeground(bool foreground, int priority)
{
Q_UNUSED(foreground)
Q_UNUSED(priority)
}
+void HbDeviceDialogManagerPrivate::controlForeground(ForegroundControl control)
+{
+ Q_UNUSED(control)
+}
+
void HbDeviceDialogManagerPrivate::updateWindowRegion() const
{
}
@@ -513,12 +554,9 @@
showing | closeCalled);
while(current->isValid()) {
if (current->flags() & notificationGroup) {
- if (!showingNotification) {
+ if (!showingNotification) { // notification dialogs are shown serially
showingNotification = true;
current->setFlags(showing);
- // HACK
- mScene->addItem(current->widget()->deviceDialogWidget());
- // HACK END
HbPopup *popup = current->widget()->deviceDialogWidget();
popup->show();
newDialogs |= current->flags();
@@ -529,9 +567,6 @@
}
} else { // generic dialog
current->setFlags(showing);
- // HACK
- mScene->addItem(current->widget()->deviceDialogWidget());
- // HACK END
current->widget()->deviceDialogWidget()->show();
newDialogs |= current->flags();
setupWindowRegion();
@@ -541,14 +576,12 @@
}
current = 0;
- // Lights control. If security layer is active, only security group or critical group turn lights on.
+ // Lights control. If security layer is active, only security or critical level turn lights on.
// Otherwise lights turned on every time a dialog is shown.
- int lightsMask = HbDeviceDialogsContainer::Dialog::SecurityGroup |
- HbDeviceDialogsContainer::Dialog::CriticalGroup;
+ int lightsMask = HbDeviceDialogsContainer::Dialog::SecurityLevel |
+ HbDeviceDialogsContainer::Dialog::CriticalLevel;
if (!showingSecurity) {
- lightsMask |= HbDeviceDialogsContainer::Dialog::GenericGroup |
- HbDeviceDialogsContainer::Dialog::NotificationGroup |
- HbDeviceDialogsContainer::Dialog::IndicatorGroup;
+ lightsMask |= HbDeviceDialogsContainer::Dialog::NormalLevel;
}
if (newDialogs & lightsMask) {
@@ -593,7 +626,6 @@
resetWindowRegion();
enableReceiptOfFocus(true);
}
- moveToForeground(dialogsShowing);
}
/*!
@@ -695,9 +727,6 @@
connectIndicatorStatus(deviceDialogIf);
}
- // Set popup priority
- setDialogPriority(popup, deviceDialogInfo.group);
-
return deviceDialogIf;
}
@@ -708,7 +737,7 @@
const HbDeviceDialogsContainer::Dialog start;
const HbDeviceDialogsContainer::Dialog::Flags showingFlag(
HbDeviceDialogsContainer::Dialog::Showing);
- HbDeviceDialogsContainer::Dialog *current = &mDialogs.next(start, showingFlag, showingFlag);
+ const HbDeviceDialogsContainer::Dialog *current = &mDialogs.next(start, showingFlag, showingFlag);
if (current->isValid()) {
status |= HbDeviceDialogServerStatus::ShowingDialog;
}
@@ -752,27 +781,25 @@
}
// Set dialog (popup) priority
-void HbDeviceDialogManagerPrivate::setDialogPriority(HbPopup *popup, HbDeviceDialogPlugin::DeviceDialogGroup group)
+void HbDeviceDialogManagerPrivate::setDialogPriority(HbPopup *popup,
+ HbDeviceDialogsContainer::Dialog::Flags flags)
{
// For notification, security and critical layer popups, set popup priority. Others use default.
- const quint8 CriticalPopupPriority = HbPopupPrivate::VirtualKeyboard - 1;
- const quint8 SecurityPopupPriority = HbPopupPrivate::VirtualKeyboard - 2;
- const quint8 NotificationPopupPriority = HbPopupPrivate::VirtualKeyboard - 3;
+ const quint8 CriticalPopupPriority = HbPopupPrivate::VirtualKeyboard - 2;
+ const quint8 SecurityPopupPriority = HbPopupPrivate::VirtualKeyboard - 4;
+ const quint8 NotificationPopupPriority = HbPopupPrivate::VirtualKeyboard - 6;
quint8 priority = HbPopupPrivate::Default;
- switch(group) {
- case HbDeviceDialogPlugin::DeviceNotificationDialogGroup:
- priority = NotificationPopupPriority; break;
- case HbDeviceDialogPlugin::SecurityGroup:
- priority = SecurityPopupPriority; break;
- case HbDeviceDialogPlugin::CriticalGroup:
- priority = CriticalPopupPriority; break;
- case HbDeviceDialogPlugin::GenericDeviceDialogGroup:
- // fall through
- case HbDeviceDialogPlugin::IndicatorGroup:
- // fall through
- default:
- ; // fall through
+ if (flags & HbDeviceDialogsContainer::Dialog::NormalLevel) {
+ if (flags & HbDeviceDialogsContainer::Dialog::NotificationGroup) {
+ priority = NotificationPopupPriority;
+ }
+ } else {
+ if (flags & HbDeviceDialogsContainer::Dialog::SecurityLevel) {
+ priority = SecurityPopupPriority;
+ } else {
+ priority = CriticalPopupPriority;
+ }
}
HbPopupPrivate::d_ptr(popup)->setPriority(priority);
}
@@ -781,8 +808,15 @@
bool HbDeviceDialogManagerPrivate::checkDialogInfo(
const HbDeviceDialogPlugin::DeviceDialogInfo &deviceDialogInfo)
{
- return deviceDialogInfo.group >= HbDeviceDialogPlugin::GenericDeviceDialogGroup &&
- deviceDialogInfo.group <= HbDeviceDialogPlugin::CriticalGroup;
+ unsigned int tmp = deviceDialogInfo.group;
+ if (tmp > HbDeviceDialogPlugin::CriticalGroup) {
+ return false;
+ }
+ tmp = deviceDialogInfo.showLevel;
+ if (tmp > HbDeviceDialogPlugin::CriticalLevel) {
+ return false;
+ }
+ return true;
}
// Called by device dialog widget to send some data to client.
@@ -801,90 +835,48 @@
void HbDeviceDialogManagerPrivate::deleteDeviceDialog(int id)
{
TRACE_ENTRY
- HbDeviceDialogsContainer::Dialog ¤t = mDialogs.find(id);
+ HbDeviceDialogsContainer::Dialog &dialog = mDialogs.find(id);
- bool securityDialog = current.flags() & (HbDeviceDialogsContainer::Dialog::SecurityGroup|HbDeviceDialogsContainer::Dialog::CriticalGroup);
+ bool securityDialog = dialog.flags() &
+ (HbDeviceDialogsContainer::Dialog::SecurityLevel|HbDeviceDialogsContainer::Dialog::CriticalLevel);
- if (current.isValid()) {
+ if (dialog.isValid()) {
// If device dialog was cancelled by client or server, give reason
int closeReason = HbDeviceDialogNoError;
- if ((current.flags() & HbDeviceDialogsContainer::Dialog::CloseCalled)) {
- if ((current.flags() & HbDeviceDialogsContainer::Dialog::ClosedByServer)) {
+ if ((dialog.flags() & HbDeviceDialogsContainer::Dialog::CloseCalled)) {
+ if ((dialog.flags() & HbDeviceDialogsContainer::Dialog::ClosedByServer)) {
closeReason = static_cast<int>(HbDeviceDialog::SystemCancelledError);
} else {
closeReason = static_cast<int>(HbDeviceDialog::CancelledError);
}
}
emit q->deviceDialogClosed(id, closeReason);
- disconnectDialogSignals(current.widget());
- mDialogs.remove(current);
+ disconnectDialogSignals(dialog.widget());
+ mDialogs.remove(dialog);
removeRegionRect(id);
}
showDialogs();
setupWindowRegion();
updateStatus();
- //make sure there is no fixed orientation
+ // Make sure there is no fixed orientation
if (mDialogs.isEmpty()) {
mMainWindow->unsetOrientation(false);
mWsOriListener.stop();
}
- if (!securityDialog) {
- return;
- }
-
- // security or critical level active
- const HbDeviceDialogsContainer::Dialog begin;
- const HbDeviceDialogsContainer::Dialog::Flags securityGroup(
- HbDeviceDialogsContainer::Dialog::SecurityGroup);
- const HbDeviceDialogsContainer::Dialog::Flags criticalGroup(
- HbDeviceDialogsContainer::Dialog::CriticalGroup);
- const HbDeviceDialogsContainer::Dialog::Flags showing(
- HbDeviceDialogsContainer::Dialog::Showing);
-
- HbDeviceDialogsContainer::Dialog &dialog = mDialogs.next(begin, securityGroup|showing,
- securityGroup|showing);
- bool showingSecurity = dialog.isValid();
- if (!showingSecurity) {
- dialog = mDialogs.next(begin, criticalGroup|showing, criticalGroup|showing);
- showingSecurity = dialog.isValid();
- }
+ controlForeground(securityDialog ? FgControlSecurityCriticalClosed : FgControlNone);
- if (!showingSecurity) {
- return;
- }
- // check are there more security|critical dialogs showing. If there is, do not
- // goto background.
- bool moreDialogs = mDialogs.next(dialog, securityGroup|showing,
- securityGroup|showing).isValid();
-
- if (!moreDialogs) {
- moreDialogs = mDialogs.next(dialog, criticalGroup|showing,
- criticalGroup|showing).isValid();
- }
-
- if (showingSecurity && !moreDialogs) {
-#if defined(Q_OS_SYMBIAN)
- doMoveToForeground(false, ECoeWinPriorityAlwaysAtFront);
-#endif
- }
TRACE_EXIT
}
-
bool HbDeviceDialogManagerPrivate::eventFilter(QObject *obj, QEvent *event)
{
Q_UNUSED(obj)
-// activate to correct priority. e.g. Telephone application has gone to background and
-// we are in security level.
+ // Activate to correct ordinal position. e.g. Telephone application has gone to background and
+ // we are in security level.
if (event->type() == QEvent::ApplicationActivate) {
-#if defined(Q_OS_SYMBIAN)
- RWindowGroup &rootWindowGroup = CCoeEnv::Static()->RootWin();
- if (rootWindowGroup.OrdinalPriority() == ECoeWinPriorityAlwaysAtFront) {
- moveToForeground(true);
- }
-#endif // Q_OS_SYMBIAN
+ controlForeground();
}
return QObject::eventFilter(obj, event);
}
@@ -893,7 +885,7 @@
void HbDeviceDialogManagerPrivate::deviceDialogClosed()
{
TRACE_ENTRY
- HbDeviceDialogsContainer::Dialog ¤t = mDialogs.find(sender());
+ const HbDeviceDialogsContainer::Dialog ¤t = mDialogs.find(sender());
deleteDeviceDialog(current.isValid() ?
current.id() : HbDeviceDialogsContainer::Dialog::InvalidId);
TRACE_EXIT
@@ -1036,7 +1028,7 @@
// Delete closed dialogs that haven't given deviceDialogClosed() signal within a time limit
for(;;) {
- HbDeviceDialogsContainer::Dialog &dialog = mDialogs.next(start,
+ const HbDeviceDialogsContainer::Dialog &dialog = mDialogs.next(start,
closedCount, MaxDialogClosingPeriod);
if (dialog.isValid()) {
deleteDeviceDialog(dialog.id());
@@ -1062,7 +1054,7 @@
const HbDeviceDialogsContainer::Dialog::Variable dialogType =
HbDeviceDialogsContainer::Dialog::DialogType;
- HbDeviceDialogsContainer::Dialog *current = &mDialogs.next(start, dialogType, type);
+ const HbDeviceDialogsContainer::Dialog *current = &mDialogs.next(start, dialogType, type);
while(current->isValid()){
if ((current->flags() & (closeCalled|showing)) == showing) {
return true;
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogmanager_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -73,7 +73,7 @@
mDeviceDialogManger(deviceDialogManger) {}
protected:
bool eventFilter(QObject* obj, QEvent *event);
-private:
+private:
HbDeviceDialogManagerPrivate *mDeviceDialogManger;
};
@@ -105,6 +105,10 @@
MaxDialogClosingPeriod = 2 // 2 * HousekeeperTimerPeriod
};
+ enum ForegroundControl {
+ FgControlNone,
+ FgControlSecurityCriticalClosed
+ };
// Constructor and destructor
explicit HbDeviceDialogManagerPrivate(HbDeviceDialogManager *manager);
virtual ~HbDeviceDialogManagerPrivate();
@@ -123,8 +127,8 @@
QList<IndicatorClientInfo> indicatorClientInfoList() const;
// Device dialog control related API
- void moveToForeground(bool foreground);
void doMoveToForeground(bool foreground, int priority);
+ void controlForeground(ForegroundControl control = FgControlNone);
void updateWindowRegion() const;
void resetWindowRegion() const;
bool showDialogs();
@@ -137,7 +141,7 @@
static int checkpluginerror(int errorCode);
static void addSecurityCredentials(const HbDeviceDialogServer::Parameters ¶meters,
QVariantMap &credentials);
- static void setDialogPriority(HbPopup *popup, HbDeviceDialogPlugin::DeviceDialogGroup group);
+ static void setDialogPriority(HbPopup *popup, HbDeviceDialogsContainer::Dialog::Flags flags);
static bool checkDialogInfo(const HbDeviceDialogPlugin::DeviceDialogInfo &deviceDialogInfo);
void deleteDeviceDialog(int id);
bool eventFilter(QObject *obj, QEvent *event);
@@ -196,6 +200,7 @@
QList<RegionMapping> mRegionList;
RRegion mWindowRegion;
RProperty mHbOriProperty;
+ int mWgOrdinalPriority;
#endif
HbOrientationStatus::HbWsOrientationListener mWsOriListener;
};
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -41,14 +41,41 @@
mIndex = InvalidIndex;
#ifndef QT_NO_DEBUG
mContainer = 0;
+ mReadOnly = false;
#endif // QT_NO_DEBUG
}
+// Set class read only
+void HbDeviceDialogsContainer::Dialog::setReadOnly()
+{
+#ifndef QT_NO_DEBUG
+ mReadOnly = true;
+#endif
+}
+
+// Comparison
bool HbDeviceDialogsContainer::Dialog::operator ==(const Dialog &other) const
{
return mId == other.mId;
}
+// Assignment
+void HbDeviceDialogsContainer::Dialog::operator =(const Dialog &other)
+{
+ Q_ASSERT(!readOnly());
+ mId = other.mId;
+ mPtr = other.mPtr;
+ mFlags = other.mFlags;
+ for(int i = 0; i < NumVariables; i++) {
+ mVariables[i] = other.mVariables[i];
+ }
+ mIndex = other.mIndex;
+#ifndef QT_NO_DEBUG
+ mContainer = other.mContainer;
+ mReadOnly = other.mReadOnly;
+#endif // QT_NO_DEBUG
+}
+
// Verify that Dialog reference is valid
bool HbDeviceDialogsContainer::Dialog::verify() const
{
@@ -60,10 +87,21 @@
#endif // QT_NO_DEBUG
}
+// Return class read only
+bool HbDeviceDialogsContainer::Dialog::readOnly() const
+{
+#ifndef QT_NO_DEBUG
+ return mReadOnly == true;
+#else // QT_NO_DEBUG
+ return true;
+#endif // QT_NO_DEBUG
+}
+
// Constructor
HbDeviceDialogsContainer::HbDeviceDialogsContainer(HbDeviceDialogPluginManager &pluginManager) :
mPluginManager(pluginManager), mNextId(1)
{
+ mInvalidDialog.setReadOnly();
}
// Destructor
@@ -84,6 +122,7 @@
Dialog dialog;
dialog.mId = mNextId++;
dialog.mPtr = widget;
+
switch(deviceDialogInfo.group) {
case HbDeviceDialogPlugin::DeviceNotificationDialogGroup:
dialog.mFlags |= Dialog::NotificationGroup;
@@ -93,13 +132,29 @@
break;
case HbDeviceDialogPlugin::SecurityGroup:
dialog.mFlags |= Dialog::SecurityGroup;
+ dialog.mFlags |= Dialog::SecurityLevel;
break;
case HbDeviceDialogPlugin::CriticalGroup:
- dialog.mFlags |= Dialog::CriticalGroup;
+ dialog.mFlags |= Dialog::GenericGroup;
+ dialog.mFlags |= Dialog::CriticalLevel;
break;
default:
dialog.mFlags |= Dialog::GenericGroup;
}
+
+ if ((dialog.mFlags & (Dialog::CriticalLevel|Dialog::SecurityLevel|Dialog::NormalLevel)) == 0) {
+ switch(deviceDialogInfo.showLevel) {
+ case HbDeviceDialogPlugin::SecurityLevel:
+ dialog.mFlags |= Dialog::SecurityLevel;
+ break;
+ case HbDeviceDialogPlugin::CriticalLevel:
+ dialog.mFlags |= Dialog::CriticalLevel;
+ break;
+ default:
+ dialog.mFlags |= Dialog::NormalLevel;
+ }
+ }
+
#ifndef QT_NO_DEBUG
dialog.mContainer = this;
#endif // QT_NO_DEBUG
@@ -160,8 +215,8 @@
}
// Get next dialog with matching flag pattern
-HbDeviceDialogsContainer::Dialog &HbDeviceDialogsContainer::next(
- const Dialog &from, Dialog::Flags flags, Dialog::Flags mask)
+const HbDeviceDialogsContainer::Dialog &HbDeviceDialogsContainer::next(
+ const Dialog &from, Dialog::Flags flags, Dialog::Flags mask) const
{
// With invalid from start from beginning, otherwise start from next
int i = from.isValid() ? from.mIndex + 1 : 0;
@@ -178,11 +233,19 @@
if (i >= count) { // at the end
return mInvalidDialog;
}
- Dialog &dialog = mDialogs[i];
- dialog.mIndex = i;
+ const Dialog &dialog = mDialogs[i];
+ const_cast<Dialog &>(dialog).mIndex = i;
return dialog;
}
+// Get next dialog with matching flag pattern
+HbDeviceDialogsContainer::Dialog &HbDeviceDialogsContainer::next(
+ const Dialog &from, Dialog::Flags flags, Dialog::Flags mask)
+{
+ const HbDeviceDialogsContainer *container = this;
+ return const_cast<Dialog &>(container->next(from, flags, mask));
+}
+
// Get next dialog with matching variable value
HbDeviceDialogsContainer::Dialog &HbDeviceDialogsContainer::next(
const Dialog &from, Dialog::Variable variable, const QVariant &value)
@@ -207,6 +270,19 @@
return dialog;
}
+// Count dialogs with matching flag pattern
+int HbDeviceDialogsContainer::count(Dialog::Flags flags, Dialog::Flags mask) const
+{
+ int count = 0;
+ const Dialog *current = &next(Dialog(), flags, mask);
+ while(current->isValid()) {
+ count++;
+ // Find next one
+ current = &next(*current, flags, mask);
+ }
+ return count;
+}
+
// check is the dialog list empty
bool HbDeviceDialogsContainer::isEmpty() const
{
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogscontainer_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -48,12 +48,14 @@
NotificationGroup = 0x02,
IndicatorGroup = 0x04,
SecurityGroup = 0x08, // screen saver / alarm
- CriticalGroup = 0x10, // topmost dialogs
+ NormalLevel = 0x10,
+ SecurityLevel = 0x20, // showing on security level
+ CriticalLevel = 0x40, // showing on critical level
// Dialog status
- Showing = 0x20, // show() has been called
- CloseCalled = 0x40, // HbDeviceDialogInterface::closeDeviceDialog() has been called
- NoClient = 0x80, // dialog has no client (session closed or a client launched a new dialog)
- ClosedByServer = 0x100 // closed by server for some reason, not client
+ Showing = 0x80, // show() has been called
+ CloseCalled = 0x100, // HbDeviceDialogInterface::closeDeviceDialog() has been called
+ NoClient = 0x200, // dialog has no client (session closed or a client launched a new dialog)
+ ClosedByServer = 0x400 // closed by server for some reason, not client
};
Q_DECLARE_FLAGS(Flags, Flag)
enum Variable {
@@ -83,9 +85,12 @@
QString stringVariable(Variable selector) const {return mVariables[selector].toString();}
void setVariable(Variable selector, qulonglong value){mVariables[selector].setValue(value);}
void setVariable(Variable selector, const QString &value){mVariables[selector].setValue(value);}
+ void setReadOnly();
bool operator ==(const Dialog &other) const;
+ void operator =(const Dialog &other);
private:
bool verify() const;
+ bool readOnly() const;
int mId;
HbDeviceDialogInterface *mPtr;
@@ -94,6 +99,7 @@
int mIndex;
#ifndef QT_NO_DEBUG
HbDeviceDialogsContainer *mContainer; // used by verify()
+ bool mReadOnly; // used by readOnly()
#endif // QT_NO_DEBUG
friend class HbDeviceDialogsContainer;
};
@@ -107,13 +113,15 @@
Dialog &find(int id);
Dialog &find(const QObject *widget);
void remove(Dialog &dialog);
+ const Dialog &next(const Dialog &from, Dialog::Flags flags, Dialog::Flags mask) const;
Dialog &next(const Dialog &from, Dialog::Flags flags, Dialog::Flags mask);
Dialog &next(const Dialog &from, Dialog::Variable variable, quintptr value)
{return next(from, variable, QVariant(static_cast<qulonglong>(value)));}
Dialog &next(const Dialog &from, Dialog::Variable variable, const QString &value)
{return next(from, variable, QVariant(value));}
Dialog &next(const Dialog &from, Dialog::Variable variable, const QVariant &value);
- bool isEmpty() const;
+ int count(Dialog::Flags flags, Dialog::Flags mask) const;
+ bool isEmpty() const;
private:
HbDeviceDialogPluginManager &mPluginManager;
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserver.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbdevicedialogserver.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -218,5 +218,5 @@
void HbDeviceDialogServer::indicatorUserActivated(const QVariantMap &data)
{
- d_func()->IndicatorUserActivated(data);
+ d_func()->IndicatorUserActivated(data);
}
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbindicatorsessionhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbindicatorsessionhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -125,8 +125,8 @@
break;
}
case EHbSrvActivatedIndicatorData: {
- WriteIndicatorDataL(aMessage);
- break;
+ WriteIndicatorDataL(aMessage);
+ break;
}
default: {
break;
@@ -173,12 +173,12 @@
void HbIndicatorSessionHandler::IndicatorUserActivated(const QVariantMap& data)
{
- QString type = data.value("type").toString();
-
- if (indicatorTypes.contains(type) && iIndicatorChannelOpen) {
- indicatorDataMap = data;
- TRAP_IGNORE(WriteIndicatorDataL(iIndicatorChannel));
- }
+ QString type = data.value("type").toString();
+
+ if (indicatorTypes.contains(type) && iIndicatorChannelOpen) {
+ indicatorDataMap = data;
+ TRAP_IGNORE(WriteIndicatorDataL(iIndicatorChannel));
+ }
}
HbDeviceDialogServerPrivate& HbIndicatorSessionHandler::Server()
@@ -216,9 +216,9 @@
indicatorTypes.removeAll(type);
if (indicatorTypes.isEmpty() && iIndicatorChannelOpen) {
- indicatorDataMap.clear();
- iIndicatorChannelOpen = false;
- iIndicatorChannel.Complete(KErrCancel);
+ indicatorDataMap.clear();
+ iIndicatorChannelOpen = false;
+ iIndicatorChannel.Complete(KErrCancel);
}
HbDeviceDialogServer::IndicatorParameters indicatorParameters(type, aMessage, parameter);
@@ -364,8 +364,8 @@
void HbIndicatorSessionHandler::WriteIndicatorDataL(const RMessage2& aMessage)
{
- iIndicatorChannelOpen = EFalse;
- QByteArray array;
+ iIndicatorChannelOpen = EFalse;
+ QByteArray array;
QDataStream stream( &array, QIODevice::WriteOnly );
QVariant var(indicatorDataMap);
@@ -374,17 +374,17 @@
// Get client data buffer size
TInt size = aMessage.GetDesMaxLength( KSlot0 );
- TPckgBuf<TInt> buf( EHbIndicatorUserActivated );
- User::LeaveIfError(aMessage.Write(KSlot1, buf));
+ TPckgBuf<TInt> buf( EHbIndicatorUserActivated );
+ User::LeaveIfError(aMessage.Write(KSlot1, buf));
if (size >= array.size()) {
- // Buffer ok. Write data.
- TPtr8 ptr( reinterpret_cast<TUint8*>(array.data()), array.size(), array.size());
- TInt error = aMessage.Write( KSlot0, ptr );
- aMessage.Complete(error);
- indicatorDataMap.clear();
+ // Buffer ok. Write data.
+ TPtr8 ptr( reinterpret_cast<TUint8*>(array.data()), array.size(), array.size());
+ TInt error = aMessage.Write( KSlot0, ptr );
+ aMessage.Complete(error);
+ indicatorDataMap.clear();
} else {
- aMessage.Complete(array.size());
+ aMessage.Complete(array.size());
}
}
/*!
@@ -392,7 +392,7 @@
get the indicator type and parameter from the message.
*/
QString HbIndicatorSessionHandler::indicatorTypeFromMessageL(const RMessage2 &aMessage,
- QVariant ¶meter) const
+ QVariant ¶meter) const
{
TRACE_ENTRY
TInt dataSize = aMessage.GetDesLength( KSlot0 );
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbsysteminfosym_p_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbsysteminfosym_p_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -26,6 +26,7 @@
#include "hbsysteminfosym_p_p.h"
#include <qapplication.h>
#include <qcoreevent.h>
+#include <QMutexLocker>
const TUint32 secureId = 0x20022FC5;
const TUint32 splashGenServerSecureId = 0x2002E68B;
@@ -144,6 +145,7 @@
void HbSystemInfoPrivate::writeDeviceInfo()
{
+ QMutexLocker locker(&mutex);
QByteArray array;
QDataStream stream(&array, QIODevice::WriteOnly);
stream << mDeviceSystemInfo;
@@ -253,6 +255,8 @@
{
if (mode != mDeviceSystemInfo.networkMode) {
mDeviceSystemInfo.networkMode = mode;
+ mDeviceSystemInfo.networkStatus = mSystemNetworkInfo->networkStatus(mode);
+ mDeviceSystemInfo.signalStrength = QSystemNetworkInfo::networkSignalStrength(mode);
writeDeviceInfo();
}
}
--- a/src/hbcore/devicedialogbase/devicedialogserver/hbsysteminfosym_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/devicedialogserver/hbsysteminfosym_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -28,6 +28,7 @@
#include <e32base.h>
#include <e32property.h>
+#include <QMutex>
#include "hbsysteminfo_p.h"
struct DeviceSystemInfo
@@ -123,5 +124,6 @@
bool mWriter;
bool mListening;
HbForegroundWatcher *mWatcher;
+ QMutex mutex;
};
#endif // HBSYSTEMINFOSYM_P_P_H
--- a/src/hbcore/devicedialogbase/hbdevicedialogplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbdevicedialogplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -48,9 +48,9 @@
numbers in type strings. It performs string comparison of the whole string when searching
for a plugin.
- Device dialogs are divided into five groups: generic, notification, indicator-menu, security
- and critical groups. The group dictates how and when a dialog is shown. Generic and
- notification dialogs are intended for application use. Indicator, security and critical dialogs are
+ Device dialogs are divided into four groups: generic, notification, indicator-menu and security
+ groups. The group dictates how and when a dialog is shown. Generic and
+ notification dialogs are intended for application use. Indicator and security dialogs are
for platform. Each dialog indicates which group it belongs to. The group need not be fixed.
It may change depending on create parameters.
@@ -316,7 +316,7 @@
Defines device dialog groups. Each of these groups have different rules for showing
device dialogs.
- \sa deviceDialogInfo DeviceDialogInfo
+ \sa deviceDialogInfo() DeviceDialogInfo
*/
/*!
\var HbDeviceDialogPlugin::DeviceDialogGroup HbDeviceDialogPlugin::GenericDeviceDialogGroup
@@ -338,6 +338,29 @@
\var HbDeviceDialogPlugin::DeviceDialogGroup HbDeviceDialogPlugin::CriticalGroup
High priority dialogs shown on top other dialogs. Only platform device dialogs may
belong to this group.
+
+ \deprecated HbDeviceDialogPlugin::CriticalGroup
+ is deprecated. Instead use HbDeviceDialogPlugin::GenericDeviceDialogGroup and set
+ HbDeviceDialogPlugin::CriticalLayer.
+*/
+
+/*!
+ \enum HbDeviceDialogPlugin::ShowLevel
+ Defines a level (z-value) a device dialog is shown.
+
+ \sa deviceDialogInfo() DeviceDialogInfo
+*/
+/*!
+ \var HbDeviceDialogPlugin::ShowLevel HbDeviceDialogPlugin::NormalLevel
+ A default value to be used by applications.
+*/
+/*!
+ \var HbDeviceDialogPlugin::ShowLevel HbDeviceDialogPlugin::SecurityLevel
+ Reserved for platform use. Dialog is shown on top of normal dialogs.
+*/
+/*!
+ \var HbDeviceDialogPlugin::ShowLevel HbDeviceDialogPlugin::CriticalLevel
+ Reserved for platform use. Dialog is shown on top of security level dialogs.
*/
/*!
@@ -380,6 +403,9 @@
/*!
\var HbDeviceDialogPlugin::DefaultPriority
Default priority value to return in DeviceDialogInfo.
+
+ \deprecated HbDeviceDialogPlugin::DefaultPriority
+ is deprecated. Will be removed.
*/
/*!
@@ -403,6 +429,13 @@
<em>For future needs. Not used</em>.
Device dialog display priority. Determines queuing order of dialogs. Fill with
HbDeviceDialogPlugin::DefaultPriority.
+
+ \deprecated HbDeviceDialogPlugin::DeviceDialogInfo::priority
+ is deprecated. Will be removed.
+*/
+/*!
+ \var HbDeviceDialogPlugin::DeviceDialogInfo::showLevel
+ Level (z-value) the device dialog widget is shown. HbDeviceDialogPlugin::ShowLevel.
*/
/*!
\var HbDeviceDialogPlugin::DeviceDialogInfo::spare
--- a/src/hbcore/devicedialogbase/hbdevicedialogplugin.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbdevicedialogplugin.h Thu Sep 02 20:44:51 2010 +0300
@@ -64,7 +64,13 @@
DeviceNotificationDialogGroup,
IndicatorGroup,
SecurityGroup,
- CriticalGroup
+ CriticalGroup // deprecated
+ };
+
+ enum ShowLevel{
+ NormalLevel,
+ SecurityLevel,
+ CriticalLevel
};
enum DeviceDialogFlag{
@@ -77,14 +83,16 @@
Q_DECLARE_FLAGS(DeviceDialogFlags, DeviceDialogFlag)
enum {
- DefaultPriority = 0
+ DefaultPriority = 0 // deprecated
};
struct DeviceDialogInfo {
DeviceDialogGroup group;
int flags;
- int priority;
- quint32 spare[8];
+
+ int priority; // deprecated
+ ShowLevel showLevel;
+ quint32 spare[7];
};
virtual bool accessAllowed(const QString &deviceDialogType,
--- a/src/hbcore/devicedialogbase/hbdevicedialogsymbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbdevicedialogsymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -92,7 +92,7 @@
\a aData contains data from the dialog plugin.
The structure and meaning of the data is a contract between the dialog and
a client. Structure should be aligned with the data types supported by
- CHbSymbianVariantMap.
+ CHbSymbianVariantMap.
\sa CHbSymbianVariantMap.
*/
--- a/src/hbcore/devicedialogbase/hbindicator.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbindicator.h Thu Sep 02 20:44:51 2010 +0300
@@ -51,7 +51,7 @@
bool deactivate(const QString &indicatorType, const QVariant ¶meter = QVariant());
int error() const;
-
+
signals:
void userActivated(const QString &type, const QVariantMap &data);
--- a/src/hbcore/devicedialogbase/hbindicatorsym_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbindicatorsym_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -407,7 +407,7 @@
TBool listening = (activate && q_ptr->receivers(SIGNAL(userActivated(QString, QVariantMap))) > 0);
if (!iInitialized) {
-
+
TRAPD( error, initializeL(listening) );
if ( error != KErrNone ){
@@ -416,7 +416,7 @@
return false;
}
} else if (listening) {
- Start();
+ Start();
}
QByteArray array;
QDataStream stream( &array, QIODevice::WriteOnly );
--- a/src/hbcore/devicedialogbase/hbindicatorsymbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbindicatorsymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -97,10 +97,10 @@
class CHbIndicatorSymbianPrivate : public CActive {
public:
CHbIndicatorSymbianPrivate() : CActive(EPriorityStandard), iInitialized(EFalse), iLastError(HbDeviceDialogNoError), iMsgTypePtr(NULL,0,0),
- iBuffer(NULL),
- iDataPtr(NULL,0,0) { CActiveScheduler::Add(this); }
+ iBuffer(NULL),
+ iDataPtr(NULL,0,0) { CActiveScheduler::Add(this); }
~CHbIndicatorSymbianPrivate() {
- Cancel();
+ Cancel();
if (iInitialized) {
iHbSession.Close();
iInitialized = EFalse;
@@ -115,8 +115,8 @@
TBool activate, const CHbSymbianVariant* aParameter);
void Start();
-
-protected:
+
+protected:
// CActive
void RunL();
void DoCancel();
@@ -183,87 +183,87 @@
}
if (activate && result && iObserver) {
- Start();
+ Start();
}
return result;
}
void CHbIndicatorSymbianPrivate::Start()
- {
- if (!IsActive() && !iRequesting) {
- SetActive();
- if (!iBuffer) {
- iBuffer = HBufC8::NewL( 256 );
- iDataPtr.Set( iBuffer->Des() );
- }
- iDataPtr.Zero();
+ {
+ if (!IsActive() && !iRequesting) {
+ SetActive();
+ if (!iBuffer) {
+ iBuffer = HBufC8::NewL( 256 );
+ iDataPtr.Set( iBuffer->Des() );
+ }
+ iDataPtr.Zero();
TPckg<TInt> pckg( iMsgType );
iMsgTypePtr.Set( pckg );
iRequesting = ETrue;
- iHbSession.SendASyncRequest(EHbSrvGetActivatedIndicatorsStart, iDataPtr, iMsgTypePtr, iStatus);
+ iHbSession.SendASyncRequest(EHbSrvGetActivatedIndicatorsStart, iDataPtr, iMsgTypePtr, iStatus);
}
}
void CHbIndicatorSymbianPrivate::RunL()
{
- TInt result = iStatus.Int();
-
- if (result < KErrNone) {
- SetError(result);
- iRequesting = EFalse;
- } else if (iMsgType == EHbIndicatorUserActivated && result >= 0) {
- iMsgType = -1;
- if (result > 0) {
- delete iBuffer;
- iBuffer = NULL;
- iBuffer = HBufC8::NewL(result);
- iDataPtr.Set(iBuffer->Des());
- TInt error = iHbSession.SendSyncRequest(EHbSrvActivatedIndicatorData, iDataPtr, &iMsgTypePtr);
- }
-
- QByteArray resArray((const char*)iDataPtr.Ptr(), iDataPtr.Size());
- QDataStream stream(&resArray, QIODevice::ReadOnly);
-
- QVariant var;
- stream >> var;
- QVariantMap varMap = var.toMap();
-
- if (iObserver) {
- QString type = varMap.value("type").toString();
- TPtrC descriptor(static_cast<const TUint16*>(type.utf16()),
- type.length());
- QVariantMap data = varMap.value("data").toMap();
-
- CHbSymbianVariantMap* symbianMap =
- HbSymbianVariantConverter::fromQVariantMapL(data);
-
- iObserver->IndicatorUserActivated(descriptor, *symbianMap);
- delete symbianMap;
- symbianMap = 0;
- }
- }
+ TInt result = iStatus.Int();
+
+ if (result < KErrNone) {
+ SetError(result);
+ iRequesting = EFalse;
+ } else if (iMsgType == EHbIndicatorUserActivated && result >= 0) {
+ iMsgType = -1;
+ if (result > 0) {
+ delete iBuffer;
+ iBuffer = NULL;
+ iBuffer = HBufC8::NewL(result);
+ iDataPtr.Set(iBuffer->Des());
+ TInt error = iHbSession.SendSyncRequest(EHbSrvActivatedIndicatorData, iDataPtr, &iMsgTypePtr);
+ }
+
+ QByteArray resArray((const char*)iDataPtr.Ptr(), iDataPtr.Size());
+ QDataStream stream(&resArray, QIODevice::ReadOnly);
+
+ QVariant var;
+ stream >> var;
+ QVariantMap varMap = var.toMap();
+
+ if (iObserver) {
+ QString type = varMap.value("type").toString();
+ TPtrC descriptor(static_cast<const TUint16*>(type.utf16()),
+ type.length());
+ QVariantMap data = varMap.value("data").toMap();
+
+ CHbSymbianVariantMap* symbianMap =
+ HbSymbianVariantConverter::fromQVariantMapL(data);
+
+ iObserver->IndicatorUserActivated(descriptor, *symbianMap);
+ delete symbianMap;
+ symbianMap = 0;
+ }
+ }
// Make a new request if there were no errors.
if ( result != KErrServerTerminated && result != KErrCancel && iRequesting) {
- SetActive();
- iHbSession.SendASyncRequest(EHbSrvGetActivatedIndicatorContinue, iDataPtr, iMsgTypePtr, iStatus);
+ SetActive();
+ iHbSession.SendASyncRequest(EHbSrvGetActivatedIndicatorContinue, iDataPtr, iMsgTypePtr, iStatus);
}
}
void CHbIndicatorSymbianPrivate::DoCancel()
{
- if (iRequesting) {
- iHbSession.SendSyncRequest(EhbSrvGetActivatedIndicatorsClose);
- iRequesting = EFalse;
- }
+ if (iRequesting) {
+ iHbSession.SendSyncRequest(EhbSrvGetActivatedIndicatorsClose);
+ iRequesting = EFalse;
+ }
}
TInt CHbIndicatorSymbianPrivate::RunError( TInt aError )
- {
- SetError(aError);
- return KErrNone;
- }
+ {
+ SetError(aError);
+ return KErrNone;
+ }
EXPORT_C CHbIndicatorSymbian* CHbIndicatorSymbian::NewL()
{
@@ -314,7 +314,7 @@
EXPORT_C void CHbIndicatorSymbian::SetObserver(MHbIndicatorSymbianObserver* aObserver)
{
- d->iObserver = aObserver;
+ d->iObserver = aObserver;
}
CHbIndicatorSymbian::CHbIndicatorSymbian()
--- a/src/hbcore/devicedialogbase/hbindicatorwin32_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbindicatorwin32_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -66,7 +66,7 @@
if (q_ptr && q_ptr->receivers(SIGNAL(userActivated(QString, QVariantMap))) > 0) {
connect(mDeviceDialogManager, SIGNAL(indicatorUserActivated(QVariantMap)),
- this, SLOT(indicatorUserActivated(QVariantMap)));
+ this, SLOT(indicatorUserActivated(QVariantMap)));
}
if (result != 0) {
--- a/src/hbcore/devicedialogbase/hbtextresolversymbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/devicedialogbase/hbtextresolversymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -52,7 +52,7 @@
QByteArray iByteArray;
TBool iLoaded;
QString fileName;
- QString path;
+ QString path;
};
Q_GLOBAL_STATIC(HbTextResolverSymbianPrivate, hbTextResolverSymbianPrivate)
--- a/src/hbcore/feedback/hbfeedbackengine.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/feedback/hbfeedbackengine.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -28,6 +28,7 @@
#include "hbinstantinteractionevent_p.h"
#include "hbcontinuousinteractionevent_p.h"
+#include <hbglobal_p.h> // remove with HB_DEPRECATED
#include <QPointer>
/*!
@@ -43,7 +44,7 @@
Instant interaction information is received by methods pressed(), released(), clicked(), keyRepeated(),
longPressed(), draggedOver(), flicked(), popupOpened(), popupClosed(), boundaryReached(), rotated90Degrees(),
- selectionChanged() and multitouchActivated().
+ selectionChanged() and advancedGestureActivated().
Continuous interaction information is received by methods continuousTriggered() and continuousStopped().
@@ -277,15 +278,20 @@
rotated90Degrees(widget);
}
- break;
+ break;
case Hb::InstantSelectionChanged: {
selectionChanged(widget);
}
break;
- case Hb::InstantMultitouchActivated: {
- multitouchActivated(widget);
+ case Hb::InstantMultitouchActivated: {
+ HB_DEPRECATED("Hb::InstantMultitouchActivated is deprecated.");
+ multitouchActivated(widget);
+ }
+ break;
+ case Hb::InstantAdvancedGestureActivated: {
+ advancedGestureActivated(widget);
}
break;
@@ -420,6 +426,9 @@
}
/*!
+ \deprecated HbFeedbackEngine::multitouchActivated(const HbWidget*)
+ is deprecated. Use HbFeedbackEngine::advancedGestureActivated(const HbWidget*) instead.
+
Called when the engine receives a touch gesture event with more than one finger from the feedback manager.
\param widget the widget being interacted with
@@ -430,6 +439,16 @@
}
/*!
+ Called when the engine receives a touch gesture event with more than one finger from the feedback manager.
+
+ \param widget the widget being interacted with
+*/
+void HbFeedbackEngine::advancedGestureActivated(const HbWidget *widget)
+{
+ Q_UNUSED(widget);
+}
+
+/*!
Called when the engine receives a continuous interaction event from the feedback manager.
\param widget the widget being interacted with
--- a/src/hbcore/feedback/hbfeedbackengine.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/feedback/hbfeedbackengine.h Thu Sep 02 20:44:51 2010 +0300
@@ -72,7 +72,8 @@
virtual void boundaryReached(const HbWidget *widget);
virtual void rotated90Degrees(const HbWidget *widget);
virtual void selectionChanged(const HbWidget *widget);
- virtual void multitouchActivated(const HbWidget *widget);
+ virtual void multitouchActivated(const HbWidget *widget); // deprecated
+ virtual void advancedGestureActivated(const HbWidget *widget);
virtual void continuousTriggered(const HbWidget *widget, Hb::ContinuousInteraction interaction, QPointF delta);
virtual void continuousStopped(const HbWidget *widget, Hb::ContinuousInteraction interaction);
--- a/src/hbcore/feedback/hbfeedbacknamespace.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/feedback/hbfeedbacknamespace.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -221,7 +221,12 @@
*/
/*!
- \var HbFeedback::InstantEffect HbFeedback::MultitouchActivate
+ \deprecated HbFeedback::MultitouchActivate
+ is deprecated. Use HbFeedback::AdvancedGestureActivate instead.
+*/
+
+/*!
+ \var HbFeedback::InstantEffect HbFeedback::AdvancedGestureActivate
Instant feedback when a touch gesture with more than one finger is activated:
a second touch point is detected and a pinch gesture (for example zooming)
is likely to follow.
--- a/src/hbcore/feedback/hbfeedbacknamespace.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/feedback/hbfeedbacknamespace.h Thu Sep 02 20:44:51 2010 +0300
@@ -79,7 +79,8 @@
PopupClose,
Flick,
StopFlick,
- MultitouchActivate,
+ MultitouchActivate, // deprecated
+ AdvancedGestureActivate,
RotateStep,
LongPress,
PositiveTacticon,
--- a/src/hbcore/gestures/hbpangesturelogic_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gestures/hbpangesturelogic_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -162,6 +162,19 @@
}
QPointF offset = me->globalPos() - gesture->startPos().toPoint();
+ gesture->setLastOffset( gesture->offset().toPoint() );
+ gesture->setOffset( offset );
+ gesture->d_ptr->mSceneLastOffset = gesture->d_ptr->mSceneOffset;
+ gesture->d_ptr->mSceneOffset =
+ HbGestureUtils::mapToScene(watched, me->globalPos()) - gesture->d_ptr->mSceneStartPos;
+ gesture->d_ptr->mLastTimeStamp = mCurrentTime;
+
+ QPointF scenePos = HbGestureUtils::mapToScene(watched, me->globalPos());
+ gesture->d_ptr->mAxisX.record( me->globalPos().x(), mCurrentTime );
+ gesture->d_ptr->mAxisY.record( me->globalPos().y(), mCurrentTime );
+ gesture->d_ptr->mSceneAxisX.record( scenePos.x(), mCurrentTime );
+ gesture->d_ptr->mSceneAxisY.record( scenePos.y(), mCurrentTime );
+
QGraphicsView* view = qobject_cast<QGraphicsView*>(watched->parent());
if (view) {
@@ -182,18 +195,6 @@
gesture->setHotSpot( me->globalPos() );
}
- gesture->setLastOffset( gesture->offset().toPoint() );
- gesture->setOffset( offset );
- gesture->d_ptr->mSceneLastOffset = gesture->d_ptr->mSceneOffset;
- gesture->d_ptr->mSceneOffset =
- HbGestureUtils::mapToScene(watched, me->globalPos()) - gesture->d_ptr->mSceneStartPos;
- gesture->d_ptr->mLastTimeStamp = mCurrentTime;
-
- QPointF scenePos = HbGestureUtils::mapToScene(watched, me->globalPos());
- gesture->d_ptr->mAxisX.record( me->globalPos().x(), mCurrentTime );
- gesture->d_ptr->mAxisY.record( me->globalPos().y(), mCurrentTime );
- gesture->d_ptr->mSceneAxisX.record( scenePos.x(), mCurrentTime );
- gesture->d_ptr->mSceneAxisY.record( scenePos.y(), mCurrentTime );
return QGestureRecognizer::TriggerGesture;
}
@@ -213,15 +214,29 @@
Q_UNUSED(me->globalPos());
Q_UNUSED(gesture);
Q_UNUSED(watched);
-
+
gesture->d_ptr->mLastTimeStamp = mCurrentTime;
-
+
if ( gestureState == Qt::GestureStarted || gestureState == Qt::GestureUpdated )
{
return QGestureRecognizer::FinishGesture;
}
else
{
+ QPointF offset(gesture->offset());
+ bool thresholdExceeded = (offset.x() * offset.x() + offset.y() * offset.y()) > gesture->d_ptr->mThresholdSquare;
+ if( thresholdExceeded ) {
+ QGraphicsView* view = qobject_cast<QGraphicsView*>(watched->parent());
+ if (view) {
+ QGraphicsScene* scene = view->scene();
+ if (scene && scene->property(HbPrivate::OverridingGesture.latin1()).isValid() &&
+ scene->property(HbPrivate::OverridingGesture.latin1()).toInt() != Qt::PanGesture) {
+ return QGestureRecognizer::CancelGesture;
+ }
+ }
+ return QGestureRecognizer::FinishGesture;
+ }
+
return QGestureRecognizer::CancelGesture;
}
}
--- a/src/hbcore/gestures/hbswipegesturelogic_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gestures/hbswipegesturelogic_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -23,6 +23,7 @@
**
****************************************************************************/
+#include "hbgestures_p.h"
#include "hbswipegesture.h"
#include "hbswipegesture_p.h"
#include "hbswipegesturelogic_p.h"
@@ -110,8 +111,11 @@
gesture->d_func()->mSceneStartPos = HbGestureUtils::mapToScene(watched, me->globalPos());
gesture->setHotSpot(me->globalPos());
- gesture->d_ptr->mAxisX.clear();
- gesture->d_ptr->mAxisY.clear();
+
+ qreal velocityThreshold = HbPanVelocityUpdateThreshold * HbDeviceProfile::current().ppmValue();
+
+ gesture->d_ptr->mAxisX.resetRecorder(velocityThreshold);
+ gesture->d_ptr->mAxisY.resetRecorder(velocityThreshold);
gesture->d_ptr->mAxisX.record(me->globalPos().x(), mCurrentTime);
gesture->d_ptr->mAxisY.record(me->globalPos().y(), mCurrentTime);
--- a/src/hbcore/gestures/hbswipegesturelogic_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gestures/hbswipegesturelogic_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -26,7 +26,6 @@
#ifndef HBSWIPEGESTURELOGIC_P_H
#define HBSWIPEGESTURELOGIC_P_H
-#include "hbgestures_p.h"
#include "hbglobal.h"
#include <QEvent>
--- a/src/hbcore/gestures/hbtapandholdgesturelogic_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gestures/hbtapandholdgesturelogic_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -126,7 +126,7 @@
QObject *watched,
QMouseEvent *me )
{
- Q_UNUSED(gestureState);
+ Q_UNUSED(gestureState);
// Accept only press events from left mouse button.
if ( me->button() != Qt::LeftButton ) {
DEBUG() << gesture << QGestureRecognizer::Ignore;
@@ -191,7 +191,7 @@
// moving within threshold
return QGestureRecognizer::Ignore;
}
-
+
/*!
\internal
\brief Handles mouse release event.
@@ -209,7 +209,7 @@
{
Q_UNUSED(me);
Q_UNUSED(watched);
- Q_UNUSED(gestureState);
+ Q_UNUSED(gestureState);
// Before anything, check if left button was released.
if (!(me->button() == Qt::LeftButton) ){
@@ -233,8 +233,8 @@
DEBUG() << gesture << QGestureRecognizer::Ignore;
return QGestureRecognizer::Ignore;
-}
-
+}
+
/*!
\internal
\brief Handle timer event.
@@ -254,7 +254,7 @@
QTimerEvent *te )
{
Q_UNUSED(watched);
- Q_UNUSED(te);
+ Q_UNUSED(te);
// React only to own timer event
Q_ASSERT(gesture->priv->mTimerID == te->timerId());
--- a/src/hbcore/gui/hbabstractbutton.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbabstractbutton.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,6 +36,7 @@
#include <QStyle>
#include <hbwidgetfeedback.h>
+#include <hbstyleprimitivedata.h>
#ifdef HB_GESTURE_FW
#include <hbtapgesture.h>
@@ -293,7 +294,7 @@
{
Q_Q( HbAbstractButton );
- q->setFocusPolicy(Qt::FocusPolicy(qApp->style()->styleHint(QStyle::SH_Button_FocusPolicy)));
+ q->setFocusPolicy(Qt::FocusPolicy(qApp->style()->styleHint(QStyle::SH_Button_FocusPolicy)));
#ifdef HB_GESTURE_FW
q->grabGesture(Qt::TapGesture);
@@ -519,6 +520,7 @@
return d->down;
}
+
/*!
@beta
Sets whether the button is pressed down.
@@ -795,13 +797,21 @@
option->state |= (isChecked() | isDown() ? QStyle::State_On : QStyle::State_Off);
}
+void HbAbstractButton::initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive)
+{
+ HbWidgetBase::initPrimitiveData(primitiveData, primitive);
+ Q_ASSERT(primitiveData);
+ primitiveData->state |= (isChecked() | isDown() ? QStyle::State_On : QStyle::State_Off);
+
+}
+
/*!
\reimp
*/
bool HbAbstractButton::event(QEvent *event)
{
// as opposed to other widgets, disabled buttons accept mouse
- // events. This avoids surprising click-through scenarios
+ // events. This avoids surprising click-through scenarios
Q_D( HbAbstractButton );
if (!isEnabled()) {
switch(event->type()) {
@@ -954,7 +964,7 @@
if (HbTapGesture *tap = qobject_cast<HbTapGesture *>(event->gesture(Qt::TapGesture))) {
switch(tap->state()) {
- case Qt::GestureStarted:
+ case Qt::GestureStarted:
scene()->setProperty(HbPrivate::OverridingGesture.latin1(),Qt::TapGesture);
if (!tap->property(HbPrivate::ThresholdRect.latin1()).toRect().isValid()) {
tap->setProperty(HbPrivate::ThresholdRect.latin1(), mapRectToScene(boundingRect()).toRect());
@@ -1076,7 +1086,7 @@
}
d->click();
}
- break;
+ break;
}
default:
event->ignore();
--- a/src/hbcore/gui/hbabstractbutton.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbabstractbutton.h Thu Sep 02 20:44:51 2010 +0300
@@ -48,7 +48,7 @@
Q_PROPERTY( int autoRepeatDelay READ autoRepeatDelay WRITE setAutoRepeatDelay )
Q_PROPERTY( int autoRepeatInterval READ autoRepeatInterval WRITE setAutoRepeatInterval )
Q_PROPERTY( bool down READ isDown WRITE setDown DESIGNABLE false )
-
+
public:
explicit HbAbstractButton( QGraphicsItem *parent = 0 );
virtual ~HbAbstractButton();
@@ -95,6 +95,8 @@
protected:
HbAbstractButton( HbAbstractButtonPrivate &dd, QGraphicsItem *parent );
void initStyleOption(HbStyleOption *option) const;
+ void initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive);
+
virtual bool hitButton( const QPointF &pos ) const;
virtual void checkStateSet();
--- a/src/hbcore/gui/hbcssinspector_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbcssinspector_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -449,8 +449,8 @@
mPrefHintRect(0,0,0,0),
mMaxHintRect(0,0,0,0)
{
- updateColors();
- setVisible(false);
+ updateColors();
+ setVisible(false);
}
--- a/src/hbcore/gui/hbmainwindow.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbmainwindow.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -1187,13 +1187,20 @@
// it directly and optimize it by setting a proper clipping rectangle.
Q_D(HbMainWindow);
if (d->mBgItem) {
- // No need to save/restore the painter state here.
+ bool restoreState = false;
if (d->mBgItem->imageMode() != Hb::DoNotDrawBackground &&
(!qFuzzyCompare(rect.height(), d->mBgItem->boundingRect().height()) ||
!qFuzzyCompare(rect.width(), d->mBgItem->boundingRect().width()))) {
- painter->setClipRect(rect, Qt::ReplaceClip);
+ //Need to save the state since some widget in scene could apply a smaller
+ //clip than this
+ restoreState = true;
+ painter->save();
+ painter->setClipRect(rect);
}
d->mBgItem->paint(painter, 0, 0);
+ if (restoreState) {
+ painter->restore();
+ }
}
}
--- a/src/hbcore/gui/hbmenu.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbmenu.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -127,11 +127,11 @@
//This optimises case of options menu which otherwise updates its primitives twice.
if (menuType == HbMenu::OptionsMenu)
q->setFrameType(HbPopup::Strong);
- else
+ else
q->setFrameType(HbPopup::Weak);
if (polished)//This check can be removed once base class repolish is fixed.
q->repolish();
- }
+ }
}
void HbMenuPrivate::delayedLayout()
--- a/src/hbcore/gui/hbpopup.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbpopup.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -424,8 +424,9 @@
itemFlags |= QGraphicsItem::ItemClipsToShape;
itemFlags |= QGraphicsItem::ItemClipsChildrenToShape;
itemFlags |= QGraphicsItem::ItemSendsGeometryChanges;
- itemFlags |= QGraphicsItem::ItemIsPanel;
- q->setFlags(itemFlags);
+ //itemFlags |= QGraphicsItem::ItemIsPanel;
+ q->setFlags(itemFlags);
+ //q->setActive(false);
}
void HbPopupPrivate::_q_appearEffectEnded(HbEffect::EffectStatus status)
@@ -435,7 +436,7 @@
CSystemToneService* HbPopupPrivate::systemToneService()
{
- return HbInstancePrivate::d_ptr()->systemTone();
+ return HbInstancePrivate::d_ptr()->systemTone();
}
/*
Sets the priority for a popup.
@@ -727,10 +728,7 @@
mVgMaskEffect->setMask(image);
}
-void HbPopupPrivate::resizePopup()
-{
-}
/*!
Constructs a popup with the given \a parent graphics item. For true popup
@@ -1124,9 +1122,9 @@
if(d->addPopupToScene()) {
d->duplicateShowEvent = true;
}
- if (d->mActivePopup) {
+ /*if (d->mActivePopup) {
setActive(true);
- }
+ }*/
// Popup clears closed state
d->closed = false;
if (d->backgroundItem) {
@@ -1179,9 +1177,9 @@
}
d->doSetModal( d->modal );
- if (d->mActivePopup) {
+ /*if (d->mActivePopup) {
setActive(false);
- }
+ }*/
}
/*!
--- a/src/hbcore/gui/hbpopup.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbpopup.h Thu Sep 02 20:44:51 2010 +0300
@@ -144,7 +144,7 @@
Q_PRIVATE_SLOT(d_func(), void _q_delayedHide(HbEffect::EffectStatus status))
Q_PRIVATE_SLOT(d_func(), void _q_orientationAboutToChange(Qt::Orientation orient, bool animate))
Q_PRIVATE_SLOT(d_func(), void _q_orientationChanged())
- Q_PRIVATE_SLOT(d_func(), void _q_appearEffectEnded(HbEffect::EffectStatus status))
+ Q_PRIVATE_SLOT(d_func(), void _q_appearEffectEnded(HbEffect::EffectStatus status))
#endif // HB_EFFECTS
Q_PRIVATE_SLOT(d_func(), void _q_timeoutFinished())
};
--- a/src/hbcore/gui/hbpopup_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbpopup_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -63,7 +63,7 @@
AlwaysOnTop = 255
};
- CSystemToneService *systemToneService();
+ CSystemToneService *systemToneService();
// Private features
public:
@@ -119,7 +119,7 @@
public:
#ifdef HB_EFFECTS
void _q_delayedHide(HbEffect::EffectStatus status);
- virtual void _q_appearEffectEnded(HbEffect::EffectStatus status);
+ virtual void _q_appearEffectEnded(HbEffect::EffectStatus status);
void _q_orientationAboutToChange(Qt::Orientation orient, bool animate);
#endif // HB_EFFECTS
void _q_timeoutFinished();
@@ -129,7 +129,6 @@
void handleBackgroundMousePressEvent();
void handleBackgroundMouseReleaseEvent(QGraphicsSceneMouseEvent *event);
void calculateShape();
- void resizePopup();
static int timeoutValue(HbPopup::DefaultTimeout timeout);
void setTimeout(int msec);
--- a/src/hbcore/gui/hbpopupmanager.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbpopupmanager.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -385,7 +385,7 @@
popup->metaObject()->className() != QLatin1String("HbExactWordPopup") &&
popup->metaObject()->className() != QLatin1String("HbInputSmileyPicker") &&
popup->metaObject()->className() != QLatin1String("Hb12KeyCustomKeypad") &&
- !popup->inherits("HbInputVkbWidget")) {
+ !popup->inherits("HbInputVkbWidget")) {
setGeometryForPopup( popup );
}
}
--- a/src/hbcore/gui/hbscrollarea.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbscrollarea.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -363,11 +363,11 @@
Possible values for the clamping style include:
- StrictClamping - scrolling is limited to the bounding rectangle of the content item
- BounceBackClamping - scrolling can go beyond the bounding rectangle of the content item, but bounces back to the
- limits of the bounding rectangle when released or when inertia scrolling stops
- NoClamping - scrolling is completely unclamped (this is usually used when the subclass implements its own
- custom clamping behavior)
+ StrictClamping - scrolling is limited to the bounding rectangle of the content item
+ BounceBackClamping - scrolling can go beyond the bounding rectangle of the content item, but bounces back to the
+ limits of the bounding rectangle when released or when inertia scrolling stops
+ NoClamping - scrolling is completely unclamped (this is usually used when the subclass implements its own
+ custom clamping behavior)
The default value is BounceBackClamping.
@@ -398,10 +398,10 @@
Possible values for the clamping style include:
- Pan - dragging motion pans the view with no follow-on scrolling animation
+ Pan - dragging motion pans the view with no follow-on scrolling animation
\deprecated PanOrFlick
is deprecated.
- PanWithFollowOn - dragging motion pans the view, velocity at end of drag motion triggers follow-on animated scrolling
+ PanWithFollowOn - dragging motion pans the view, velocity at end of drag motion triggers follow-on animated scrolling
The default value is PanWithFollowOn.
--- a/src/hbcore/gui/hbscrollarea_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbscrollarea_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -69,7 +69,7 @@
static const int PAGE_CHANGE_DURATION = 170;
//keep this half of swapbuffer time so that we dont end up doing too many updates
-static const int ANIMATION_INTERVAL = 8.0;
+static const int ANIMATION_INTERVAL = 8;
static const int FRAMEUPDATE_THRESHOLD = 32;
}
@@ -449,7 +449,7 @@
mOverFramCount = FRAMEUPDATE_THRESHOLD;
//To have smooth velocity during scrolling avg the ideal time with the
//actual frame time.
- return qCeil((difference+MAX_TIMEDIF_FOR_SIMULATION)/2);
+ return qCeil((qreal(difference)+MAX_TIMEDIF_FOR_SIMULATION)/2);
}
else {
return MAX_TIMEDIF_FOR_SIMULATION;
@@ -459,7 +459,6 @@
mOverFramCount = 0;
return MAX_TIMEDIF_FOR_SIMULATION;
}
-
/*
* animateScrollTimeout() is a private slot function called during
* follow-on scroll animation
@@ -637,7 +636,7 @@
HbPanGesture *hbPanGesture = qobject_cast<HbPanGesture *>(panGesture);
if (hbPanGesture) {
- if(hbPanGesture->state() == Qt::GestureUpdated) {
+ if(hbPanGesture->state() == Qt::GestureUpdated || hbPanGesture->state() == Qt::GestureFinished) {
if (mIsAnimating) stopAnimating();
@@ -658,11 +657,13 @@
}
QPointF oldPos = mContents->pos();
q->scrollByAmount(-delta);
- if (mContents->pos() == oldPos) {
+ if (mContents->pos() == oldPos && hbPanGesture->state() != Qt::GestureFinished) {
return false;
}
- } else if (panGesture->state() == Qt::GestureFinished) {
+ }
+
+ if (panGesture->state() == Qt::GestureFinished) {
if ((!mAbleToScrollX && !mAbleToScrollY) || mBoundaryReached)
return false;
@@ -800,13 +801,13 @@
mAbleToScrollX = false;
if ((mScrollDirections & Qt::Horizontal) && (contentsWidth
- > scrollAreaWidth)) {
+ > scrollAreaWidth + 1)) {
mAbleToScrollX = true;
}
mAbleToScrollY = false;
if ((mScrollDirections & Qt::Vertical) && (contentsHeight
- > scrollAreaHeight)) {
+ > scrollAreaHeight + 1)) {
mAbleToScrollY = true;
}
prepareScrollBars();
@@ -1053,10 +1054,10 @@
if (animate) {
q->scrollContentsTo(-newPosition, PAGE_CHANGE_DURATION);
} else {
- setContentPosition(newPosition);
+ setContentPosition(newPosition);
}
}
-
+
void HbScrollAreaPrivate::createPrimitives()
{
--- a/src/hbcore/gui/hbscrollarea_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbscrollarea_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -185,8 +185,8 @@
bool mFrictionEnabled;
bool mResetAlignment;
- int mUnderFramCount;
- int mOverFramCount;
+ qreal mUnderFramCount;
+ qreal mOverFramCount;
HbScrollArea::ClampingStyle mClampingStyle;
HbScrollArea::ScrollingStyle mScrollingStyle;
--- a/src/hbcore/gui/hbsplash.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbsplash.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -25,6 +25,7 @@
#include "hbsplash_p.h"
#include "hbsplash_direct_symbian_p.h"
+#include "hbsplashdefs_p.h"
#include <QDir>
#include <QFile>
#include <QTime>
@@ -35,7 +36,6 @@
#include <f32file.h>
#include <fbs.h>
#include "hborientationstatus_p.h"
-#include "hbsplashdefs_p.h"
#endif
/*!
@@ -211,12 +211,12 @@
bool ok = false;
while (maxTries--) {
TInt err = CreateSession(hbsplash_server_name, ver);
- qDebug("[hbsplash] CreateSession result: %d", err);
+ splDebug("[hbsplash] CreateSession result: %d", err);
if (err == KErrNone) {
ok = true;
break;
} else if (err == KErrNotFound || err == KErrServerTerminated) {
- qDebug("[hbsplash] server not running");
+ splDebug("[hbsplash] server not running");
TFindServer findServer(hbsplash_server_name);
TFullName name;
if (findServer.Next(name) != KErrNone) {
@@ -240,7 +240,7 @@
qWarning("[hbsplash] Rendezvous failed (%d)", status.Int());
break;
}
- qDebug("[hbsplash] server started");
+ splDebug("[hbsplash] server started");
}
} else {
break;
@@ -309,7 +309,7 @@
*params.h = size.iHeight;
*params.bpl = bpl;
*params.fmt = fmt;
- qDebug("[hbsplash] bitmap data received");
+ splDebug("[hbsplash] bitmap data received");
return data;
}
} catch (const std::bad_alloc &) {
@@ -349,7 +349,7 @@
File f;
f.mFullName = "[unavailable]";
if (client.getSplashFileHandle(f.mFile, oriStr, appIdStr, params.screenId)) {
- qDebug("[hbsplash] got handle from server");
+ splDebug("[hbsplash] got handle from server");
data = readSpl(f, params);
f.mFile.Close();
}
--- a/src/hbcore/gui/hbsplashdefs_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbsplashdefs_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -26,6 +26,9 @@
#ifndef HBSPLASHDEFS_P_H
#define HBSPLASHDEFS_P_H
+#include <qglobal.h>
+#include <QDebug>
+
#ifdef Q_OS_SYMBIAN
#include <e32base.h>
@@ -54,4 +57,18 @@
HbSplashNonStandardStatusBar = 1
};
+/*
+ Enable the following to get more extensive debug prints from HbSplash and HbSplashScreen.
+ Applies also to the server (hbsplashgenerator).
+*/
+//#define HB_SPLASH_VERBOSE_LOGGING
+
+#ifdef HB_SPLASH_VERBOSE_LOGGING
+inline QDebug splDeb() { return qDebug(); }
+#define splDebug qDebug
+#else
+inline QNoDebug splDeb() { return QNoDebug(); }
+#define splDebug QT_NO_QDEBUG_MACRO
+#endif
+
#endif // HBSPLASHDEFS_P_H
--- a/src/hbcore/gui/hbsplashscreen.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbsplashscreen.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -26,6 +26,7 @@
#include "hbsplashscreen.h"
#include "hbsplashscreen_generic_p.h"
#include "hbsplash_p.h"
+#include "hbsplashdefs_p.h"
#include <QPainter>
#include <QApplication>
@@ -47,7 +48,6 @@
#ifdef HB_SPLASH_DIRECT_WS
#include "hbsplashscreen_symbian_vg_p.h"
-//#define HB_SPLASH_DIRECT_WS_LOGGING
#endif
/*!
@@ -82,6 +82,8 @@
Indicates that the application will force its orientation to vertical. As a
result the splash screen will also be forced to vertical orientation.
+
+ \sa Hb::SplashFixedVertical
*/
/*!
@@ -89,6 +91,22 @@
Indicates that the application will force its orientation to horizontal. As a
result the splash screen will also be forced to horizontal orientation.
+
+ \sa Hb::SplashFixedHorizontal
+*/
+
+/*!
+ \var HbSplashScreen::Flag HbSplashScreen::ForceQt
+
+ Forces the usage of the QWidget-based implementation even on platforms where a
+ non-Qt based implementation would be available. The Qt-based version requires
+ QApplication to be constructed, while non-Qt based ones do not need this and
+ therefore they can be launched before instantiating QApplication or
+ HbApplication, providing a better startup experience. However some special
+ applications may want to stick to the Qt-based version, e.g. because they
+ force the usage of the raster graphics system.
+
+ \sa Hb::ForceQtSplash
*/
static HbSplashScreenInterface *splashScreen = 0;
@@ -145,14 +163,19 @@
*/
void HbSplashScreen::start(Flags flags)
{
+ Flags realFlags = flags | requestProps()->mSplashFlags;
if (!splashScreen) {
#ifdef HB_SPLASH_DIRECT_WS
- splashScreen = new HbSplashScreenSymbianVg;
+ if (realFlags.testFlag(HbSplashScreen::ForceQt)) {
+ splashScreen = new HbSplashScreenGeneric;
+ } else {
+ splashScreen = new HbSplashScreenSymbianVg;
+ }
#else
splashScreen = new HbSplashScreenGeneric;
#endif
}
- splashScreen->start(flags | requestProps()->mSplashFlags);
+ splashScreen->start(realFlags);
}
/*!
@@ -245,7 +268,7 @@
HbSplashScreenGeneric::~HbSplashScreenGeneric()
{
if (mImageData) {
- qDebug("[hbsplash] destroying splash screen");
+ splDebug("[hbsplash] destroying splash screen");
delete mImageData;
}
}
@@ -270,19 +293,23 @@
}
}
if (!mContents.isNull()) {
- qDebug("[hbsplash] splash screen initialized");
+ splDebug("[hbsplash] splash screen initialized");
+
#ifdef Q_OS_SYMBIAN
showFullScreen(); // krazy:exclude=qmethods
#else
show();
#endif
+
QApplication::processEvents();
QApplication::flush();
+
// The splash screen must be destroyed automatically when
// loosing foreground.
if (QApplication::instance()) {
QApplication::instance()->installEventFilter(this);
}
+
// The splash screen must be destroyed automatically after
// a certain amount of time.
mTimerId = startTimer(auto_stop_interval);
@@ -307,7 +334,7 @@
void HbSplashScreenGeneric::timerEvent(QTimerEvent *event)
{
if (event->timerId() == mTimerId) {
- qDebug("[hbsplash] timeout while splash screen is active");
+ qWarning("[hbsplash] timeout while splash screen is active");
deleteLater();
splashScreen = 0;
} else {
@@ -318,7 +345,7 @@
bool HbSplashScreenGeneric::eventFilter(QObject *obj, QEvent *event)
{
if (event->type() == QEvent::ApplicationDeactivate) {
- qDebug("[hbsplash] foreground lost while splash screen is active");
+ qWarning("[hbsplash] foreground lost while splash screen is active");
deleteLater();
splashScreen = 0;
}
@@ -394,7 +421,7 @@
delete mTimer;
delete mListener;
if (mInited) {
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] destroying splash screen");
#endif
if (eglGetCurrentContext() == mContext
@@ -421,7 +448,7 @@
// This is typically called before initializing anything, meaning
// there is no active scheduler, cleanup stack, cone, etc.
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
ELAPSED_TIMER t;
t.start();
#endif
@@ -443,7 +470,7 @@
mWin.SetExtent(TPoint(0, 0), mScr->SizeInPixels());
mWin.EnableVisibilityChangeEvents();
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] wserv init took %d ms", (int) t.restart());
#endif
@@ -478,7 +505,7 @@
RDebug::Printf("[hbsplash] eglCreateWindowSurface failed (%d)", eglGetError());
}
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] egl+openvg init took %d ms", (int) t.elapsed());
#endif
@@ -500,13 +527,13 @@
int w, h, bpl;
QImage::Format fmt;
RequestProps *props = requestProps();
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
ELAPSED_TIMER t;
t.start();
#endif
mImageData = HbSplash::load(w, h, bpl, fmt, flags,
props->mAppId, props->mScreenId);
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] load() took %d ms", (int) t.restart());
#endif
@@ -519,7 +546,7 @@
RDebug::Printf("[hbsplash] vgCreateImage failed (%d)", vgGetError());
}
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] image init took %d ms", (int) t.restart());
#endif
@@ -527,7 +554,7 @@
mWin.Invalidate();
mWin.BeginRedraw();
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] redraw init took %d ms", (int) t.restart());
#endif
@@ -550,7 +577,7 @@
mWin.EndRedraw();
mWs.Flush();
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] drawing took %d ms", (int) t.elapsed());
#endif
@@ -571,7 +598,7 @@
void HbSplashScreenSymbianVg::doQtPhase()
{
-#ifdef HB_SPLASH_DIRECT_WS_LOGGING
+#ifdef HB_SPLASH_VERBOSE_LOGGING
RDebug::Printf("[hbsplash] starting timer & visibility listener");
#endif
// Now there is an active scheduler.
--- a/src/hbcore/gui/hbsplashscreen.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbsplashscreen.h Thu Sep 02 20:44:51 2010 +0300
@@ -34,7 +34,8 @@
enum Flag {
Default = 0x00,
FixedVertical = 0x01,
- FixedHorizontal = 0x02
+ FixedHorizontal = 0x02,
+ ForceQt = 0x04
};
Q_DECLARE_FLAGS(Flags, Flag)
--- a/src/hbcore/gui/hbtoolbar.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtoolbar.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -58,8 +58,6 @@
\brief The HbToolBar class provides a widget that gives quick access to commands
associated with the view.
- organizing a set of commands.
-
A toolbar provides similar functions to an options menu (HbMenu class). Like an options
menu, a toolbar represents commands that apply to the entire view and not to individual
items in the view. However, there are some important differences. A toolbar shows the
@@ -380,6 +378,7 @@
d->setOrientation ( orientation );
d->minimumToolButtonSize = QSizeF();
+
}
/*!
--- a/src/hbcore/gui/hbtoolbar_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtoolbar_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -163,8 +163,8 @@
if ( mOrientation != orientation ) {
mOrientation = orientation;
emit core.orientationChanged();
+ updateButtonsLayoutDirection();
}
-
}
void HbToolBarPrivate::calculateMaximumButtons() {
@@ -438,7 +438,7 @@
moreExtension->extensionAction()->setIcon(extensionIcon);
initToolBarExtension(moreExtension);
HbToolButtonPrivate::d_ptr(moreExtensionButton)->setToolBarPosition(
- HbStyleOptionToolButton::TB_End);
+ HbToolButtonPrivate::TB_End);
moreExtensionButton->setProperty(BUTTONSTYLE, HbToolButtonPrivate::ToolButtonIcon);
}
}
@@ -712,20 +712,20 @@
if (totalVisibleItems == 1 && !moreButtonNeeded) {
HbToolButtonPrivate *first = HbToolButtonPrivate::d_ptr(mVisibleToolButtons.first());
- first->setToolBarPosition(HbStyleOptionToolButton::TB_OnlyOne);
+ first->setToolBarPosition(HbToolButtonPrivate::TB_OnlyOne);
} else if (maxToolbarButtons > 1 && mVisibleToolButtons.count() > 1) {
HbToolButtonPrivate *first = HbToolButtonPrivate::d_ptr(mVisibleToolButtons.first());
- first->setToolBarPosition(HbStyleOptionToolButton::TB_Beginning);
+ first->setToolBarPosition(HbToolButtonPrivate::TB_Beginning);
int lastMiddleButton = (moreButtonNeeded) ?
maxToolbarButtons - 2 : mVisibleToolButtons.count() - 2;
if (!moreButtonNeeded) {
HbToolButtonPrivate *last = HbToolButtonPrivate::d_ptr(mVisibleToolButtons.last());
- last->setToolBarPosition(HbStyleOptionToolButton::TB_End);
+ last->setToolBarPosition(HbToolButtonPrivate::TB_End);
}
for (int i = 1; i <= lastMiddleButton; ++i) {
HbToolButtonPrivate *middle = HbToolButtonPrivate::d_ptr(mVisibleToolButtons.at(i));
- middle->setToolBarPosition(HbStyleOptionToolButton::TB_Middle);
+ middle->setToolBarPosition(HbToolButtonPrivate::TB_Middle);
}
}
}
@@ -769,9 +769,17 @@
void HbToolBarPrivate::setButtonLayoutDirection( HbToolButton& button ) {
Q_Q(HbToolBar);
- if (q->layoutDirection() != button.layoutDirection()) {
+ if (q->layoutDirection() != button.layoutDirection() && q->orientation() == Qt::Horizontal) {
button.setLayoutDirection(q->layoutDirection());
}
+ if (q->layoutDirection() == button.layoutDirection() && q->orientation() == Qt::Vertical) {
+ if (q->layoutDirection() == Qt::RightToLeft) {
+ button.setLayoutDirection(Qt::LeftToRight);
+ }
+ else {
+ button.setLayoutDirection(Qt::RightToLeft);
+ }
+ }
}
void HbToolBarPrivate::updateButtonsLayoutDirection() {
--- a/src/hbcore/gui/hbtoolbarextension.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtoolbarextension.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -43,32 +43,32 @@
#include <QGraphicsGridLayout>
#include <QEventLoop>
#include <QGraphicsLinearLayout>
-
+
/*!
@stable
@hbcore
\class HbToolBarExtension
\brief The HbToolBarExtension class provides a popup extension to a toolbar.
-
+
You can use a toolbar extension to extend the main toolbar
(HbToolBar class) in a view with additional actions that are placed
in a subsidiary toolbar. Alternatively, a toolbar extension can
contain a widget, such as a list or grid. This is useful, for
example, for providing navigation between views when there are more
views than can fit as actions on the toolbar itself.
-
+
A toolbar can contain more than one toolbar extension. A toolbar
extension opens when the user triggers the toolbar action that is
associated with the extension, usually by tapping it. The user
dismisses the toolbar extension by selecting an option (which runs a
command) or by tapping outside the extension.
-
+
The following image shows a toolbar that has two extensions: the
leftmost one contains a list widget and the rightmost one contains
three standard actions.
-
+
\image html toolbarextension.png A toolbar that has two extensions
-
+
Use addAction() to create an action and add it to the toolbar
extension. There are several overloads of this function, which allow
you to specify both a text and image or just a text and also to
@@ -78,73 +78,73 @@
QGraphicsWidget) to add existing actions to the toolbar
extension. Use clearActions() to clear all of the actions and
removeAction() to remove individual actions.
-
+
The order of the actions within the toolbar extension controls the
order of the buttons that the user sees. addAction() and
addActions() append the actions to the end of the toolbar and
insertAction() and insertActions() enable you to specify the
required position.
-
+
You can use the HbDialog API to fill the toolbar extension popup
with widgets (such as a list, grid or line edit). If you do this,
any actions that you add to the toolbar extension will not be
visible.
-
+
\section _usecases_hbtoolbarextension Using the HbToolBarExtension class
-
+
\subsection _uc_001_hbtoolbarextension Creating a toolbar extension containing actions
The following example demonstrates how to add a toolbar extension button to the toolbar
and how to add actions to the toolbar extension.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,27}
-
+
\subsection _uc_002_hbtoolbarextension Creating a toolbar extension containing a widget
-
+
The following example demonstrates creating a toolbar extension containing a single-selection
list widget.
-
+
\code
// Create the toolbar.
HbToolBar *toolBar = new HbToolBar();
-
+
// Add the action that will open the toolbar extension.
HbAction *radioAction = toolBar->addAction("Channel");
-
+
// Create the toolbar extension.
HbToolBarExtension *radioExtension = new HbToolBarExtension();
-
+
// Set the heading.
HbLabel* heading = new HbLabel(QString("Channel"));
radioExtension->setHeadingWidget(heading);
-
+
// Create a list widget.
HbListWidget *list = new HbListWidget();
list->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
-
+
// Make the list single selection.
list->setSelectionMode(HbAbstractItemView::SingleSelection);
-
+
// Add list items.
list->addItem("574.7");
list->addItem("976.5");
list->addItem("108.67");
-
+
// Add the list widget to the toolbar extension object.
radioExtension->setContentWidget(list);
-
+
// Add the toolbar extension to the toolbar action that will open it.
radioAction->setToolBarExtension(radioExtension);
\endcode
*/
-
+
/*!
\fn int HbToolBarExtension::type() const
*/
-
+
/*
\primitives
\primitive{background} HbFrameItem representing the extension background.
*/
-
+
HbToolBarExtensionPrivate::HbToolBarExtensionPrivate() :
HbDialogPrivate(),
mToolButtons(),
@@ -412,8 +412,8 @@
HbToolBarExtension::~HbToolBarExtension()
{
}
-
-
+
+
/*!
Creates a new action with the given \a text and adds the action
to the end of the toolbar extension, provided space is
@@ -421,7 +421,7 @@
screen size and orientation. When there is no free space, this
function does nothing. There is currently no notification when there
is no free space.
-
+
\overload
\return The new action.
*/
@@ -431,8 +431,8 @@
addAction(action);
return action;
}
-
-
+
+
/*!
Creates a new action with the given \a icon and \a text and adds
the action to the end of the toolbar extension, provided space is
@@ -440,7 +440,7 @@
screen size and orientation. When there is no free space, this
function does nothing. There is currently no notification when there
is no free space.
-
+
\overload
\return The new action.
*/
@@ -451,19 +451,19 @@
addAction(action);
return action;
}
-
-
+
+
/*!
Creates a new action with the given \a text, adds the action to
the end of the toolbar extension (provided space is available), and
connects the action's \link HbAction::triggered()
triggered()\endlink signal to a receiver object's slot.
-
+
The space available in a toolbar extension depends on the screen
size and orientation. When there is no free space, this function
does not add the action to the toolbar extension. There is currently
no notification when there is no free space.
-
+
\overload
\param text The text for the new action.
\param receiver The object that is to receive the new action's signal.
@@ -479,18 +479,18 @@
addAction(action);
return action;
}
-
+
/*!
Creates a new action with the given \a icon and \a text, adds the
action to the end of the toolbar extension (provided space is
available), and connects the action's \link HbAction::triggered()
triggered()\endlink signal to a receiver object's slot.
-
+
The space available in a toolbar extension depends on the screen
size and orientation. When there is no free space, this function
does not add the action to the toolbar extension. There is currently
no notification when there is no free space.
-
+
\overload
\param icon The image for the new action.
\param text The text for the new action.
@@ -508,7 +508,7 @@
addAction(action);
return action;
}
-
+
/*!
Returns the action associated with this toolbar extension. This
is the action in the toolbar to which this toolbar extension belongs
@@ -529,7 +529,7 @@
}
/*!
-
+
*/
bool HbToolBarExtension::event( QEvent *event )
{
@@ -551,7 +551,7 @@
}
/*!
-
+
*/
void HbToolBarExtension::polish( HbStyleParameters ¶ms )
{
--- a/src/hbcore/gui/hbtoolbutton.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtoolbutton.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -26,13 +26,10 @@
#include "hbtoolbutton.h"
#include "hbtoolbutton_p.h"
#include "hbtooltip.h"
-#include "hbstyleoptiontoolbutton_p.h"
#include "hbtoolbarextension.h"
#include "hbtoolbarextension_p.h"
#include "hbaction.h"
#include "hbaction_p.h"
-#include "hbstyle_p.h"
-#include <hbglobal.h>
#include "hbcolorscheme.h"
#include "hbtextitem.h"
#include "hbiconitem.h"
@@ -41,6 +38,12 @@
#include "hbglobal_p.h" // remove when removing HB_DEPRECATED
+#include "hbstyle_p.h" // for iconmodes...
+
+#include <hbstyleframeprimitivedata.h>
+#include <hbstyleiconprimitivedata.h>
+#include <hbstyletextprimitivedata.h>
+
#include <QGraphicsSceneHelpEvent>
#include <QGraphicsSceneMouseEvent>
#include <QCoreApplication>
@@ -103,7 +106,7 @@
frameItem(0),
customBackground(),
backgroundVisible(true),
- toolBarPosition(HbStyleOptionToolButton::TB_None),
+ toolBarPosition(TB_None),
orientation(Qt::Vertical),
mDialogToolBar(false),
toolbarExtensionFrame(false),
@@ -120,19 +123,23 @@
Q_Q(HbToolButton);
if (backgroundVisible) {
if (!frameItem){
- frameItem = HbStylePrivate::createPrimitive(HbStylePrivate::P_ToolButton_frame, q);
+ frameItem = q->style()->createPrimitive(HbStyle::PT_FrameItem, "background", q);
}
} else if (frameItem) {
delete frameItem;
frameItem = 0;
}
if (!textItem) {
- textItem = static_cast<HbTextItem *>(HbStylePrivate::createPrimitive(HbStylePrivate::P_ToolButton_text, q));
- textItem->setTextWrapping(Hb::TextWordWrap);
- } // I dare you to optimize this
+ textItem = q->style()->createPrimitive(HbStyle::PT_TextItem, "text", q);
+ }
+ HbStyleTextPrimitiveData textData;
+ textData.textWrapping = Hb::TextWordWrap;
+ q->style()->updatePrimitive(textItem, &textData, q);
+
if (!iconItem) {
- iconItem = HbStylePrivate::createPrimitive(HbStylePrivate::P_ToolButton_icon, q);
+ iconItem = q->style()->createPrimitive(HbStyle::PT_IconItem, "icon", q);
}
+
}
void HbToolButtonPrivate::setOrientation(Qt::Orientation orientation)
@@ -144,7 +151,7 @@
}
}
-void HbToolButtonPrivate::setToolBarPosition(HbStyleOptionToolButton::ToolBarPosition position)
+void HbToolButtonPrivate::setToolBarPosition(ToolButtonPosition position)
{
Q_Q(HbToolButton);
if (toolBarPosition != position) {
@@ -185,7 +192,174 @@
{
Q_Q(HbToolButton);
q->setProperty(name, value);
- q->repolish();
+ q->repolish();
+}
+
+
+bool HbToolButtonPrivate::useTransparentGraphics() const
+{
+ Q_Q(const HbToolButton);
+ if (q->mainWindow() && q->mainWindow()->currentView()) {
+ if (q->mainWindow()->currentView()->viewFlags() & HbView::ViewTitleBarTransparent) {
+ return true;
+ }
+ }
+ return false;
+}
+
+bool HbToolButtonPrivate::isToolBarExtension() const
+{
+ return (action != 0 && toolbarExtensionFrame);
+}
+
+
+
+
+void HbToolButtonPrivate::framePrimitiveData(HbStyleFramePrimitiveData *data)
+{
+
+ Q_Q(HbToolButton);
+
+ data->fillWholeRect = true;
+
+ if (orientation == Qt::Vertical) {
+ data->frameType = HbFrameDrawer::ThreePiecesHorizontal;
+ } else {
+ data->frameType = HbFrameDrawer::ThreePiecesVertical;
+ }
+
+ QStringList list;
+ QString frameGraphicsFooter;
+ // data->state already set by abstractbutton's data init
+ QIcon::Mode mode = HbStylePrivate::iconMode(data->state);
+ QIcon::State state = HbStylePrivate::iconState(data->state);
+
+ // custom background
+ if (!q->background().isNull()) {
+ data->frameGraphicsName = customBackground.iconName(mode, state);
+ return;
+ }
+
+ // in toolbar extension
+ if(isToolBarExtension()) {
+ if (mode == QIcon::Normal && state == QIcon::On) {
+ if(!q->isCheckable()){
+ data->frameGraphicsName = QLatin1String("qtg_fr_popup_grid_pressed");
+ } else {
+ data->frameGraphicsName = QLatin1String("qtg_fr_tb_ext");
+ }
+ }
+ data->frameType = HbFrameDrawer::NinePieces;
+ return;
+ }
+
+ if (!toolBarPosition) {
+ if (mode == QIcon::Disabled && state == QIcon::Off) {
+ data->frameGraphicsName = QLatin1String("qtg_fr_btn_disabled");
+ } else if (mode == QIcon::Normal && state == QIcon::On) {
+ if(!q->isCheckable()){
+ data->frameGraphicsName = QLatin1String("qtg_fr_btn_pressed");
+ } else {
+ data->frameGraphicsName = QLatin1String("qtg_fr_btn_latched");
+ }
+ } else if (mode == QIcon::Selected && state == QIcon::Off) {
+ data->frameGraphicsName = QLatin1String("qtg_fr_btn_highlight");
+ } else {
+ data->frameGraphicsName = QLatin1String("qtg_fr_btn_normal");
+ }
+ data->frameType = HbFrameDrawer::NinePieces;
+ return;
+ }
+// For toolbar:
+
+ QString frameGraphicsHeader;
+ if (!mDialogToolBar){
+ if (useTransparentGraphics()) {
+ frameGraphicsHeader = orientation == Qt::Vertical ?
+ QLatin1String("qtg_fr_tb_trans_h_"):
+ QLatin1String("qtg_fr_tb_trans_v_");
+ } else {
+ frameGraphicsHeader = orientation == Qt::Vertical ?
+ QLatin1String("qtg_fr_tb_h_"):
+ QLatin1String("qtg_fr_tb_v_");
+ }
+ }else {
+ frameGraphicsHeader = QLatin1String("qtg_fr_popup_sk_");
+ data->mirroringMode = HbIcon::LayoutDirection;
+ }
+
+ switch (toolBarPosition) {
+ case TB_OnlyOne:
+ if (orientation == Qt::Vertical) {
+ list << QLatin1String("_l") << QLatin1String("_c") << QLatin1String("_r");
+ } else {
+ list << QLatin1String("_t") << QLatin1String("_c") << QLatin1String("_b");
+ }
+ break;
+ case TB_Beginning:
+ if (orientation== Qt::Vertical) {
+ list << QLatin1String("_l") << QLatin1String("_c") << QLatin1String("_cr");
+ } else {
+ list << QLatin1String("_t") << QLatin1String("_c") << QLatin1String("_cb");
+ }
+ break;
+ case TB_Middle:
+ if (orientation == Qt::Vertical) {
+ list << QLatin1String("_cl") << QLatin1String("_c") << QLatin1String("_cr");
+ } else {
+ list << QLatin1String("_ct") << QLatin1String("_c") << QLatin1String("_cb");
+ }
+ break;
+ case TB_End:
+ if (orientation== Qt::Vertical) {
+ list << QLatin1String("_cl") << QLatin1String("_c") << QLatin1String("_r");
+ } else {
+ list << QLatin1String("_ct") << QLatin1String("_c") << QLatin1String("_b");
+ }
+ break;
+
+ default:
+ case TB_None:
+ break;
+ }; // switch case end
+
+
+
+ data->fileNameSuffixList = list;
+ if (mode == QIcon::Disabled && state == QIcon::Off) {
+ frameGraphicsFooter = QLatin1String("disabled");
+ } else if (mode == QIcon::Normal && state == QIcon::On) {
+ if(!q->isCheckable()) {
+ frameGraphicsFooter = QLatin1String("pressed");
+ } else {
+ frameGraphicsFooter = QLatin1String("latched");
+ }
+ } else if (mode == QIcon::Selected && state == QIcon::Off) {
+ frameGraphicsFooter = QLatin1String("highlight");
+ } else {
+ frameGraphicsFooter = QLatin1String("normal");
+ }
+ data->frameGraphicsName = QString ("%0%1").arg(frameGraphicsHeader).arg(frameGraphicsFooter);
+ data->mirroringMode = HbIcon::LayoutDirection;
+ return;
+
+}
+void HbToolButtonPrivate::iconPrimitiveData(HbStyleIconPrimitiveData *data)
+{
+ Q_Q(HbToolButton);
+ if (q->action())
+ data->icon = q->action()->icon();
+
+ data->iconMode = HbStylePrivate::iconMode(data->state);
+ data->iconState = HbStylePrivate::iconState(data->state);
+ return;
+}
+void HbToolButtonPrivate::textPrimitiveData(HbStyleTextPrimitiveData *data)
+{
+ Q_Q(HbToolButton);
+ if (q->action())
+ data->text = q->action()->text();
+ return;
}
QSizeF HbToolButtonPrivate::getMinimumSize()
@@ -341,29 +515,6 @@
}
}
-
-/*!
-
- \deprecated HbToolButton::primitive(HbStyle::Primitive)
- is deprecated.
-
- \reimp
- */
-QGraphicsItem *HbToolButton::primitive(HbStyle::Primitive primitive) const
-{
- Q_D(const HbToolButton);
- switch (primitive) {
- case HbStylePrivate::P_ToolButton_frame:
- return d->frameItem;
- case HbStylePrivate::P_ToolButton_icon:
- return d->iconItem;
- case HbStylePrivate::P_ToolButton_text:
- return d->textItem;
- default:
- return 0;
- }
-}
-
/*!
\reimp
*/
@@ -371,7 +522,7 @@
{
Q_D(HbToolButton);
- HbStyleOptionToolButton option;
+
if (d->action) {
setCheckable(d->action->isCheckable());
setChecked(d->action->isChecked());
@@ -393,74 +544,48 @@
setToolTip(QString());
}
- initStyleOption(&option);
setProperty("dialogtoolbar", d->mDialogToolBar);
if (d->frameItem) {
- HbStylePrivate::updatePrimitive(d->frameItem, HbStylePrivate::P_ToolButton_frame, &option);
+ HbStyleFramePrimitiveData data;
+ initPrimitiveData(&data, d->frameItem);
+ style()->updatePrimitive(d->frameItem, &data, this);
+ d->frameItem->update();
}
if (d->textItem) {
+ HbStyleTextPrimitiveData data;
+ initPrimitiveData(&data, d->textItem);
bool itemHasNoContents = false;
- if (option.text.isEmpty() || option.text.isNull() ||
- (property(BUTTONSTYLE).toInt() == HbToolButtonPrivate::ToolButtonIcon)) {
- itemHasNoContents = true;
+ if (data.text.isSet()) {
+ if ( data.text.value().isEmpty() || data.text.value().isNull() ||
+ (property(BUTTONSTYLE).toInt() == HbToolButtonPrivate::ToolButtonIcon)) {
+ itemHasNoContents = true;
+ }
}
d->textItem->setFlag(QGraphicsItem::ItemHasNoContents, itemHasNoContents);
- if(!itemHasNoContents)
- HbStylePrivate::updatePrimitive(d->textItem, HbStylePrivate::P_ToolButton_text, &option);
+ if(!itemHasNoContents) {
+
+ style()->updatePrimitive(d->textItem, &data, this);
+ d->textItem->update();
+ }
}
if (d->iconItem) {
+ HbStyleIconPrimitiveData data;
+ initPrimitiveData(&data, d->iconItem);
+
bool itemHasNoContents = false;
- if (option.icon.isNull() || (property(BUTTONSTYLE).toInt() == HbToolButtonPrivate::ToolButtonText)) {
- itemHasNoContents = true;
- } else {
- HbStylePrivate::updatePrimitive(d->iconItem, HbStylePrivate::P_ToolButton_icon, &option);
- if (option.icon.flags() & HbIcon::Colorized) {
- static_cast<HbIconItem *>(d->iconItem)->setFlags(HbIcon::Colorized);
- }
- if (option.icon.mirroringMode() != HbIcon::Default) {
- HbIconItem *iconItem = static_cast<HbIconItem *>(d->iconItem);
- iconItem->setMirroringMode( option.icon.mirroringMode() );
+ if (data.icon.isSet()) {
+ if (data.icon.value().isNull() || (property(BUTTONSTYLE).toInt() == HbToolButtonPrivate::ToolButtonText)) {
+ itemHasNoContents = true;
+ } else {
+ style()->updatePrimitive(d->iconItem, &data, this);
+ d->iconItem->update();
}
}
d->iconItem->setFlag(QGraphicsItem::ItemHasNoContents, itemHasNoContents);
}
+
}
-/*!
- Initializes \a option with the values from this HbToolButton. This method is useful for
- subclasses when they need a HbStyleOptionToolButton, but don't want to fill in all the
- information themselves.
- */
-void HbToolButton::initStyleOption(HbStyleOptionToolButton *option)
-{
- Q_D(HbToolButton);
- HbAbstractButton::initStyleOption(option);
-
- Q_ASSERT(option);
- option->customBackground = d->customBackground;
- option->backgroundVisible = d->backgroundVisible;
- option->toolBarPosition = d->toolBarPosition;
- option->orientation = d->orientation;
- option->isCheckable = d->checkable;
- option->useSecondaryGraphics = d->mDialogToolBar;
- option->useTransparentGraphics = false;
- if (mainWindow() && mainWindow()->currentView()) {
- if (mainWindow()->currentView()->viewFlags() & HbView::ViewTitleBarTransparent) {
- option->useTransparentGraphics = true;
- }
- }
-
- if (d->action) {
- option->text = d->action->text();
- HbAction *hbAction = qobject_cast<HbAction*>(d->action);
- if (hbAction)
- option->icon = hbAction->icon();
- else
- option->icon = d->action->icon();
-
- option->isToolBarExtension = d->toolbarExtensionFrame;
- }
-}
/*!
\internal
@@ -513,7 +638,7 @@
if (event->type() == QEvent::GraphicsSceneHelp) {
Q_D(HbToolButton);
// Check whether toolbutton is inside a toolbar.
- if (d->toolBarPosition != HbStyleOptionToolButton::TB_None) {
+ if (d->toolBarPosition != HbToolButtonPrivate::TB_None) {
d->showToolTip();
event->accept();
return true;
@@ -522,6 +647,20 @@
return HbAbstractButton::sceneEvent(event);
}
+void HbToolButton::initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive)
+{
+ Q_D(HbToolButton);
+ HbAbstractButton::initPrimitiveData(primitiveData, primitive);
+ QString itemName = HbStyle::itemName(primitive);
+ if (itemName == QLatin1String("background")) {
+ d->framePrimitiveData(hbstyleprimitivedata_cast<HbStyleFramePrimitiveData*>(primitiveData));
+ } else if (itemName == QLatin1String("text")) {
+ d->textPrimitiveData(hbstyleprimitivedata_cast<HbStyleTextPrimitiveData*>(primitiveData));
+ } else if (itemName == QLatin1String("icon")) {
+ d->iconPrimitiveData(hbstyleprimitivedata_cast<HbStyleIconPrimitiveData*>(primitiveData));
+ }
+}
+
/*!
\reimp
*/
--- a/src/hbcore/gui/hbtoolbutton.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtoolbutton.h Thu Sep 02 20:44:51 2010 +0300
@@ -32,6 +32,7 @@
class HbAction;
class HbToolButtonPrivate;
+
class HbStyleOptionToolButton;
class HB_CORE_EXPORT HbToolButton : public HbAbstractButton
@@ -50,7 +51,6 @@
HbIcon background() const;
void setBackground( const HbIcon &background );
- QGraphicsItem *primitive( HbStyle::Primitive primitive ) const;
enum { Type = Hb::ItemType_ToolButton };
int type() const { return Type; }
@@ -63,13 +63,13 @@
protected:
HbToolButton( HbToolButtonPrivate &dd, QGraphicsItem *parent );
-
- void initStyleOption( HbStyleOptionToolButton *option );
void resizeEvent( QGraphicsSceneResizeEvent *event );
void nextCheckState();
bool event( QEvent *event );
void polish(HbStyleParameters ¶ms);
bool sceneEvent(QEvent *event);
+ void initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive);
+
private:
Q_DECLARE_PRIVATE_D( d_ptr, HbToolButton )
--- a/src/hbcore/gui/hbtoolbutton_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtoolbutton_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -38,15 +38,16 @@
//
#include <hbicon.h>
-#include <hbstyleoptiontoolbutton_p.h>
#include <hbabstractbutton_p.h>
#include <QPointer>
+#include <hbstyleframeprimitivedata.h>
+#include <hbstyleiconprimitivedata.h>
+#include <hbstyletextprimitivedata.h>
class HbToolButton;
class HbStyle;
class HbTextItem;
-
class HbToolButtonPrivate : public HbAbstractButtonPrivate
{
Q_DECLARE_PUBLIC(HbToolButton)
@@ -64,25 +65,43 @@
HbToolButtonPrivate();
virtual ~HbToolButtonPrivate();
+ enum ToolButtonPosition
+ {
+ TB_None,
+ TB_OnlyOne,
+ TB_Beginning,
+ TB_Middle,
+ TB_End
+ };
+
void createPrimitives();
void setOrientation( Qt::Orientation orientation );
- void setToolBarPosition( HbStyleOptionToolButton::ToolBarPosition position );
+ void setToolBarPosition( ToolButtonPosition position );
void setBackgroundVisible( bool visible );
void setExtensionBackgroundVisible( bool visible );
void setLayoutProperty(const char *name, bool value);
+
+ bool useTransparentGraphics() const;
+ bool isToolBarExtension() const;
+
+ void framePrimitiveData(HbStyleFramePrimitiveData *data);
+ void iconPrimitiveData(HbStyleIconPrimitiveData *data);
+ void textPrimitiveData(HbStyleTextPrimitiveData *data);
+
QSizeF getMinimumSize();
QPointer<QAction> action;
- HbTextItem *textItem; //Workaround should be QGraphicsItem
- QGraphicsItem *iconItem;
- QGraphicsItem *frameItem;
+ QGraphicsObject *textItem;
+ QGraphicsObject *iconItem;
+ QGraphicsObject *frameItem;
HbIcon customBackground;
bool backgroundVisible;
- HbStyleOptionToolButton::ToolBarPosition toolBarPosition;
+ ToolButtonPosition toolBarPosition;
Qt::Orientation orientation;
+
bool mDialogToolBar;
bool toolbarExtensionFrame;
--- a/src/hbcore/gui/hbtooltip.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbtooltip.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,41 +36,52 @@
@hbcore
\class HbToolTip
- \brief The HbToolTip class provides tool tips (balloon help) for any graphics item.
-
- \mainclass
-
- The tip is a short piece of text reminding the user of the
- graphics item's function.
-
- The simplest and most common way to set a graphics item's tool tip is by
- calling its QGraphicsItem::setToolTip() function.
+ \brief The HbToolTip class provides a set of static functions that augment the
+ standard features provided by the tooltip framework.
+
+ A tooltip is a short piece of text that opens in a balloon, usually in response to
+ the user tapping and holding on a widget or action button. The text provides a brief
+ explanation of the purpose of the item.
+
+ The easiest way to set a tooltip on a widget or action is to call the \c setToolTip()
+ function provided by QGraphicsItem and QAction, respectively. Both QGraphicsItem and
+ QAction also provide a \c toolTip() getter function. After setting the tooltip, you
+ can generally simply let the tooltip framework handle showing the tooltip when the
+ user taps and holds on the item and hiding the tooltip afterwards. The framework
+ shows the tooltip with the \c Qt::AlignTop alignment flag, which means that the tooltip
+ appears above the top edge of the widget.
+
+ When the tooltip framework detects a tap and hold event, it sends a
+ QGraphicsSceneHelpEvent to the QGraphicsItem that is topmost in the scene under the
+ press point and has a non-empty tooltip text. If the QGraphicsItem accepts
+ the event, the framework does not show the tooltip. This means that when necessary
+ classes that are derived from QGraphicsItem can implement their own logic to show
+ the tooltip; for example, if you want the tooltip to appear to the right of the widget
+ rather than in the default position above it. To do this, the implementation calls
+ one of the HbToolTip::showText() static function overloads to display the
+ tooltip.
- When a tooltip is currently on
- display, isVisible() returns true and text() the currently visible
- text.
+ The %HbToolTip class has other static functions that provide additional features.
+ For example, you can call HbToolTip::isVisible() to find out whether a tooltip is
+ currently displayed and HbToolTip::text() to get the text that is currently visible.
- By default the tool tip framework is responsible for showing and hiding the tool tips
- on the scene. When the framework detects a long mouse press event it checks what is the
- top most QGraphicsItem on the scene having non empty tooltip text under the press point and
- sends an QGraphicsSceneHelpEvent to it. This makes it possible that QGraphicsItem derived
- objects can implement their own tool tip showing logic. If the sent QGraphicsSceneHelpEvent
- event is accepted by the QGraphicsItem object then framework does nothing. Otherwise it shows
- the tool tip text with Qt::AlignTop alignment.
+ \section _usecases_hbtooltip Using the HbToolTip class
- In rare cases QGraphicsItem derived classes can handle QGraphicsSceneHelpEvent to provide
- custom tool tip showing logic. An example on how to get custom tooltip alignment
- on a QGraphicsItem derived class.
+ This example shows how a custom widget class that is derived fromQGraphicsItem can
+ handle the QGraphicsSceneHelpEvent event to provide custom logic for showing a tooltip.
+
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,25}
- \sa QGraphicsItem::toolTip, QAction::toolTip
+ \sa QGraphicsItem, QAction
*/
/*!
- \overload
+ This is analogous to calling
+ HbToolTip::showText(const QString&,QGraphicsItem*,const QRectF&,Qt::Alignment)
+ with the \a rect argument set to the widget's bounding rectangle
+ (QGraphicsItem::boundingRect()).
- This is analogous to calling HbToolTip::showText(\a text, \a item,
- item->boundingRect(), \a preferredAlignment)
+ \overload
*/
void HbToolTip::showText( const QString &text, QGraphicsItem *item,
Qt::Alignment preferredAlignment )
@@ -79,36 +90,47 @@
}
/*!
- Shows \a text as a tool tip, with the prefererred alignment \a preferredAlignment in relation
- to \a item.
-
- If you specify a non-empty rect the tip will be hidden as soon
- as you move your cursor out of this area.
-
- The \a rect is in the coordinates of the graphics item you specify with
- \a item.
-
- If \a text is empty or the item 0 the tool tip is hidden.
+ Shows a given text as a tooltip for a widget using a prefererred alignment. There
+ is an additional option to specify a region within the widget that accepts the
+ events that trigger the appearance of the tooltip. If this argument is specified,
+ the tooltip disappears when the user's finger moves out of the defined region.
+
+ Specify the preferred alignment of the tooltip relative to the side of the widget
+ using one of the following flags or flag combinations:
+
+ - \c Qt::AlignTop
+ - \c Qt::AlignRight
+ - \c Qt::AlignLeft
+ - \c Qt::AlignTop | \c Qt::AlignRight
+ - \c Qt::AlignTop | \c Qt::AlignLeft
+
+ For example, \c Qt::AlignTop aligns the lower edge of the tool tip with the top edge
+ of the widget; \c Qt::AlignTop | \c Qt::AlignLeft aligns the lower-right corner of the
+ tooltip with the top-left corner of the widget; and \c Qt::AlignTop | \c Qt::AlignRight
+ aligns the lower-left corner of the tooltip with the top-right corner of the widget.
- The supported alignment flags are Qt::AlignTop, Qt::AlignRight, Qt::AlignLeft,
- Qt::AlignTop|Qt::AlignRight, Qt::AlignTop|Qt::AlignLeft. Any other alignment flags are ignored.
- Alignment flags are referring to the side of \a item i.e. when \a preferredAlignment
- equals Qt::AlignTop the tool tip is aligned to the top of \a item and so on.
- When Qt::AlignTop|Qt::AlignLeft combination is used the bottom-right corner of the tool tip is
- aligned to the top-left corner of \a item. When Qt::AlignTop|Qt::AlignRight combination is used
- the bottom-left corner of the tool tip is aligned to the top-right corner of \a item.
+ If the layout is right-to-left, the horizontal alignments are effectively reversed
+ (for example, \c Qt::AlignRight becomes \c Qt::AlignLeft), using the rules described
+ in \c QStyle::visualAlignment().
- HbToolTip uses QStyle::visualAlignment() to transforms \a preferredAlignment according to the
- current layout direction. Qt::AlignAbsolute is supported the way is described
- in QStyle::visualAlignment().
-
- If the tool tip could not be aligned properly i.e. without intersecting \a item's bounding
- rectangle by using the provided \a preferredAlignment then it will be aligned by another
- supported alignment option.
-
- If none of the supported alignment options results proper alignment then Qt::AlignTop will
- be used.
-
+ If the tooltip cannot be aligned properly using the specified alignment without the
+ tooltip intersecting the widget's bounding rectangle, this function uses another of the
+ supported alignment options.
+
+ You can use this function to hide a tooltip by setting \a text to empty or the \a item
+ parameter to 0.
+
+ \overload
+
+ \param text The text to be displayed. If this is empty, the function hides the
+ tooltip.
+ \param item The widget the tooltip applies to. If this is 0, the function
+ hides the tooltip.
+ \param rect The region within the widget that the user can tap to display the tooltip.
+ This is expressed in the coordinates of \a item.
+ \param preferredAlignment The alignment of the tooltip relative to the side of \a item.
+ This must be one of the supported alignment flags or flag combinations
+ specified above. Any other alignment flags are ignored.
*/
void HbToolTip::showText( const QString &text, QGraphicsItem *item, const QRectF &rect,
Qt::Alignment preferredAlignment )
@@ -128,10 +150,8 @@
}
/*!
- \fn void HbToolTip::hideText()
-
- Hides the visible tooltip in the \a scene. This is the same as calling showText() with an
- empty string or item parameter as 0.
+ Hides the visible tooltip in \a scene. This is equivalent to calling showText()
+ with an empty string or with the \a item parameter set to 0.
\sa showText()
*/
@@ -148,9 +168,9 @@
}
/*!
- Returns true if this tooltip is currently shown.
+ Returns true if this tooltip is currently visible.
- \sa showText()
+ \sa showText()
*/
bool HbToolTip::isVisible( const HbGraphicsScene *scene )
{
@@ -162,8 +182,8 @@
}
/*!
- Returns the tooltip text, if a tooltip is visible, or an
- empty string if a tooltip is not visible.
+ If the tooltip is visible, this returns the tooltip text; otherwise this function
+ returns an empty string.
*/
QString HbToolTip::text( const HbGraphicsScene *scene )
{
--- a/src/hbcore/gui/hbview.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbview.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -830,7 +830,7 @@
{
Q_D(HbView);
- if (visible) {
+ if (visible) {
setViewFlags(d->mViewFlags &~ HbView::ViewTitleBarHidden);
} else {
setViewFlags(d->mViewFlags | HbView::ViewTitleBarHidden);
--- a/src/hbcore/gui/hbwidget.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbwidget.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -63,6 +63,7 @@
: HbWidgetBasePrivate(),
style(0),
backgroundPrimitiveType(HbStylePrivate::P_None),
+ polished(0),
polishPending(false),
themingPending(true),
repolishOutstanding(false),
@@ -77,7 +78,7 @@
focusResidualItem(0)
{
q_ptr = 0;
- testabilitySignal = new HbTestabilitySignal_p();
+ testabilitySignal = new HbTestabilitySignal_p();
}
void HbWidgetPrivate::init()
@@ -493,18 +494,19 @@
/*!
Sets a custom style for the widget.
- When a new style is set for the widget the widget's primitives need to recreated and primitives and layout updated.
- In order for the style change to work each widget needs to override recreatePrimitives() method and recreate the
- primitives.
+ When a new style is set for the widget the widget's primitives need to recreated and primitives and layout updated.
+ In order for the style change to work each widget needs to override recreatePrimitives() method and recreate the
+ primitives.
\param style Custom style for the widget, note that the ownership is not transferred
*/
void HbWidget::setStyle( HbStyle *style )
{
Q_D( HbWidget );
d->style = style;
- recreatePrimitives();
- updatePrimitives();
- repolish();
+ recreatePrimitives();
+ repolish();
+ updatePrimitives();
+
}
/*!
@@ -537,24 +539,6 @@
}
/*!
- \deprecated HbWidget::pluginBaseId()
- is deprecated. Style plugins are deprecated.
-*/
-int HbWidget::pluginBaseId() const
-{
- return 0; // deprecated
-}
-
-/*!
- \deprecated HbWidget::setPluginBaseId(int)
- is deprecated. Style plugins are deprecated.
-*/
-void HbWidget::setPluginBaseId( int baseId )
-{
- Q_UNUSED(baseId); // deprecated
-}
-
-/*!
This function returns the HbMainWindow of the widget or \c 0 if
it doesn't exist. Note that if the widget is not added to the scene
then this function returns the first mainwindow (if there is one)
@@ -748,10 +732,10 @@
Q_D(HbWidget);
if (d->testabilitySignal && d->testabilitySignal->signalEnabled()) {
- emit d->testabilitySignal->propertyChanges(change, value);
+ emit d->testabilitySignal->propertyChanges(change, value);
}
- if (change == QGraphicsItem::ItemVisibleHasChanged) {
+ if (change == QGraphicsItem::ItemVisibleHasChanged) {
if (!d->polished && !value.toBool()) {
// temporary solution starts -->>
@@ -759,7 +743,7 @@
// when the defect is fixed, this needs to be removed to prevent calling the polish
// twice.
#if (QT_VERSION < QT_VERSION_CHECK(4, 6, 1))
- if ( !scene() ) {
+ if ( !scene() ) {
d->polishPending = true;
}
#endif
@@ -900,9 +884,9 @@
// "d->polished" check removed because there's a bug in QGraphicsScene (Qt bug id 251309):
// "polishEvent" is never sent to items that were invisible when added to scene.
#if (QT_VERSION < QT_VERSION_CHECK(4, 6, 1))
- if (!d->repolishOutstanding) {
+ if (!d->repolishOutstanding) {
#else
- if (d->polished && !d->repolishOutstanding) {
+ if (d->polished && !d->repolishOutstanding) {
#endif
d->repolishOutstanding = true;
QEvent* polishEvent = new QEvent( QEvent::Polish );
--- a/src/hbcore/gui/hbwidget.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbwidget.h Thu Sep 02 20:44:51 2010 +0300
@@ -75,6 +75,7 @@
FocusHighlightResidual
};
+
explicit HbWidget(QGraphicsItem *parent = 0, Qt::WindowFlags wFlags = 0);
virtual ~HbWidget();
virtual bool event(QEvent *e);
@@ -85,8 +86,6 @@
enum { Type = Hb::ItemType_Widget };
int type() const { return Type; }
- int pluginBaseId() const;
-
HbMainWindow *mainWindow() const;
virtual QGraphicsItem *primitive(HbStyle::Primitive primitive) const;
@@ -135,9 +134,6 @@
virtual void polishEvent();
virtual void polish(HbStyleParameters ¶ms);
void repolish();
-
- void setPluginBaseId(int baseId);
-
bool sceneEventFilter (QGraphicsItem *watched, QEvent *event);
protected:
--- a/src/hbcore/gui/hbwidget_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbwidget_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -59,7 +59,7 @@
class HB_CORE_PRIVATE_EXPORT HbWidgetPrivate: public HbWidgetBasePrivate
{
- Q_DECLARE_PUBLIC(HbWidget)
+ Q_DECLARE_PUBLIC(HbWidget)
public:
HbWidgetPrivate();
@@ -78,8 +78,9 @@
HbWidget *q_ptr;
HbStyle *style;
- HbTestabilitySignal_p *testabilitySignal;
+ HbTestabilitySignal_p *testabilitySignal;
HbStylePrivate::Primitive backgroundPrimitiveType;
+ quint32 polished :1;
bool polishPending;
bool themingPending;
bool repolishOutstanding;
--- a/src/hbcore/gui/hbwidgetbase.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbwidgetbase.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -26,6 +26,7 @@
#include <QApplication>
#include <QGraphicsWidget>
#include <QDebug>
+#include <hbstyleprimitivedata.h>
#ifdef HB_EFFECTS
#include <hbeffect.h>
#include <hbeffectinternal_p.h>
@@ -62,8 +63,7 @@
HbWidgetBasePrivate::HbWidgetBasePrivate() :
mApiProtectionFlags(0),
- attributes(0),
- polished(0)
+ attributes(0)
{
q_ptr = 0;
@@ -102,19 +102,6 @@
}
}
-//Optimizes updateGeometry calls for hbwidget and its descendents.
-bool HbWidgetBasePrivate::ignoreGeometryUpdate()
-{
-
- return false;
-}
-
-
-void HbWidgetBasePrivate::activateParentLayout()
-{
-
-}
-
void HbWidgetBasePrivate::setInsidePopup(bool insidePopup)
{
Q_Q( HbWidgetBase );
@@ -224,7 +211,7 @@
if (change == QGraphicsItem::ItemVisibleChange) {
if (value.toBool()) {
//For HbWidget/Primitives size is not set as they will be layouted
- //after being polished.This is done to avoid flickering as primitives tend
+ //after being polished. This is done to avoid flickering as primitives tend
//to paint themselves before layouting, if they are added to existing layout.
// If HbWidgets/primitives are used as standalone widgets,
//their size and position must be set explicitly.
@@ -422,6 +409,36 @@
option->boundingRect = boundingRect();
}
+
+/*!
+ Initializes the common primitive data. This method sets the common \a state parameter.
+
+ The state style option consists of flags. If this widget is enabled the flag QStyle::State_Enabled is set.
+ If this widget is active the flag QStyle::State_Active will be set.
+ Derived implementations should create a base call to this method.
+
+ This function does not call the base class implementation.
+ \param primitiveData, pointer to the primitive data
+ \param primitive, primitive pointer, in case there is a need to query data from the primitive (e.g. item name)
+
+*/
+void HbWidgetBase::initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive)
+{
+
+ Q_ASSERT(primitiveData);
+ Q_UNUSED(primitive);
+
+ primitiveData->state = QStyle::State_None;
+ if (isEnabled())
+ primitiveData->state |= QStyle::State_Enabled;
+
+ if (QGraphicsWidget *w = window()) {
+ if (w->isActiveWindow())
+ primitiveData->state |= QStyle::State_Active;
+ }
+}
+
+
/*!
This event handler, for \a event, receives gesture events. Its base
implementation ignores all gestures delivered in the \a event.
--- a/src/hbcore/gui/hbwidgetbase.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbwidgetbase.h Thu Sep 02 20:44:51 2010 +0300
@@ -32,10 +32,12 @@
#include <QGraphicsItem>
#include <QGraphicsWidget>
+#include <QStyle>
class HbStyleOption;
class HbWidgetBasePrivate;
class QGestureEvent;
+class HbStylePrimitiveData;
class HB_CORE_EXPORT HbWidgetBase: public QGraphicsWidget
{
@@ -71,7 +73,8 @@
void updateGeometry();
void initStyleOption(HbStyleOption *option) const;
-
+ void initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive);
+
private:
Q_DECLARE_PRIVATE_D(d_ptr, HbWidgetBase)
Q_DISABLE_COPY(HbWidgetBase)
--- a/src/hbcore/gui/hbwidgetbase_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/gui/hbwidgetbase_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -46,7 +46,7 @@
class HB_CORE_PRIVATE_EXPORT HbWidgetBasePrivate
{
- Q_DECLARE_PUBLIC(HbWidgetBase)
+ Q_DECLARE_PUBLIC(HbWidgetBase)
public:
HbWidgetBasePrivate();
@@ -56,34 +56,32 @@
void fontChangeEvent();
void handleInsidePopup(const QGraphicsItem *parent);
bool keyNavigation() const;
- bool ignoreGeometryUpdate();
- void activateParentLayout();
virtual void setInsidePopup(bool insidePopup);
- enum ApiCssProtectionFlags {
- AC_TextColor = 0x01,
- AC_TextAlign = 0x02,
- AC_IconBrush = 0x04,
- AC_IconAspectRatioMode = 0x08,
+ enum ApiCssProtectionFlags {
+ AC_TextColor = 0x01,
+ AC_TextAlign = 0x02,
+ AC_IconBrush = 0x04,
+ AC_IconAspectRatioMode = 0x08,
AC_IconAlign = 0x10,
AC_TextWrapMode = 0x20,
AC_TextLinesMin = 0x40,
AC_TextLinesMax = 0x80
- };
+ };
- inline void setApiProtectionFlag(HbWidgetBasePrivate::ApiCssProtectionFlags att, bool value)
- {
- if(value)
- mApiProtectionFlags |= att;
- else
- mApiProtectionFlags &= ~att;
- }
+ inline void setApiProtectionFlag(HbWidgetBasePrivate::ApiCssProtectionFlags att, bool value)
+ {
+ if(value)
+ mApiProtectionFlags |= att;
+ else
+ mApiProtectionFlags &= ~att;
+ }
- inline bool testApiProtectionFlag(HbWidgetBasePrivate::ApiCssProtectionFlags att) const
- {
- return mApiProtectionFlags & att;
- }
+ inline bool testApiProtectionFlag(HbWidgetBasePrivate::ApiCssProtectionFlags att) const
+ {
+ return mApiProtectionFlags & att;
+ }
inline int attributeToBitIndex(Hb::WidgetAttribute att) const
{
@@ -103,10 +101,6 @@
quint32 attributes : 5;
HbFontSpec fontSpec;
HbWidgetBase *q_ptr;
- quint32 ignoreParentInvalidation :1;
- quint32 polished :1;
- quint32 reSized :1;
- HbWidget *mParentHbWidget;
private:
static HbWidgetBasePrivate *d_ptr(HbWidgetBase *base) {
--- a/src/hbcore/hbcore.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/hbcore.pro Thu Sep 02 20:44:51 2010 +0300
@@ -161,11 +161,11 @@
for(file, exportqm.sources) {
file2 = $$replace(file, .ts, .qm)
file3 = $${PWD}/$$file2
- BLD_INF_RULES.prj_exports += "$$section(file3, ":", 1) $$exportqm.path/$$basename(file2)"
+ hbPrjExport("$$file3", "$$exportqm.path/$$basename(file2)")
}
# i18n's other files export
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/i18n/translations/language_list.txt $${EPOCROOT}epoc32/winscw/c/resource/hbi18n/translations/language_list.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/i18n/translations/locale_mappings.txt $${EPOCROOT}epoc32/winscw/c/resource/hbi18n/translations/locale_mappings.txt"
+ hbPrjExport("$${PWD}/i18n/translations/language_list.txt", "$${EPOCROOT}epoc32/winscw/c/resource/hbi18n/translations/language_list.txt")
+ hbPrjExport("$${PWD}/i18n/translations/locale_mappings.txt", "$${EPOCROOT}epoc32/winscw/c/resource/hbi18n/translations/locale_mappings.txt")
LIBS += -lapparc
LIBS += -lavkon
@@ -182,19 +182,18 @@
LIBS += -lsystemtoneservice
# central repository
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C304.txt $${EPOCROOT}epoc32/data/z/private/10202BE9/2002C304.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C304.txt $${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/2002C304.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C304.txt $${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/2002C304.txt"
-
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C384.txt $${EPOCROOT}epoc32/data/z/private/10202BE9/2002C384.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C384.txt $${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/2002C384.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C384.txt $${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/2002C384.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C3AE.txt $${EPOCROOT}epoc32/data/z/private/10202BE9/2002C3AE.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C3AE.txt $${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/2002C3AE.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/2002C3AE.txt $${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/2002C3AE.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/20022E82.txt $${EPOCROOT}epoc32/data/z/private/10202BE9/20022E82.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/20022E82.txt $${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/20022E82.txt"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/resources/centralrepository/20022E82.txt $${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/20022E82.txt"
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C304.txt", "$${EPOCROOT}epoc32/data/z/private/10202BE9/2002C304.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C304.txt", "$${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/2002C304.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C304.txt", "$${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/2002C304.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C384.txt", "$${EPOCROOT}epoc32/data/z/private/10202BE9/2002C384.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C384.txt", "$${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/2002C384.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C384.txt", "$${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/2002C384.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C3AE.txt", "$${EPOCROOT}epoc32/data/z/private/10202BE9/2002C3AE.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C3AE.txt", "$${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/2002C3AE.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/2002C3AE.txt", "$${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/2002C3AE.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/20022E82.txt", "$${EPOCROOT}epoc32/data/z/private/10202BE9/20022E82.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/20022E82.txt", "$${EPOCROOT}epoc32/release/winscw/udeb/z/private/10202BE9/20022E82.txt")
+ hbPrjExport("$${PWD}/resources/centralrepository/20022E82.txt", "$${EPOCROOT}epoc32/release/winscw/urel/z/private/10202BE9/20022E82.txt")
}
hb_maemo_dui {
--- a/src/hbcore/i18n/hbdirectorynamelocalizer.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbdirectorynamelocalizer.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -92,9 +92,9 @@
}
QString result;
-
+
if ( d->localizedNames.count() > 0 ) {
- QString searchKey = sourceText;
+ QString searchKey = sourceText;
searchKey = searchKey.replace("\\","/");
searchKey = searchKey.replace("\\\\","/");
--- a/src/hbcore/i18n/hbdirectorynamelocalizer.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbdirectorynamelocalizer.h Thu Sep 02 20:44:51 2010 +0300
@@ -38,10 +38,10 @@
~HbDirectoryNameLocalizer();
QString translate( QString& sourceText ) const;
-private:
+private:
Q_DISABLE_COPY( HbDirectoryNameLocalizer )
- HbDirectoryNameLocalizerPrivate* d;
+ HbDirectoryNameLocalizerPrivate* d;
};
#endif /* DIRECTORYNAMELOCALIZER_H */
--- a/src/hbcore/i18n/hbdirectorynamelocalizer_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbdirectorynamelocalizer_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -31,7 +31,7 @@
class HB_CORE_PRIVATE_EXPORT HbDirectoryNameLocalizerPrivate
{
public:
- QMap<QString,QString> localizedNames;
+ QMap<QString,QString> localizedNames;
};
#endif /* DIRECTORYNAMELOCALIZER_P_H */
--- a/src/hbcore/i18n/hbdntxmlreader.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbdntxmlreader.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -37,51 +37,51 @@
*/
HbDNTXmlReader::HbDNTXmlReader()
{
- fullPaths = NULL;
- pathStrings = NULL;
-
-
- parseDirectoryPaths = false;
- parsePathStrings = false;
- elementNumber = 0;
- validElement = false;
- twoDone = false;
+ fullPaths = NULL;
+ pathStrings = NULL;
+
+
+ parseDirectoryPaths = false;
+ parsePathStrings = false;
+ elementNumber = 0;
+ validElement = false;
+ twoDone = false;
QLocale locale = QLocale::system();
trans = new QTranslator();
- QString languageStr;
- languageStr.append(DirectoryLocalizerTranslationsFile);
+ QString languageStr;
+ languageStr.append(DirectoryLocalizerTranslationsFile);
- languageStr.append(locale.name());
+ languageStr.append(locale.name());
// Support for checking both Z and C drives
-
+
#if defined(Q_OS_SYMBIAN)
- bool succeed = false;
- succeed = trans->load("z:" + languageStr);
- if ( succeed == false ) {
- trans->load("c:" + languageStr);
- }
+ bool succeed = false;
+ succeed = trans->load("z:" + languageStr);
+ if ( succeed == false ) {
+ trans->load("c:" + languageStr);
+ }
#else // Q_OS_SYMBIAN
- trans->load(languageStr);
+ trans->load(languageStr);
#endif // Q_OS_SYMBIAN
- QCoreApplication::installTranslator(trans);
- validElement = false;
-
- QFile xmlFile(DirectoryLocalizerFile);
+ QCoreApplication::installTranslator(trans);
+ validElement = false;
+
+ QFile xmlFile(DirectoryLocalizerFile);
- pathStrings = new QMap<QString, QString>;
- fullPaths = new QMap<QString,QString>;
+ pathStrings = new QMap<QString, QString>;
+ fullPaths = new QMap<QString,QString>;
- if( xmlFile.exists() )
- {
- QXmlInputSource source( &xmlFile );
- QXmlSimpleReader reader;
- reader.setContentHandler( this );
- reader.parse( source ) ;
- }
-
+ if( xmlFile.exists() )
+ {
+ QXmlInputSource source( &xmlFile );
+ QXmlSimpleReader reader;
+ reader.setContentHandler( this );
+ reader.parse( source ) ;
+ }
+
}
/*!
@@ -91,8 +91,8 @@
{
delete fullPaths;
delete pathStrings;
- QCoreApplication::removeTranslator(trans);
- delete trans;
+ QCoreApplication::removeTranslator(trans);
+ delete trans;
}
/*!
@@ -112,50 +112,50 @@
\return true
*/
bool HbDNTXmlReader::startElement( const QString & ,
- const QString & ,
- const QString & qName,
- const QXmlAttributes & )
+ const QString & ,
+ const QString & qName,
+ const QXmlAttributes & )
{
if( qName == DirectoryLocalizerPathStringsStr ) {
- parsePathStrings = true; // set to parse Path
- parseDirectoryPaths = false;
- elements.clear();
- elementNumber = 0; // Set current path element number as undefined
- twoDone = false;
+ parsePathStrings = true; // set to parse Path
+ parseDirectoryPaths = false;
+ elements.clear();
+ elementNumber = 0; // Set current path element number as undefined
+ twoDone = false;
} else if( qName == DirectoryLocalizerFullDirectoryPathsStr ) {
- parsePathStrings = false;
- parseDirectoryPaths = true; // set to parse localized path
- elements.clear();
- elementNumber = 0; // set current path element as undefined
- twoDone = false;
+ parsePathStrings = false;
+ parseDirectoryPaths = true; // set to parse localized path
+ elements.clear();
+ elementNumber = 0; // set current path element as undefined
+ twoDone = false;
} else if( qName == DirectoryLocalizerNameStr ) {
- elementNumber = 1; //
- validElement = true;
- twoDone = false;
+ elementNumber = 1; //
+ validElement = true;
+ twoDone = false;
} else if( qName == DirectoryLocalizerPathStr ){
- elementNumber = 2;
- validElement = true;
- twoDone = false;
+ elementNumber = 2;
+ validElement = true;
+ twoDone = false;
} else if( qName == DirectoryLocalizerTranslationStr){
- elementNumber = 3;
- validElement = true;
+ elementNumber = 3;
+ validElement = true;
} else if( qName == DirectoryLocalizerRootPathStr ){
- elementNumber = 1;
- validElement = true;
- twoDone = false;
+ elementNumber = 1;
+ validElement = true;
+ twoDone = false;
} else if( qName == DirectoryLocalizerLocalizedPathStr ){
- elementNumber = 2;
- validElement = true;
- twoDone = false;
+ elementNumber = 2;
+ validElement = true;
+ twoDone = false;
} else if( qName == DirectoryLocalizerLocalizedNameStr ){
- elementNumber = 3;
- validElement = true;
- twoDone = false;
+ elementNumber = 3;
+ validElement = true;
+ twoDone = false;
} else {
elementNumber++;
}
-
- return true;
+
+ return true;
}
/*!
@@ -179,14 +179,14 @@
}
if( validElement ) {
- if(parsePathStrings) {
- switch(elementNumber) {
+ if(parsePathStrings) {
+ switch(elementNumber) {
case 1: // DirectoryLocalizerNameStr
t=t.toLower();
elements.insert(0,t);
break;
case 2: // DirectoryLocalizerPathStr
- t= t.replace(DirectoryLocalizerDirectorySeparatorX2,DirectoryLocalizerDirectorySeparatorX1);
+ t= t.replace(DirectoryLocalizerDirectorySeparatorX2,DirectoryLocalizerDirectorySeparatorX1);
t=t.toLower();
if ( elements.count() > 1 ) {
elements.insert(1,t);
@@ -194,7 +194,7 @@
elements.append(t);
}
break;
- case 3: // DirectoryLocalizerTranslationStr
+ case 3: // DirectoryLocalizerTranslationStr
elements.insert(0,t);
localizedStr = QCoreApplication::translate(0,charPtr);
@@ -202,7 +202,7 @@
ba = 0;
if( localizedStr == t ){
- localizedStr = "";
+ localizedStr = "";
}
elements.append(localizedStr);
break;
@@ -210,13 +210,13 @@
elements.append(t);
break;
}
- validElement = false;
- } else if(parseDirectoryPaths) {
- switch(elementNumber) {
+ validElement = false;
+ } else if(parseDirectoryPaths) {
+ switch(elementNumber) {
case 1: // DirectoryLocalizerRootPathStr
temp = t;
break;
- case 2: // DirectoryLocalizerLocalizedPathStr
+ case 2: // DirectoryLocalizerLocalizedPathStr
x = pathStrings->value(temp);
y = pathStrings->value(t);
@@ -230,12 +230,12 @@
x = pathStrings->value(t);
elements.insert(1, x);
break;
- default:
+ default:
break;
- }
- validElement = false;
- }
- }
+ }
+ validElement = false;
+ }
+ }
if (ba) {
delete ba;
}
@@ -252,26 +252,26 @@
const QString &,
const QString & qName )
{
- if( qName == DirectoryLocalizerPathStringsStr ) {
- parsePathStrings = false;
- parseDirectoryPaths = false;
- elements.clear();
- elementNumber = 0;
- } else if( qName == DirectoryLocalizerFullDirectoryPathsStr ) {
- parsePathStrings = false;
-
- parseDirectoryPaths = false;
- elements.clear();
- elementNumber = 0;
- }
-
- if( parsePathStrings && elements.count() > 1 ) {
+ if( qName == DirectoryLocalizerPathStringsStr ) {
+ parsePathStrings = false;
+ parseDirectoryPaths = false;
+ elements.clear();
+ elementNumber = 0;
+ } else if( qName == DirectoryLocalizerFullDirectoryPathsStr ) {
+ parsePathStrings = false;
+
+ parseDirectoryPaths = false;
+ elements.clear();
+ elementNumber = 0;
+ }
+
+ if( parsePathStrings && elements.count() > 1 ) {
pathStrings->insertMulti(elements.at(0), elements.at(1));
- elements.clear();
+ elements.clear();
} else if(parseDirectoryPaths && elements.count() > 1) {
- QString element1, element2;
- switch(elements.count()) {
- case 2:
+ QString element1, element2;
+ switch(elements.count()) {
+ case 2:
if(!twoDone){
fullPaths->insertMulti(elements.at(0),elements.at(1));
twoDone = true;
@@ -280,9 +280,9 @@
break;
default:
break;
- }
- }
- return true;
+ }
+ }
+ return true;
}
/*!
@@ -300,7 +300,7 @@
*/
QMap<QString,QString> HbDNTXmlReader::getFullPaths()
{
- return *fullPaths;
+ return *fullPaths;
}
--- a/src/hbcore/i18n/hbdntxmlreader_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbdntxmlreader_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -52,7 +52,7 @@
class HbDNTXmlReader : public QXmlDefaultHandler
{
public:
- HbDNTXmlReader();
+ HbDNTXmlReader();
~HbDNTXmlReader();
bool startDocument();
@@ -69,17 +69,17 @@
QMap<QString,QString> getFullPaths();
private:
QTranslator* trans;
- QMap<QString, QString>* fullPaths;
- QMap<QString, QString>* pathStrings;
-
- bool parseDirectoryPaths;
- bool parsePathStrings;
- int elementNumber;
- bool validElement;
-
- QStringList elements;
- QString temp;
- bool twoDone;
+ QMap<QString, QString>* fullPaths;
+ QMap<QString, QString>* pathStrings;
+
+ bool parseDirectoryPaths;
+ bool parsePathStrings;
+ int elementNumber;
+ bool validElement;
+
+ QStringList elements;
+ QString temp;
+ bool twoDone;
};
#endif // HBDNTXMLREADER_P_H
--- a/src/hbcore/i18n/hbextendedlocale.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbextendedlocale.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -133,7 +133,7 @@
QChar HbExtendedLocale::dateSeparator( int index ) const
{
#if defined(Q_OS_SYMBIAN)
- _symbianLocale.LoadSystemSettings();
+ _symbianLocale.LoadSystemSettings();
TChar val = _symbianLocale.GetLocale()->DateSeparator(index);
return QChar(val);
#else
@@ -163,7 +163,7 @@
if ( index < 0 || index > 3 ) {
return false;
}
- _symbianLocale.LoadSystemSettings();
+ _symbianLocale.LoadSystemSettings();
TChar symbianch( ch.unicode() );
_symbianLocale.GetLocale()->SetDateSeparator(symbianch, index);
_symbianLocale.GetLocale()->Set();
@@ -443,9 +443,9 @@
_symbianLocale.LoadSystemSettings();
TLocalePos position = _symbianLocale.GetLocale()->AmPmSymbolPosition();
if ( position == ELocaleBefore ) {
- return HbExtendedLocale::Before;
- } else {
- return HbExtendedLocale::After;
+ return HbExtendedLocale::Before;
+ } else {
+ return HbExtendedLocale::After;
}
#else
return HbExtendedLocale::After;
@@ -533,11 +533,11 @@
switch ( format ) {
default:
case QLocale::MetricSystem:
- set = EUnitsMetric;
- break;
+ set = EUnitsMetric;
+ break;
case QLocale::ImperialSystem:
- set = EUnitsImperial;
- break;
+ set = EUnitsImperial;
+ break;
}
_symbianLocale.LoadSystemSettings();
@@ -589,11 +589,11 @@
switch ( format ) {
default:
case QLocale::MetricSystem:
- set = EUnitsMetric;
- break;
+ set = EUnitsMetric;
+ break;
case QLocale::ImperialSystem:
- set = EUnitsImperial;
- break;
+ set = EUnitsImperial;
+ break;
}
_symbianLocale.LoadSystemSettings();
_symbianLocale.GetLocale()->SetUnitsDistanceLong(set);
@@ -620,11 +620,11 @@
switch ( format ) {
default:
case QLocale::MetricSystem:
- set = EUnitsMetric;
- break;
+ set = EUnitsMetric;
+ break;
case QLocale::ImperialSystem:
- set = EUnitsImperial;
- break;
+ set = EUnitsImperial;
+ break;
}
_symbianLocale.LoadSystemSettings();
_symbianLocale.GetLocale()->SetUnitsGeneral(set);
@@ -1311,7 +1311,7 @@
{ ELangBasque, "eu_ES" },
{ ELangGalician, "gl_ES" },
#endif
- { ELangJavanese, "jv_ID" },
+ { ELangJavanese, "jv_ID" },
{ ELangMaithili, "bh_IN" },
{ ELangAzerbaijani_Latin, "az_AZ" },
{ ELangOriya, "or_IN" },
@@ -1559,7 +1559,7 @@
++i;
if ( i >= sys_fmt.size() ) {
break;
- }
+ }
c = sys_fmt.at(i);
@@ -1739,8 +1739,8 @@
}
if ( !abbrev_next && locale->AmPmSpaceBetween() ) {
- if ( pos == ELocaleBefore ) {
- qtampm.append(QLatin1Char(' '));
+ if ( pos == ELocaleBefore ) {
+ qtampm.append(QLatin1Char(' '));
} else {
qtampm.prepend(QLatin1Char(' '));
}
@@ -2127,7 +2127,7 @@
{
#if defined(Q_OS_SYMBIAN)
QLocale::system();
- _symbianLocale.LoadSystemSettings();
+ _symbianLocale.LoadSystemSettings();
#endif
}
@@ -2166,7 +2166,7 @@
sp.reset(cleanup);
}
}
- QString resultString;
+ QString resultString;
_symbianLocale.LoadSystemSettings();
TDateTime s60DateTime;
@@ -2182,30 +2182,30 @@
else {
return QString("");
}
-
- TTime s60Date(s60DateTime);
-
- HBufC *s60Format = QString2HBufC(dateFormat);
+
+ TTime s60Date(s60DateTime);
+
+ HBufC *s60Format = QString2HBufC(dateFormat);
if (!s60Format) {
return QString();
}
QScopedPointer<HBufC> sp1(s60Format);
-
- HBufC *s60DateStr = HBufC::New(50);
+
+ HBufC *s60DateStr = HBufC::New(50);
if (!s60DateStr) {
return QString();
}
QScopedPointer<HBufC> sp2(s60DateStr);
TPtr s60FormatPtr = s60Format->Des();
- TPtr s60DatePtr = s60DateStr->Des();
-
- TRAPD(err, s60Date.FormatL( s60DatePtr, s60FormatPtr ));
- if( err ){
- return QString("");
- }
- return TDesC2QString(s60DateStr->Des());
-
+ TPtr s60DatePtr = s60DateStr->Des();
+
+ TRAPD(err, s60Date.FormatL( s60DatePtr, s60FormatPtr ));
+ if( err ){
+ return QString("");
+ }
+ return TDesC2QString(s60DateStr->Des());
+
#else
Q_UNUSED(dateFormat);
return toString(date, ShortFormat );
@@ -2236,37 +2236,37 @@
}
QString resultString;
-
+
TDateTime s60DateTime;
if (s60DateTime.Set( 0, TMonth(0), 0, time.hour(), time.minute(), time.second(), time.msec())) {
return QString();
}
-
- TTime s60Time(s60DateTime);
-
- HBufC *s60Format = QString2HBufC(timeFormat);
+
+ TTime s60Time(s60DateTime);
+
+ HBufC *s60Format = QString2HBufC(timeFormat);
if (!s60Format) {
return QString();
}
QScopedPointer<HBufC> sp1(s60Format);
-
-
- HBufC *s60TimeStr = HBufC::New(50);
+
+
+ HBufC *s60TimeStr = HBufC::New(50);
if (!s60TimeStr) {
return QString();
}
QScopedPointer<HBufC> sp2(s60TimeStr);
-
- TPtr s60FormatPtr = s60Format->Des();
- TPtr s60TimePtr = s60TimeStr->Des();
-
- TRAPD(err, s60Time.FormatL( s60TimePtr, s60FormatPtr ));
- if( err ){
- return QString("");
- }
- return TDesC2QString(s60TimeStr->Des());
+
+ TPtr s60FormatPtr = s60Format->Des();
+ TPtr s60TimePtr = s60TimeStr->Des();
+
+ TRAPD(err, s60Time.FormatL( s60TimePtr, s60FormatPtr ));
+ if( err ){
+ return QString("");
+ }
+ return TDesC2QString(s60TimeStr->Des());
#else
Q_UNUSED(timeFormat);
return toString(time, ShortFormat);
-#endif
+#endif
}
--- a/src/hbcore/i18n/hbfindfile.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbfindfile.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -122,7 +122,7 @@
QString drives = availableDrives();
for (int i = 0; i < drives.size(); i++) {
if (drives.at(i) == defaultDrive) {
- continue;
+ continue;
}
file = drives.at(i) + QString(":") + str;
QFileInfo info(file);
--- a/src/hbcore/i18n/hblanguageutil.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hblanguageutil.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -270,7 +270,7 @@
}
if (!setLocale(language)) {
- delete commonEngineRepository;
+ delete commonEngineRepository;
return false;
}
--- a/src/hbcore/i18n/hblocaleutil.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hblocaleutil.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -302,7 +302,7 @@
if(mappingList.isEmpty()) {
readMappings();
}
-
+
int lanCode = -1;
QString dllExt = "";
for (int i = 0; i < mappingList.count(); ++i) {
@@ -516,6 +516,26 @@
dummy.SaveSystemSettings();
// cause localeprivate update on next qlocale object
QSystemLocale dummy2;
+
+ // Update region to cent rep
+ bool ok;
+ int regionCode = mapping.regionDllId.toInt(&ok);
+ if (!ok) {
+ return false;
+ }
+
+ CRepository* commonEngineRepository = 0;
+ TRAPD( err1, commonEngineRepository = CRepository::NewL( KCRUidCommonEngineKeys ) );
+ if ( err1 != KErrNone ) {
+ return false;
+ }
+
+ if ( commonEngineRepository->Set( KGSRegion, regionCode ) != KErrNone ) {
+ delete commonEngineRepository;
+ return false;
+ }
+ delete commonEngineRepository;
+
return true;
}
}
@@ -722,6 +742,25 @@
dummy.SaveSystemSettings();
// cause localeprivate update on next qlocale object
QSystemLocale dummy2;
+ // Update collation to cent rep
+ bool ok;
+ int colCode = mapping.collationDllId.toInt(&ok);
+ if (!ok) {
+ return false;
+ }
+
+ CRepository* commonEngineRepository = 0;
+ TRAPD( err1, commonEngineRepository = CRepository::NewL( KCRUidCommonEngineKeys ) );
+ if ( err1 != KErrNone ) {
+ return false;
+ }
+
+ if ( commonEngineRepository->Set( KGSCollation, colCode ) != KErrNone ) {
+ delete commonEngineRepository;
+ return false;
+ }
+ delete commonEngineRepository;
+
return true;
}
}
--- a/src/hbcore/i18n/hbngnormalnumber.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbngnormalnumber.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -27,7 +27,7 @@
#include "hbnumbergrpxmlreader_p.h"
namespace NgNormalNumber {
- QHash<QLocale::Country, HbNgNormalNumber::CountryData> countryList;
+ QHash<QLocale::Country, HbNgNormalNumber::CountryData> countryList;
}
/*!
@@ -38,31 +38,31 @@
\return grouped numbers
*/
QString HbNgNormalNumber::normalNumberGrouping( const QString &number,
- const QLocale::Country &country )
+ const QLocale::Country &country )
{
- QString decimal;
- QString group;
- int firstNumber;
- int lastNumber;
- int dot;
- bool sign;
- QList<int> patternBlockSizes;
-
- // Checking received 'number' parameter...
- // Here we initialize variables...
- if ( HbNgNormalNumber::checkingNumber(number, firstNumber, lastNumber, dot, sign) == false ) {
- return QString();
- }
-
- // Checking XML...
- // Here we initialize (more) variables...
- if ( HbNgNormalNumber::checkingXML(country, decimal, group, patternBlockSizes) == false ) {
- return QString();
- }
-
- // Formating number group...
- // Here we use those variables...
- return HbNgNormalNumber::formatingGroup(number, firstNumber, lastNumber, dot, sign, decimal, group, patternBlockSizes);
+ QString decimal;
+ QString group;
+ int firstNumber;
+ int lastNumber;
+ int dot;
+ bool sign;
+ QList<int> patternBlockSizes;
+
+ // Checking received 'number' parameter...
+ // Here we initialize variables...
+ if ( HbNgNormalNumber::checkingNumber(number, firstNumber, lastNumber, dot, sign) == false ) {
+ return QString();
+ }
+
+ // Checking XML...
+ // Here we initialize (more) variables...
+ if ( HbNgNormalNumber::checkingXML(country, decimal, group, patternBlockSizes) == false ) {
+ return QString();
+ }
+
+ // Formating number group...
+ // Here we use those variables...
+ return HbNgNormalNumber::formatingGroup(number, firstNumber, lastNumber, dot, sign, decimal, group, patternBlockSizes);
}
/*!
@@ -76,97 +76,97 @@
\return true if valid
*/
bool HbNgNormalNumber::checkingNumber( const QString &number,
- int &firstNumber,
- int &lastNumber,
- int &dot,
- bool &sign )
+ int &firstNumber,
+ int &lastNumber,
+ int &dot,
+ bool &sign )
{
- firstNumber = -1;
- lastNumber = -1;
- dot = -1;
- sign = false;
- int index = 0;
- int nrSize = number.size();
-
- for ( index = 0; index < nrSize; index++ ) {
- switch ( number.at(index).toAscii() ) {
- case 43: // "+"
- case 45: // "-"
- if ( index < number.size()-1 ) {
- if ( index > 0 ) {
- // If sign (+/-) present then it should be a first or last (for arabic) character
- return false;
- } else {
- // Sign (+/-) is the first character
- sign=true;
- }
- } else {
- if ( sign ) {
- // Sign (+/-) already exists as the first character
- // Sign cannot be in both ends same time
- return false;
- } else {
- // Sign (+/-) is the last character
- sign=true;
- }
- }
- break;
- case 46: // "."
- if ( firstNumber == -1 ) {
- // We don't support '.x' format
- // At least zero should be a first character, example 0.x
- return false;
- }
- if ( dot != -1 ) {
- // We don't support multiple dots
- // Only one dot is allowed
- return false;
- }
- if ( index == (nrSize-2) ) {
- if ( number.at(index+1).toAscii() == 43) {
- // We don't support 'x.+' format
- // At least zero should be a second last character, example x.0+
- return false;
- }
- if ( number.at(index+1).toAscii() == 45) {
- // We don't support 'x.-' format
- // At least zero should be a second last character, example x.0-
- return false;
- }
- }
- if ( index == (nrSize-1) ) {
- // We don't support 'x.' format
- // At least zero should be a last character, example x.0
- return false;
- }
- dot = index;
- break;
- case 48: // "0"
- case 49: // "1"
- case 50: // "2"
- case 51: // "3"
- case 52: // "4"
- case 53: // "5"
- case 54: // "6"
- case 55: // "7"
- case 56: // "8"
- case 57: // "9"
- if ( firstNumber == -1 ) {
- firstNumber = index;
- }
- lastNumber = index;
- break;
- default:
- // String contains unknown or invalid character(s)
- return false;
- }
- }
-
- if ( firstNumber == -1 ) {
- // String doesn't contain any number for formating
- return false;
- }
-
+ firstNumber = -1;
+ lastNumber = -1;
+ dot = -1;
+ sign = false;
+ int index = 0;
+ int nrSize = number.size();
+
+ for ( index = 0; index < nrSize; index++ ) {
+ switch ( number.at(index).toAscii() ) {
+ case 43: // "+"
+ case 45: // "-"
+ if ( index < number.size()-1 ) {
+ if ( index > 0 ) {
+ // If sign (+/-) present then it should be a first or last (for arabic) character
+ return false;
+ } else {
+ // Sign (+/-) is the first character
+ sign=true;
+ }
+ } else {
+ if ( sign ) {
+ // Sign (+/-) already exists as the first character
+ // Sign cannot be in both ends same time
+ return false;
+ } else {
+ // Sign (+/-) is the last character
+ sign=true;
+ }
+ }
+ break;
+ case 46: // "."
+ if ( firstNumber == -1 ) {
+ // We don't support '.x' format
+ // At least zero should be a first character, example 0.x
+ return false;
+ }
+ if ( dot != -1 ) {
+ // We don't support multiple dots
+ // Only one dot is allowed
+ return false;
+ }
+ if ( index == (nrSize-2) ) {
+ if ( number.at(index+1).toAscii() == 43) {
+ // We don't support 'x.+' format
+ // At least zero should be a second last character, example x.0+
+ return false;
+ }
+ if ( number.at(index+1).toAscii() == 45) {
+ // We don't support 'x.-' format
+ // At least zero should be a second last character, example x.0-
+ return false;
+ }
+ }
+ if ( index == (nrSize-1) ) {
+ // We don't support 'x.' format
+ // At least zero should be a last character, example x.0
+ return false;
+ }
+ dot = index;
+ break;
+ case 48: // "0"
+ case 49: // "1"
+ case 50: // "2"
+ case 51: // "3"
+ case 52: // "4"
+ case 53: // "5"
+ case 54: // "6"
+ case 55: // "7"
+ case 56: // "8"
+ case 57: // "9"
+ if ( firstNumber == -1 ) {
+ firstNumber = index;
+ }
+ lastNumber = index;
+ break;
+ default:
+ // String contains unknown or invalid character(s)
+ return false;
+ }
+ }
+
+ if ( firstNumber == -1 ) {
+ // String doesn't contain any number for formating
+ return false;
+ }
+
return true;
}
@@ -180,50 +180,50 @@
\return true if successful
*/
bool HbNgNormalNumber::checkingXML( const QLocale::Country &country,
- QString &decimal,
- QString &group,
- QList<int> &patternBlockSizes )
+ QString &decimal,
+ QString &group,
+ QList<int> &patternBlockSizes )
{
- decimal = "";
- group = "";
- QString pattern = "";
-
- // Firstly we try to find needed data from the list...
- QHash<QLocale::Country, HbNgNormalNumber::CountryData>::iterator iter = NgNormalNumber::countryList.find(country);
- if ( iter == NgNormalNumber::countryList.end() ) {
- // Data not found. So now we read XML file...
- HbNumberGrpXmlReader numberGrpReader(country);
- pattern = numberGrpReader.getPattern();
- decimal = numberGrpReader.getDecimal();
- group = numberGrpReader.getGroup();
-
- if ( (pattern.isEmpty()) || (decimal.isEmpty()) ) {
- // XML doesn't contain all needed information or reading has failed
- return false;
- }
-
- // Checking pattern...
- patternBlockSizes = HbNgNormalNumber::checkingPattern(pattern);
- if ( patternBlockSizes.isEmpty() ) {
- // Pattern was invalid or corrupted
- return false;
- }
-
- // Updating the list with new information...
- HbNgNormalNumber::CountryData tempCountryData;
- tempCountryData.pattern = pattern;
- tempCountryData.decimal = decimal;
- tempCountryData.group = group;
- tempCountryData.patternBlockSizes = patternBlockSizes;
- NgNormalNumber::countryList.insert(country, tempCountryData);
- } else {
- // Data found
- HbNgNormalNumber::CountryData tempCountryData2 = iter.value();
- pattern = tempCountryData2.pattern;
- decimal = tempCountryData2.decimal;
- group = tempCountryData2.group;
- patternBlockSizes = tempCountryData2.patternBlockSizes;
- }
+ decimal = "";
+ group = "";
+ QString pattern = "";
+
+ // Firstly we try to find needed data from the list...
+ QHash<QLocale::Country, HbNgNormalNumber::CountryData>::iterator iter = NgNormalNumber::countryList.find(country);
+ if ( iter == NgNormalNumber::countryList.end() ) {
+ // Data not found. So now we read XML file...
+ HbNumberGrpXmlReader numberGrpReader(country);
+ pattern = numberGrpReader.getPattern();
+ decimal = numberGrpReader.getDecimal();
+ group = numberGrpReader.getGroup();
+
+ if ( (pattern.isEmpty()) || (decimal.isEmpty()) ) {
+ // XML doesn't contain all needed information or reading has failed
+ return false;
+ }
+
+ // Checking pattern...
+ patternBlockSizes = HbNgNormalNumber::checkingPattern(pattern);
+ if ( patternBlockSizes.isEmpty() ) {
+ // Pattern was invalid or corrupted
+ return false;
+ }
+
+ // Updating the list with new information...
+ HbNgNormalNumber::CountryData tempCountryData;
+ tempCountryData.pattern = pattern;
+ tempCountryData.decimal = decimal;
+ tempCountryData.group = group;
+ tempCountryData.patternBlockSizes = patternBlockSizes;
+ NgNormalNumber::countryList.insert(country, tempCountryData);
+ } else {
+ // Data found
+ HbNgNormalNumber::CountryData tempCountryData2 = iter.value();
+ pattern = tempCountryData2.pattern;
+ decimal = tempCountryData2.decimal;
+ group = tempCountryData2.group;
+ patternBlockSizes = tempCountryData2.patternBlockSizes;
+ }
return true;
}
@@ -236,42 +236,42 @@
*/
QList<int> HbNgNormalNumber::checkingPattern( const QString &pattern )
{
- int index = 0;
- int comma = -1;
- int patternBlockSize = 0;
- QList<int> blockSizes;
-
- for ( index = 0; index < pattern.size(); index++ ) {
- if ( pattern.at(index).toAscii() == 44 ) { // Comma
- if ( comma == -1 ) {
- comma = index;
- } else {
- // Calculating size of block...
- patternBlockSize = index - comma - 1;
- if ( patternBlockSize < 1 ) {
- // Pattern was invalid or corrupted
- return QList<int>();
- }
- blockSizes.append(patternBlockSize);
- comma = index;
- }
- } else if ( pattern.at(index).toAscii() == 46 ) { // Dot
- if ( comma == -1 ) {
- patternBlockSize = 99999;
- } else {
- // Calculating size of block...
- patternBlockSize = index - comma - 1;
- if ( patternBlockSize < 1 ) {
- // Pattern was invalid or corrupted
- return QList<int>();
- }
- }
- blockSizes.append(patternBlockSize);
- break;
- }
- }
-
- return blockSizes;
+ int index = 0;
+ int comma = -1;
+ int patternBlockSize = 0;
+ QList<int> blockSizes;
+
+ for ( index = 0; index < pattern.size(); index++ ) {
+ if ( pattern.at(index).toAscii() == 44 ) { // Comma
+ if ( comma == -1 ) {
+ comma = index;
+ } else {
+ // Calculating size of block...
+ patternBlockSize = index - comma - 1;
+ if ( patternBlockSize < 1 ) {
+ // Pattern was invalid or corrupted
+ return QList<int>();
+ }
+ blockSizes.append(patternBlockSize);
+ comma = index;
+ }
+ } else if ( pattern.at(index).toAscii() == 46 ) { // Dot
+ if ( comma == -1 ) {
+ patternBlockSize = 99999;
+ } else {
+ // Calculating size of block...
+ patternBlockSize = index - comma - 1;
+ if ( patternBlockSize < 1 ) {
+ // Pattern was invalid or corrupted
+ return QList<int>();
+ }
+ }
+ blockSizes.append(patternBlockSize);
+ break;
+ }
+ }
+
+ return blockSizes;
}
/*!
@@ -288,65 +288,65 @@
\return grouped numbers
*/
QString HbNgNormalNumber::formatingGroup( const QString &number,
- const int &firstNumber,
- const int &lastNumber,
- const int &dot,
- const bool &sign,
- const QString &decimal,
- const QString &group,
- const QList<int> &patternBlockSizes )
+ const int &firstNumber,
+ const int &lastNumber,
+ const int &dot,
+ const bool &sign,
+ const QString &decimal,
+ const QString &group,
+ const QList<int> &patternBlockSizes )
{
- QString formated = "";
- int index = 0;
- int patternBlockSize = 0;
- int blockCounter = 0;
- int numberOfBlocks = 0;
- int nrSize = number.size();
- int tempDot = dot;
+ QString formated = "";
+ int index = 0;
+ int patternBlockSize = 0;
+ int blockCounter = 0;
+ int numberOfBlocks = 0;
+ int nrSize = number.size();
+ int tempDot = dot;
- if ( tempDot == -1 ) {
- if ( (sign == true) && (lastNumber < nrSize-1) ) {
- tempDot = nrSize - 1;
-
- // Inserting sign (xxx-/+)...
- formated.insert(0, number.at(nrSize-1));
- } else {
- tempDot = nrSize;
- }
- } else {
- // Inserting decimals (and sign x.xxx-/+)...
- formated.append(decimal);
- formated.append(number.right(nrSize-tempDot-1));
- }
-
- // Checking amount of blocks and size of first (last in the list) block for using...
- numberOfBlocks = patternBlockSizes.length();
- patternBlockSize = patternBlockSizes.last();
-
- for ( index = tempDot-1; index > firstNumber-1; --index ) {
- if ( blockCounter < patternBlockSize ) {
- // Inserting number...
- formated.insert(0, number.at(index));
- blockCounter++;
- } else {
- // Inserting number and group separator...
- formated.insert(0, group);
- formated.insert(0, number.at(index));
- blockCounter = 1;
-
- // Take next size of block in use
- numberOfBlocks--;
- // Updating the size of block if needed...
- if ( numberOfBlocks > 0 ) {
- patternBlockSize = patternBlockSizes.at(numberOfBlocks-1);
- }
- }
- }
-
- if ( firstNumber > 0 ) {
- // Inserting sign (+/-xxx)...
- formated.insert(0, number.at(0));
- }
-
- return formated;
+ if ( tempDot == -1 ) {
+ if ( (sign == true) && (lastNumber < nrSize-1) ) {
+ tempDot = nrSize - 1;
+
+ // Inserting sign (xxx-/+)...
+ formated.insert(0, number.at(nrSize-1));
+ } else {
+ tempDot = nrSize;
+ }
+ } else {
+ // Inserting decimals (and sign x.xxx-/+)...
+ formated.append(decimal);
+ formated.append(number.right(nrSize-tempDot-1));
+ }
+
+ // Checking amount of blocks and size of first (last in the list) block for using...
+ numberOfBlocks = patternBlockSizes.length();
+ patternBlockSize = patternBlockSizes.last();
+
+ for ( index = tempDot-1; index > firstNumber-1; --index ) {
+ if ( blockCounter < patternBlockSize ) {
+ // Inserting number...
+ formated.insert(0, number.at(index));
+ blockCounter++;
+ } else {
+ // Inserting number and group separator...
+ formated.insert(0, group);
+ formated.insert(0, number.at(index));
+ blockCounter = 1;
+
+ // Take next size of block in use
+ numberOfBlocks--;
+ // Updating the size of block if needed...
+ if ( numberOfBlocks > 0 ) {
+ patternBlockSize = patternBlockSizes.at(numberOfBlocks-1);
+ }
+ }
+ }
+
+ if ( firstNumber > 0 ) {
+ // Inserting sign (+/-xxx)...
+ formated.insert(0, number.at(0));
+ }
+
+ return formated;
}
--- a/src/hbcore/i18n/hbngnormalnumber_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbngnormalnumber_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -33,34 +33,34 @@
class HB_CORE_EXPORT HbNgNormalNumber
{
public:
- struct CountryData {
- QString decimal;
- QString group;
- QString pattern;
- QList<int> patternBlockSizes;
- };
-
+ struct CountryData {
+ QString decimal;
+ QString group;
+ QString pattern;
+ QList<int> patternBlockSizes;
+ };
+
static QString normalNumberGrouping( const QString &number, const QLocale::Country &country );
private:
- static QList<int> checkingPattern( const QString &pattern );
- static bool checkingNumber( const QString &number,
- int &firstNumber,
- int &lastNumber,
- int &dot,
- bool &sign );
- static bool checkingXML( const QLocale::Country &country,
- QString &decimal,
- QString &group,
- QList<int> &patternBlockSizes );
- static QString formatingGroup( const QString &number,
- const int &firstNumber,
- const int &lastNumber,
- const int &dot,
- const bool &sign,
- const QString &decimal,
- const QString &group,
- const QList<int> &patternBlockSizes );
+ static QList<int> checkingPattern( const QString &pattern );
+ static bool checkingNumber( const QString &number,
+ int &firstNumber,
+ int &lastNumber,
+ int &dot,
+ bool &sign );
+ static bool checkingXML( const QLocale::Country &country,
+ QString &decimal,
+ QString &group,
+ QList<int> &patternBlockSizes );
+ static QString formatingGroup( const QString &number,
+ const int &firstNumber,
+ const int &lastNumber,
+ const int &dot,
+ const bool &sign,
+ const QString &decimal,
+ const QString &group,
+ const QList<int> &patternBlockSizes );
};
#endif // HBNGNORMALNUMBER_P_H
--- a/src/hbcore/i18n/hbnumbergrouping.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbnumbergrouping.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -45,7 +45,7 @@
Example:
\snippet{unittest_hbnumbergrouping/unittest_hbnumbergrouping.cpp,1}
-
+
*/
/*!
@@ -60,17 +60,17 @@
\return modified string.
*/
QString HbNumberGrouping::formatGeneric( const QString &number,
- QLocale::Country country )
+ QLocale::Country country )
{
- if ( number.size() == 0 ) {
- return QString();
- }
-
- if ( country == QLocale::AnyCountry) {
- QLocale locale;
- country = locale.country();
- }
-
+ if ( number.size() == 0 ) {
+ return QString();
+ }
+
+ if ( country == QLocale::AnyCountry) {
+ QLocale locale;
+ country = locale.country();
+ }
+
return HbNgNormalNumber::normalNumberGrouping(number, country);
}
@@ -86,17 +86,17 @@
\return modified string.
*/
QString HbNumberGrouping::formatCurrency( const QString &number,
- QLocale::Country country )
+ QLocale::Country country )
{
- if ( number.size() == 0 ) {
- return QString();
- }
-
- if ( country == QLocale::AnyCountry) {
- QLocale locale;
- country = locale.country();
- }
-
+ if ( number.size() == 0 ) {
+ return QString();
+ }
+
+ if ( country == QLocale::AnyCountry) {
+ QLocale locale;
+ country = locale.country();
+ }
+
return HbNgNormalNumber::normalNumberGrouping(number, country);
}
@@ -112,16 +112,16 @@
\return modified string.
*/
QString HbNumberGrouping::formatPhoneNumber( const QString &number,
- QLocale::Country country )
+ QLocale::Country country )
{
- if ( number.size() == 0 ) {
- return QString();
- }
-
- if ( country == QLocale::AnyCountry) {
- QLocale locale;
- country = locale.country();
- }
+ if ( number.size() == 0 ) {
+ return QString();
+ }
+
+ if ( country == QLocale::AnyCountry) {
+ QLocale locale;
+ country = locale.country();
+ }
- return QString();
+ return QString();
}
--- a/src/hbcore/i18n/hbnumbergrpxmlreader.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbnumbergrpxmlreader.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,31 +36,31 @@
*/
HbNumberGrpXmlReader::HbNumberGrpXmlReader( int localeId )
{
- locale.setNum(localeId);
- locale.insert(0, "C");
- found = false;
- done = false;
- phase = 0;
- decimal = "";
- pattern = "";
- group = "";
+ locale.setNum(localeId);
+ locale.insert(0, "C");
+ found = false;
+ done = false;
+ phase = 0;
+ decimal = "";
+ pattern = "";
+ group = "";
- QFile xmlFile(NumberGroupingFile);
+ QFile xmlFile(NumberGroupingFile);
- if ( xmlFile.exists() ) {
- QXmlInputSource source(&xmlFile);
- QXmlSimpleReader reader;
- reader.setContentHandler(this);
- reader.parse(source) ;
- }
-}
+ if ( xmlFile.exists() ) {
+ QXmlInputSource source(&xmlFile);
+ QXmlSimpleReader reader;
+ reader.setContentHandler(this);
+ reader.parse(source) ;
+ }
+}
/*!
\return pattern for grouping
*/
QString HbNumberGrpXmlReader::getPattern()
{
- return pattern;
+ return pattern;
}
/*!
@@ -68,7 +68,7 @@
*/
QString HbNumberGrpXmlReader::getGroup()
{
- return group;
+ return group;
}
/*!
@@ -76,7 +76,7 @@
*/
QString HbNumberGrpXmlReader::getDecimal()
{
- return decimal;
+ return decimal;
}
/*!
@@ -104,26 +104,26 @@
\return true
*/
bool HbNumberGrpXmlReader::startElement( const QString &,
- const QString &,
- const QString &qName,
- const QXmlAttributes & )
+ const QString &,
+ const QString &qName,
+ const QXmlAttributes & )
{
- if ( done ) {
- return true;
- }
+ if ( done ) {
+ return true;
+ }
- if ( found ) {
- if ( qName == DecimalStr ) {
- phase = 1;
- } else if ( qName == GroupStr ) {
- phase = 2;
- } else if ( qName == PatternStr ) {
- phase = 3;
- }
- } else if ( locale == qName ) {
- found = true;
- }
- return true;
+ if ( found ) {
+ if ( qName == DecimalStr ) {
+ phase = 1;
+ } else if ( qName == GroupStr ) {
+ phase = 2;
+ } else if ( qName == PatternStr ) {
+ phase = 3;
+ }
+ } else if ( locale == qName ) {
+ found = true;
+ }
+ return true;
}
/*!
@@ -140,8 +140,8 @@
QString tmpText;
- // This little trick is needed because of limitation in XML reader
- // XML reader doesn't read space character corretly
+ // This little trick is needed because of limitation in XML reader
+ // XML reader doesn't read space character corretly
if ( text.at(0).toAscii() == 32 ) { // " "
tmpText = ' ';
} else {
@@ -149,17 +149,17 @@
}
if ( found ) {
- if ( phase == 1 ) { //handle Decimal
- decimal = tmpText;
- } else if ( phase == 2 ) { // handle group
- group = tmpText;
- } else if ( phase == 3 ) { // handle pattern
- pattern = tmpText;
- } else {}
-
- phase = 0;
+ if ( phase == 1 ) { //handle Decimal
+ decimal = tmpText;
+ } else if ( phase == 2 ) { // handle group
+ group = tmpText;
+ } else if ( phase == 3 ) { // handle pattern
+ pattern = tmpText;
+ } else {}
+
+ phase = 0;
}
- return true;
+ return true;
}
/*!
@@ -172,11 +172,11 @@
const QString &,
const QString &qName )
{
- if ( locale == qName ) {
- done = true;
- }
+ if ( locale == qName ) {
+ done = true;
+ }
- return true;
+ return true;
}
/*!
--- a/src/hbcore/i18n/hbnumbergrpxmlreader_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbnumbergrpxmlreader_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -40,7 +40,7 @@
class HbNumberGrpXmlReader : public QXmlDefaultHandler
{
public:
- HbNumberGrpXmlReader( int localeId );
+ HbNumberGrpXmlReader( int localeId );
~HbNumberGrpXmlReader();
bool startDocument();
@@ -57,16 +57,16 @@
QString getPattern();
QString getGroup();
QString getDecimal();
-
+
private:
- QString locale;
- QString pattern;
- QString group;
- QString decimal;
- bool found;
- bool done;
- int phase;
-
+ QString locale;
+ QString pattern;
+ QString group;
+ QString decimal;
+ bool found;
+ bool done;
+ int phase;
+
};
#endif // NUMBERGRPXMLREADER_P_H
--- a/src/hbcore/i18n/hbstringutil.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/hbstringutil.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -109,9 +109,9 @@
TPtrC s1Ptr( strFrom.utf16() );
TPtrC s2Ptr( strToMatch.utf16() );
- if ( (maxLevel < 0) || (maxLevel > 3) ) {
- maxLevel = 0;
- }
+ if ( (maxLevel < 0) || (maxLevel > 3) ) {
+ maxLevel = 0;
+ }
if ( (flags < 0) || (flags > 127) ) {
flags = Default;
}
@@ -154,7 +154,7 @@
\param flags The flags that will be used. Default value is Default.
\return Positive if source string is greater, negative if it is less and
- zero if the content of both strings match.
+ zero if the content of both strings match.
Example:
\snippet{unittest_hbstringutil/unittest_hbstringutil.cpp,1}
@@ -166,9 +166,9 @@
TPtrC s1Ptr(string1.utf16());
TPtrC s2Ptr(string2.utf16());
- if ( (maxLevel < 0) || (maxLevel > 3) ) {
- maxLevel = 3;
- }
+ if ( (maxLevel < 0) || (maxLevel > 3) ) {
+ maxLevel = 3;
+ }
if ( (flags < 0) || (flags > 127) ) {
flags = Default;
}
@@ -213,9 +213,9 @@
TPtrC s1Ptr( strFrom.utf16() );
TPtrC s2Ptr( strToFind.utf16() );
- if ( (maxLevel < 0) || (maxLevel > 3) ) {
- maxLevel = 0;
- }
+ if ( (maxLevel < 0) || (maxLevel > 3) ) {
+ maxLevel = 0;
+ }
return s1Ptr.FindC( s2Ptr.Ptr(),
s2Ptr.Length(),
maxLevel );
@@ -343,15 +343,15 @@
*/
QString HbStringUtil::convertDigits( const QString str )
{
- HbExtendedLocale locale = HbExtendedLocale::system();
- DigitType digitType = WesternDigit;
- if (locale.language() == HbExtendedLocale::Arabic) {
- digitType = ArabicIndicDigit;
- } else if (locale.language() == HbExtendedLocale::Persian || locale.language() == HbExtendedLocale::Urdu) {
- digitType = EasternArabicIndicDigit;
- }
- QString converted = HbStringUtil::convertDigitsTo(str, digitType);
- return converted;
+ HbExtendedLocale locale = HbExtendedLocale::system();
+ DigitType digitType = WesternDigit;
+ if (locale.language() == HbExtendedLocale::Arabic) {
+ digitType = ArabicIndicDigit;
+ } else if (locale.language() == HbExtendedLocale::Persian || locale.language() == HbExtendedLocale::Urdu) {
+ digitType = EasternArabicIndicDigit;
+ }
+ QString converted = HbStringUtil::convertDigitsTo(str, digitType);
+ return converted;
}
/*!
@@ -382,7 +382,7 @@
convDigit[i] = QChar(convertedDigit);
break;
default:
- convDigit[i] = QChar(digit);
+ convDigit[i] = QChar(digit);
break;
};
}
@@ -401,18 +401,18 @@
*/
void HbStringUtil::sort( QStringList &strList )
{
- if ( strList.size() > 1 ) {
- qSort(strList.begin(), strList.end(), hbStringUtil_SortHelper);
- }
+ if ( strList.size() > 1 ) {
+ qSort(strList.begin(), strList.end(), hbStringUtil_SortHelper);
+ }
}
bool hbStringUtil_SortHelper( const QString &s1, const QString &s2 )
{
- if ( HbStringUtil::compareC(s1, s2) < 0 ) {
- // s1 is before s2
- return true;
- } else {
- // s1 is after s2 (or they are equal)
- return false;
- }
+ if ( HbStringUtil::compareC(s1, s2) < 0 ) {
+ // s1 is before s2
+ return true;
+ } else {
+ // s1 is after s2 (or they are equal)
+ return false;
+ }
}
--- a/src/hbcore/i18n/translations/languages.ts Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/i18n/translations/languages.ts Thu Sep 02 20:44:51 2010 +0300
@@ -15,7 +15,7 @@
<source>German</source>
<translation variants="no">Deutsch</translation>
</message>
- <message id="language_es">
+ <message id="language_es_419">
<source>Spanish</source>
<translation variants="no">Español</translation>
</message>
--- a/src/hbcore/image/hbicon.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbicon.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -378,6 +378,27 @@
return result;
}
+/*!
+ \internal
+*/
+void HbIconPrivate::setAsync(bool async, HbIconEngine::AsyncCallback callback, void *param)
+{
+ if (engine) {
+ engine->setAsync(async, callback, param);
+ }
+}
+
+/*!
+ \internal
+*/
+bool HbIconPrivate::async() const
+{
+ if (engine) {
+ return engine->async();
+ }
+ return false;
+}
+
/*! Default constructor. If this constructor is used, the icon name needs to be set
* by calling HbIcon::setIconName.
*/
--- a/src/hbcore/image/hbicon_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbicon_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -53,6 +53,8 @@
bool isBadged() const;
void setThemedColor(const QColor &color);
QColor themedColor() const;
+ void setAsync(bool async, HbIconEngine::AsyncCallback callback, void *param);
+ bool async() const;
private:
// disabled
--- a/src/hbcore/image/hbiconanimator.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconanimator.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -226,9 +226,18 @@
}
/*!
-* Starts the icon animation if the icon is animated. Otherwise this method has no effect.
-* If the animation is already running or finished, it is restarted from the beginning.
-* \sa flag HbIcon::NoAutoStartAnimation
+ Starts the icon animation if the icon is animated. Otherwise this method
+ has no effect.
+
+ If the animation is already running or finished, it is restarted from the
+ beginning.
+
+ Note that this function will not override the HbIcon::NoAutoStartAnimation
+ flag, so if it is called before the first paint of the icon and the flag is
+ set then the function will have no effect.
+
+ \sa flag HbIcon::NoAutoStartAnimation
+ \sa stopAnimation
*/
void HbIconAnimator::startAnimation()
{
@@ -239,8 +248,18 @@
}
/*!
-* Stops the icon animation if the icon is animated. Otherwise this method has no effect.
-* The icon shows the last frame of the animation.
+ Stops the icon animation if the icon is animated. Otherwise this method has no effect.
+
+ When an animation is stopped, the icon will show the last frame of the animation.
+
+ Note that in accordance with the lazy loading behavior of icons, this function
+ has no effect if called before the icon is painted first, so if you need to
+ make sure that an animation is not automatically started then consider setting
+ the HbIcon::NoAutoStartAnimation flag for the HbIcon or HbIconItem instead of
+ using this function.
+
+ \sa flag HbIcon::NoAutoStartAnimation
+ \sa startAnimation
*/
void HbIconAnimator::stopAnimation()
{
--- a/src/hbcore/image/hbiconengine.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconengine.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -40,8 +40,8 @@
#include <hbiconanimator.h>
#include <hbiconanimator_p.h>
-
#include <QObject>
+#include <QMetaMethod>
#include <QPainter>
#include <QDebug>
@@ -81,6 +81,8 @@
QColor colorToUse(const QString &iconName) const;
public:
+ HbIconEngine *q;
+
QSizeF size;
struct IconName {
@@ -136,6 +138,15 @@
bool signalConnectionsSet;
// Icon FormatType
HbIconFormatType iconType;
+
+ bool async;
+ bool asyncOngoing;
+ HbIconEngine::AsyncCallback asyncCallback;
+ void *asyncCallbackParam;
+ int loadFinishedSlotIndex;
+
+ QIcon::Mode curIconMode;
+ QIcon::State curIconState;
};
// Class HbIconEnginePrivate
@@ -153,7 +164,12 @@
icon(0),
badgeInfo(0),
signalConnectionsSet(false),
- iconType(INVALID_FORMAT)
+ iconType(INVALID_FORMAT),
+ async(false),
+ asyncOngoing(false),
+ asyncCallback(0),
+ asyncCallbackParam(0),
+ loadFinishedSlotIndex(-1)
{
if (!iconName.isEmpty()) {
HbIconEnginePrivate::IconName newName = {QIcon::Normal, QIcon::Off, iconName};
@@ -179,7 +195,12 @@
icon(0), // HbIconImpl is instance specific, it is recreated when icon is painted.
badgeInfo(0),
signalConnectionsSet(false),
- iconType(INVALID_FORMAT)
+ iconType(INVALID_FORMAT),
+ async(false), // similarly to themedColor, this is not copied, it needs to be set explicitly by the clients after copying
+ asyncOngoing(false),
+ asyncCallback(0),
+ asyncCallbackParam(0),
+ loadFinishedSlotIndex(-1)
{
if (other.badgeInfo) {
badgeInfo = new HbBadgeIcon();
@@ -200,7 +221,12 @@
icon(0),
badgeInfo(new HbBadgeIcon),
signalConnectionsSet(false),
- iconType(INVALID_FORMAT)
+ iconType(INVALID_FORMAT),
+ async(false),
+ asyncOngoing(false),
+ asyncCallback(0),
+ asyncCallbackParam(0),
+ loadFinishedSlotIndex(-1)
{
// Internalize the icon from the stream
stream >> size;
@@ -274,6 +300,7 @@
unLoadIcon();
delete badgeInfo;
}
+
/*!
\internal
@@ -283,8 +310,14 @@
*/
void HbIconEnginePrivate::unLoadIcon(bool unloadedByServer)
{
+ HbIconLoader *loader = HbIconLoader::global();
+
+ // Ignore the result of any outstanding loadIcon request. The
+ // parameters here must match callback and callbackParam passed to
+ // HbIconLoader::loadIcon in paintHelper().
+ loader->cancelLoadIcon(HbIconEngine::asyncLoadCallback, q);
+
if (icon) {
- HbIconLoader *loader = HbIconLoader::global();
loader->unLoadIcon(icon, unloadedByServer);
icon->dispose();
icon = 0;
@@ -481,9 +514,7 @@
QIconEngineV2(),
d(new HbIconEnginePrivate(QString()))
{
- // Register the HbIconEngine Instance to HbIconLoader
- HbIconLoader *loader = HbIconLoader::global();
- loader->storeIconEngineInfo(this);
+ init();
}
HbIconEngine::HbIconEngine(const QString &iconName) :
@@ -491,9 +522,7 @@
QIconEngineV2(),
d(new HbIconEnginePrivate(iconName))
{
- // Register the HbIconEngine Instance to HbIconLoader
- HbIconLoader *loader = HbIconLoader::global();
- loader->storeIconEngineInfo(this);
+ init();
}
HbIconEngine::HbIconEngine(const HbIconEngine &other) :
@@ -501,23 +530,15 @@
QIconEngineV2(other),
d(new HbIconEnginePrivate(*other.d))
{
- HbIcon::Flags newFlags = d->flags;
- d->flags = 0;
- setFlags(newFlags);
- // Register the HbIconEngine Instance to HbIconLoader
- HbIconLoader *loader = HbIconLoader::global();
- loader->storeIconEngineInfo(this);
+ init();
+ forceFlagUpdate();
}
HbIconEngine::HbIconEngine(QDataStream &stream) :
d(new HbIconEnginePrivate(stream))
{
- HbIcon::Flags newFlags = d->flags;
- d->flags = 0;
- setFlags(newFlags);
- // Register the HbIconEngine Instance to HbIconLoader
- HbIconLoader *loader = HbIconLoader::global();
- loader->storeIconEngineInfo(this);
+ init();
+ forceFlagUpdate();
}
HbIconEngine::~HbIconEngine()
@@ -528,6 +549,21 @@
delete d;
}
+void HbIconEngine::init()
+{
+ d->q = this;
+ // Register the HbIconEngine Instance to HbIconLoader
+ HbIconLoader *loader = HbIconLoader::global();
+ loader->storeIconEngineInfo(this);
+}
+
+void HbIconEngine::forceFlagUpdate()
+{
+ HbIcon::Flags newFlags = d->flags;
+ d->flags = 0;
+ setFlags(newFlags);
+}
+
bool HbIconEngine::loadFailed(QIcon::Mode mode, QIcon::State state) const
{
return d->loadFailed.indexOf(mode | (state << 16)) >= 0;
@@ -824,6 +860,9 @@
HbIconLoader::global()->updateRenderingMode(paintEngine->type());
}
+ if (d->async) {
+ setAsync(false, 0, 0);
+ }
icon = paintHelper(rect.size(), Qt::KeepAspectRatio, mode, state);
if (icon) {
icon->paint(painter, rect, Qt::AlignCenter);
@@ -872,13 +911,13 @@
// If size has not been defined, use icon's default size.
if (!s.isValid()) {
- // With size (0,0), loader uses the icon's default size.
+ // With size (0,0) the loader uses the icon's default size.
s = QSizeF(0, 0);
}
// If pixmap has not been loaded yet or parameters affecting to pixmap have changed,
// load the pixmap using paintHelper.
- if ((!d->icon) || aspectRatioMode != d->aspectRatioMode || mode != d->mode || state != d->state) {
+ if (!d->asyncOngoing && (!d->icon || aspectRatioMode != d->aspectRatioMode || mode != d->mode || state != d->state)) {
d->aspectRatioMode = aspectRatioMode;
d->mode = mode;
d->state = state;
@@ -898,11 +937,14 @@
// Adjust the alignment and draw the icon.
if (d->icon) {
d->icon->paint(painter, rect, alignment);
- }
-
- // Paint the badge icons
- if (d->badgeInfo && d->icon) {
- d->badgeInfo->paint(painter, rect, mode, state, d->isMirrored());
+ // Paint the badge icons
+ if (d->badgeInfo) {
+ d->badgeInfo->paint(painter, rect, mode, state, d->isMirrored());
+ }
+ } else {
+ // If we made an async loadIcon request then paint some empty content.
+ if (d->asyncOngoing) {
+ }
}
}
@@ -926,6 +968,37 @@
}
}
+void HbIconEngine::asyncLoadCallback(HbIconImpl *icon, void *param, bool wasSync)
+{
+ HbIconEngine *self = static_cast<HbIconEngine *>(param);
+ if (wasSync) {
+ self->asyncLoadFinished(icon, wasSync);
+ } else {
+ // Was async anyway so let's not rush, to balance the load better.
+ if (self->d->loadFinishedSlotIndex < 0) {
+ self->d->loadFinishedSlotIndex =
+ self->metaObject()->indexOfSlot("asyncLoadFinished(HbIconImpl*,bool)");
+ }
+ self->metaObject()->method(self->d->loadFinishedSlotIndex).invoke(self,
+ Qt::QueuedConnection,
+ Q_ARG(HbIconImpl *, icon),
+ Q_ARG(bool, false));
+ }
+}
+
+void HbIconEngine::asyncLoadFinished(HbIconImpl *icon, bool wasSync)
+{
+ d->asyncOngoing = false;
+ d->icon = icon;
+ finishPaintHelper(icon);
+ if (d->icon && d->icon->isCreatedOnServer()) {
+ d->iconType = d->icon->iconData().type;
+ }
+ if (!wasSync && d->asyncCallback) {
+ d->asyncCallback(d->asyncCallbackParam);
+ }
+}
+
HbIconImpl *HbIconEngine::paintHelper(
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
@@ -937,6 +1010,10 @@
// set afterwards (after construction but before the first paint).
ensureSignalConnections();
+ if (d->asyncOngoing) {
+ return 0;
+ }
+
QString name = iconName(mode, state);
QIcon::Mode modeForLoader = mode;
HbIconImpl *icon = 0;
@@ -966,36 +1043,39 @@
// Otherwise use icon loader to load pixmap
else {
if (!name.isEmpty()) {
+ d->curIconMode = mode;
+ d->curIconState = state;
HbIconLoader *loader = HbIconLoader::global();
-
- icon = loader->loadIcon(
- name,
- HbIconLoader::AnyType,
- HbIconLoader::AnyPurpose,
- size,
- aspectRatioMode,
- modeForLoader,
- d->iconLoaderOptions(),
- d->animator,
- d->colorToUse(name));
-
- // If loading failed, store information so it is not retried in every repaint.
- if (!icon) {
- d->appendLoadFail(mode, state);
- }
-
- // If animation was returned, set it in the animator and connect to it
- HbIconAnimation *anim = animation();
- if (anim) {
- connect(anim, SIGNAL(animationUpdated()), this, SLOT(handleAnimationUpdated()));
- connect(anim, SIGNAL(animationStarted()), this, SLOT(handleAnimationStarted()));
- connect(anim, SIGNAL(animationStopped()), this, SLOT(handleAnimationStopped()));
- connect(anim, SIGNAL(animationFinished()), this, SLOT(handleAnimationFinished()));
- // If animation start has been forced with HbIconAnimator::startAnimation,
- // start the animation here if auto-start is not enabled.
- if (d->animator->d->started && d->flags.testFlag(HbIcon::NoAutoStartAnimation)) {
- d->animator->startAnimation();
+ if (d->async) {
+ d->asyncOngoing = true;
+ loader->loadIcon(
+ name,
+ HbIconLoader::AnyType,
+ HbIconLoader::AnyPurpose,
+ size,
+ aspectRatioMode,
+ modeForLoader,
+ d->iconLoaderOptions(),
+ d->animator,
+ d->colorToUse(name),
+ asyncLoadCallback,
+ this);
+ if (!d->asyncOngoing) {
+ icon = d->icon;
}
+ // else 'icon' remains 0, processing will continue later in asyncLoadCallback()
+ } else {
+ icon = loader->loadIcon(
+ name,
+ HbIconLoader::AnyType,
+ HbIconLoader::AnyPurpose,
+ size,
+ aspectRatioMode,
+ modeForLoader,
+ d->iconLoaderOptions(),
+ d->animator,
+ d->colorToUse(name));
+ finishPaintHelper(icon);
}
}
}
@@ -1003,6 +1083,28 @@
return icon;
}
+void HbIconEngine::finishPaintHelper(HbIconImpl *icon)
+{
+ // If loading failed, store information so it is not retried in every repaint.
+ if (!icon) {
+ d->appendLoadFail(d->curIconMode, d->curIconState);
+ }
+
+ // If animation was returned, set it in the animator and connect to it
+ HbIconAnimation *anim = animation();
+ if (anim) {
+ connect(anim, SIGNAL(animationUpdated()), this, SLOT(handleAnimationUpdated()));
+ connect(anim, SIGNAL(animationStarted()), this, SLOT(handleAnimationStarted()));
+ connect(anim, SIGNAL(animationStopped()), this, SLOT(handleAnimationStopped()));
+ connect(anim, SIGNAL(animationFinished()), this, SLOT(handleAnimationFinished()));
+ // If animation start has been forced with HbIconAnimator::startAnimation,
+ // start the animation here if auto-start is not enabled.
+ if (d->animator->d->started && d->flags.testFlag(HbIcon::NoAutoStartAnimation)) {
+ d->animator->startAnimation();
+ }
+ }
+}
+
/*!
Clears the icon data (e.g. QPixmaps that are stored internally)
but does not touch the settings, e.g. the size, state, flags, unlike clear().
@@ -1156,8 +1258,12 @@
}
/*!
- * Removes the item in the cache if the ref. count is 0 and does delete on
- * HbIconImpl and Resets the IconImpl.
+ * Drops the underlying iconimpl if it is SgImage or NVG based.
+ *
+ * There is no unload request to the server in this case, server-side
+ * unref will be handled by the server when HbIconLoader notifies it
+ * about losing visibility or when the low graphics memory
+ * notification is received (on the server-side).
*/
void HbIconEngine::resetIconImpl() const
{
@@ -1168,8 +1274,8 @@
if (d->icon->refCount() == 0 && d->icon->isCreatedOnServer()) {
HbIconLoader *loader = HbIconLoader::global();
loader->removeItemInCache(d->icon);
- d->icon->dispose();
}
+ d->icon->dispose();
d->icon = 0;
}
}
@@ -1205,12 +1311,29 @@
return d->isBadged();
}
-/*!
- * Returns the IconFormat Type
- */
HbIconFormatType HbIconEngine::iconFormatType() const
{
return d->iconType;
}
+/*!
+ Enables asynchronous icon loading.
+
+ Only effective when called before the first paint.
+
+ Ignored for pixmap() requests and QIcon-based icons.
+ */
+void HbIconEngine::setAsync(bool async, AsyncCallback callback, void *param)
+{
+ d->async = async;
+ d->asyncCallback = callback;
+ d->asyncCallbackParam = param;
+}
+
+bool HbIconEngine::async() const
+{
+ return d->async;
+}
+
+
// End of File
--- a/src/hbcore/image/hbiconengine_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconengine_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -107,6 +107,10 @@
const QList<HbBadgeIconInfo> badges() const;
HbIconFormatType iconFormatType() const;
+ typedef void (*AsyncCallback)(void *);
+ void setAsync(bool async, AsyncCallback callback, void *param);
+ bool async() const;
+
private:
void ensureSignalConnections();
QPixmap getPixmapFromAnimation() const;
@@ -115,10 +119,14 @@
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode,
QIcon::State);
+ void finishPaintHelper(HbIconImpl *icon);
bool loadFailed(QIcon::Mode mode, QIcon::State state) const;
HbIconAnimation *animation() const;
+
+ void init();
+ void forceFlagUpdate();
public:
enum ClearingFlag {
@@ -128,6 +136,8 @@
};
Q_DECLARE_FLAGS(ClearingFlags, ClearingFlag)
+ static void asyncLoadCallback(HbIconImpl *icon, void *param, bool wasSync);
+
public slots:
void clearStoredIconContent(ClearingFlags flags = 0);
void clearStoredNonAnimIconContent();
@@ -140,6 +150,7 @@
void handleAnimationStarted();
void handleAnimationStopped();
void handleAnimationFinished();
+ void asyncLoadFinished(HbIconImpl *icon, bool wasSync);
private:
HbIconEnginePrivate *d;
--- a/src/hbcore/image/hbiconimpl_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconimpl_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -27,6 +27,7 @@
#define HBICONIMPL_P_H
#include <QIcon>
+#include <QMetaType>
#include <hbglobal.h>
#include "hbthemecommon_p.h"
@@ -83,7 +84,7 @@
HbMaskableIconImpl *maskIconData = 0) = 0;
virtual QSize defaultSize() const = 0;
virtual QSize size() = 0;
- virtual ErrorCode intialize() {
+ virtual ErrorCode initialize() {
return ErrorNone;
}
@@ -175,5 +176,6 @@
HbRenderingMode renderMode;
};
+Q_DECLARE_METATYPE(HbIconImpl *)
+
#endif // HBICONIMPL_P_H
-
--- a/src/hbcore/image/hbiconimplcreator_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconimplcreator_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -57,12 +57,14 @@
QString cleanIconName;
// Resolved filename for the icon
QString iconFileName;
- // Pixmap where the icon is rasterized
- QPixmap canvasPixmap;
+ // Image where the icon is rasterized
+ QImage image; // cannot use QPixmap, must support non-gui threads too
// Icon's rendering mode ( Hardware / Software )
HbRenderingMode renderMode;
};
+Q_DECLARE_METATYPE(HbIconLoadingParams)
+
class HB_AUTOTEST_EXPORT HbIconImplCreator
{
public:
@@ -71,4 +73,3 @@
};
#endif //HBICONIMPLCREATOR_P_H
-
--- a/src/hbcore/image/hbiconloader.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconloader.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -28,6 +28,7 @@
#include "hbicontheme_p.h"
#include "hblayoutdirectionnotifier_p.h"
#include "hbinstance.h"
+#include "hbinstance_p.h"
#include "hbiconanimation_p.h"
#include "hbiconanimator.h"
#include "hbiconanimator_p.h"
@@ -40,10 +41,10 @@
#include "hbimagetraces_p.h"
#include "hbmemoryutils_p.h"
#include "hbpixmapiconimpl_p.h"
+#include "hbiconimplcreator_p.h"
#include "hbiconsource_p.h"
#include "hbthemeindex_p.h"
#include "hbthemecommon_p.h"
-#include "hbiconimplcreator_p.h"
#include <QDir>
#include <QCoreApplication>
#include <QDebug>
@@ -56,30 +57,19 @@
#include <QSvgRenderer>
#include <QImageReader>
#include <QHash>
+#include <QThread>
+#include <QMutex>
+#include <QMutexLocker>
#ifdef HB_NVG_CS_ICON
#include "hbeglstate_p.h"
#endif
-#define HB_ICONIMPL_CACHE
-/*
- * Client side caching of sgimage icon required,
- * as sgimage lite cannot be opened multiple times
- */
-#ifdef HB_SGIMAGE_ICON
-#ifndef HB_ICONIMPL_CACHE
-#define HB_ICONIMPL_CACHE
-#endif
-#endif
-
-// Just an experimental implementation.. Disable if necessary.
-#define ENABLE_EXPERIMENTAL_RESIZE_BOOST__
-
// SVG animation is currently disabled because of bugs in QT's svg engine
#undef HB_SVG_ANIMATION
+// Icon name without extension
static const char *s_unknown = "unknown";
-// Icon name without extension
/*!
\class HbIconLoader
@@ -93,9 +83,64 @@
// Deleting it later causes segmentation fault.
static HbIconLoader *theLoader = 0;
-#ifdef HB_ICONIMPL_CACHE
+/*
+ * Client side caching of sgimage icon required, as sgimage lite cannot be
+ * opened multiple times
+ *
+ * It is also beneficial for performance, because it reduces IPC in certain
+ * cases.
+ *
+ * Note that by default this is not a permanent cache, i.e. when an iconimpl's
+ * refcount reaches zero it is removed from the cache. This means that the
+ * cache is beneficial for having the same icon rendered by two or more HbIcons
+ * at the same time (very typical in some itemview (e.g. list widget) cases),
+ * but it would not benefit a load-unload-load scenario because the icon is
+ * removed from the cache during the unload when there are no references
+ * anymore.
+ *
+ * However the cachekeeper below will change this behavior, preventing refcounts
+ * reaching zero in unLoadIcon(), so this cache may contain also icons that are
+ * not really in use and are only referenced by the cachekeeper. This is
+ * required for further reduction of IPC calls.
+ */
static QHash<QByteArray, HbIconImpl *> iconImplCache;
-#endif
+
+// The global cachekeeper instance will hold references to icons that would
+// normally be unloaded (i.e. mIcons will contain icons with refcount 1).
+//
+// Icons get added from unLoadIcon(), meaning that if the cachekeeper decides to
+// hold a reference then the icon is not really unloaded (and thus stays in
+// iconImplCache).
+//
+// When the icon gets referenced due to a cache hit, in loadIcon() and other
+// places, the icon is removed from the cachekeeper.
+class CacheKeeper {
+public:
+ CacheKeeper() : mConsumption(0) { }
+ void ref(HbIconImpl *icon);
+ void unref(HbIconImpl *icon);
+ void clear();
+private:
+ void del(HbIconImpl *icon, bool sendUnloadReq);
+ QList<HbIconImpl *> mIcons;
+ int mConsumption;
+};
+
+Q_GLOBAL_STATIC(CacheKeeper, cacheKeeper)
+
+// The max consumption for the icons held by the cachekeeper, assuming that each
+// icon is 32bpp. Note that the cachekeeper's content is cleared also when
+// losing visibility and when switching rendering mode.
+const int MAX_KEEPALIVE_CACHE_SIZE_BYTES = 1024 * 1024; // 1 MB
+
+// Icons with size above a certain limit are always ignored by the cachekeeper.
+const int MAX_KEEPALIVE_ITEM_SIZE_BYTES = MAX_KEEPALIVE_CACHE_SIZE_BYTES / 2;
+
+class HbLocalLoaderThread : public QThread
+{
+public:
+ void run();
+};
class HbIconLoaderPrivate
{
@@ -122,17 +167,13 @@
bool isLayoutMirrored();
void setLayoutMirrored(bool mirrored);
-#ifdef HB_ICONIMPL_CACHE
QByteArray createCacheKeyFrom(const QString &iconName,
const QSizeF &size,
Qt::AspectRatioMode aspectRatioMode,
QIcon::Mode mode,
bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode);
-#endif
+ const QColor &color);
-public:
QString storedTheme;
int sourceResolution;
@@ -147,7 +188,6 @@
HbIconSource *lastIconSource;
-private:
enum {
Unknown = 0,
NotMirrored = 1,
@@ -158,8 +198,29 @@
* Flipped icons are used in the mirrored layout.
*/
int layoutMirrored;
+
+ struct AsyncParams {
+ HbIconLoader::HbAsyncIconLoaderCallback mCallback;
+ HbIconLoadingParams mLdParams;
+ void *mParam;
+ };
+
+ QList<AsyncParams *> mActiveAsyncRequests;
+
+ HbLocalLoaderThread mLocalLoaderThread;
+ HbLocalIconLoader *mLocalLoader;
+ QMutex mLocalLoadMutex;
+ QMutex mIconSourceMutex;
+ friend class HbLocalLoaderThread;
};
+void HbLocalLoaderThread::run()
+{
+ setPriority(QThread::LowPriority);
+ exec();
+ delete HbIconLoaderPrivate::global()->mLocalLoader;
+}
+
HbIconLoaderPrivate::HbIconLoaderPrivate() :
storedTheme(HbTheme::instance()->name()),
sourceResolution(144), // This is about the resolution of a Nokia N95 8GB
@@ -168,13 +229,26 @@
animationManager(HbIconAnimationManager::global()),
animationLoading(false),
lastIconSource(0),
- layoutMirrored(Unknown)
+ layoutMirrored(Unknown),
+ mLocalLoadMutex(QMutex::Recursive),
+ mIconSourceMutex(QMutex::Recursive)
{
+ qRegisterMetaType<HbIconImpl *>();
+ qRegisterMetaType<HbIconLoadingParams>();
+ qRegisterMetaType<void *>();
+ mLocalLoader = new HbLocalIconLoader;
+ mLocalLoader->moveToThread(&mLocalLoaderThread);
+ mLocalLoaderThread.start();
}
HbIconLoaderPrivate::~HbIconLoaderPrivate()
{
+ // quit() cannot be called directly on mLocalLoaderThread because
+ // there is a chance that start() has not yet executed.
+ QMetaObject::invokeMethod(mLocalLoader, "doQuit", Qt::QueuedConnection);
+ mLocalLoaderThread.wait();
delete lastIconSource;
+ qDeleteAll(mActiveAsyncRequests);
}
HbIconLoaderPrivate *HbIconLoaderPrivate::global()
@@ -221,7 +295,9 @@
return suffix;
}
-QString HbIconLoaderPrivate::findSharedResourceHelper(const QString &resourceName, bool mirrored, bool &mirroredIconFound, Hb::ResourceType itemType, bool useThemeIndex)
+QString HbIconLoaderPrivate::findSharedResourceHelper(const QString &resourceName, bool mirrored,
+ bool &mirroredIconFound, Hb::ResourceType itemType,
+ bool useThemeIndex)
{
Q_UNUSED(useThemeIndex)
Q_UNUSED(itemType)
@@ -443,16 +519,14 @@
layoutMirrored = mirrored ? Mirrored : NotMirrored;
}
-#ifdef HB_ICONIMPL_CACHE
QByteArray HbIconLoaderPrivate::createCacheKeyFrom(const QString &iconName,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode)
+ const QSizeF &size,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ const QColor &color)
{
- static const int paramArraySize = 8;
+ static const int paramArraySize = 7;
// This uses QByteArray to improve performance compared to QString.
// It allows appending stuff with less heap allocations and conversions compared to using QString.
@@ -478,8 +552,11 @@
temp[6] = 0;
}
- // Append render mode when creating cache key
- temp[7] = renderMode;
+ // The rendering mode should not be included in the cache key to prevent
+ // confusion when the requested and the received rendering modes are
+ // different (i.e. to make life simple). Having a cache hit is always
+ // preferable to anything else.
+
cacheKey.append((char *)&(temp[0]), sizeof(int)*paramArraySize);
const QChar *iconNamePtr = iconName.constData();
@@ -491,13 +568,40 @@
return cacheKey;
}
-#endif
+
+inline HbThemeClient::IconReqInfo paramsToReqInfo(const HbIconLoadingParams ¶ms)
+{
+ HbThemeClient::IconReqInfo reqInfo;
+ reqInfo.iconPath = params.iconFileName;
+ reqInfo.size = params.size;
+ reqInfo.aspectRatioMode = params.aspectRatioMode;
+ reqInfo.mode = params.mode;
+ reqInfo.mirrored = (params.mirrored && !params.mirroredIconFound);
+ reqInfo.options = params.options;
+ reqInfo.color = params.color;
+ reqInfo.renderMode = params.renderMode;
+ return reqInfo;
+}
+
+inline HbThemeClient::IconReqInfo iconImplToReqInfo(HbIconImpl *icon)
+{
+ HbThemeClient::IconReqInfo reqInfo;
+ reqInfo.iconPath = icon->iconFileName();
+ reqInfo.size = icon->keySize();
+ reqInfo.aspectRatioMode = icon->iconAspectRatioMode();
+ reqInfo.mode = icon->iconMode();
+ reqInfo.mirrored = icon->isMirrored();
+ reqInfo.color = icon->color();
+ reqInfo.renderMode = icon->iconRenderingMode();
+ return reqInfo;
+}
HbIconLoader::HbIconLoader(const QString &appName, QObject *parent)
: QObject(parent)
{
setObjectName(appName);
- d = new HbIconLoaderPrivate();
+ d = new HbIconLoaderPrivate;
+ connect(d->mLocalLoader, SIGNAL(ready(HbIconLoadingParams, void*)), SLOT(localLoadReady(HbIconLoadingParams, void*)));
// Set default rendering mode to EHWRendering
renderMode = EHWRendering;
@@ -516,6 +620,7 @@
HbIconLoader::~HbIconLoader()
{
+ cacheKeeper()->clear();
delete d;
}
@@ -533,6 +638,7 @@
QSizeF HbIconLoader::defaultSize(const QString &iconName, const QString &appName, IconLoaderOptions options)
{
Q_UNUSED(appName)
+ QMutexLocker locker(&d->mIconSourceMutex);
QSizeF size;
// Populate parameters needed for getting the default size
@@ -678,7 +784,7 @@
void HbIconLoader::themeChange(const QStringList &updatedFiles)
{
- foreach(HbFrameDrawerPrivate * frameDrawer, this->frameDrawerInstanceList) frameDrawer->themeChange(updatedFiles);
+ foreach(HbFrameDrawerPrivate * frameDrawer, frameDrawerInstanceList) frameDrawer->themeChange(updatedFiles);
}
void HbIconLoader::destroy()
@@ -707,7 +813,7 @@
void HbIconLoader::handleForegroundLost()
{
#if defined(HB_SGIMAGE_ICON) || defined(HB_NVG_CS_ICON)
- // Remove SGImage /NVG type of icons
+ // Remove SGImage/NVG type of icons
freeGpuIconData();
// delete the VGImage
HbEglStates *eglStateInstance = HbEglStates::global();
@@ -722,13 +828,9 @@
*/
void HbIconLoader::removeItemInCache(HbIconImpl *iconImpl)
{
-#ifdef HB_ICONIMPL_CACHE
if (iconImpl) {
iconImplCache.remove(iconImplCache.key(iconImpl));
}
-#else
- Q_UNUSED(iconImpl);
-#endif
}
/*!
@@ -738,6 +840,7 @@
void HbIconLoader::freeGpuIconData()
{
#if defined(HB_SGIMAGE_ICON) || defined(HB_NVG_CS_ICON)
+ cacheKeeper()->clear(); // unref all unused icons
for (int i = 0; i < iconEngineList.count(); i++) {
HbIconEngine *engine = iconEngineList.at(i);
engine->resetIconImpl();
@@ -865,7 +968,7 @@
params.size,
params.aspectRatioMode,
QIcon::Normal,
- params.options,
+ params.options | DoNotCache,
0,
params.color);
@@ -878,9 +981,9 @@
// Return the first frame in the canvas pixmap
if (frameList.count()) {
- params.canvasPixmap = frameList.at(0).pixmap;
+ params.image = frameList.at(0).pixmap.toImage();
// Mirroring is already done when loading the frame.
- // Mode is handled for canvasPixmap in the end of this function.
+ // Mode is handled for the image at the end of this function.
params.mirroringHandled = true;
}
@@ -896,7 +999,7 @@
}
// Take default size from the first frame
- QSizeF renderSize = QSizeF(params.canvasPixmap.size());
+ QSizeF renderSize = QSizeF(params.image.size());
if (!params.isDefaultSize) {
renderSize.scale(params.size, params.aspectRatioMode);
@@ -943,61 +1046,105 @@
*/
HbIconImpl *HbIconLoader::getIconFromServer(HbIconLoadingParams ¶ms)
{
- HbIconImpl *icon = 0;
-
#ifdef HB_ICON_TRACES
qDebug() << "HbIconLoader::getIconFromServer: req to server for" << params.iconFileName;
#endif
+
HbSharedIconInfo iconInfo;
iconInfo.type = INVALID_FORMAT;
HbThemeClient *themeClient = HbThemeClient::global();
- //Initiate an IPC to themeserver to get the icon-data from the server via themeclient.
- iconInfo = themeClient->getSharedIconInfo(
- params.iconFileName,
- params.size,
- params.aspectRatioMode,
- params.mode,
- (params.mirrored && !params.mirroredIconFound),
- params.options,
- params.color,
- params.renderMode);
+ // Initiate an IPC to themeserver to get the icon-data from the server via themeclient.
+ iconInfo = themeClient->getSharedIconInfo(paramsToReqInfo(params));
+ HbIconImpl *icon = finishGetIconFromServer(iconInfo, params);
+#ifdef HB_ICON_TRACES
+ qDebug() << "Image from server: " << params.iconFileName << " offset = " << iconInfo.pixmapData.offset << "icon ptr" << (int) icon;
+#endif
+
+ return icon;
+}
+
+HbIconImpl *HbIconLoader::finishGetIconFromServer(HbSharedIconInfo &iconInfo, HbIconLoadingParams ¶ms)
+{
//Creates HbIconImpl instance based on the type of data returned by themeserver.
//HbIconImpl thus created could be any one of the following impl-types:
//1. HbSgImageIconImpl
//2. HbNvgIconImpl
//3. HbPixmapIconImpl
- icon = HbIconImplCreator::createIconImpl(iconInfo, params);
+ HbIconImpl *icon = HbIconImplCreator::createIconImpl(iconInfo, params);
- if (icon && (icon->intialize() == HbIconImpl::ErrorLowGraphicsMemory)) {
+ if (icon && icon->initialize() == HbIconImpl::ErrorLowGraphicsMemory) {
// initialisation failed due to low graphics memory, in sgimage icon case
// try creating pixmap based icon
// unload the created GPU icon
- unLoadIcon(icon);
+ unLoadIcon(icon, false, true);
icon = 0;
// create a pixmap based icon
- iconInfo = themeClient->getSharedIconInfo(
- params.iconFileName,
- params.size,
- params.aspectRatioMode,
- params.mode,
- (params.mirrored && !params.mirroredIconFound),
- params.options,
- params.color,
- ESWRendering);
-
+ HbThemeClient *themeClient = HbThemeClient::global();
+ HbThemeClient::IconReqInfo reqInfo = paramsToReqInfo(params);
+ reqInfo.renderMode = ESWRendering;
+ iconInfo = themeClient->getSharedIconInfo(reqInfo);
icon = HbIconImplCreator::createIconImpl(iconInfo, params);
// no need call initialize of this icon
}
-#ifdef HB_ICON_TRACES
- qDebug() << "Image from server: " << params.iconFileName << " offset = " << iconInfo.pixmapData.offset << "icon ptr" << (int) icon;
-#endif
return icon;
}
+bool HbIconLoader::asyncCallback(const HbSharedIconInfo &info, void *param)
+{
+ HbIconLoader *self = theLoader;
+ HbIconLoaderPrivate::AsyncParams *p = static_cast<HbIconLoaderPrivate::AsyncParams *>(param);
+ HbSharedIconInfo iconInfo = info;
+ if (!self->d->mActiveAsyncRequests.contains(p)) {
+ // 'p' is destroyed already, this happens when canceling the loadIcon
+ // request. Stop here and return false so the themeclient will issue an
+ // unload request.
+ return false;
+ }
+ bool result = true;
+ // The icon may have been loaded via another request meanwhile so check the cache again.
+ HbIconImpl *icon = self->lookupInCache(p->mLdParams, 0);
+ if (icon) {
+ // Found in the local iconimpl cache so use that and roll back, i.e. do
+ // an unload for the data we just got (this is necessary to maintain
+ // proper remote refcounts).
+ result = false;
+ } else {
+ icon = self->finishGetIconFromServer(iconInfo, p->mLdParams);
+ if (!icon) {
+ self->loadLocal(p->mLdParams, self->formatFromPath(p->mLdParams.iconFileName));
+ icon = self->finishLocal(p->mLdParams);
+ }
+ if (icon) {
+ self->cacheIcon(p->mLdParams, icon, 0);
+ }
+ }
+ if (p->mCallback) {
+ p->mCallback(icon, p->mParam, false);
+ }
+ self->d->mActiveAsyncRequests.removeOne(p);
+ delete p;
+ return result;
+}
+
+void HbIconLoader::getIconFromServerAsync(HbIconLoadingParams ¶ms,
+ HbAsyncIconLoaderCallback callback,
+ void *callbackParam)
+{
+ HbThemeClient *themeClient = HbThemeClient::global();
+ HbIconLoaderPrivate::AsyncParams *p = new HbIconLoaderPrivate::AsyncParams;
+ p->mCallback = callback;
+ p->mLdParams = params;
+ p->mParam = callbackParam;
+ d->mActiveAsyncRequests.append(p);
+ themeClient->getSharedIconInfo(paramsToReqInfo(params),
+ asyncCallback,
+ p);
+}
+
void HbIconLoader::loadSvgIcon(HbIconLoadingParams ¶ms)
{
HbIconSource *source = getIconSource(params.iconFileName, "SVG");
@@ -1053,12 +1200,10 @@
#endif // HB_SVG_ANIMATION
- QPixmap &pm = params.canvasPixmap;
-
- pm = QPixmap(renderSize.toSize());
- pm.fill(Qt::transparent);
+ params.image = QImage(renderSize.toSize(), QImage::Format_ARGB32); // should be _Premultiplied but that results in incorrect rendering
+ params.image.fill(Qt::transparent);
QPainter painter;
- painter.begin(&pm);
+ painter.begin(¶ms.image);
svgRenderer->render(&painter, QRectF(QPointF(), renderSize.toSize()));
painter.end();
}
@@ -1096,13 +1241,10 @@
sy = renderSize.height() / picSize.height();
}
- QPixmap &pm = params.canvasPixmap;
-
- pm = QPixmap(renderSize.toSize());
- pm.fill(Qt::transparent);
-
+ params.image = QImage(renderSize.toSize(), QImage::Format_ARGB32);
+ params.image.fill(Qt::transparent);
QPainter painter;
- painter.begin(&pm);
+ painter.begin(¶ms.image);
if (scale) {
painter.scale(sx, sy);
}
@@ -1165,7 +1307,7 @@
// Get the first frame
if (animationCreated) {
- params.canvasPixmap = params.animator->d->animation->currentFrame();
+ params.image = params.animator->d->animation->currentFrame().toImage();
// Mirroring and mode are handled in HbIconAnimationImage::currentFrame()
params.mirroringHandled = true;
params.modeHandled = true;
@@ -1174,9 +1316,7 @@
if (imgRenderer->size() != scaledSize) {
imgRenderer->setScaledSize(scaledSize);
}
-
- QImage img = imgRenderer->read();
- params.canvasPixmap = QPixmap::fromImage(img);
+ params.image = imgRenderer->read();
}
source->releaseImageReader();
@@ -1186,39 +1326,34 @@
{
HbIconSource *source = getIconSource(params.iconFileName, format);
- QPixmap &pm = params.canvasPixmap;
- // Render bitmap graphics onto pixmap
- pm = *source->pixmap();
+ // Render bitmap graphics into an image. We have to use QImage because this
+ // code may run outside the gui (main) thread.
+ params.image = *source->image();
- if (!pm.isNull()) {
-#ifdef ENABLE_EXPERIMENTAL_RESIZE_BOOST__
- // This test implementation improves resize speed up to 5 times..
+ if (!params.image.isNull()) {
+ // This implementation improves resize speed up to 5 times.
if (!params.isDefaultSize && !params.size.isEmpty()) {
// Smooth scaling is very expensive (size^2). Therefore we reduce the size
// to 1.5 of the destination size and using fast transformation.
// Therefore we speed up but don't loose quality..
- if (pm.size().width() > (4 * params.size.toSize().width())) {
+ if (params.image.size().width() > (4 * params.size.toSize().width())) {
// Improve scaling speed by add an intermediate fast transformation..
QSize intermediate_size = QSize(params.size.toSize().width() * 2, params.size.toSize().height() * 2);
- pm = pm.scaled(
- intermediate_size,
- params.aspectRatioMode,
- Qt::FastTransformation); // Cheap operation!
+ params.image = params.image.scaled(
+ intermediate_size,
+ params.aspectRatioMode,
+ Qt::FastTransformation); // Cheap operation
}
-#endif // ENABLE_EXPERIMENTAL_RESIZE_BOOST__
- pm = pm.scaled(
- params.size.toSize(),
- params.aspectRatioMode,
- Qt::SmoothTransformation); // Expensive operation!
-
-#ifdef ENABLE_EXPERIMENTAL_RESIZE_BOOST__
+ params.image = params.image.scaled(
+ params.size.toSize(),
+ params.aspectRatioMode,
+ Qt::SmoothTransformation); // Expensive operation
}
-#endif
}
// Delete original pixmap if its size is large
- source->deletePixmapIfLargerThan(PIXMAP_SIZE_LIMIT);
+ source->deleteImageIfLargerThan(IMAGE_SIZE_LIMIT);
}
/*!
@@ -1240,6 +1375,7 @@
#if defined(HB_SGIMAGE_ICON) || defined(HB_NVG_CS_ICON)
if (newRenderMode != renderMode) {
+ cacheKeeper()->clear(); // unref all unused icons
if (newRenderMode == ESWRendering) {
// switching from HW to SW mode
freeGpuIconData();
@@ -1260,6 +1396,41 @@
}
}
+inline bool isLocalContent(const QString &iconName)
+{
+ // Check if we have a simple file or embedded resource, given with full
+ // or relative path. A filename like "x.png" is also local content
+ // because logical icon names must never contain an extension.
+ bool localContent = iconName.startsWith(':')
+ || iconName.contains('/') || iconName.contains('\\')
+ || (iconName.length() > 1 && iconName.at(1) == ':')
+ || (iconName.contains('.') && !iconName.startsWith("qtg_", Qt::CaseInsensitive));
+
+ // Cannot load NVG locally. Remove this check when local loading for NVG is available.
+ if (iconName.endsWith(".nvg", Qt::CaseInsensitive)) {
+ localContent = false;
+ }
+
+ return localContent;
+}
+
+inline bool serverUseAllowed(const QString &iconName, HbIconLoader::IconLoaderOptions options)
+{
+ bool allowServer = !options.testFlag(HbIconLoader::DoNotCache);
+
+ // No local loading for NVG... The server must still be used.
+ if (iconName.endsWith(".nvg", Qt::CaseInsensitive)) {
+ allowServer = true;
+ }
+ // We have no choice but to assume that theme graphics (logical names) are
+ // NVG in order to keep it working with DoNotCache.
+ if (!iconName.contains('.') && !iconName.contains('/') && !iconName.contains('\\')) {
+ allowServer = true;
+ }
+
+ return allowServer;
+}
+
/*!
* \fn HbIconImpl* HbIconLoader::loadIcon()
*
@@ -1280,26 +1451,21 @@
QIcon::Mode mode,
IconLoaderOptions options,
HbIconAnimator *animator,
- const QColor &color)
+ const QColor &color,
+ HbAsyncIconLoaderCallback callback,
+ void *callbackParam)
{
#ifdef HB_ICON_TRACES
- QString debugString = "HbIconLoader::loadIcon START - ";
- debugString.append(iconName);
- debugString.append(" @ ");
- if (size.isNull()) {
- debugString.append("DEFAULT SIZE");
- } else {
- debugString.append(QString::number(size.width()));
- debugString.append('x');
- debugString.append(QString::number(size.height()));
- }
- qDebug() << debugString;
+ qDebug() << "loadIcon" << iconName << size;
#endif
Q_UNUSED(type)
HbIconImpl *icon = 0;
if (!size.isValid()) {
+ if (callback) {
+ callback(0, callbackParam, true);
+ }
return 0;
}
@@ -1348,28 +1514,16 @@
}
// Step 2: There was no animation definition, try get icon from server
+ QByteArray cacheKey;
if (!params.animationCreated) {
-
-#ifdef HB_ICONIMPL_CACHE
- QByteArray cacheKey = d->createCacheKeyFrom(params.iconName,
- params.size,
- params.aspectRatioMode,
- params.mode,
- params.mirrored,
- params.color,
- params.renderMode);
- //look up in the local iconImplCache.
- //If found return the ptr directly
- if (iconImplCache.contains(cacheKey)) {
- HbIconImpl *ptr = iconImplCache.value(cacheKey);
- ptr->incrementRefCount();
-#ifdef HB_ICON_CACHE_DEBUG
- qDebug() << "HbIconLoader::loadIcon(): " << "Cache hit in iconImplCache for" << params.iconName << params.size.height() << "X" << params.size.width() ;
- qDebug() << "HbIconLoader::loadIcon(): Client RefCount now = " << ptr->refCount();
-#endif
- return ptr;
+ // First check in the local iconimpl cache.
+ HbIconImpl *cachedIcon = lookupInCache(params, &cacheKey);
+ if (cachedIcon) {
+ if (callback) {
+ callback(cachedIcon, callbackParam, true);
+ }
+ return cachedIcon;
}
-#endif
// Resolve used icon filename. It uses themeindex for themed icons.
params.iconFileName = resolveIconFileName(params);
@@ -1383,57 +1537,37 @@
#ifdef HB_ICON_TRACES
qDebug() << "HbIconLoader::loadIcon (empty icon) END";
#endif
- icon = new HbPixmapIconImpl(params.canvasPixmap);
+ icon = new HbPixmapIconImpl(QPixmap());
+ if (callback) {
+ callback(icon, callbackParam, true);
+ }
return icon;
}
-#ifdef Q_OS_SYMBIAN
- // Check whether icon is in a private directory which cannot be accessed by the theme server
- bool privateDirectory = isInPrivateDirectory(iconName);
-#endif // Q_OS_SYMBIAN
-
QString format = formatFromPath(params.iconFileName);
-// Theme server on desktop was found very slow (probably due to IPC with QLocalServer/QLocalSocket).
-// disabling icon sharing via theme server until theme server performance on desktop is improved
#ifdef Q_OS_SYMBIAN
GET_MEMORY_MANAGER(HbMemoryManager::SharedMemory)
// Try to take data from server if parameters don't prevent it
- if (!options.testFlag(DoNotCache)
- && format != "MNG"
- && format != "GIF"
- && !iconName.startsWith(':') // not using server for app's own resources (iconName is a logical name for theme elements)
- && !privateDirectory // server cannot load from protected private dir
- && manager) {
+ if (serverUseAllowed(iconName, options)
+ // Use the server only for theme graphics.
+ // For local files, i.e. anything that is not a single logical name, use local loading.
+ && !isLocalContent(iconName)
+ && format != "MNG"
+ && format != "GIF"
+ && manager) {
//Initiate an IPC to themeserver to get the icon-data from the server.
+
+ if (callback) {
+ getIconFromServerAsync(params, callback, callbackParam);
+ return 0;
+ }
+
icon = getIconFromServer(params);
if (icon) {
-#ifdef HB_ICONIMPL_CACHE
- if (params.renderMode != icon->iconRenderingMode()) {
- cacheKey = d->createCacheKeyFrom(params.iconName,
- params.size,
- params.aspectRatioMode,
- params.mode,
- params.mirrored,
- params.color,
- icon->iconRenderingMode());
- if (iconImplCache.contains(cacheKey)) {
- HbIconImpl * oldIcon = iconImplCache.value(cacheKey);
- this->unLoadIcon(icon);
- icon->dispose();
- icon = oldIcon;
- icon->incrementRefCount();
- }
- } else {
- iconImplCache.insert(cacheKey, icon);
- }
-#ifdef HB_ICON_CACHE_DEBUG
- qDebug() << "HbIconLoader::loadIcon(): " << params.iconName << " inserted into impl-cache, ref-count now = " << icon->refCount();
-#endif
-
-#endif
+ cacheIcon(params, icon, &cacheKey);
return icon;
}
@@ -1441,52 +1575,167 @@
#endif // Q_OS_SYMBIAN
// Step 3: Finally fall back to loading icon locally in the client side
- if (!icon) {
- if (format == "SVG") {
- loadSvgIcon(params);
- } else if (format == "PIC") {
- loadPictureIcon(params);
- } else if (format == "MNG" || format == "GIF") {
- loadAnimatedIcon(params, format);
- } else {
- loadPixmapIcon(params, format);
- }
+ if (callback) {
+ loadLocalAsync(params, format, callback, callbackParam);
+ return 0;
}
+ loadLocal(params, format);
}
+ icon = finishLocal(params);
+ if (!params.animationCreated && icon && !options.testFlag(DoNotCache)) {
+ cacheIcon(params, icon, &cacheKey);
+ }
+
+ if (callback) {
+ callback(icon, callbackParam, true);
+ }
+
+#ifdef HB_ICON_TRACES
+ qDebug() << "HbIconLoader::loadIcon END";
+#endif
+
+ return icon;
+}
+
+HbIconImpl *HbIconLoader::lookupInCache(const HbIconLoadingParams ¶ms, QByteArray *outCacheKey)
+{
+ QByteArray cacheKey = d->createCacheKeyFrom(params.iconName,
+ params.size,
+ params.aspectRatioMode,
+ params.mode,
+ params.mirrored,
+ params.color);
+ if (outCacheKey) {
+ *outCacheKey = cacheKey;
+ }
+ if (iconImplCache.contains(cacheKey)) {
+ HbIconImpl *icon = iconImplCache.value(cacheKey);
+ icon->incrementRefCount();
+ cacheKeeper()->unref(icon);
+#ifdef HB_ICON_CACHE_DEBUG
+ qDebug() << "HbIconLoader::loadIcon(): " << "Cache hit in iconImplCache for" << params.iconName << params.size;
+ qDebug() << "HbIconLoader::loadIcon(): Client RefCount now = " << icon->refCount();
+#endif
+ return icon;
+ }
+ return 0;
+}
+
+void HbIconLoader::loadLocal(HbIconLoadingParams ¶ms, const QString &format)
+{
+ QMutexLocker loadLocker(&d->mLocalLoadMutex);
+ QMutexLocker iconSourceLocker(&d->mIconSourceMutex);
+ if (format == "SVG") {
+ loadSvgIcon(params);
+ } else if (format == "PIC") {
+ loadPictureIcon(params);
+ } else if (format == "MNG" || format == "GIF") {
+ loadAnimatedIcon(params, format);
+ } else {
+ loadPixmapIcon(params, format);
+ }
+}
+
+void HbIconLoader::loadLocalAsync(const HbIconLoadingParams ¶ms, const QString &format,
+ HbAsyncIconLoaderCallback callback, void *callbackParam)
+{
+ HbIconLoaderPrivate::AsyncParams *p = new HbIconLoaderPrivate::AsyncParams;
+ p->mCallback = callback;
+ p->mLdParams = params;
+ p->mParam = callbackParam;
+ d->mActiveAsyncRequests.append(p);
+ QMetaObject::invokeMethod(d->mLocalLoader, "load",
+ Qt::QueuedConnection,
+ Q_ARG(HbIconLoadingParams, params),
+ Q_ARG(QString, format),
+ Q_ARG(void *, p));
+}
+
+HbIconImpl *HbIconLoader::finishLocal(HbIconLoadingParams ¶ms)
+{
+ // This is called on the main thread so QPixmap can be used.
+ QPixmap pm = QPixmap::fromImage(params.image);
+
if (!params.mirroringHandled) {
// Apply mirroring if required
if (params.mirrored && !params.mirroredIconFound) {
QTransform t;
t.scale(-1, 1);
- params.canvasPixmap = params.canvasPixmap.transformed(t);
+ pm = pm.transformed(t);
}
}
if (params.color.isValid()) {
- QPixmap &pm = params.canvasPixmap;
if (!pm.isNull()) {
QPixmap mask = pm.alphaChannel();
- pm.fill(color);
+ pm.fill(params.color);
pm.setAlphaChannel(mask);
}
}
if (!params.modeHandled) {
// Apply mode
- if (mode != QIcon::Normal) {
+ if (params.mode != QIcon::Normal) {
QStyleOption opt(0);
opt.palette = QApplication::palette();
- params.canvasPixmap = QApplication::style()->generatedIconPixmap(mode, params.canvasPixmap, &opt);
+ pm = QApplication::style()->generatedIconPixmap(params.mode, pm, &opt);
}
}
-#ifdef HB_ICON_TRACES
- qDebug() << "HbIconLoader::loadIcon END";
+ return new HbPixmapIconImpl(pm, params.iconFileName);
+}
+
+void HbIconLoader::cacheIcon(const HbIconLoadingParams ¶ms, HbIconImpl *icon, QByteArray *existingCacheKey)
+{
+ QByteArray cacheKey;
+ if (existingCacheKey) {
+ cacheKey = *existingCacheKey;
+ } else {
+ cacheKey = d->createCacheKeyFrom(params.iconName,
+ params.size,
+ params.aspectRatioMode,
+ params.mode,
+ params.mirrored,
+ params.color);
+ }
+ iconImplCache.insert(cacheKey, icon);
+
+#ifdef HB_ICON_CACHE_DEBUG
+ qDebug() << "HbIconLoader::loadIcon(): " << params.iconName << " inserted into impl-cache, ref-count now = " << icon->refCount();
#endif
+}
- icon = new HbPixmapIconImpl(params.canvasPixmap, params.iconFileName);
- return icon;
+/*!
+ Cancels an outstanding loadIcon request.
+
+ \a callback must match the callback parameter of a previous loadIcon call.
+ All loadIcon requests using the same callback will be canceled and the
+ callback will not be invoked.
+
+ Has no effect if no matching loadIcon request is active.
+
+ If \a callbackParam is not 0 then it is used in the matching too so only
+ loadIcon requests where both \a callback and \a callbackParam match will be
+ canceled. If \a callbackParam is 0 then only \a callback is used in the
+ matching.
+ */
+void HbIconLoader::cancelLoadIcon(HbAsyncIconLoaderCallback callback, void *callbackParam)
+{
+ // The callback used with the themeclient api is always the same, but the
+ // AsyncParams pointer in the custom parameter is different for each request
+ // so it can be used for identification.
+ foreach (HbIconLoaderPrivate::AsyncParams *p, d->mActiveAsyncRequests) {
+ if (p->mCallback == callback && (!callbackParam || callbackParam == p->mParam)) {
+ // Cancel the remote request. It will have no effect in case of
+ // local content. This is fine because for the local threaded loader
+ // the removal from mActiveAsyncRequests is enough.
+ HbThemeClient::global()->cancelGetSharedIconInfo(asyncCallback, p);
+ d->mActiveAsyncRequests.removeOne(p);
+ delete p;
+ return;
+ }
+ }
}
/*!
@@ -1522,28 +1771,25 @@
bool mirroredIconFound = false;
// We don't want to get the consolidated icon for only NVG build, ie. without SGImage lite support.
- // Consolidated icon will be created for NVG with SGImage lite support.
- // and when NVG is not available.
-#if defined(HB_ICONIMPL_CACHE)
-
- QByteArray cacheKey = d->createCacheKeyFrom(multiPartIconData.multiPartIconId,
- size,
- aspectRatioMode,
- mode,
- mirrored,
- color,
- renderMode);
+ // Consolidated icon will be created for NVG with SGImage lite support and when NVG is not available.
+ QByteArray cacheKey = d->createCacheKeyFrom(
+ multiPartIconData.multiPartIconId,
+ size,
+ aspectRatioMode,
+ mode,
+ mirrored,
+ color);
//If consolidated icon found in the client's cache, increment ref-count and return
if (iconImplCache.contains(cacheKey)) {
HbIconImpl *ptr = iconImplCache.value(cacheKey);
ptr->incrementRefCount();
+ cacheKeeper()->unref(ptr);
#ifdef HB_ICON_CACHE_DEBUG
- qDebug() << "HbIconLoader::loadMultiPieceIcon()" << "Cache hit in iconImplCache " << multiPartIconData.multiPartIconId << size.height() << "X" << size.width() ;
+ qDebug() << "HbIconLoader::loadMultiPieceIcon()" << "Cache hit in iconImplCache " << multiPartIconData.multiPartIconId << size;
qDebug() << "HbIconLoader::loadMultiPieceIcon : Client RefCount now = " << ptr->refCount();
#endif
return ptr;
}
-#endif
QStringList iconPathList;
@@ -1586,34 +1832,15 @@
params.mirrored = mirrored;
params.mirroredIconFound = mirroredIconFound;
- //Creating HbIconImpl for the consolidated icon-data returned from themeserver
+ // Creating HbIconImpl for the consolidated icon-data returned from themeserver.
icon = HbIconImplCreator::createIconImpl(iconInfo, params);
if (icon) {
-#ifdef HB_ICONIMPL_CACHE
- if (renderMode != icon->iconRenderingMode()) {
- cacheKey = d->createCacheKeyFrom(params.iconName,
- params.size,
- params.aspectRatioMode,
- params.mode,
- params.mirrored,
- params.color,
- icon->iconRenderingMode());
- if (iconImplCache.contains(cacheKey)) {
- HbIconImpl * oldIcon = iconImplCache.value(cacheKey);
- this->unLoadIcon(icon);
- icon->dispose();
- icon = oldIcon;
- icon->incrementRefCount();
- }
- } else {
- iconImplCache.insert(cacheKey, icon);
- }
+ // Not yet in local cache (was checked before the server request) so insert.
+ iconImplCache.insert(cacheKey, icon);
+ icon->setMultiPieceIcon();
#ifdef HB_ICON_CACHE_DEBUG
qDebug() << "HbIconLoader::loadMultiPieceIcon(): " << params.iconName << " inserted into impl-cache, ref-count now = " << icon->refCount();
#endif
-
-#endif
- icon->setMultiPieceIcon();
}
return icon;
} else {
@@ -1660,8 +1887,85 @@
}
}
-// Initiates an IPC call to the ThemeServer to unload ( decrement ref count ) the icon
-void HbIconLoader::unLoadIcon(HbIconImpl *icon, bool unloadedByServer)
+inline int iconImplConsumption(HbIconImpl *icon)
+{
+ QSize sz = icon->keySize().toSize();
+ return sz.width() * sz.height() * 4;
+}
+
+void CacheKeeper::ref(HbIconImpl *icon)
+{
+ int consumption = iconImplConsumption(icon);
+ // Never hold something more than once and do not ref anything when icons
+ // are unloaded immediately when becoming hidden. Ignore also icons that are
+ // too large and those which had not been inserted into iconImplCache
+ // (e.g. icons that were created with the DoNotCache option).
+ if (!mIcons.contains(icon)
+ && !HbInstancePrivate::d_ptr()->mDropHiddenIconData
+ && consumption < MAX_KEEPALIVE_ITEM_SIZE_BYTES
+ && !iconImplCache.key(icon).isEmpty())
+ {
+ icon->incrementRefCount();
+ mIcons.append(icon);
+ mConsumption += consumption;
+ // Now do some housekeeping.
+ while (mConsumption > MAX_KEEPALIVE_CACHE_SIZE_BYTES) {
+ HbIconImpl *oldest = mIcons.first();
+ unref(oldest);
+ if (oldest->refCount() == 0 && oldest != icon) {
+ del(oldest, true);
+ }
+ }
+ }
+}
+
+void CacheKeeper::unref(HbIconImpl *icon)
+{
+ if (mIcons.contains(icon)) {
+ mIcons.removeOne(icon);
+ mConsumption -= iconImplConsumption(icon);
+ icon->decrementRefCount();
+ }
+}
+
+void CacheKeeper::clear()
+{
+ // Get rid of all unused icons in the iconimplcache, regardless of
+ // the icons' rendering mode. Note that the list may contain non-sgimage
+ // iconimpls too that are created on the server, and unlike sgimage the
+ // unload request for these can never be skipped.
+ QVector<HbThemeClient::IconReqInfo> unloadList;
+ foreach (HbIconImpl *icon, mIcons) {
+ icon->decrementRefCount();
+ if (icon->refCount() == 0) {
+ if (icon->isCreatedOnServer()) {
+ unloadList.append(iconImplToReqInfo(icon));
+ }
+ del(icon, false); // no unload request, do it at once at the end
+ }
+ }
+ mConsumption = 0;
+ mIcons.clear();
+ // Now do batch unloading, to reduce IPC.
+ if (!unloadList.isEmpty()) {
+ HbThemeClient::global()->batchUnloadIcon(unloadList);
+ }
+}
+
+void CacheKeeper::del(HbIconImpl *icon, bool sendUnloadReq)
+{
+ HbIconLoader::global()->removeItemInCache(icon);
+ if (sendUnloadReq && icon->isCreatedOnServer()) {
+ HbThemeClient::global()->unloadIcon(iconImplToReqInfo(icon));
+ }
+ icon->dispose();
+}
+
+// Initiates an IPC call to the ThemeServer to unload (or at least decrement the
+// server-side refcount of) the icon, unless the icon unload was initiated by
+// the server itself. Also, if the local refcount reaches zero, the icon is
+// removed from the local cache.
+void HbIconLoader::unLoadIcon(HbIconImpl *icon, bool unloadedByServer, bool noKeep)
{
if (!icon) {
return;
@@ -1669,26 +1973,22 @@
icon->decrementRefCount();
- if (icon->refCount() == 0 && icon->isCreatedOnServer()) {
+ if (icon->refCount() == 0) {
if (!unloadedByServer) {
- HbThemeClient::global()->unloadIcon(icon->iconFileName(),
- icon->keySize(),
- icon->iconAspectRatioMode(),
- icon->iconMode(),
- icon->isMirrored(),
- icon->color(),
- icon->iconRenderingMode()
- );
+ // Offer the icon to the cacheKeeper first.
+ if (!noKeep) {
+ cacheKeeper()->ref(icon);
+ }
+ // If it was accepted then the refcount was increased so stop here.
+ if (icon->refCount() > 0) {
+ return;
+ }
+ // Otherwise continue with unloading.
+ if (icon->isCreatedOnServer()) {
+ HbThemeClient::global()->unloadIcon(iconImplToReqInfo(icon));
+ }
}
-#ifdef HB_ICONIMPL_CACHE
- int rem = iconImplCache.remove(iconImplCache.key(icon));
- if (rem > 0) {
-#ifdef HB_ICON_TRACES
- qDebug() << "Removed from HbIconImpl Cache " << rem << icon->iconFileName() << icon->keySize().height() << "X" << icon->keySize().width() ;
-#endif
- }
-#endif
-
+ removeItemInCache(icon);
}
}
@@ -1735,45 +2035,45 @@
{
Q_UNUSED(type);
QVector<int> posList;
-#ifdef HB_ICONIMPL_CACHE
- // search the client cache first before asking the server
- for (int i = 0; i < multiPartIconList.count(); i++) {
+ // Search the client cache first before asking the server.
+ int count = multiPartIconList.count();
+ QVector<QByteArray> cacheKeys;
+ for (int i = 0; i < count; i++) {
QByteArray cacheKey = d->createCacheKeyFrom(multiPartIconList[i],
- sizeList[i],
- aspectRatioMode,
- mode,
- mirrored,
- color,
- currRenderMode);
- //look up in the local iconImplCache.
- //If found return the ptr directly
+ sizeList[i],
+ aspectRatioMode,
+ mode,
+ mirrored,
+ color);
+ cacheKeys.append(cacheKey);
+ // Look up in the local iconImplCache.
HbIconImpl *ptr = 0;
if (iconImplCache.contains(cacheKey)) {
ptr = iconImplCache.value(cacheKey);
- // if a specific frame-item is found in local impl-cache,
- // increment the ref count and remove the entry from the list that needs to be sent to server.
+ // If a specific frame-item is found in local impl-cache,
+ // increment the ref count and remove the entry from the
+ // list that needs to be sent to server.
ptr->incrementRefCount();
+ cacheKeeper()->unref(ptr);
#ifdef HB_ICON_CACHE_DEBUG
qDebug() << "HbIconLoader::getMultiIconImplFromServer()" << "Cache hit in iconImplCache ";
qDebug() << "HbIconLoader::getMultiIconImplFromServer : Client RefCount now = " << ptr->refCount();
#endif
iconImplList.append(ptr);
- multiPartIconList.replace(i, QString(""));
+ multiPartIconList.replace(i, QString());
} else {
posList << i;
}
}
- for (int i = 0; i < multiPartIconList.count(); i++) {
-
+ for (int i = 0; i < count; i++) {
if (multiPartIconList[i].isEmpty()) {
multiPartIconList.removeAt(i);
sizeList.remove(i);
i--;
}
}
-#endif
- // If client-side cache is not enabled, ask server for all the pieces' information
- int count = multiPartIconList.count();
+
+ // If no hit in local cache, ask server for all the pieces' information.
if (count > 0) {
HbSharedIconInfoList iconInfoList = HbThemeClient::global()->getMultiIconInfo(multiPartIconList, sizeList,
aspectRatioMode, mode, mirrored, options, color, currRenderMode);
@@ -1787,40 +2087,22 @@
params.mirrored = mirrored;
params.mirroredIconFound = mirroredIconFound;
-
for (int i = 0; i < count; i++) {
+ params.iconFileName = multiPartIconList[i];
+ params.size = sizeList.at(i);
impl = HbIconImplCreator::createIconImpl(iconInfoList.icon[i], params);
if (impl) {
- params.iconFileName = multiPartIconList[i];
- params.size = sizeList.at(i);
-
-
-#ifdef HB_ICONIMPL_CACHE
- QByteArray cacheKey = d->createCacheKeyFrom( multiPartIconList[i],
- sizeList.at(i) ,
- aspectRatioMode,
- mode,
- mirrored,
- color,
- impl->iconRenderingMode() );
- if (iconImplCache.contains(cacheKey)) {
- HbIconImpl * oldIcon = iconImplCache.value(cacheKey);
- this->unLoadIcon(impl);
- impl->dispose();
- impl = oldIcon;
- impl->incrementRefCount();
- } else {
- iconImplCache.insert(cacheKey, impl);
- }
+ // Not yet in local cache (was checked before the server request) so insert.
+ iconImplCache.insert(cacheKeys[i], impl);
#ifdef HB_ICON_CACHE_DEBUG
- qDebug() << "HbIconLoader::getMultiIconImplFromServer(): " << params.iconName << " inserted into impl-cache, ref-count now = " << impl->refCount();
-#endif
-
+ qDebug() << "HbIconLoader::getMultiIconImplFromServer(): "
+ << params.iconName << " inserted into impl-cache, ref-count now = " << impl->refCount();
#endif
} else {
//If for some reason individual frame-item's loading in themeserver fails, use HbIconLoader::loadIcon()
// as a fallback option to load it.
- impl = loadIcon(multiPartIconList[i], HbIconLoader::AnyType,
+ impl = loadIcon(multiPartIconList[i],
+ HbIconLoader::AnyType,
HbIconLoader::AnyPurpose,
sizeList.at(i),
Qt::IgnoreAspectRatio,
@@ -1830,14 +2112,10 @@
if (impl) {
impl->setMultiPieceIcon();
-#ifdef HB_ICONIMPL_CACHE
if (posList.count() > 0) {
iconImplList.insert(posList.front(), impl);
posList.pop_front();
}
-#else
- iconImplList.append(impl);
-#endif
}
}
}
@@ -1857,18 +2135,18 @@
// then send to server for unload.
foreach(HbIconImpl * impl, multiPieceImpls) {
impl->decrementRefCount();
- if (impl->refCount() == 0 && impl->isCreatedOnServer()) {
-#ifdef HB_ICONIMPL_CACHE
+ if (impl->refCount() == 0) {
int rem = iconImplCache.remove(iconImplCache.key(impl));
if (rem > 0) {
#ifdef HB_ICON_TRACES
- qDebug() << "HbIconLoader::unLoadMultiIcon :Removed from HbIconImpl Cache " << rem << impl->iconFileName() << impl->keySize().height() << "X" << impl->keySize().width() ;
+ qDebug() << "HbIconLoader::unLoadMultiIcon :Removed from HbIconImpl Cache " << rem << impl->iconFileName() << impl->keySize();
#endif
}
-#endif
- // List of icons to be unloaded.
- iconNameList << impl->iconFileName();
- sizeList << impl->keySize();
+ if (impl->isCreatedOnServer()) {
+ // List of icons to be unloaded.
+ iconNameList << impl->iconFileName();
+ sizeList << impl->keySize();
+ }
}
}
@@ -1886,7 +2164,6 @@
bool HbIconLoader::isInPrivateDirectory(const QString &filename)
{
- Q_UNUSED(filename);
bool isPrivate = false;
#ifdef Q_OS_SYMBIAN
@@ -1897,9 +2174,54 @@
isPrivate = true;
}
}
+#else
+ Q_UNUSED(filename);
#endif
return isPrivate;
}
+void HbIconLoader::localLoadReady(const HbIconLoadingParams &loadParams, void *reqParams)
+{
+ // This code is running on the main thread.
+ HbIconLoaderPrivate::AsyncParams *p = static_cast<HbIconLoaderPrivate::AsyncParams *>(reqParams);
+ // Stop right away if canceled.
+ if (!d->mActiveAsyncRequests.contains(p)) {
+ return;
+ }
+ // Do not use d->mLdParams, it is not up-to-date.
+ HbIconLoadingParams params = loadParams;
+ HbIconImpl *icon = finishLocal(params);
+ if (icon && !params.options.testFlag(DoNotCache)) {
+ cacheIcon(params, icon, 0);
+ }
+ if (p->mCallback) {
+ p->mCallback(icon, p->mParam, false);
+ }
+ d->mActiveAsyncRequests.removeOne(p);
+ delete p;
+}
+
+void HbLocalIconLoader::load(const HbIconLoadingParams ¶ms, const QString &format, void *reqParams)
+{
+ // This is running on a separate thread (d->mLocalLoaderThread) and since
+ // the HbLocalIconLoader instance is moved to that thread, the requests from
+ // the main thread are delivered using queued connection so slots/signals
+ // provide easy inter-thread communication in this case.
+ HbIconLoaderPrivate::AsyncParams *p = static_cast<HbIconLoaderPrivate::AsyncParams *>(reqParams);
+ // Stop right away if canceled.
+ if (!HbIconLoaderPrivate::global()->mActiveAsyncRequests.contains(p)) {
+ return;
+ }
+ HbIconLoadingParams loadParams = params;
+ HbIconLoader::global()->loadLocal(loadParams, format);
+ emit ready(loadParams, reqParams);
+}
+
+void HbLocalIconLoader::doQuit()
+{
+ QThread::currentThread()->quit();
+}
+
+
// End of File
--- a/src/hbcore/image/hbiconloader_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconloader_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -94,6 +94,8 @@
HbIconAnimator *animator = 0,
const QColor &color = QColor());
+ typedef void (*HbAsyncIconLoaderCallback)(HbIconImpl *, void *, bool);
+
HbIconImpl *loadIcon(
const QString &iconName,
HbIconLoader::IconDataType type,
@@ -103,9 +105,13 @@
QIcon::Mode = QIcon::Normal,
IconLoaderOptions options = IconLoaderOptions(ReturnUnknownIcon | BitmapIcons | VectorIcons),
HbIconAnimator *animator = 0,
- const QColor &color = QColor());
+ const QColor &color = QColor(),
+ HbAsyncIconLoaderCallback callback = 0,
+ void *callbackParam = 0);
- void unLoadIcon(HbIconImpl *icon, bool unloadedByServer = false);
+ void cancelLoadIcon(HbAsyncIconLoaderCallback callback, void *callbackParam);
+
+ void unLoadIcon(HbIconImpl *icon, bool unloadedByServer = false, bool noKeep = false);
void unLoadMultiIcon(QVector<HbIconImpl *> &multiPieceImpls);
HbIconImpl *loadMultiPieceIcon(const QStringList &listOfIcons,
@@ -160,13 +166,24 @@
void themeChange(const QStringList &updatedFiles);
void destroy();
void updateLayoutDirection();
+ void localLoadReady(const HbIconLoadingParams &loadParams, void *reqParams);
private:
+ HbIconImpl *lookupInCache(const HbIconLoadingParams ¶ms, QByteArray *outCacheKey);
+ void loadLocal(HbIconLoadingParams ¶ms, const QString &format);
+ void loadLocalAsync(const HbIconLoadingParams ¶ms, const QString &format,
+ HbAsyncIconLoaderCallback callback, void *callbackParam);
+ HbIconImpl *finishLocal(HbIconLoadingParams ¶ms);
+ void cacheIcon(const HbIconLoadingParams ¶ms, HbIconImpl *icon, QByteArray *existingCacheKey);
+ HbIconImpl *finishGetIconFromServer(HbSharedIconInfo &iconInfo, HbIconLoadingParams ¶ms);
void resolveCleanIconName(HbIconLoadingParams ¶ms) const;
QSizeF getAnimationDefaultSize(HbIconAnimationDefinition &def, HbIconLoadingParams ¶ms);
void loadAnimation(HbIconAnimationDefinition &def, HbIconLoadingParams ¶ms);
QString resolveIconFileName(HbIconLoadingParams ¶ms);
HbIconImpl *getIconFromServer(HbIconLoadingParams ¶ms);
+ void getIconFromServerAsync(HbIconLoadingParams ¶ms,
+ HbAsyncIconLoaderCallback callback,
+ void *callbackParam);
void getMultiIconImplFromServer(QStringList &multiPartIconList,
QVector<QSizeF> &sizeList,
Qt::AspectRatioMode aspectRatioMode,
@@ -187,15 +204,31 @@
QList< HbFrameDrawerPrivate *> frameDrawerInstanceList;
QList< HbIconEngine *> iconEngineList;
- friend class HbApplication;
- friend class HbIconLoaderPrivate;
+
+ static bool asyncCallback(const HbSharedIconInfo &info, void *param);
private:
Q_DISABLE_COPY(HbIconLoader)
HbIconLoaderPrivate *d;
HbRenderingMode renderMode;
+
+ friend class HbApplication;
+ friend class HbIconLoaderPrivate;
+ friend class HbLocalIconLoader;
};
Q_DECLARE_OPERATORS_FOR_FLAGS(HbIconLoader::IconLoaderOptions)
+class HbLocalIconLoader : public QObject
+{
+ Q_OBJECT
+
+public slots:
+ void load(const HbIconLoadingParams ¶ms, const QString &format, void *reqParams);
+ void doQuit();
+
+signals:
+ void ready(const HbIconLoadingParams &loadParams, void *reqParams);
+};
+
#endif // HBICONLOADER_P_H
--- a/src/hbcore/image/hbiconsource.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconsource.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -34,7 +34,7 @@
#include <QPicture>
#include <QScopedPointer>
#include <QImageReader>
-#include <QPixmap>
+#include <QImage>
#include <QDir>
#include <QFile>
#include <QByteArray>
@@ -44,6 +44,7 @@
#endif // HB_NVG_CS_ICON
#endif // HB_BOOTSTRAPPED
+
#ifdef HB_BOOTSTRAPPED
// Copied from HbIconLoader::formatFromPath,
@@ -119,7 +120,7 @@
HbIconSource::HbIconSource(const QString &filename) :
mFilename(filename),
mPicture(0),
- mPixmap(0),
+ mImage(0),
mByteArray(0),
mSvgRenderer(0),
mImageReader(0)
@@ -131,7 +132,7 @@
mFilename(filename),
mType(type),
mPicture(0),
- mPixmap(0),
+ mImage(0),
mByteArray(0),
mSvgRenderer(0),
mImageReader(0)
@@ -144,7 +145,7 @@
delete mImageReader;
delete mSvgRenderer;
delete mPicture;
- delete mPixmap;
+ delete mImage;
delete mByteArray;
}
@@ -228,10 +229,13 @@
}
releaseImageReader();
} else if (mType != "BLOB") {
- if (!mPixmap) {
- mPixmap = new QPixmap(mFilename);
+ if (!mImage) {
+ mImage = new QImage(mFilename);
+ if (mImage->isNull()) {
+ qWarning("HbIconSource::defaultSize: Cannot load %s", qPrintable(mFilename));
+ }
}
- mDefaultSize = mPixmap->size();
+ mDefaultSize = mImage->size();
}
}
@@ -245,6 +249,9 @@
{
if (!mSvgRenderer) {
mSvgRenderer = new QSvgRenderer(mFilename);
+ if (!mSvgRenderer->isValid()) {
+ qWarning("HbIconSource::svgRenderer: Invalid SVG document: %s", qPrintable(mFilename));
+ }
}
return mSvgRenderer && mSvgRenderer->isValid() ? mSvgRenderer : 0;
}
@@ -305,6 +312,9 @@
if (!mImageReader) {
type(); // make sure type is initialized
mImageReader = new QImageReader(mFilename, mType.toLatin1());
+ if (!mImageReader->canRead()) {
+ qWarning("HbIconSource::imageReader: Cannot read image %s", qPrintable(mFilename));
+ }
}
return mImageReader && mImageReader->canRead() ? mImageReader : 0;
}
@@ -328,25 +338,38 @@
mImageReader = 0;
}
-QPixmap *HbIconSource::pixmap()
+/*!
+ Returns the QImage, reading from the file, if needed.
+
+ If image() has been called before and the data is still available
+ then no file access is done.
+
+ HbIconSource works with QImage everywhere so it can be used outside
+ the gui thread too.
+ */
+QImage *HbIconSource::image()
{
- if (!mPixmap) {
- mPixmap = new QPixmap(mFilename);
+ if (!mImage) {
+ // Must use QImage so this function can be called outside the
+ // main thread.
+ mImage = new QImage(mFilename);
+ if (mImage->isNull()) {
+ qWarning("HbIconSource::image: Cannot load %s", qPrintable(mFilename));
+ }
}
-
- return mPixmap;
+ return mImage;
}
-void HbIconSource::deletePixmapIfLargerThan(int limitInBytes)
+void HbIconSource::deleteImageIfLargerThan(int limitInBytes)
{
- if (mPixmap) {
- QSize size = mPixmap->size();
- int sizeInBytes = size.width() * size.height() * mPixmap->depth();
+ if (mImage) {
+ QSize size = mImage->size();
+ int sizeInBytes = size.width() * size.height() * mImage->depth();
sizeInBytes /= 8; // depth is in bits, we want bytes
if (sizeInBytes > limitInBytes) {
- delete mPixmap;
- mPixmap = 0;
+ delete mImage;
+ mImage = 0;
}
}
}
--- a/src/hbcore/image/hbiconsource_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbiconsource_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -38,14 +38,14 @@
QT_BEGIN_NAMESPACE
class QSvgRenderer;
class QPicture;
-class QPixmap;
+class QImage;
class QImageReader;
class QByteArray;
QT_END_NAMESPACE
-// Pixmaps larger than this amount of bytes are deleted after use from previously used icon sources list
+// Images larger than this amount of bytes are deleted after use from previously used icon sources list
// for not wasting system's memory too much.
-static const int PIXMAP_SIZE_LIMIT = 150000;
+static const int IMAGE_SIZE_LIMIT = 150000;
class HB_CORE_PRIVATE_EXPORT HbIconSource
{
@@ -66,10 +66,10 @@
QImageReader *imageReader();
void releaseImageReader();
void takeImageReader();
- QPixmap *pixmap();
+ QImage *image();
QByteArray *byteArray();
- void deletePixmapIfLargerThan(int limitInBytes);
+ void deleteImageIfLargerThan(int limitInBytes);
private:
bool canKeepOpen() const;
@@ -78,9 +78,9 @@
QString mFullFilename;
QString mType;
- // These are used to generate the raster pixmap of the icon and for fetching icon's default size
+ // These are used to generate the raster image of the icon and for fetching icon's default size
QPicture *mPicture;
- QPixmap *mPixmap;
+ QImage *mImage;
QByteArray *mByteArray;
// Stored default size
--- a/src/hbcore/image/hbsgimageiconimpl_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbsgimageiconimpl_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -295,6 +295,7 @@
if (vgImageRenderer) {
vgImageRenderer->draw(painter, topLeft, clipPath);
+ //eglWaitClient();
return;
}
}
@@ -372,7 +373,7 @@
return contentSize;
}
-HbIconImpl::ErrorCode HbSgimageIconImpl::intialize()
+HbIconImpl::ErrorCode HbSgimageIconImpl::initialize()
{
ErrorCode error = ErrorNone;
--- a/src/hbcore/image/hbsgimageiconimpl_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbsgimageiconimpl_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -57,7 +57,7 @@
QSize defaultSize() const;
QSize size();
- ErrorCode intialize();
+ ErrorCode initialize();
void destroyMaskedData(HbIconMaskedData *data);
private :
--- a/src/hbcore/image/hbvgimageiconrenderer.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbvgimageiconrenderer.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -34,21 +34,17 @@
iconMode(QIcon::Normal),
specialCaseApplied(false),
rendersize(size),
- addedToStates(false),
opacityPaint(VG_INVALID_HANDLE),
lastOpacity(1.0),
iconImpl(impl)
{
- eglStates = HbEglStates::global();
- eglStates->ref();
}
HbVgImageIconRenderer::~HbVgImageIconRenderer()
{
if (vgImage) {
- eglStates->removeVGImage(&vgImage);
+ vgDestroyImage(vgImage);
}
- eglStates->deref(eglStates);
}
void HbVgImageIconRenderer::applyIconProperties()
@@ -99,13 +95,8 @@
if (vgImage == VG_INVALID_HANDLE) {
vgImage = vgImageCreator(iconImpl , painter);
- addedToStates = false;
}
- if (!addedToStates && vgImage != VG_INVALID_HANDLE) {
- eglStates->addVGImage(&vgImage);
- addedToStates = true;
- }
if (vgImage != VG_INVALID_HANDLE) {
QPainterPath oldPath;
--- a/src/hbcore/image/hbvgimageiconrenderer_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/hbvgimageiconrenderer_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -81,8 +81,6 @@
QIcon::Mode iconMode;
bool specialCaseApplied;
QSize rendersize;
- HbEglStates *eglStates;
- bool addedToStates;
VGPaint opacityPaint;
qreal lastOpacity;
HbIconImpl *iconImpl;
--- a/src/hbcore/image/image.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/image/image.pri Thu Sep 02 20:44:51 2010 +0300
@@ -81,10 +81,10 @@
PRIVATE_HEADERS += $$PWD/hbnvgiconimpl_p.h
PRIVATE_HEADERS += $$PWD/hbeglstate_p.h
PRIVATE_HEADERS += $$PWD/hbvgimageiconrenderer_p.h
-
+
SOURCES += $$PWD/hbnvgiconimpl_p.cpp
SOURCES += $$PWD/hbeglstate.cpp
- SOURCES += $$PWD/hbvgimageiconrenderer.cpp
+ SOURCES += $$PWD/hbvgimageiconrenderer.cpp
}
sgimage {
SOURCES += $$PWD/hbsgimageiconimpl_p.cpp
--- a/src/hbcore/inputfw/hbinputdef.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputdef.h Thu Sep 02 20:44:51 2010 +0300
@@ -64,25 +64,25 @@
bit HbTouchInputMask set.
*/
enum HbKeyboardTypeFlag {
- HbKeyboardNone = 0x00000000,
+ HbKeyboardNone = 0x00000000,
- HbKeyboard12Key = 0x00000001, /**< Deprecated, use HbKeyboardHardwarePortrait instead. */
+ HbKeyboard12Key = 0x00000001, /**< Deprecated, use HbKeyboardHardwarePortrait instead. */
HbKeyboardHardwarePortrait = HbKeyboard12Key, /**< Hardware keyboard for portrait orientation. */
- HbKeyboardQwerty = 0x00000001 | HbQwertyKeyboardMask, /**< Deprecated, use HbKeyboardHardwareLandcape instead */
+ HbKeyboardQwerty = 0x00000001 | HbQwertyKeyboardMask, /**< Deprecated, use HbKeyboardHardwareLandcape instead */
HbKeyboardHardwareLandcape = HbKeyboardQwerty, /**< Hardware keyboard for landscape mode. */
- HbKeyboardVirtual12Key = 0x00000001 | HbTouchInputMask, /**< Deprecated, use HbKeyboardTouchPortrait instead. */
+ HbKeyboardVirtual12Key = 0x00000001 | HbTouchInputMask, /**< Deprecated, use HbKeyboardTouchPortrait instead. */
HbKeyboardTouchPortrait = HbKeyboardVirtual12Key, /**< Touch keyboard for portrait mode. */
- HbKeyboardVirtualQwerty = 0x00000002 | HbTouchInputMask| HbQwertyKeyboardMask, /**< Touchscreen version of qwerty keyboard */
+ HbKeyboardVirtualQwerty = 0x00000002 | HbTouchInputMask| HbQwertyKeyboardMask, /**< Touchscreen version of qwerty keyboard */
HbKeyboardTouchLandscape = HbKeyboardVirtualQwerty, /**< Touch keyboard for landscape mode. */
- HbKeyboardSctPortrait = 0x00000003 | HbTouchInputMask, /**< Special character selection keypad for portrait view */
- HbKeyboardSctLandscape = 0x00000004 | HbTouchInputMask| HbQwertyKeyboardMask, /**< Special character selection keypad for landscape view */
- HbKeyboardHwr = 0x00000005 | HbTouchInputMask| HbHwrKeyboardMask, /**< Hand writing recognition keypad */
- HbKeyboardVirtual12KeyLabels = 0x00000006 | HbTouchInputMask, /**< Key labels for virtual 12 key keyboard */
+ HbKeyboardSctPortrait = 0x00000003 | HbTouchInputMask, /**< Special character selection keypad for portrait view */
+ HbKeyboardSctLandscape = 0x00000004 | HbTouchInputMask| HbQwertyKeyboardMask, /**< Special character selection keypad for landscape view */
+ HbKeyboardHwr = 0x00000005 | HbTouchInputMask| HbHwrKeyboardMask, /**< Hand writing recognition keypad */
+ HbKeyboardVirtual12KeyLabels = 0x00000006 | HbTouchInputMask, /**< Key labels for virtual 12 key keyboard */
- HbKeyboardVirtual12KeyEmail = 0x00000008 | HbTouchInputMask, /**< Touchscreen version of conventional phone keypad in URL editor*/
- HbKeyboardVirtual12KeyUrl = 0x00000009 | HbTouchInputMask, /**< Touchscreen version of qwerty keyboard in Email editor */
- HbKeyboardSctEmail = 0x0000000A | HbTouchInputMask, /**< Url Special character selection keypad for portrait view */
- HbKeyboardSctUrl = 0x0000000B | HbTouchInputMask /**< Email Special character selection keypad for portrait view */
+ HbKeyboardVirtual12KeyEmail = 0x00000008 | HbTouchInputMask, /**< Touchscreen version of conventional phone keypad in URL editor*/
+ HbKeyboardVirtual12KeyUrl = 0x00000009 | HbTouchInputMask, /**< Touchscreen version of qwerty keyboard in Email editor */
+ HbKeyboardSctEmail = 0x0000000A | HbTouchInputMask, /**< Url Special character selection keypad for portrait view */
+ HbKeyboardSctUrl = 0x0000000B | HbTouchInputMask /**< Email Special character selection keypad for portrait view */
};
Q_DECLARE_FLAGS(HbKeyboardType, HbKeyboardTypeFlag)
--- a/src/hbcore/inputfw/hbinputeditorinterface.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputeditorinterface.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -147,7 +147,7 @@
/*!
Returns editor constraints. The returned value is a combination of HbEditorConstraint flags.
-\sa setEditorConstraints
+\sa setInputConstraints
*/
HbEditorConstraints HbEditorInterface::inputConstraints() const
{
@@ -164,7 +164,7 @@
/*!
Sets editor constraints.
-\sa editorConstraints
+\sa inputConstraints
*/
void HbEditorInterface::setInputConstraints(HbEditorConstraints constraints)
{
--- a/src/hbcore/inputfw/hbinputeditorinterface_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputeditorinterface_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -115,8 +115,14 @@
}
}
-HbEditorInterfacePrivate *HbEditorInterfacePrivateCache::attachEditor(QObject *editor, HbEditorInterface *interface)
+HbEditorInterfacePrivate *HbEditorInterfacePrivateCache::attachEditor(QObject *incomingEditor, HbEditorInterface *interface)
{
+ QObject *editor = incomingEditor;
+ QGraphicsProxyWidget *proxyTmp = qobject_cast<QGraphicsProxyWidget*>(editor);
+ if (proxyTmp) {
+ editor = proxyTmp->widget();
+ }
+
if (editor) {
for (int i = 0; i < mObjectCache.count(); i++) {
if (mObjectCache[i]->mHostEditor == editor) {
@@ -138,32 +144,18 @@
connect(interface, SIGNAL(destroyed(QObject *)), this, SLOT(interfaceDestroyed(QObject *)));
connect(newItem, SIGNAL(cursorPositionChanged(int, int)), interface, SIGNAL(cursorPositionChanged(int, int)));
- // Check whether the connected object is a QLineEdit or QTextEdit, plain or wrapped in QGraphicsProxyWidget
+ // Check whether the connected object is Hb editor, QLineEdit or QTextEdit,
// and if yes, connect its cursorPositionChanged() signal to this item's cursorPositionChanged() signal
if (editor->inherits("HbAbstractEdit")) {
connect(editor, SIGNAL(cursorPositionChanged(int, int)), newItem, SIGNAL(cursorPositionChanged(int, int)));
} else {
- QGraphicsProxyWidget *proxywidget = qobject_cast<QGraphicsProxyWidget *>(editor);
- if (proxywidget) {
- QWidget *editorwidget = proxywidget->widget();
- QLineEdit *lineedit = qobject_cast<QLineEdit *>(editorwidget);
- if (lineedit) {
- connect(lineedit, SIGNAL(cursorPositionChanged(int, int)), newItem, SIGNAL(cursorPositionChanged(int, int)));
- } else {
- QTextEdit *textedit = qobject_cast<QTextEdit *>(editorwidget);
- if (textedit) {
- connect(textedit, SIGNAL(cursorPositionChanged()), newItem, SLOT(cursorPositionChanged()));
- }
- }
+ QLineEdit *lineedit = qobject_cast<QLineEdit *>(editor);
+ if (lineedit) {
+ connect(lineedit, SIGNAL(cursorPositionChanged(int, int)), newItem, SIGNAL(cursorPositionChanged(int, int)));
} else {
- QLineEdit *lineedit = qobject_cast<QLineEdit *>(editor);
- if (lineedit) {
- connect(lineedit, SIGNAL(cursorPositionChanged(int, int)), newItem, SIGNAL(cursorPositionChanged(int, int)));
- } else {
- QTextEdit *textedit = qobject_cast<QTextEdit *>(editor);
- if (textedit) {
- connect(textedit, SIGNAL(cursorPositionChanged()), newItem, SLOT(cursorPositionChanged()));
- }
+ QTextEdit *textedit = qobject_cast<QTextEdit *>(editor);
+ if (textedit) {
+ connect(textedit, SIGNAL(cursorPositionChanged()), newItem, SLOT(cursorPositionChanged()));
}
}
}
@@ -174,12 +166,18 @@
return 0;
}
-void HbEditorInterfacePrivateCache::destroyed(QObject *object)
+void HbEditorInterfacePrivateCache::destroyed(QObject *incomingObject)
{
+ QObject *object = incomingObject;
+ QGraphicsProxyWidget *proxyTmp = qobject_cast<QGraphicsProxyWidget*>(object);
+ if (proxyTmp) {
+ object = proxyTmp->widget();
+ }
+
for (int i = 0; i < mObjectCache.count(); i++) {
if (mObjectCache[i]->mHostEditor == object) {
delete mObjectCache[i];
- mObjectCache.remove(i);
+ mObjectCache.removeAt(i);
break;
}
}
@@ -222,8 +220,14 @@
}
}
-bool HbEditorInterfacePrivateCache::isConnected(QObject *object)
+bool HbEditorInterfacePrivateCache::isConnected(QObject *incomingObject)
{
+ QObject *object = incomingObject;
+ QGraphicsProxyWidget *proxyTmp = qobject_cast<QGraphicsProxyWidget*>(object);
+ if (proxyTmp) {
+ object = proxyTmp->widget();
+ }
+
for (int i = 0; i < mObjectCache.count(); i++) {
if (mObjectCache[i]->mHostEditor == object) {
return true;
--- a/src/hbcore/inputfw/hbinputeditorinterface_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputeditorinterface_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -43,7 +43,7 @@
class HbEditorInterface;
-class HbEditorInterfacePrivate : public QObject
+class HB_CORE_PRIVATE_EXPORT HbEditorInterfacePrivate : public QObject
{
Q_OBJECT
@@ -89,8 +89,7 @@
QMutex mMutex;
};
-
-class HbEditorInterfacePrivateCache : public QObject
+class HB_CORE_PRIVATE_EXPORT HbEditorInterfacePrivateCache : public QObject
{
Q_OBJECT
@@ -112,7 +111,7 @@
void actionDestroyed(QObject *object);
private:
- QVector<HbEditorInterfacePrivate *> mObjectCache;
+ QList<HbEditorInterfacePrivate *> mObjectCache;
};
/// @endcond
--- a/src/hbcore/inputfw/hbinputfocusobject.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputfocusobject.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -159,8 +159,7 @@
if (d->mFocusedObject) {
HbEvent *event = new HbEvent(HbEvent::InputMethodFocusOut);
- QCoreApplication::sendEvent(d->mFocusedObject, event);
- delete event;
+ QCoreApplication::postEvent(d->mFocusedObject, event);
}
delete d_ptr;
@@ -731,10 +730,10 @@
}
/*!
-Sets focus to the editor point by this focus objetc. This method is needed because sometimes
+Sets focus to the editor pointed by this focus object. Sometimes
input method does something that temporarily removes focus from the original editor,
for example displays a dialog which itself contains an editor in it. This method can
-be used to return the focus to the original editor.
+be used to return the input focus to the original editor.
*/
void HbInputFocusObject::setFocus()
{
@@ -749,6 +748,13 @@
widget->setFocus();
}
}
+
+ QInputContext* ic = qApp->inputContext();
+ if (ic) {
+ QEvent *openEvent = new QEvent(QEvent::RequestSoftwareInputPanel);
+ ic->filterEvent(openEvent);
+ delete openEvent;
+ }
}
/*!
--- a/src/hbcore/inputfw/hbinputkeymap.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputkeymap.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -252,17 +252,8 @@
const HbKeyboardMap *HbKeymap::keyboard(HbKeyboardType keyboard) const
{
HbKeyboardMap *keyboardMap = 0;
- HbKeyboardType newKb = keyboard;
- if (keyboard == HbKeyboardVirtual12KeyEmail ||
- keyboard == HbKeyboardVirtual12KeyUrl) {
- newKb = HbKeyboardTouchPortrait;
- }
- if (keyboard == HbKeyboardSctEmail ||
- keyboard == HbKeyboardSctUrl) {
- newKb = HbKeyboardSctPortrait;
- }
- if (mPrivate->mKeyboards.contains(newKb)) {
- keyboardMap = mPrivate->mKeyboards.value(newKb);
+ if (mPrivate->mKeyboards.contains(keyboard)) {
+ keyboardMap = mPrivate->mKeyboards.value(keyboard);
}
return keyboardMap;
}
--- a/src/hbcore/inputfw/hbinputkeymapfactory.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputkeymapfactory.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -30,6 +30,7 @@
#include <QLibrary>
#include <QTextStream>
#include <QVector>
+#include <QDebug>
#include "hbinputkeymap.h"
#include "hbinputsettingproxy.h"
@@ -102,7 +103,7 @@
bool HbKeymapFactoryPrivate::findKeymapFile(const HbInputLanguage &language, const QStringList &searchPaths, QFile &file) const
{
QString filename, latestVersionFilename;
- int maxVersionNumber = -1;
+ qreal maxVersionNumber = -1;
foreach(const QString &path, searchPaths) {
if (language.variant() == QLocale::AnyCountry) {
@@ -114,7 +115,7 @@
if (QFile::exists(filename)) {
file.setFileName(filename);
- qreal fileVersion = keymapVersion(file);
+ int fileVersion = keymapVersion(file);
if (fileVersion > maxVersionNumber) {
latestVersionFilename = filename;
maxVersionNumber = fileVersion;
@@ -204,9 +205,16 @@
keyboard->keys.append(mappedKey);
}
}
+ if (keyboard) {
+ // The last keyboard definition was not terminated properly, so it needs to be freed at this point
+ delete keyboard;
+ keyboard = 0;
+ qDebug() << "HbInputKeymapFactory: unterminated keyboard definition detected";
+ }
if (!isValid(keymap)) {
delete keymap;
keymap = 0;
+ qDebug() << "HbInputKeymapFactory: invalid keymap definition detected";
}
return keymap;
}
@@ -397,28 +405,30 @@
HbKeymapFactory *instance = HbKeymapFactory::instance();
bool romLanguagesCached = !instance->mPrivate->mRomLanguages.isEmpty();
QList<HbInputLanguage> languages;
- QStringList files;
- QStringList romFiles;
+ QStringList* files = new QStringList();
+ QStringList* romFiles = new QStringList();
foreach(const QString &path, HbInputSettingProxy::keymapPluginPaths()) {
if (path.left(2) == ":/" || path.left(2) == "z:") {
if (romLanguagesCached) {
continue;
}
QDir languagedir(path);
- romFiles += languagedir.entryList(QStringList(QString("*.txt")), QDir::Files);
+ *romFiles += languagedir.entryList(QStringList(QString("*.txt")), QDir::Files);
} else {
QDir languagedir(path);
- files += languagedir.entryList(QStringList(QString("*.txt")), QDir::Files);
+ *files += languagedir.entryList(QStringList(QString("*.txt")), QDir::Files);
}
}
if (romLanguagesCached) {
languages = instance->mPrivate->mRomLanguages;
} else {
- instance->mPrivate->parseFileNames(romFiles, languages);
+ instance->mPrivate->parseFileNames(*romFiles, languages);
instance->mPrivate->mRomLanguages = languages;
}
- instance->mPrivate->parseFileNames(files, languages);
+ instance->mPrivate->parseFileNames(*files, languages);
+ delete files;
+ delete romFiles;
return languages;
}
--- a/src/hbcore/inputfw/hbinputmethod.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmethod.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -404,7 +404,7 @@
return;
}
-
+
// attach focuswidget to prxoy inputcontext as proxy is
// the only inputcotext known to qt framework.
d->proxy()->QInputContext::setFocusWidget(widget);
@@ -814,7 +814,8 @@
}
/*!
-Wrapper.
+Returns true if automatic condititions for automatic upper case are met at
+current cursor position. Returns false if there isn't active editor.
*/
bool HbInputMethod::automaticTextCaseNeeded() const
{
--- a/src/hbcore/inputfw/hbinputmethod_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmethod_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -149,18 +149,10 @@
HbInputLanguage ret = mInputState.language();
if (ret.undefined()) {
- ret = HbInputSettingProxy::instance()->globalInputLanguage();
- if (mFocusObject) {
- if ((mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintLatinAlphabetOnly) &&
- !ret.isLatinAlphabetLanguage()) {
- // This is latin alphabet flagged editor, but the language isn't
- // latin alphabet language. Switch to english locally.
- ret = QLocale::English;
- }
- }
+ ret = findStateLanguage();
}
- return HbInputLanguage(ret);
+ return ret;
}
/*!
@@ -191,6 +183,7 @@
// the input mode indicates non-latin mode. Reject.
return false;
}
+
return true;
}
@@ -204,17 +197,19 @@
return false;
}
- if ((state.inputMode() & HbChineseModeMask) == 0) {
- HbEditorConstraints constraints = (HbEditorConstraints)editorConstraints();
- if ((state.textCase() == HbTextCaseUpper || state.textCase() == HbTextCaseAutomatic)
- && isLowerCaseOnlyEditor()) {
- return false;
- }
-
- if (state.textCase() == HbTextCaseLower
- && isUpperCaseOnlyEditor()
- && !(state.inputMode() & HbNumericModeMask)) {
- return false;
+ if ((state.inputMode() & HbChineseModeMask) == 0) {
+ if (state.textCase() == HbTextCaseLower) {
+ // Reject if text case is lower but the editor is
+ // configured as upper case only editor.
+ if (isUpperCaseOnlyEditor() && !(state.inputMode() & HbNumericModeMask)) {
+ return false;
+ }
+ } else if (state.textCase() != HbTextCaseNone) {
+ // Reject if text case is upper or automatic but the editor
+ // is configured as lower case only editor.
+ if (isLowerCaseOnlyEditor() && !(state.inputMode() & HbNumericModeMask)) {
+ return false;
+ }
}
}
@@ -223,40 +218,41 @@
/*!
\internal
-Finds state handler for given input state.
+Finds state handler for given input state. There has to be focus object.
*/
HbInputMethod *HbInputMethodPrivate::findStateHandler(HbInputState &state)
{
HbInputMethod *stateHandler = 0;
- if (mFocusObject &&
- (mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintIgnoreFocus)) {
- return HbInputMethodNull::Instance();
- }
-
- if (stateAllowedInEditor(state)) {
- HbInputMethodDescriptor preferredMethod = HbInputSettingProxy::instance()->preferredInputMethod();
- if (!preferredMethod.isEmpty()) {
- stateHandler = HbInputModeCache::instance()->loadInputMethod(preferredMethod);
- if (stateHandler && !HbInputModeCache::instance()->acceptsState(stateHandler, state)) {
- stateHandler = 0;
- }
+ if (mFocusObject) {
+ if (mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintIgnoreFocus) {
+ return HbInputMethodNull::Instance();
}
- if (!stateHandler) {
- stateHandler = HbInputModeCache::instance()->findStateHandler(state);
- }
+ if (stateAllowedInEditor(state)) {
+ HbInputMethodDescriptor preferredMethod = HbInputSettingProxy::instance()->preferredInputMethod(mFocusObject->orientation());
+ if (!preferredMethod.isEmpty()) {
+ stateHandler = HbInputModeCache::instance()->loadInputMethod(preferredMethod);
+ if (stateHandler && !HbInputModeCache::instance()->acceptsState(stateHandler, state)) {
+ stateHandler = 0;
+ }
+ }
- if (!stateHandler &&
- state.inputMode() == HbInputModeNumeric &&
- state.language() != QLocale::English &&
- mFocusObject &&
- (mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintFixedInputMode)) {
- // This is number only editor but there was no numeric handler
- // for specified language. Use default numeric hanlder
- // as a fallback.
- state.setLanguage(QLocale::English);
- stateHandler = HbInputModeCache::instance()->findStateHandler(state);
+ if (!stateHandler) {
+ stateHandler = HbInputModeCache::instance()->findStateHandler(state);
+ }
+
+ if (!stateHandler &&
+ state.inputMode() == HbInputModeNumeric &&
+ state.language() != QLocale::English &&
+ mFocusObject &&
+ (mFocusObject->editorInterface().inputConstraints() & HbEditorConstraintFixedInputMode)) {
+ // This is number only editor but there was no numeric handler
+ // for specified language. Use default numeric hanlder
+ // as a fallback.
+ state.setLanguage(QLocale::English);
+ stateHandler = HbInputModeCache::instance()->findStateHandler(state);
+ }
}
}
@@ -631,8 +627,6 @@
HbTextCase ret = HbTextCaseNone;
if (mFocusObject) {
- Qt::InputMethodHints hints = mFocusObject->inputMethodHints();
-
// Then handle the text case: find out what it should be and and if
// automatic text case is needed.
ret = (HbTextCase)mFocusObject->editorInterface().textCase();
@@ -653,7 +647,7 @@
}
// Then see if there are exceptions that override previous decisions.
- if (hints & Qt::ImhPreferUppercase) {
+ if (mFocusObject->inputMethodHints() & Qt::ImhPreferUppercase) {
ret = HbTextCaseUpper;
}
@@ -673,6 +667,8 @@
*/
HbInputModeType HbInputMethodPrivate::initialInputMode(const HbInputLanguage &language) const
{
+ Q_UNUSED(language);
+
HbInputModeType ret = HbInputModeNone;
if (mFocusObject) {
@@ -680,13 +676,12 @@
// This is fixed mode editor, always trust what editor interface gives us.
ret = (HbInputModeType)mFocusObject->editorInterface().mode();
} else {
- // Editor doesn't have mode asigned. Propose default mode.
- Qt::InputMethodHints hints = mFocusObject->inputMethodHints();
+ // Editor doesn't have mode asigned. Propose default mode.
if (mFocusObject->editorInterface().isNumericEditor()) {
// It is fixed numeric editor.
ret = HbInputModeNumeric;
} else {
- ret = defaultInputMode(language);
+ ret = HbInputModeDefault;
}
}
}
@@ -709,17 +704,6 @@
/*!
\internal
-Returns the default input mode for given language.
-*/
-HbInputModeType HbInputMethodPrivate::defaultInputMode(const HbInputLanguage &inputLanguage) const
-{
- Q_UNUSED(inputLanguage);
-
- return HbInputModeDefault;
-}
-
-/*!
-\internal
A convenience method for setting up the editor as digits only editor.
*/
void HbInputMethodPrivate::setUpFocusedObjectAsDigitsOnlyEditor()
@@ -867,7 +851,7 @@
// QGraphicsWidget is inside a graphics view which is not inside a HbMainWindow.
if (mInsideVanillaWindow) {
HbInputMainWindow *mainWindow = HbInputMainWindow::instance();
- mainWindow->hideInputWindow();
+ mainWindow->hideInputWindow();
}
}
@@ -945,7 +929,9 @@
if (mFocusLocked == false) {
// Focus out, but don't delete focus object. We're going to need signals from
// it when the orientation sequence is over.
- q->disconnect(mFocusObject->object(), SIGNAL(destroyed(QObject *)), q, SLOT(editorDeleted(QObject *)));
+ if (mFocusObject) {
+ q->disconnect(mFocusObject->object(), SIGNAL(destroyed(QObject *)), q, SLOT(editorDeleted(QObject *)));
+ }
q->focusLost(false);
hideMainWindow();
@@ -967,12 +953,11 @@
/*!
\internal
-Creates new focus object and connects the signals.
+Creates new focus object.
*/
HbInputFocusObject *HbInputMethodPrivate::createAndSetupFocusObject(QObject *editorWidget)
{
HbInputFocusObject *fo = new HbInputFocusObject(editorWidget);
-
return fo;
}
--- a/src/hbcore/inputfw/hbinputmethod_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmethod_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -25,15 +25,14 @@
#ifndef HB_INPUT_METHOD_P_H
#define HB_INPUT_METHOD_P_H
-#include <QString>
#include <QPointer>
#include <hbinputmodeproperties.h>
#include <hbinputstate.h>
#include <hbinputlanguage.h>
+
#include "hbinputcontextproxy_p.h"
-class HbInputStateMachine;
class HbInputFilter;
class HbInputMethod;
class HbInputMainWindow;
@@ -81,8 +80,7 @@
void editorRootState(HbInputState &result) const;
void constructLatinState(HbInputState &result) const;
HbTextCase initialTextCase(HbInputModeType inputMode) const;
- HbInputModeType initialInputMode(const HbInputLanguage &language) const;
- HbInputModeType defaultInputMode(const HbInputLanguage &inputLanguage) const;
+ HbInputModeType initialInputMode(const HbInputLanguage &language) const;
void setUpFocusedObjectAsDigitsOnlyEditor();
void setUpFocusedObjectAsFormattedNumberEditor();
void setUpFocusedObjectAsPhoneNumberEditor();
--- a/src/hbcore/inputfw/hbinputmodecache.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputmodecache.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -259,20 +259,6 @@
void HbInputModeCachePrivate::updateMonitoredPaths()
{
- QStringList watchedDirs = mWatcher->directories();
- if (!watchedDirs.isEmpty()) {
- mWatcher->removePaths(watchedDirs);
- }
-
- QStringList paths = HbInputSettingProxy::instance()->inputMethodPluginPaths();
- foreach(const QString &path, paths) {
- QDir dir(path);
- if (!dir.exists() && path.left(1) == "f") {
- mWatcher->addPath(QString("f:") + QDir::separator());
- } else {
- mWatcher->addPath(path);
- }
- }
}
bool HbInputModeCachePrivate::isMappedLanguage(const HbInputLanguage &language) const
--- a/src/hbcore/inputfw/hbinputsettingproxy.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputsettingproxy.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -424,7 +424,6 @@
if (aObserver) {
connect(this, SIGNAL(globalInputLanguageChanged(const HbInputLanguage &)), aObserver, SLOT(globalInputLanguageChanged(const HbInputLanguage &)));
connect(this, SIGNAL(globalSecondaryInputLanguageChanged(const HbInputLanguage &)), aObserver, SLOT(globalSecondaryInputLanguageChanged(const HbInputLanguage &)));
- connect(this, SIGNAL(activeKeyboardChanged(HbKeyboardType)), aObserver, SLOT(activeKeyboardChanged(HbKeyboardType)));
}
}
@@ -438,7 +437,6 @@
if (aObserver) {
disconnect(this, SIGNAL(globalInputLanguageChanged(const HbInputLanguage &)), aObserver, SLOT(globalInputLanguageChanged(const HbInputLanguage &)));
disconnect(this, SIGNAL(globalSecondaryInputLanguageChanged(const HbInputLanguage &)), aObserver, SLOT(globalSecondaryInputLanguageChanged(const HbInputLanguage &)));
- disconnect(this, SIGNAL(activeKeyboardChanged(HbKeyboardType)), aObserver, SLOT(activeKeyboardChanged(HbKeyboardType)));
}
}
@@ -495,25 +493,8 @@
}
/*!
-\deprecated HbInputSettingProxy::activeHwKeyboard() const
- is deprecated. Use HbInputSettingProxy::activeKeyboard(Qt::Orientation) instead.
-Returns active hardware keyboard type.
+Stores speed attribute for handwriting recognition.
*/
-HbKeyboardType HbInputSettingProxy::activeHwKeyboard() const
-{
- return HbKeyboardNone;
-}
-
-/*!
-\deprecated HbInputSettingProxy::activeTouchKeyboard() const
- is deprecated. Use HbInputSettingProxy::activeKeyboard(Qt::Orientation) instead.
-Returns active touch keyboard type.
-*/
-HbKeyboardType HbInputSettingProxy::activeTouchKeyboard() const
-{
- return HbKeyboardNone;
-}
-
void HbInputSettingProxy::setHwrWritingSpeed(HbHwrWritingSpeed speed)
{
Q_D(HbInputSettingProxy);
@@ -532,6 +513,9 @@
}
}
+/*!
+Returns handwriting recignition speed attribute.
+*/
HbHwrWritingSpeed HbInputSettingProxy::hwrWritingSpeed() const
{
Q_D(const HbInputSettingProxy);
@@ -545,6 +529,9 @@
return res;
}
+/*!
+Strores detail mode for Chinese CangJie input mode.
+*/
void HbInputSettingProxy::setDetailedCangjieMode(HbCangjieDetailMode cangjieDetail)
{
Q_D(HbInputSettingProxy);
@@ -563,6 +550,9 @@
}
}
+/*!
+Returns detail mode for Chinese CangJie input mode.
+*/
HbCangjieDetailMode HbInputSettingProxy::detailedCangjieMode() const
{
Q_D(const HbInputSettingProxy);
@@ -577,16 +567,6 @@
}
/*!
-\deprecated HbInputSettingProxy::activeKeyboard() const
- is deprecated. Use HbInputSettingProxy::activeKeyboard(Qt::Orientation) instead.
-*/
-HbKeyboardType HbInputSettingProxy::activeKeyboard() const
-{
- Q_D(const HbInputSettingProxy);
- return activeKeyboard(d->inputFrameworkScreenOrientation());
-}
-
-/*!
Returns active keyboard for given screen oriention.
*/
HbKeyboardType HbInputSettingProxy::activeKeyboard(Qt::Orientation orientation) const
@@ -635,30 +615,6 @@
}
/*!
-\deprecated HbInputSettingProxy::preferredInputMethod() const
- is deprecated. Use HbInputSettingProxy::preferredInputMethod(Qt::Orientation) const instead.
-*/
-HbInputMethodDescriptor HbInputSettingProxy::preferredInputMethod() const
-{
- Q_D(const HbInputSettingProxy);
-
- HbInputMethodDescriptor result;
-
- HbSettingProxyInternalData *prData = d->proxyData();
- if (prData) {
- d->lock();
- if (d->inputFrameworkScreenOrientation() == Qt::Horizontal) {
- result = prData->iPreferredMethodHorizontal.descriptor();
- } else {
- result = prData->iPreferredMethodVertical.descriptor();
- }
- d->unlock();
- }
-
- return result;
-}
-
-/*!
Returns custom data associated to preferred input method.
\sa setPreferredInputMethod
@@ -756,33 +712,6 @@
}
/*!
-\deprecated HbInputSettingProxy::setActiveHwKeyboard(HbKeyboardType)
- is deprecated.
-*/
-void HbInputSettingProxy::setActiveHwKeyboard(HbKeyboardType keyboard)
-{
- Q_UNUSED(keyboard);
-}
-
-/*!
-\deprecated HbInputSettingProxy::setActiveTouchKeyboard(HbKeyboardType)
- is deprecated.
-*/
-void HbInputSettingProxy::setActiveTouchKeyboard(HbKeyboardType keyboard)
-{
- Q_UNUSED(keyboard);
-}
-
-/*!
-\deprecated HbInputSettingProxy::setActiveKeyboard(HbKeyboardType)
- is deprecated.
-*/
-void HbInputSettingProxy::setActiveKeyboard(HbKeyboardType keyboard)
-{
- Q_UNUSED(keyboard);
-}
-
-/*!
Returns the status of predictive input feature. Returns true if any one of given
keyboard types has the prediction enabled. An editor instance may still forbid
predictive input feature, even if the device wide status allows it.
@@ -1117,73 +1046,6 @@
}
/*!
-\deprecated HbInputSettingProxy::activeCustomInputMethod() const
- is deprecated. Use preferredInputMethod instead.
-Returns active custom input method. The pluginNameAndPath field is empty if no custom input methid is active.
-
-\sa setActiveCustomInputMethod
-*/
-HbInputMethodDescriptor HbInputSettingProxy::activeCustomInputMethod() const
-{
- return HbInputMethodDescriptor();
-}
-
-/*!
-\deprecated HbInputSettingProxy::setActiveCustomInputMethod(const HbInputMethodDescriptor&)
- is deprecated. Use setPreferredInputMethod instead.
-\sa activeCustomInputMethod
-*/
-void HbInputSettingProxy::setActiveCustomInputMethod(const HbInputMethodDescriptor &inputMethod)
-{
- Q_UNUSED(inputMethod)
-}
-
-/*!
-\deprecated HbInputSettingProxy::screenOrientation()
- is deprecated. Use HbInputFocusObject::screenOrientation() instead.
-*/
-Qt::Orientation HbInputSettingProxy::screenOrientation()
-{
- Q_D(HbInputSettingProxy);
- return d->inputFrameworkScreenOrientation();
-}
-
-/*!
-\deprecated HbInputSettingProxy::setScreenOrientation(Qt::Orientation)
- is deprecated.
-*/
-void HbInputSettingProxy::setScreenOrientation(Qt::Orientation screenOrientation)
-{
- Q_UNUSED(screenOrientation);
-}
-
-/*!
-\deprecated HbInputSettingProxy::notifyScreenOrientationChange()
- is deprecated.
-*/
-void HbInputSettingProxy::notifyScreenOrientationChange()
-{
-}
-
-/*!
-\deprecated HbInputSettingProxy::orientationChangeCompleted() const
- is deprecated.
-*/
-bool HbInputSettingProxy::orientationChangeCompleted() const
-{
- return false;
-}
-
-/*!
-\deprecated HbInputSettingProxy::initializeOrientation(Qt::Orientation)
- is deprecated.
-*/
-void HbInputSettingProxy::initializeOrientation(Qt::Orientation screenOrientation)
-{
- Q_UNUSED(screenOrientation);
-}
-
-/*!
Returns the status of regional input correction feature.
\sa enableRegionalCorrection.
@@ -1386,4 +1248,55 @@
return res;
}
+/*!
+Set the variable to true if the default keypad is western for chinese input method
+
+\sa useWesternDefaultKeypadForChinese
+*/
+void HbInputSettingProxy::setWesternDefaultKeypadForChinese(bool set)
+{
+ Q_D(const HbInputSettingProxy);
+
+ HbSettingProxyInternalData *prData = d->proxyData();
+ if (prData) {
+ bool notify = false;
+ d->lock();
+ if(prData->iUseWesternDefaultKeypadForChinese != set) {
+ prData->iUseWesternDefaultKeypadForChinese = set;
+ notify = true;
+ }
+ d->unlock();
+ if(notify) {
+ emit chineseDefaultKeypadChanged(prData->iUseWesternDefaultKeypadForChinese);
+ }
+ }
+}
+
+/*!
+Get whether the default keypad is western for chinese input method
+
+\sa setWesternDefaultKeypadForChinese
+*/
+bool HbInputSettingProxy::useWesternDefaultKeypadForChinese() const
+{
+ Q_D(const HbInputSettingProxy);
+
+ HbSettingProxyInternalData *prData = d->proxyData();
+
+ if (prData) {
+ return prData->iUseWesternDefaultKeypadForChinese;
+ }
+
+ return false;
+}
+
+/*!
+\deprecated HbInputSettingProxy::setActiveKeyboard(HbKeyboardType)
+ is deprecated.
+*/
+void HbInputSettingProxy::setActiveKeyboard(HbKeyboardType keyboard)
+{
+ Q_UNUSED(keyboard);
+}
+
// End of file
--- a/src/hbcore/inputfw/hbinputsettingproxy.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputsettingproxy.h Thu Sep 02 20:44:51 2010 +0300
@@ -58,16 +58,10 @@
void disconnectObservingObject(QObject *observer);
HbInputLanguage globalInputLanguage() const;
void availableHwKeyboard(QList<HbKeyboardType>& listOfAvailableKeyboards) const;
- HbInputLanguage globalSecondaryInputLanguage() const;
- HbKeyboardType activeKeyboard() const;
- HbKeyboardType activeKeyboard(Qt::Orientation orientation) const;
- HbKeyboardType activeHwKeyboard() const;
- HbKeyboardType activeTouchKeyboard() const;
+ HbInputLanguage globalSecondaryInputLanguage() const;
+ HbKeyboardType activeKeyboard(Qt::Orientation orientation) const;
void setGlobalInputLanguage(const HbInputLanguage &langauge);
- void setGlobalSecondaryInputLanguage(const HbInputLanguage &language);
- void setActiveKeyboard(HbKeyboardType keyboard);
- void setActiveHwKeyboard(HbKeyboardType keyboard);
- void setActiveTouchKeyboard(HbKeyboardType keyboard);
+ void setGlobalSecondaryInputLanguage(const HbInputLanguage &language);
bool predictiveInputStatus(HbKeyboardSettingFlags keyboardType) const;
void setPredictiveInputStatus(HbKeyboardSettingFlags keyboardType, bool newStatus);
bool predictiveInputStatusForActiveKeyboard() const;
@@ -77,14 +71,7 @@
bool automaticTextCasingForQwerty();
void setAutomaticTextCasingForQwerty(bool status);
void setCharacterPreviewForQwerty(bool previewEnabled);
- bool isCharacterPreviewForQwertyEnabled();
- HbInputMethodDescriptor activeCustomInputMethod() const;
- void setActiveCustomInputMethod(const HbInputMethodDescriptor &inputMethod);
- Qt::Orientation screenOrientation();
- void setScreenOrientation(Qt::Orientation screenOrientation);
- void notifyScreenOrientationChange();
- bool orientationChangeCompleted() const;
- void initializeOrientation(Qt::Orientation screenOrientation);
+ bool isCharacterPreviewForQwertyEnabled();
bool regionalCorrectionEnabled();
void enableRegionalCorrection(bool status);
void setKeypressTimeout(int timeout);
@@ -95,26 +82,24 @@
HbTypingCorrectionLevel typingCorrectionLevel() const;
void setPrimaryCandidateMode(HbPrimaryCandidateMode mode);
HbPrimaryCandidateMode primaryCandidateMode() const;
- HbInputMethodDescriptor preferredInputMethod(Qt::Orientation orientation) const;
- HbInputMethodDescriptor preferredInputMethod() const;
+ HbInputMethodDescriptor preferredInputMethod(Qt::Orientation orientation) const;
QByteArray preferredInputMethodCustomData(Qt::Orientation orientation) const;
void setPreferredInputMethod(Qt::Orientation orientation, const HbInputMethodDescriptor &inputMethod, const QByteArray &customData = QByteArray());
void setHwrWritingSpeed(HbHwrWritingSpeed speed);
HbHwrWritingSpeed hwrWritingSpeed() const;
void setDetailedCangjieMode(HbCangjieDetailMode cangjieDetail);
HbCangjieDetailMode detailedCangjieMode() const;
+ void setWesternDefaultKeypadForChinese(bool useWestern);
+ bool useWesternDefaultKeypadForChinese() const;
+
+ void setActiveKeyboard(HbKeyboardType keyboard);
signals:
void globalInputLanguageChanged(const HbInputLanguage &newLanguage);
- void globalSecondaryInputLanguageChanged(const HbInputLanguage &newLanguage);
- void activeKeyboardChanged(HbKeyboardType newKeyboard);
- void activeHwKeyboardChanged(HbKeyboardType newKeyboard);
- void activeTouchKeyboardChanged(HbKeyboardType newKeyboard);
+ void globalSecondaryInputLanguageChanged(const HbInputLanguage &newLanguage);
void predictiveInputStateChanged(HbKeyboardSettingFlags keyboardType, bool newState);
void automaticTextCasingStateForQwertyChanged(bool newState);
- void characterPreviewStateForQwertyChanged(bool newState);
- void orientationAboutToChange();
- void orientationChanged(Qt::Orientation orientation);
+ void characterPreviewStateForQwertyChanged(bool newState);
void regionalCorretionStatusChanged(bool newStatus);
void keypressTimeoutChanged(int newTimeout);
void autocompletionStateChanged(HbKeyboardSettingFlags keyboardType, bool newState);
@@ -122,6 +107,7 @@
void primaryCandidateModeChanged(HbPrimaryCandidateMode newMode);
void hwrWritingSpeedChanged(HbHwrWritingSpeed speed);
void detailedCangjieModeChanged(HbCangjieDetailMode);
+ void chineseDefaultKeypadChanged(bool toWestern);
public slots:
void togglePrediction();
--- a/src/hbcore/inputfw/hbinputsettingproxy_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/inputfw/hbinputsettingproxy_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -32,7 +32,7 @@
#include "hbinputmethoddescriptor.h"
#include "hbinputlanguage.h"
-const int HbProxyDataRequiredVersion = 20;
+const int HbProxyDataRequiredVersion = 22;
const QString KInputSettingProxyKey("HbInputSettingProxy");
const unsigned int HbActiveMethodNameMax = 255;
const unsigned int HbActiveMethodKeyMax = 64;
@@ -83,6 +83,7 @@
HbSettingProxyInputMethodDescriptor iPreferredMethodVertical;
HbHwrWritingSpeed iHwrSpeed;
HbCangjieDetailMode iCangjieMode;
+ bool iUseWesternDefaultKeypadForChinese;
};
class HB_CORE_PRIVATE_EXPORT HbInputSettingProxyPrivate
--- a/src/hbcore/primitives/hbiconitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbiconitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -29,6 +29,7 @@
#include "hbicon_p.h"
#include "hboogmwatcher_p.h"
#include "hbinstance_p.h"
+#include "hbiconengine_p.h"
#include <QPainter>
#include <QStyleOptionGraphicsItem>
@@ -112,6 +113,16 @@
bool HbIconItemPrivate::outlinesEnabled = false;
+static void asyncReady(void *param)
+{
+ HbIconItem *item = static_cast<HbIconItem *>(param);
+ HbIconItemPrivate *d = HbIconItemPrivate::d_ptr(item);
+ bool doUpdate = d->mAsyncFilter ? !d->mAsyncFilter(item, d->mAsyncFilterParam) : true;
+ if (doUpdate) {
+ item->update();
+ }
+}
+
HbIconItemPrivate::HbIconItemPrivate(const HbIcon &icon) :
mIcon(icon),
mAnimator(),
@@ -120,7 +131,10 @@
mState(HbIconItem::defaultState),
mMode(HbIconItem::defaultMode),
mClearCachedRect(true),
- mIconScalingEnabled(true)
+ mIconScalingEnabled(true),
+ mAsync(false),
+ mAsyncFilter(0),
+ mAsyncFilterParam(0)
{
q_ptr = 0;
}
@@ -137,7 +151,9 @@
// possibility of detaching. Doing it afterwards would lead to
// colorization errors as the themed color might potentially be set for
// a different icon engine, not for the one that is used in painting.
- HbIconPrivate::d_ptr_detached(&mIcon)->setThemedColor(mThemedColor);
+ HbIconPrivate *p = HbIconPrivate::d_ptr_detached(&mIcon);
+ p->setThemedColor(mThemedColor);
+ p->setAsync(mAsync, asyncReady, q);
}
const QRectF boundingRect = q->rect();
if (!boundingRect.size().isEmpty()) {
@@ -153,7 +169,9 @@
Q_Q(HbIconItem);
if (mIconRect.isValid()) {
if (!mIcon.isNull()) {
- HbIconPrivate::d_ptr_detached(&mIcon)->setThemedColor(mThemedColor);
+ HbIconPrivate *p = HbIconPrivate::d_ptr_detached(&mIcon);
+ p->setThemedColor(mThemedColor);
+ p->setAsync(mAsync, asyncReady, q);
}
mAnimator.setIcon(mIcon);
}
@@ -174,6 +192,27 @@
}
/*!
+ Requests clearStoredIconContent() for the currently set icon.
+*/
+void HbIconItemPrivate::clearStoredIconContent()
+{
+ HbIconPrivate::d_ptr(&mIcon)->clearStoredIconContent();
+}
+
+/*!
+ Installs a filter for the async-load-ready callbacks.
+
+ When non-null, the filter is called before invoking update() on the
+ icon item, and if the filter returns true, the update() call is
+ suppressed.
+*/
+void HbIconItemPrivate::setAsyncCallbackFilter(AsyncCallbackFilter filter, void *filterParam)
+{
+ mAsyncFilter = filter;
+ mAsyncFilterParam = filterParam;
+}
+
+/*!
Constructs a new HbIconItem with \a iconName and \a parent.
\param iconName the name of the icon.
See HbIcon for a description of how the icon name and the icon image filename are related.
@@ -461,7 +500,26 @@
d->updateIconItem();
}
}
-
+
+/*!
+ This function can be used to enable asynchronous icon data retrieval.
+
+ It has no effect if called after the first paint so it needs to be called
+ immediately after creating the HbIconItem instance.
+
+ While the data is not available empty content will be painted.
+
+ \sa async
+ */
+void HbIconItem::setAsync(bool async)
+{
+ Q_D(HbIconItem);
+ if (d->mAsync != async) {
+ d->mAsync = async;
+ d->updateIconItem();
+ }
+}
+
/*!
Sets the new icon name for this HbIconItem for \a mode and \a state. If iconName is already set in
HbIconItem then it will be replaced with this new iconName.
@@ -647,7 +705,19 @@
Q_D(const HbIconItem);
return d->mIconScalingEnabled;
}
-
+
+/*!
+ \return the current setting for asynchronous icon data retrieval.
+ By default the value is false (i.e. disabled).
+
+ \sa setAsync
+ */
+bool HbIconItem::async() const
+{
+ Q_D(const HbIconItem);
+ return d->mAsync;
+}
+
/*!
* Refer HbIcon::isNull()
*/
@@ -667,14 +737,22 @@
Q_UNUSED(widget)
Q_UNUSED(option)
Q_D(HbIconItem);
+
+ if (d->mIcon.isNull()) {
+ return;
+ }
+
if (d->mClearCachedRect){
d->recalculateBoundingRect();
}
+
if (!d->mBoundingRect.isEmpty()){
if (d->mIconRect != d->mBoundingRect) {
d->mIconRect = d->mBoundingRect;
if (!d->mIcon.isNull()) {
- HbIconPrivate::d_ptr_detached(&d->mIcon)->setThemedColor(d->mThemedColor);
+ HbIconPrivate *p = HbIconPrivate::d_ptr_detached(&d->mIcon);
+ p->setThemedColor(d->mThemedColor);
+ p->setAsync(d->mAsync, asyncReady, this);
}
d->mIcon.setSize(d->mIconScalingEnabled ? d->mIconRect.size() : d->mIcon.defaultSize());
d->mAnimator.setIcon(d->mIcon);
@@ -686,6 +764,7 @@
d->mAspectRatioMode, d->mAlignment,
d->mMode, d->mState);
}
+
if (HbIconItemPrivate::outlinesEnabled) {
painter->setBrush(QBrush(QColor(0, 255, 0, 50)));
painter->drawRect(contentsRect());
@@ -762,12 +841,4 @@
return d->mAnimator;
}
-/*!
- Requests clearStoredIconContent() for the currently set icon.
- */
-void HbIconItemPrivate::clearStoredIconContent()
-{
- HbIconPrivate::d_ptr(&mIcon)->clearStoredIconContent();
-}
-
// end of file
--- a/src/hbcore/primitives/hbiconitem.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbiconitem.h Thu Sep 02 20:44:51 2010 +0300
@@ -56,6 +56,7 @@
void setMirroringMode(HbIcon::MirroringMode mode);
void setBrush(const QBrush &brush);
void setIconScaling(bool enabled = true);
+ void setAsync(bool async = true);
void setColor(const QColor &color);
QColor color() const;
@@ -72,6 +73,7 @@
HbIcon::MirroringMode mirroringMode() const;
QBrush brush() const;
bool iconScaling() const;
+ bool async() const;
bool isNull() const;
--- a/src/hbcore/primitives/hbiconitem_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbiconitem_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -34,21 +34,27 @@
#include <QBrush>
#include <QObject>
-class HbIconItemPrivate : public HbWidgetBasePrivate
+class HB_CORE_PRIVATE_EXPORT HbIconItemPrivate : public HbWidgetBasePrivate
{
Q_DECLARE_PUBLIC(HbIconItem)
public:
HbIconItemPrivate(const HbIcon &icon);
~HbIconItemPrivate();
+
void clearStoredIconContent();
void updateIconItem();
void updateIconParams();
void recalculateBoundingRect() const;
void setThemedColor(const QColor &color);
+
+ typedef bool (*AsyncCallbackFilter)(HbIconItem *target, void *param);
+ void setAsyncCallbackFilter(AsyncCallbackFilter filter, void *filterParam);
+
static HbIconItemPrivate *d_ptr(HbIconItem *item) {
return item->d_func();
}
+
HbIcon mIcon;
HbIconAnimator mAnimator;
Qt::Alignment mAlignment;
@@ -62,6 +68,9 @@
mutable QRectF mAdjustedRect;
mutable bool mClearCachedRect;
bool mIconScalingEnabled;
+ bool mAsync;
+ AsyncCallbackFilter mAsyncFilter;
+ void *mAsyncFilterParam;
static bool outlinesEnabled;
};
--- a/src/hbcore/primitives/hbprogresstrackitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbprogresstrackitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -76,8 +76,8 @@
}
void HbProgressTrackItem::paint ( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget )
{
- Q_UNUSED(widget);
- Q_UNUSED(option);
+ Q_UNUSED(widget);
+ Q_UNUSED(option);
if(boundingRect()!= parentItem()->boundingRect()){
setGeometry(parentItem()->boundingRect());
@@ -105,8 +105,8 @@
}
else{
- qreal start = boundingRect().bottom() -(qreal)boundingRect().height()*((value - minimum)/(qreal) (mDiff));
- maskRect = QRectF(
+ qreal start = boundingRect().bottom() -(qreal)boundingRect().height()*((value - minimum)/(qreal) (mDiff));
+ maskRect = QRectF(
(qreal)boundingRect().topLeft().x(),
start,
(qreal)boundingRect().width(),
@@ -116,9 +116,9 @@
}
}
-// QPainterPath path;
-// path.addRect(maskRect);
-// frameDrawer().setClipPath(path);
+// QPainterPath path;
+// path.addRect(maskRect);
+// frameDrawer().setClipPath(path);
QPixmap pixmap(boundingRect().size().toSize());
pixmap.fill(Qt::white);
QPainter painter1;
--- a/src/hbcore/primitives/hbrepeaticonitem_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbrepeaticonitem_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -47,11 +47,11 @@
mOffset(0),
mRepeatPixmap(0),
mOrientation(Qt::Horizontal),
- mConnected(false)
+ mConnected(false)
{
- connect(&mTimer,SIGNAL(timeout()),this,SLOT(updateAnimation()));
-
+ connect(&mTimer,SIGNAL(timeout()),this,SLOT(updateAnimation()));
+
}
@@ -62,7 +62,7 @@
mMask(QPixmap()),
mOffset(0),
mRepeatPixmap(0),
- mConnected(false)
+ mConnected(false)
{
connect(&mTimer,SIGNAL(timeout()),this,SLOT(updateAnimation()));
}
@@ -112,7 +112,7 @@
*/
void HbRepeatIconItem::updateAnimation()
{
- mConnected = true;
+ mConnected = true;
if(mIcon.width()>0 && mIcon.height()>0){
if(mOrientation == Qt::Horizontal){
mOffset = (mOffset+2) % (int)mIcon.width();
@@ -129,15 +129,15 @@
{
Q_UNUSED(option);
Q_UNUSED(widget);
- if(!mConnected) {
- connect(&mTimer,SIGNAL(timeout()),this,SLOT(updateAnimation()));
- }
- // Chec the status of timer
- if (!mTimer.isActive()) {
- mTimer.start(122);
- }
-
- if(mParentRect != parentItem()->boundingRect()) {
+ if(!mConnected) {
+ connect(&mTimer,SIGNAL(timeout()),this,SLOT(updateAnimation()));
+ }
+ // Chec the status of timer
+ if (!mTimer.isActive()) {
+ mTimer.start(122);
+ }
+
+ if(mParentRect != parentItem()->boundingRect()) {
resizeEvent(0); // need to regenerate optimized pixmap.
}
QPixmap newblit(boundingRect().size().toSize());
--- a/src/hbcore/primitives/hbrepeaticonitem_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbrepeaticonitem_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -65,7 +65,7 @@
QPixmap* mRepeatPixmap;
QRectF mParentRect;
Qt::Orientation mOrientation;
- bool mConnected;
+ bool mConnected;
};
#endif // HB_REPEATICONITEM_H
--- a/src/hbcore/primitives/hbrepeatitem_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbrepeatitem_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -42,18 +42,18 @@
mMode(Qt::KeepAspectRatio),
mOffset(0),
mRepeatPixmap(0),
- mNumberOfRepeating(5),
- mOrientation(Qt::Horizontal),
- inverted(false),
- mRectWidth(0),
- mRectHeight(0),
- mBaseIconWidth(0),
- mBaseIconHeight(0),
- mBaseResizeWidth(0),
- mBaseResizeHeight(0),
- multiFactor(0)
+ mNumberOfRepeating(5),
+ mOrientation(Qt::Horizontal),
+ inverted(false),
+ mRectWidth(0),
+ mRectHeight(0),
+ mBaseIconWidth(0),
+ mBaseIconHeight(0),
+ mBaseResizeWidth(0),
+ mBaseResizeHeight(0),
+ multiFactor(0)
{
-
+
}
HbRepeatItem::HbRepeatItem(const QString& name,QGraphicsItem *parent):
@@ -62,97 +62,97 @@
mMode(Qt::KeepAspectRatio),
mOffset(0),
mRepeatPixmap(0),
- mNumberOfRepeating(5),
- mOrientation(Qt::Horizontal),
- inverted(false),
- mRectWidth(0),
- mRectHeight(0),
- mBaseIconWidth(0),
- mBaseIconHeight(0),
- mBaseResizeWidth(0),
- mBaseResizeHeight(0),
- multiFactor(0)
+ mNumberOfRepeating(5),
+ mOrientation(Qt::Horizontal),
+ inverted(false),
+ mRectWidth(0),
+ mRectHeight(0),
+ mBaseIconWidth(0),
+ mBaseIconHeight(0),
+ mBaseResizeWidth(0),
+ mBaseResizeHeight(0),
+ multiFactor(0)
{
- if(!mIcon.isNull()) {
- mBaseIconWidth = mIcon.width();
- mBaseIconHeight = mIcon.height();
- }
+ if(!mIcon.isNull()) {
+ mBaseIconWidth = mIcon.width();
+ mBaseIconHeight = mIcon.height();
+ }
}
void HbRepeatItem::resizeEvent ( QGraphicsSceneResizeEvent * event )
{
- Q_UNUSED(event);
- createPixmap(boundingRect());
+ Q_UNUSED(event);
+ createPixmap(boundingRect());
}
void HbRepeatItem::createPixmap(QRectF rect)
{
- if(!mIcon.isNull()) {
- qreal parentWidth = rect.size().width();
- qreal parentHeight = rect.size().height();
- if(parentWidth !=0) {
- qreal tempWidth = mNumberOfRepeating*mBaseIconWidth;
- multiFactor = (qreal) parentWidth / tempWidth;
- qreal tempHeight = multiFactor * mBaseIconHeight;
- if(tempHeight > parentHeight)
- {
- multiFactor = (qreal) parentHeight / mBaseIconHeight;
- }
- //Convert multiple factor to two digit;
- int tempFactor = (int) (10 *multiFactor);
- multiFactor = (qreal) tempFactor / 10;
- mBaseResizeWidth = (int)(mBaseIconWidth*multiFactor);
- mBaseResizeHeight = (int)(mBaseIconHeight*multiFactor);
+ if(!mIcon.isNull()) {
+ qreal parentWidth = rect.size().width();
+ qreal parentHeight = rect.size().height();
+ if(parentWidth !=0) {
+ qreal tempWidth = mNumberOfRepeating*mBaseIconWidth;
+ multiFactor = (qreal) parentWidth / tempWidth;
+ qreal tempHeight = multiFactor * mBaseIconHeight;
+ if(tempHeight > parentHeight)
+ {
+ multiFactor = (qreal) parentHeight / mBaseIconHeight;
+ }
+ //Convert multiple factor to two digit;
+ int tempFactor = (int) (10 *multiFactor);
+ multiFactor = (qreal) tempFactor / 10;
+ mBaseResizeWidth = (int)(mBaseIconWidth*multiFactor);
+ mBaseResizeHeight = (int)(mBaseIconHeight*multiFactor);
- mIcon.setSize(QSizeF(mBaseResizeWidth,mBaseResizeHeight));
- if(mRepeatPixmap) {
- delete mRepeatPixmap;
- mRepeatPixmap =0;
- }
- mRectWidth = mBaseResizeWidth * mNumberOfRepeating;
- mRectHeight = mBaseResizeHeight;
- if(mOrientation == Qt::Horizontal){
- mRepeatPixmap = new QPixmap(mRectWidth,mRectHeight);
- mRepeatPixmap->fill(Qt::transparent);
- QPainter p2;
- p2.begin(mRepeatPixmap);
- if(mBaseIconWidth > 0){
- for(qreal i = 0 ; i < mRectWidth ; i += mBaseResizeWidth) {
- mIcon.paint(&p2, QRectF(i, 0, mBaseResizeWidth, mBaseResizeHeight), mMode);
- }
- }
- p2.end();
- }
- else{
- // TODO ANZ
- }
- setGeometry(0,0,mRectWidth,mRectHeight);//set geometry of QGI
- update();
- }
- }
+ mIcon.setSize(QSizeF(mBaseResizeWidth,mBaseResizeHeight));
+ if(mRepeatPixmap) {
+ delete mRepeatPixmap;
+ mRepeatPixmap =0;
+ }
+ mRectWidth = mBaseResizeWidth * mNumberOfRepeating;
+ mRectHeight = mBaseResizeHeight;
+ if(mOrientation == Qt::Horizontal){
+ mRepeatPixmap = new QPixmap(mRectWidth,mRectHeight);
+ mRepeatPixmap->fill(Qt::transparent);
+ QPainter p2;
+ p2.begin(mRepeatPixmap);
+ if(mBaseIconWidth > 0){
+ for(qreal i = 0 ; i < mRectWidth ; i += mBaseResizeWidth) {
+ mIcon.paint(&p2, QRectF(i, 0, mBaseResizeWidth, mBaseResizeHeight), mMode);
+ }
+ }
+ p2.end();
+ }
+ else{
+ // TODO ANZ
+ }
+ setGeometry(0,0,mRectWidth,mRectHeight);//set geometry of QGI
+ update();
+ }
+ }
}
HbRepeatItem::~HbRepeatItem()
{
- if(mRepeatPixmap ) {
- delete mRepeatPixmap;
- mRepeatPixmap =0;
- }
+ if(mRepeatPixmap ) {
+ delete mRepeatPixmap;
+ mRepeatPixmap =0;
+ }
}
void HbRepeatItem::setName(const QString& name)
{
- if(!mIcon.isNull()){
- if (mIcon.iconName() == name) {
- return;
- }
- }
+ if(!mIcon.isNull()){
+ if (mIcon.iconName() == name) {
+ return;
+ }
+ }
mIcon.setIconName(name);
- mBaseIconWidth = mIcon.width();
- mBaseIconHeight = mIcon.height();
- createPixmap(boundingRect());
+ mBaseIconWidth = mIcon.width();
+ mBaseIconHeight = mIcon.height();
+ createPixmap(boundingRect());
}
void HbRepeatItem::setInverted(bool inversion)
{
- inverted = inversion;
+ inverted = inversion;
}
void HbRepeatItem::setAspectRatioMode(Qt::AspectRatioMode mode)
@@ -164,21 +164,21 @@
{
Q_UNUSED(option);
Q_UNUSED(widget);
- if(mRepeatPixmap != 0) {
- if(boundingRect().isValid()) {
- painter->drawPixmap(QPointF(0,0),*mRepeatPixmap);
- }
- }
+ if(mRepeatPixmap != 0) {
+ if(boundingRect().isValid()) {
+ painter->drawPixmap(QPointF(0,0),*mRepeatPixmap);
+ }
+ }
}
void HbRepeatItem::setRepeatingNumber(int number)
{
- if(number != mNumberOfRepeating) {
- mNumberOfRepeating = number;
- createPixmap(boundingRect());
- //resizeEvent(0);
- }
+ if(number != mNumberOfRepeating) {
+ mNumberOfRepeating = number;
+ createPixmap(boundingRect());
+ //resizeEvent(0);
+ }
}
@@ -190,66 +190,66 @@
HbRepeatMaskItem::HbRepeatMaskItem(QGraphicsItem *parent):
HbRepeatItem(parent),mMaskValue(0),mMaximum(5)
{
-
+
}
HbRepeatMaskItem::HbRepeatMaskItem(const QString &name, QGraphicsItem *parent):
HbRepeatItem(name,parent),mMaskValue(0),mMaximum(5)
{
-
+
}
void HbRepeatMaskItem::paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
- Q_UNUSED(option);
+ Q_UNUSED(option);
Q_UNUSED(widget);
- if(mRepeatPixmap != 0) {
- QPixmap mask(mRectWidth,mRectHeight);
- mask.fill(Qt::white);
- QPainter p;
- p.begin(&mask);
- p.setBrush(QBrush(Qt::black));
- if(mOrientation == Qt::Horizontal){
+ if(mRepeatPixmap != 0) {
+ QPixmap mask(mRectWidth,mRectHeight);
+ mask.fill(Qt::white);
+ QPainter p;
+ p.begin(&mask);
+ p.setBrush(QBrush(Qt::black));
+ if(mOrientation == Qt::Horizontal){
- QRectF test = boundingRect();
- qreal left = (qreal)boundingRect().topLeft().x();
- if(qApp->layoutDirection() == Qt::RightToLeft) {
- left = (qreal)boundingRect().width()* ((mMaximum - mMaskValue)/(qreal) mMaximum );
- }
- p.drawRect(QRectF(
- left,
- (qreal)boundingRect().topLeft().y(),
- (qreal)boundingRect().width()* (mMaskValue/(qreal) mMaximum ),
- (qreal)boundingRect().height()
- ));
- }
- else {
-
- //TODO ANZ
+ QRectF test = boundingRect();
+ qreal left = (qreal)boundingRect().topLeft().x();
+ if(inverted) {
+ left = (qreal)boundingRect().width()* ((mMaximum - mMaskValue)/(qreal) mMaximum );
+ }
+ p.drawRect(QRectF(
+ left,
+ (qreal)boundingRect().topLeft().y(),
+ (qreal)boundingRect().width()* (mMaskValue/(qreal) mMaximum ),
+ (qreal)boundingRect().height()
+ ));
+ }
+ else {
+
+ //TODO ANZ
- }
+ }
- mRepeatPixmap->setMask(mask);
-
- if(boundingRect().isValid()) {
- painter->drawPixmap(QPointF(0,0),*mRepeatPixmap);
- }
- }
+ mRepeatPixmap->setMask(mask);
+
+ if(boundingRect().isValid()) {
+ painter->drawPixmap(QPointF(0,0),*mRepeatPixmap);
+ }
+ }
}
void HbRepeatMaskItem::resizeEvent ( QGraphicsSceneResizeEvent * event )
{
- Q_UNUSED(event);
- createPixmap(boundingRect());
+ Q_UNUSED(event);
+ createPixmap(boundingRect());
}
void HbRepeatMaskItem::setMaximum(int max)
{
- mMaximum = max;
+ mMaximum = max;
}
void HbRepeatMaskItem::setMaskValue(int maskValue)
{
- mMaskValue = maskValue;
+ mMaskValue = maskValue;
}
--- a/src/hbcore/primitives/hbrepeatitem_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbrepeatitem_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -36,48 +36,48 @@
public:
HbRepeatItem(QGraphicsItem *parent = 0);
HbRepeatItem(const QString &name, QGraphicsItem *parent = 0);
- ~HbRepeatItem();
+ ~HbRepeatItem();
void setName(const QString& name);
- void setRepeatingNumber(int number);
+ void setRepeatingNumber(int number);
void setAspectRatioMode(Qt::AspectRatioMode mode);
void paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
void setOrientation(Qt::Orientation orientation);
- void setInverted(bool inversion);
- void createPixmap(QRectF rect);
+ void setInverted(bool inversion);
+ void createPixmap(QRectF rect);
protected:
- void resizeEvent ( QGraphicsSceneResizeEvent * event );
+ void resizeEvent ( QGraphicsSceneResizeEvent * event );
public:
HbIcon mIcon;
Qt::AspectRatioMode mMode;
int mOffset;
- QPixmap* mRepeatPixmap;
- int mNumberOfRepeating;
+ QPixmap* mRepeatPixmap;
+ int mNumberOfRepeating;
Qt::Orientation mOrientation;
- bool inverted;
- int mRectWidth;
- int mRectHeight;
- qreal mBaseIconWidth;
- qreal mBaseIconHeight;
- int mBaseResizeWidth;
- int mBaseResizeHeight;
- qreal multiFactor;
+ bool inverted;
+ int mRectWidth;
+ int mRectHeight;
+ qreal mBaseIconWidth;
+ qreal mBaseIconHeight;
+ int mBaseResizeWidth;
+ int mBaseResizeHeight;
+ qreal multiFactor;
};
class HbRepeatMaskItem : public HbRepeatItem
{
public:
- HbRepeatMaskItem(QGraphicsItem *parent = 0);
+ HbRepeatMaskItem(QGraphicsItem *parent = 0);
HbRepeatMaskItem(const QString &name, QGraphicsItem *parent = 0);
- void paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
- void setMaskValue(int maskValue);
- void setMaximum(int max);
- //void setName(const QString& name);
+ void paint (QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
+ void setMaskValue(int maskValue);
+ void setMaximum(int max);
+ //void setName(const QString& name);
protected:
- void resizeEvent ( QGraphicsSceneResizeEvent * event );
+ void resizeEvent ( QGraphicsSceneResizeEvent * event );
public:
- int mMaskValue;
- int mMaximum;
+ int mMaskValue;
+ int mMaximum;
};
--- a/src/hbcore/primitives/hbrichtextitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbrichtextitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -38,6 +38,7 @@
#include <QAbstractTextDocumentLayout>
#include <QApplication>
#include <QWidget>
+#include <QStyleOptionGraphicsItem>
const qreal KMinimumRichTextWidth = 6.0;
@@ -354,7 +355,7 @@
void HbRichTextItem::setAlignment(Qt::Alignment alignment)
{
Q_D(HbRichTextItem);
- d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextAlign, true);
+ d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextAlign, true);
alignment &= Qt::AlignVertical_Mask | Qt::AlignHorizontal_Mask;
if (d->mTextOption.alignment()!=alignment) {
prepareGeometryChange();
@@ -383,23 +384,18 @@
const QStyleOptionGraphicsItem *option,
QWidget *widget)
{
- Q_UNUSED(option);
Q_UNUSED(widget);
Q_D(HbRichTextItem);
// Save painter's state
- QRegion oldClipRegion = painter->clipRegion();
- QTransform oldTransform = painter->transform();
-
painter->translate(d->mOffset);
QAbstractTextDocumentLayout::PaintContext context;
+ context.clip = option->exposedRect;
context.palette.setColor(QPalette::Text, textDefaultColor());
d->mRtf->documentLayout()->draw(painter, context);
- // Restore painter's state
- painter->setClipRegion(oldClipRegion);
- painter->setTransform(oldTransform);
+ painter->translate(-d->mOffset);
}
/*!
@@ -535,7 +531,7 @@
void HbRichTextItem::setTextWrapping(Hb::TextWrapping mode)
{
Q_D(HbRichTextItem);
- d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextWrapMode, true);
+ d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextWrapMode, true);
QTextOption::WrapMode textWrapMode = static_cast<QTextOption::WrapMode>(mode);
if (d->mTextOption.wrapMode()!=textWrapMode) {
--- a/src/hbcore/primitives/hbtextitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbtextitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -138,7 +138,7 @@
tempText.replace('\n', QChar::LineSeparator);
}
- // Need to call elidedText explicitly to enable multiple length translations.
+ // Need to call elidedText explicitly to enable multiple length translations.
tempText = fontMetrics.elidedText(tempText, Qt::ElideNone, lineWidth);
bool textTruncated = doLayout(tempText, lineWidth, fontMetrics.lineSpacing());
@@ -1071,7 +1071,7 @@
void HbTextItem::setAlignment (Qt::Alignment alignment)
{
Q_D(HbTextItem);
- d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextAlign, true);
+ d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextAlign, true);
alignment &= Qt::AlignVertical_Mask | Qt::AlignHorizontal_Mask;
if (d->mAlignment != alignment) {
prepareGeometryChange();
@@ -1340,7 +1340,7 @@
void HbTextItem::setTextWrapping(Hb::TextWrapping mode)
{
Q_D(HbTextItem);
- d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextWrapMode, true);
+ d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextWrapMode, true);
QTextOption::WrapMode textWrapMode = static_cast<QTextOption::WrapMode>(mode);
QTextOption textOption = d->mTextLayout.textOption();
@@ -1447,7 +1447,7 @@
Q_D( HbTextItem );
minLines = qMax(minLines, 1); // zero or nagative values are meanless and are restoring 1
- d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextLinesMin, true);
+ d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextLinesMin, true);
if( minLines != d->mMinLines ) {
if( ( d->mMaxLines > 0 ) && ( minLines > d->mMaxLines ) ) {
@@ -1476,7 +1476,7 @@
void HbTextItem::setMaximumLines( int maxLines )
{
Q_D( HbTextItem );
- d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextLinesMax, true);
+ d->setApiProtectionFlag(HbWidgetBasePrivate::AC_TextLinesMax, true);
maxLines = qMax(maxLines, 0);
--- a/src/hbcore/primitives/hbtoucharea.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbtoucharea.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -174,7 +174,7 @@
return QSizeF(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX);
} else {
// Touch area should not enforce a size
- return QSizeF(0, 0);
+ return QSizeF(0, 0);
}
}
--- a/src/hbcore/primitives/hbtoucharea_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/primitives/hbtoucharea_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -47,7 +47,7 @@
public:
- HbTouchAreaPrivate();
+ HbTouchAreaPrivate();
virtual ~HbTouchAreaPrivate();
HbTouchArea *q_ptr;
static bool outlineDrawingEnabled();
--- a/src/hbcore/resources/resources.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/resources.pri Thu Sep 02 20:44:51 2010 +0300
@@ -28,9 +28,9 @@
symbian {
RESOURCES += $$PWD/hbvariant_s60.qrc
- BLD_INF_RULES.prj_exports += "resources/displaydefinition_hw.xml $${EPOCROOT}epoc32/data/z/resource/displaydefinition.xml"
- BLD_INF_RULES.prj_exports += "resources/displaydefinition.xml $${EPOCROOT}epoc32/release/winscw/udeb/z/resource/displaydefinition.xml"
- BLD_INF_RULES.prj_exports += "resources/displaydefinition.xml $${EPOCROOT}epoc32/release/winscw/urel/z/resource/displaydefinition.xml"
+ hbPrjExport("resources/displaydefinition_hw.xml", "$${EPOCROOT}epoc32/data/z/resource/displaydefinition.xml")
+ hbPrjExport("resources/displaydefinition.xml", "$${EPOCROOT}epoc32/release/winscw/udeb/z/resource/displaydefinition.xml")
+ hbPrjExport("resources/displaydefinition.xml", "$${EPOCROOT}epoc32/release/winscw/urel/z/resource/displaydefinition.xml")
} else {
RESOURCES += $$PWD/hbvariant_default.qrc
}
--- a/src/hbcore/resources/themes/effects/hbdefault/titlebar_orient_disappear.fxml Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/effects/hbdefault/titlebar_orient_disappear.fxml Thu Sep 02 20:44:51 2010 +0300
@@ -4,7 +4,7 @@
<duration>0.3</duration>
<style>inoutquad</style>
<keyframe at="0.0">0.0</keyframe>
- <keyframe at="1.0">-1.3</keyframe>
+ <keyframe at="1.0">-1.4</keyframe>
<start ref="visual.top">1.0</start>
<end ref="visual.bottom">1.0</end>
</param>
Binary file src/hbcore/resources/themes/hbdefault.themeindex has changed
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_1.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_1.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="37.88" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="37.875" cy="9.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.1896">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_10.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_10.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="31.38" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="31.375" cy="8.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="22.4099">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_2.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_2.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="50.12" cy="22.12" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="50.12" cy="22.12" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.5192">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_6_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_6_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.5192">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="50.125" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.5193">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_3.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_3.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="49.88" cy="38.12" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="49.875" cy="38.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.3373">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_4.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_4.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="38.5" cy="49.38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="38.5" cy="49.375" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="20.7308">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_5.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_5.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="21.75" cy="49.88" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="21.75" cy="49.875" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.7313">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_6.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_6.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="10" cy="38" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.5657">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_7.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_7.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="10" cy="22.12" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="10" cy="22.125" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_8.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_8.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="21.75" cy="10.25" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.6348">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_9.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_loading_9.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<radialGradient cx="28.62" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<g>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,4.005c-6.258,0.293-11.932,2.791-16.268,6.734l3.189,3.189 C19.2,10.791,23.746,8.8,28.76,8.514V4.005z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M10.74,12.493C6.793,16.833,4.293,22.51,4,28.761h4.514c0.286-5.014,2.277-9.56,5.415-13.08 L10.74,12.493z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.266l3.188-3.188 c-3.137-3.52-5.128-8.064-5.414-13.078H4.004z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.506,10.74C43.166,6.794,37.49,4.294,31.24,4v4.514c5.014,0.286,9.56,2.277,13.078,5.415 L47.506,10.74z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M49.26,47.507c3.947-4.34,6.447-10.017,6.74-16.267h-4.514c-0.286,5.014-2.277,9.56-5.415,13.078 L49.26,47.507z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M55.996,28.761c-0.295-6.258-2.793-11.932-6.736-16.268l-3.188,3.188 c3.138,3.52,5.129,8.066,5.415,13.08H55.996z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,55.996c6.256-0.294,11.932-2.792,16.268-6.735l-3.189-3.188 C40.8,49.209,36.254,51.2,31.24,51.486V55.996z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M28.76,4.005c-6.258,0.293-11.93,2.791-16.27,6.734l3.189,3.189c3.52-3.14,8.07-5.13,13.08-5.416v-4.509z" fill="url(#SVGID_1_)"/>
-<path d="M10.74,12.49c-3.947,4.34-6.447,10.02-6.74,16.27h4.514c0.286-5.014,2.277-9.56,5.415-13.08l-3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M4.004,31.24c0.295,6.256,2.793,11.93,6.736,16.27l3.188-3.188c-3.137-3.52-5.128-8.064-5.414-13.08h-4.512z" fill="url(#SVGID_1_)"/>
-<path d="M47.51,10.74c-4.34-3.946-10.02-6.446-16.27-6.74v4.514c5.014,0.286,9.56,2.277,13.08,5.415l3.19-3.19z" fill="url(#SVGID_1_)"/>
-<path d="M49.26,47.51c3.947-4.34,6.447-10.02,6.74-16.27h-4.514c-0.286,5.014-2.277,9.56-5.415,13.08l3.18,3.19z" fill="url(#SVGID_1_)"/>
-<path d="M56,28.76c-0.295-6.258-2.793-11.93-6.736-16.27l-3.188,3.188c3.138,3.52,5.129,8.066,5.415,13.08h4.516z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,56c6.256-0.294,11.93-2.792,16.27-6.735l-3.189-3.188c-3.52,3.14-8.07,5.13-13.08,5.42v4.506z" fill="url(#SVGID_1_)"/>
-<path d="M12.49,49.26c4.34,3.94,10.02,6.45,16.27,6.74v-4.514c-5.014-0.286-9.56-2.277-13.08-5.415l-3.19,3.18z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="url(#SVGID_1_)"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="url(#SVGID_1_)"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="url(#SVGID_1_)"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="url(#SVGID_1_)"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="url(#SVGID_1_)"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="url(#SVGID_1_)"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="url(#SVGID_1_)"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="url(#SVGID_1_)"/>
-<path d="M28.76,12.65v-4.136c-5.014,0.286-9.56,2.277-13.08,5.415l2.925,2.925c2.77-2.4,6.29-3.94,10.16-4.21z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M16.85,18.61l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137c0.28-3.87,1.82-7.39,4.21-10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M12.65,31.24h-4.136c0.286,5.014,2.277,9.559,5.414,13.08l2.925-2.925c-2.4-2.77-3.94-6.29-4.21-10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M41.39,16.85l2.925-2.925c-3.52-3.13-8.07-5.12-13.08-5.406v4.137c3.87,0.27,7.39,1.81,10.15,4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M43.15,41.39l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.08h-4.15c-0.27,3.87-1.81,7.39-4.2,10.15z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M47.35,28.76h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925c2.38,2.77,3.92,6.29,4.19,10.16z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.08-5.414l-2.925-2.925c-2.77,2.38-6.29,3.92-10.16,4.19z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M18.6,43.15l-2.925,2.925c3.519,3.138,8.065,5.129,13.08,5.415v-4.15c-3.87-0.27-7.39-1.81-10.16-4.2z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M12.494,49.258C16.834,53.205,22.51,55.706,28.76,56v-4.514c-5.014-0.286-9.56-2.277-13.079-5.415 L12.494,49.258z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="28.625" cy="8.625" gradientTransform="matrix(1.0306 0 0 1.0306 -5.2776 -0.9193)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.9264">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M28.76,12.65V8.514c-5.014,0.286-9.56,2.277-13.079,5.415l2.925,2.925 C21.368,14.458,24.886,12.924,28.76,12.65z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M16.853,18.606l-2.925-2.925c-3.138,3.52-5.128,8.066-5.415,13.08h4.137 C12.924,24.887,14.457,21.368,16.853,18.606z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M12.65,31.24H8.514c0.286,5.014,2.277,9.559,5.414,13.078l2.925-2.925 C14.457,38.632,12.924,35.113,12.65,31.24z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M41.394,16.854l2.925-2.925C40.8,10.791,36.254,8.8,31.24,8.514v4.137 C35.113,12.924,38.632,14.458,41.394,16.854z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M43.146,41.394l2.925,2.925c3.138-3.519,5.129-8.064,5.415-13.078H47.35 C47.076,35.113,45.542,38.632,43.146,41.394z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M47.35,28.761h4.137c-0.286-5.014-2.277-9.56-5.415-13.08l-2.925,2.925 C45.543,21.368,47.076,24.887,47.35,28.761z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M31.24,47.35v4.137c5.014-0.286,9.56-2.277,13.078-5.414l-2.925-2.925 C38.631,45.543,35.113,47.076,31.24,47.35z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M18.605,43.146l-2.925,2.925c3.519,3.138,8.065,5.129,13.079,5.415V47.35 C24.886,47.076,21.367,45.542,18.605,43.146z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_1.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_1.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="19.81" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="19.814" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.06" x2="35.31" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.0552" x2="35.3105" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="url(#SVGID_2_)"/>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="#5AB85B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x2="19.81" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="url(#SVGID_2_)"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="#5AB85B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="0" x2="19.814" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="url(#SVGID_3_)"/>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="#5AB85B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11.06" x2="35.31" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="url(#SVGID_3_)"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="#5AB85B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11.0552" x2="35.3105" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="url(#SVGID_4_)"/>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="#424242"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -1269.75 -3487.3887)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1306" x2="1311" y1="3494" y2="3494">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="url(#SVGID_4_)"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="#424242"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -1269.75 -3487.3887)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1306.4873" x2="1311.042" y1="3494.2671" y2="3494.2671">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="41.3,6.9,36.7,13.8,36.7,0,41.3,6.9"/>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="#424242"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_5_)" points="41.3,6.9 36.7,13.8 36.7,0 41.3,6.9 "/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="#424242"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_2.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_2.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="19.81" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="19.814" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.06" x2="35.31" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.0552" x2="35.3105" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x2="19.81" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="0" x2="19.814" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="url(#SVGID_4_)"/>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="#5AB85B"/>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="#424242"/>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="#424242"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 1584.3986 -3389.3784)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1328" x2="1332" y1="3488" y2="3488">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="url(#SVGID_4_)"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="#5AB85B"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="#424242"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="#424242"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 1584.3986 -3389.3784)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1327.9453" x2="1332.5" y1="3487.8726" y2="3487.8726">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="60.3,19.1,52.2,20.8,62,11.1,60.3,19.1"/>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="#5AB85B"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_5_)" points="60.3,19.1 52.2,20.8 62,11.1 60.3,19.1 "/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="#5AB85B"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_3.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_3.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="19.81" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="19.814" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.06" x2="35.31" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.0552" x2="35.3105" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_3_)"/>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_3_)"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_4_)"/>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="#424242"/>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="#5AB85B"/>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="#5AB85B"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 3546.5811 -1312.6934)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1349" x2="1354" y1="3481" y2="3481">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_4_)"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="#424242"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="#5AB85B"/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="#5AB85B"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 3546.5811 -1312.6934)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1349.4316" x2="1353.9863" y1="3481.4136" y2="3481.4136">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="65.2,41.3,58.3,36.7,72,36.7,65.2,41.3"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_5_)" points="65.2,41.3 58.3,36.7 72,36.7 65.2,41.3 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_4.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_4.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.06" x2="35.31" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.0552" x2="35.3105" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_2_)"/>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_2_)"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_3_)"/>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="#5AB85B"/>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="#5AB85B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.24" x2="72.05" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_3_)"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="#5AB85B"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="#5AB85B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.2354" x2="72.0469" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 0.7071 -0.7071 -0.7071 3493.6553 1560.1959)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1368" x2="1372" y1="3494" y2="3494">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 0.7071 -0.7071 -0.7071 3493.6553 1560.1959)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1367.8477" x2="1372.4023" y1="3493.5483" y2="3493.5483">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="52.9,60.3,51.3,52.2,61,62,52.9,60.3"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_5_)" points="52.9,60.3 51.3,52.2 61,62 52.9,60.3 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_5.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_5.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="#424242"/>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="#424242"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_1_)"/>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="#5AB85B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_1_)"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="#5AB85B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_2_)"/>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="#5AB85B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.74" x2="60.99" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_2_)"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="#5AB85B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.7383" x2="60.9922" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.24" x2="72.05" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.2354" x2="72.0469" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 1424.6426 3552.2568)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1389" x2="1394" y1="3487" y2="3487">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 1424.6426 3552.2568)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="1389.332" x2="1393.8867" y1="3487.0864" y2="3487.0864">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="30.8,65.2,35.3,58.3,35.3,72,30.8,65.2"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_5_)" points="30.8,65.2 35.3,58.3 35.3,72 30.8,65.2 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_6.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_6.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="#424242"/>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="#424242"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_1_)"/>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="#5AB85B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_1_)"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="#5AB85B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="11.06" x2="35.31" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="11.0552" x2="35.3105" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.74" x2="60.99" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.7383" x2="60.9922" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="52.24" x2="72.05" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="52.2354" x2="72.0469" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -1461.6281 3526.3462)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="1410" x2="1414" y1="3498" y2="3498">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 -1461.6281 3526.3462)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="1409.8438" x2="1414.3984" y1="3497.7866" y2="3497.7866">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="11.5,52.9,19.6,51.3,9.9,61,11.5,52.9"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_6_)" points="11.5,52.9 19.6,51.3 9.9,61 11.5,52.9 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_7.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_7.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="#424242"/>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="#424242"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x2="19.81" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="0" x2="19.814" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11.06" x2="35.31" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11.0552" x2="35.3105" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="36.74" x2="60.99" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="36.7383" x2="60.9922" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="52.24" x2="72.05" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="52.2354" x2="72.0469" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -3505.6865 1466.1221)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1431" x2="1435" y1="3513" y2="3513">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -3505.6865 1466.1221)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1430.8135" x2="1435.3682" y1="3512.5659" y2="3512.5659">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="6.9,30.8,13.8,35.3,0,35.3,6.9,30.8"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_7_)" points="6.9,30.8 13.8,35.3 0,35.3 6.9,30.8 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_8.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_8.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,45 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="19.81" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="19.814" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="url(#SVGID_1_)"/>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="#424242"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="url(#SVGID_1_)"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="#424242"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x2="19.81" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="0" x2="19.814" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.06" x2="35.31" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.0552" x2="35.3105" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="36.74" x2="60.99" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="36.7383" x2="60.9922" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="52.24" x2="72.05" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="52.2354" x2="72.0469" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -3490.3384 -1437.3785)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1452" x2="1457" y1="3506" y2="3506">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -3490.3384 -1437.3785)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1452.3613" x2="1456.915" y1="3506.2817" y2="3506.2817">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="19.1,11.7,20.8,19.8,11.1,10.1,19.1,11.7"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_8_)" points="19.1,11.7 20.8,19.8 11.1,10.1 19.1,11.7 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_9.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_longtap_9.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,44 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="75px" version="1.1" viewBox="-1.5 -1.6 75 75" width="75px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="19.81" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="19.814" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5l-9.8-9.7c-6,6.3-9.8,14.8-10,24.2h13.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.06" x2="35.31" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M13.8,35.3c0.2-5.6,2.4-10.7,6-14.5L10,11.1C4,17.4,0.2,25.9,0,35.3H13.8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.0552" x2="35.3105" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6v-13.8c-9.4,0.2-17.9,4-24.3,10l9.8,9.8z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.74" x2="60.99" y1="9.906" y2="9.906">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M20.8,19.8c3.8-3.6,8.9-5.8,14.5-6V0c-9.4,0.2-17.9,4-24.3,10L20.8,19.8z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.7383" x2="60.9922" y1="9.9063" y2="9.9063">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6l9.8-9.8c-6.3-6-14.9-9.8-24.3-10z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x2="19.81" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M36.7,0v13.8c5.6,0.2,10.7,2.4,14.5,6L61,10C54.7,4,46.1,0.2,36.7,0z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="0" x2="19.814" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5h-13.8c0.2,9.4,4,18,10,24.3l9.8-9.8z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="52.24" x2="72.05" y1="23.18" y2="23.18">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M19.8,51.2c-3.6-3.8-5.8-8.9-6-14.5H0C0.2,46.1,4,54.7,10,61L19.8,51.2z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="52.2354" x2="72.0469" y1="23.1826" y2="23.1826">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5h13.8c-0.2-9.4-4-17.9-10-24.3l-9.8,9.8z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.06" x2="35.31" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M52.2,20.8c3.6,3.8,5.8,8.9,6,14.5H72c-0.2-9.4-4-17.9-10-24.3L52.2,20.8z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.0552" x2="35.3105" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6l-9.7,9.8c6.3,6.1,14.8,9.9,24.3,10v-13.8z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.74" x2="60.99" y1="62.14" y2="62.14">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M35.3,58.2c-5.6-0.2-10.7-2.4-14.5-6L11.1,62c6.3,6.1,14.8,9.9,24.3,10V58.2z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.7383" x2="60.9922" y1="62.1421" y2="62.1421">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6v13.8c9.4-0.2,17.9-4,24.3-10l-9.8-9.8z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="52.24" x2="72.05" y1="48.86" y2="48.86">
-<stop offset="0" stop-color="#3B87C0"/>
-<stop offset="1" stop-color="#0069B2"/>
+<path d="M51.2,52.2c-3.8,3.6-8.9,5.8-14.5,6V72c9.4-0.2,17.9-4,24.3-10L51.2,52.2z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="52.2354" x2="72.0469" y1="48.8647" y2="48.8647">
+<stop offset="0" style="stop-color:#3B87C0"/>
+<stop offset="1" style="stop-color:#0069B2"/>
</linearGradient>
-<path d="M58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5l9.8,9.8c6.1-6.3,9.9-14.8,10-24.3h-13.7z" fill="url(#SVGID_8_)"/>
-</svg>
\ No newline at end of file
+<path d="M58.3,36.7L58.3,36.7c-0.2,5.6-2.5,10.7-6.1,14.5L62,61c6.1-6.3,9.9-14.8,10-24.3H58.3z" fill="url(#SVGID_8_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_1.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_1.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm-2.98,7.2h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm2.273-6.493l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm15.68,5.493h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-18.51,10.74c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm16.23-4.25l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49zm-6.2,2.99v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M5.472,25.236 c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M21.699,20.993l3.537,3.536 c2.222-2.385,3.615-5.542,3.738-9.029h-5C23.858,17.607,23.021,19.518,21.699,20.993z M15.5,23.975v5 c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_2.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_2.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm15.52-3.536c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-18.5,10.74h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm2.273-6.493l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm-2.827,16.23c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm16.23-4.25l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49zm-6.2,2.99v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M24.529,4.764 c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M5.472,25.236c2.385,2.222,5.542,3.615,9.029,3.738 v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M21.699,20.993l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5 C23.858,17.607,23.021,19.518,21.699,20.993z M15.5,23.975v5c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7 C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_3.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_3.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm15.52-3.536c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-18.5,10.74h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm2.273-6.493l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm15.68,5.493h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-18.51,10.74c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm10.03-1.26v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M24.529,4.764 c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M5.472,25.236 c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M15.5,23.975v5 c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_4.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_4.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm15.52-3.536c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-18.5,10.74h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm2.273-6.493l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm15.68,5.493h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-18.51,10.74c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm16.23-4.25l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M24.529,4.764 c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M5.472,25.236 c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M21.699,20.993l3.537,3.536 c2.222-2.385,3.615-5.542,3.738-9.029h-5C23.858,17.607,23.021,19.518,21.699,20.993z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_5.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_5.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm15.52-3.536c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-18.5,10.74h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm2.273-6.493l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm15.68,5.493h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-2.28,6.49l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49zm-6.2,2.99v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M24.529,4.764 c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M21.699,20.993l3.537,3.536 c2.222-2.385,3.615-5.542,3.738-9.029h-5C23.858,17.607,23.021,19.518,21.699,20.993z M15.5,23.975v5 c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_6.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_6.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm15.52-3.536c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-16.23,4.243l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm15.68,5.493h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-18.51,10.74c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm16.23-4.25l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49zm-6.2,2.99v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M24.529,4.764 c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M5.472,25.236 c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M21.699,20.993l3.537,3.536 c2.222-2.385,3.615-5.542,3.738-9.029h-5C23.858,17.607,23.021,19.518,21.699,20.993z M15.5,23.975v5 c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_7.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_7.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739l3.536,3.535zm15.52-3.536c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-18.5,10.74h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm17.95-1h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-18.51,10.74c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm16.23-4.25l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49zm-6.2,2.99v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M9.006,8.3c1.476-1.321,3.387-2.158,5.494-2.274v-5c-3.487,0.124-6.644,1.517-9.03,3.739L9.006,8.3z M24.529,4.764 c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M5.472,25.236 c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M21.699,20.993l3.537,3.536 c2.222-2.385,3.615-5.542,3.738-9.029h-5C23.858,17.607,23.021,19.518,21.699,20.993z M15.5,23.975v5 c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_8.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_mono_loading_8.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M24.53,4.764c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274l3.54-3.535zm-18.5,10.74h-5c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536c-1.322-1.47-2.159-3.38-2.275-5.49zm2.273-6.493l-3.535-3.535c-2.222,2.385-3.615,5.538-3.738,9.028h5c0.116-2.11,0.953-4.02,2.273-5.493zm15.68,5.493h5c-0.123-3.487-1.517-6.644-3.738-9.029l-3.54,3.536c1.32,1.473,2.16,3.383,2.28,5.493zm-18.51,10.74c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274l-3.535,3.53zm16.23-4.25l3.537,3.536c2.222-2.385,3.615-5.542,3.738-9.029h-5c-0.12,2.11-0.96,4.02-2.28,5.49zm-6.2,2.99v5c3.487-0.123,6.643-1.517,9.029-3.738l-3.54-3.54c-1.47,1.32-3.38,2.16-5.49,2.28z"/>
-</svg>
\ No newline at end of file
+<path d="M24.529,4.764c-2.386-2.222-5.542-3.615-9.029-3.739v5c2.107,0.116,4.017,0.953,5.493,2.274L24.529,4.764z M6.026,15.5h-5 c0.124,3.487,1.517,6.644,3.739,9.029l3.536-3.536C6.979,19.518,6.142,17.607,6.026,15.5z M8.299,9.007L4.764,5.472 C2.542,7.857,1.149,11.013,1.026,14.5h5C6.142,12.393,6.979,10.483,8.299,9.007z M23.975,14.5h5 c-0.123-3.487-1.517-6.644-3.738-9.029L21.7,9.007C23.021,10.483,23.858,12.393,23.975,14.5z M5.472,25.236 c2.385,2.222,5.542,3.615,9.029,3.738v-5c-2.107-0.116-4.018-0.953-5.493-2.274L5.472,25.236z M21.699,20.993l3.537,3.536 c2.222-2.385,3.615-5.542,3.738-9.029h-5C23.858,17.607,23.021,19.518,21.699,20.993z M15.5,23.975v5 c3.487-0.123,6.643-1.517,9.029-3.738L20.992,21.7C19.517,23.021,17.606,23.858,15.5,23.975z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_1.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_1.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_10.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_10.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_11.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_11.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.5" stroke-opacity="0.5" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.5" stroke-opacity="0.5" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_12.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_12.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_13.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_13.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_14.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_14.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_15.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_15.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.5" stroke-opacity="0.5" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_16.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_16.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_2.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_2.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_3.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_3.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.5" stroke-opacity="0.5" transform="translate(-29.999,-65.999)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,11 +16,11 @@
</linearGradient>
</g>
<g fill-opacity="0.5" stroke-opacity="0.5" transform="translate(-29.999,-53.666)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-28.999)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_4.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_4.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_5.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_5.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_6.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_6.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_7.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_7.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-65.999)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,11 +16,11 @@
</linearGradient>
</g>
<g fill-opacity="0.5" stroke-opacity="0.5" transform="translate(-29.999,-53.666)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-28.999)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_8.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_8.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g fill-opacity="0.75" stroke-opacity="0.75" transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_9.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_screenlock_swipe_9.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect fill="none" height="60" width="60"/>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-66.081)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.3">
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="60.22" x2="59.88" y1="6.5" y2="108.33">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
<stop offset="1" stop-color="#6D6D6D"/>
</linearGradient>
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2" x1="34" x2="86" y1="76.07" y2="76.07">
<stop offset="0" stop-color="#E2E2E2"/>
<stop offset="0.32" stop-color="#C0C0C0"/>
@@ -16,14 +16,14 @@
</linearGradient>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-53.748)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.853c0,0-18.422,10.204-25.92,10.23C52.583,85.109,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.23,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.23C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.23C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
<g transform="translate(-29.999,-41.415)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.773z" fill="url(#SVGID_1)"/>
+<path d="M86,74.853c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.853,34,74.853v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.853z" fill="url(#SVGID_1)"/>
</g>
<g fill-opacity="0.25" stroke-opacity="0.25" transform="translate(-29.999,-29.081)">
-<path d="M86,74.85s-18.42,10.2-25.92,10.23-26.08-10.23-26.08-10.23v-4.77s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v4.772z" fill="url(#SVGID_1)"/>
-<path d="M86,70.83s-18.42,11.2-25.92,11.23-26.08-11.23-26.08-11.23v-0.75s18.68,10.31,26.16,10.23,25.84-10.23,25.84-10.23v0.754z" fill="url(#SVGID_2)"/>
+<path d="M86,74.852c0,0-18.422,10.203-25.92,10.23C52.583,85.11,34,74.852,34,74.852v-4.77 c0,0,18.678,10.313,26.16,10.23C67.644,80.229,86,70.083,86,70.083V74.852z" fill="url(#SVGID_1)"/>
+<path d="M86,70.834c0,0-18.422,11.204-25.92,11.229C52.583,82.092,34,70.834,34,70.834v-0.75 c0,0,18.678,10.313,26.16,10.229C67.644,80.231,86,70.084,86,70.084V70.834z" fill="url(#SVGID_2)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_1.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_1.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="871.7041" cy="1210.9775" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.5152">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="871.7041" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.5177">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="871.7012" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.5157">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="871.708" cy="1210.9775" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.5164">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="871.7061" cy="1210.9814" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.5174">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="871.708" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.5174">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.51">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="871.7051" cy="1210.9873" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.5142">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="871.7061" cy="1210.9746" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.5223">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="871.707" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.5199">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="871.7129" cy="1210.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.523">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="871.7158" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.5246">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="871.7041" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.5199">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="871.708" cy="1210.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.5191">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="871.7061" cy="1210.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.5185">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="871.7051" cy="1210.9746" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.523">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="871.7" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.52">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="871.7041" cy="1210.9785" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.5192">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_10.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_10.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,135 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<g>
+<g>
+<radialGradient cx="848.0537" cy="1218.0283" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.1919">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.13-5.277,1.235-7.195,2.979l1.411,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.13-5.277,1.235-7.195,2.979l1.411,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="848.0508" cy="1218.0293" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.1889">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.851,4.433-2.981,7.193h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="848" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257C4.735,9.176,3.63,11.687,3.5,14.452h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="848.0479" cy="1218.0313" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.1867">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.567-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.567-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="848.0537" cy="1218.0283" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.188">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="848.0518" cy="1218.0332" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.1871">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.852-4.431,2.98-7.194h-1.996c-0.127,2.217-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.852-4.431,2.98-7.194h-1.996c-0.127,2.217-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="848.0557" cy="1218.0293" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.1857">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="848.0527" cy="1218.0361" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.1864">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.195-2.979l-1.411-1.41c-1.556,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.2">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.195-2.979l-1.411-1.41 c-1.556,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="848.0527" cy="1218.0117" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.1977">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.746,4.431,2.854,7.194,2.982v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.518c1.92,1.746,4.431,2.854,7.194,2.982v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.518z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="848.0527" cy="1218.0293" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.1899">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,7.326v-1.83c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.295c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326v-1.83c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="848.0566" cy="1218.0283" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.1934">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.739,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="848.0576" cy="1218.0313" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.1906">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.217,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.326,15.549h-1.83c0.127,2.217,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="848.0527" cy="1218.0293" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.1864">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M20.04,9.186l1.293-1.294c-1.556-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="848.0537" cy="1218.0303" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.1887">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.556-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.556,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="848.0518" cy="1218.0283" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.1912">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.556,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.739,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="848.0527" cy="1218.0215" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.1931">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.008,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="848.0547" cy="1218.0264" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.1912">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.008,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="848.1" cy="1218" gradientTransform="matrix(0.4558 0 0 0.4558 -369.8906 -549.3661)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.19">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.785,2.396v-1.83c-1.71-0.12-3.27-0.79-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.83c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.295c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.217,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.556-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.556,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.008,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.785,2.396v-1.83c-1.71-0.12-3.27-0.79-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.785,2.396v-1.83 C12.738,22.553,11.182,21.875,9.96,20.814z" fill="url(#SVGID_16_)"/>
+</g>
+<path d="M14.451,7.326v-1.83c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.739,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.217,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.556-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.556,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.739,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.008,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.785,2.396v-1.83C12.738,22.553,11.182,21.875,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_2.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_2.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="871.4541" cy="1226.9746" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.3337">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="871.4541" cy="1226.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.3354">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="871.4512" cy="1226.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.3344">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="871.458" cy="1226.9746" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.3333">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="871.4561" cy="1226.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.3377">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="871.458" cy="1226.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.3367">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="871.4551" cy="1226.9844" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.3317">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="871.4561" cy="1226.9775" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.339">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="871.457" cy="1226.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.3377">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="871.4629" cy="1226.9785" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.3395">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="871.4658" cy="1226.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.3431">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="871.4541" cy="1226.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.3375">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="871.458" cy="1226.9785" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.3345">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="871.4561" cy="1226.9785" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.3356">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="871.4551" cy="1226.9775" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.339">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="871.5" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.34">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="871.4541" cy="1226.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.335">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_3.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_3.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="860.0811" cy="1238.2236" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="20.7276">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="860.0791" cy="1238.2295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="20.7292">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="860.0781" cy="1238.2285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="20.73">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="860.083" cy="1238.2227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="20.7272">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="860.0811" cy="1238.2275" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="20.7323">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="860.085" cy="1238.2295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="20.7296">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="860.082" cy="1238.2314" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="20.7269">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="860.082" cy="1238.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="20.7343">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="860.082" cy="1238.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="20.7311">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="860.0859" cy="1238.2285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="20.7309">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="860.0879" cy="1238.2285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="20.7332">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="860.082" cy="1238.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="20.7307">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="860.083" cy="1238.2275" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="20.7279">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="860.0811" cy="1238.2285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="20.7294">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="860.082" cy="1238.2295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="20.7296">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="860.1" cy="1238" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="20.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="860.0801" cy="1238.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="20.7291">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_4.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_4.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="843.333" cy="1238.7236" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.728">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="843.3301" cy="1238.7295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.7309">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="843.3301" cy="1238.7285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.7273">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="843.334" cy="1238.7227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.7281">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="843.3281" cy="1238.7275" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.7337">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="843.3389" cy="1238.7295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.7289">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="843.335" cy="1238.7314" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.7276">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="843.332" cy="1238.7305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.7323">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="843.3311" cy="1238.7305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.7317">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="843.333" cy="1238.7285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.7304">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="843.332" cy="1238.7285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.7272">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="843.3359" cy="1238.7305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.7298">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="843.333" cy="1238.7275" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.7299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="843.3311" cy="1238.7285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.7301">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="843.3359" cy="1238.7295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.7276">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="843.3" cy="1239" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.73">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="843.3301" cy="1238.7305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.7341">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_5.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_5.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="831.584" cy="1226.8496" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.5629">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="831.5811" cy="1226.8555" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.5658">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="831.582" cy="1226.8545" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.5625">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="831.585" cy="1226.8496" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.5632">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="831.5781" cy="1226.8545" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.5673">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="831.5908" cy="1226.8555" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.5623">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="831.5869" cy="1226.8594" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.5615">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="831.582" cy="1226.8525" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.567">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="831.5811" cy="1226.8555" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.5666">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="831.5811" cy="1226.8535" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.5655">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="831.5791" cy="1226.8545" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.5701">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="831.5889" cy="1226.8555" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.5624">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="831.583" cy="1226.8535" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.5651">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="831.5811" cy="1226.8535" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.5651">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.56">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="831.5879" cy="1226.8525" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.5625">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="831.6" cy="1227" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.57">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="831.5811" cy="1226.8545" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.5653">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_6.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_6.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,119 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="831.584" cy="1210.9775" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.3275">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="831.5811" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="22.3311">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="831.582" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="22.327">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="831.585" cy="1210.9775" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="22.328">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="831.5781" cy="1210.9814" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="22.3306">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="831.5908" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="22.3257">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="831.5869" cy="1210.9873" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="22.3253">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="831.582" cy="1210.9746" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="22.3326">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="831.5811" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="22.3311">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="831.5811" cy="1210.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="22.3317">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="831.5791" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="22.3337">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="831.5889" cy="1210.9805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="22.3252">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="831.583" cy="1210.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="22.3298">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="831.5811" cy="1210.9795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="22.3299">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="831.6" cy="1211" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="22.33">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="831.5879" cy="1210.9746" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="22.3284">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="831.5811" cy="1210.9785" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="22.3303">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_7.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_7.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="843.333" cy="1199.1045" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.6326">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="843.3301" cy="1199.1064" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.6293">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="843.3301" cy="1199.1064" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.6341">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="843.334" cy="1199.1055" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.6332">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="843.3281" cy="1199.1084" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.6344">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="843.3389" cy="1199.1064" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.6303">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="843.335" cy="1199.1143" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.6302">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.64">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="843.332" cy="1199.0977" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.6385">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.64">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="843.3311" cy="1199.1055" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.6362">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="843.333" cy="1199.1055" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.6349">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="843.332" cy="1199.1064" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.634">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="843.3359" cy="1199.1055" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.6303">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.63">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="843.333" cy="1199.1055" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.6346">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.64">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="843.3311" cy="1199.1055" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.6355">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.64">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="843.3359" cy="1199.0967" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.6363">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="843.3" cy="1199" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.64">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="843.3301" cy="1199.1035" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.6363">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_8.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_8.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.92">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="850.207" cy="1197.4795" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="21.923">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="850.2051" cy="1197.4814" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="21.9257">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="850.2041" cy="1197.4814" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="21.9251">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.92">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="850.209" cy="1197.4805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.9244">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="850.2051" cy="1197.4834" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="21.9251">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.92">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="850.2119" cy="1197.4814" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.9222">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.92">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="850.209" cy="1197.4902" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="21.9215">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="850.207" cy="1197.4717" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="21.9306">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="850.2061" cy="1197.4805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="21.9271">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="850.209" cy="1197.4805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.9286">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.92">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="850.209" cy="1197.4814" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="21.926">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="850.209" cy="1197.4805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="21.9224">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="850.208" cy="1197.4805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="21.9261">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="850.2061" cy="1197.4805" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="21.9275">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="850.209" cy="1197.4717" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="21.9292">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="850.2" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.93">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="850.2051" cy="1197.4785" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="21.9279">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_9.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_anim_small_loading_9.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,3c-6.627,0-12,5.373-12,12,0,6.628,5.373,12,12,12s12-5.372,12-12c0-6.627-5.37-12-12-12zm0,19.29c-4.027,0-7.291-3.264-7.291-7.291s3.264-7.291,7.291-7.291c4.025,0,7.291,3.264,7.291,7.291,0,4.03-3.27,7.29-7.29,7.29z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.4">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<g>
+<path d="M15,3C8.373,3,3,8.373,3,15c0,6.628,5.373,12,12,12s12-5.372,12-12 C27,8.373,21.627,3,15,3z M15,22.291c-4.027,0-7.291-3.264-7.291-7.291c0-4.027,3.264-7.291,7.291-7.291 c4.025,0,7.291,3.264,7.291,7.291C22.291,19.027,19.025,22.291,15,22.291z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<g>
+<radialGradient cx="852.957" cy="1197.2295" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="22.4035">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M14.45,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41c1.557-1.387,3.566-2.268,5.784-2.395v-1.994z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,3.502c-2.768,0.129-5.277,1.234-7.194,2.979l1.41,1.41 c1.557-1.387,3.566-2.268,5.784-2.395V3.502z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="852.9551" cy="1197.2314" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="22.4091">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785l-1.411-1.408z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M6.481,7.257c-1.746,1.919-2.853,4.43-2.981,7.195h1.996c0.127-2.217,1.008-4.228,2.396-5.785 L6.481,7.257z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="852.9531" cy="1197.2314" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="22.4079">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M3.502,15.55c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41c-1.387-1.558-2.268-3.565-2.395-5.784h-1.993z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M3.502,15.549c0.13,2.768,1.235,5.276,2.979,7.194l1.409-1.41 c-1.387-1.558-2.268-3.565-2.395-5.784H3.502z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="852.959" cy="1197.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="22.4075">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.74,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395l1.41-1.411z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.743,6.481c-1.92-1.746-4.431-2.852-7.194-2.981v1.997c2.219,0.126,4.229,1.007,5.784,2.395 L22.743,6.481z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="852.9541" cy="1197.2334" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="22.4088">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M23.52,22.74c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784l1.42,1.41z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M23.52,22.743c1.746-1.919,2.853-4.431,2.98-7.194h-1.996c-0.127,2.219-1.008,4.229-2.396,5.784 L23.52,22.743z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="852.9619" cy="1197.2314" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="22.4052">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M26.5,14.45c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41c1.389,1.557,2.269,3.568,2.396,5.785h1.988z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="22.4">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M26.498,14.452c-0.13-2.768-1.234-5.277-2.979-7.195l-1.41,1.41 c1.389,1.557,2.269,3.568,2.396,5.785H26.498z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="852.959" cy="1197.2402" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="22.4047">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,26.5c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41c-1.558,1.387-3.565,2.268-5.784,2.395v1.998z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,26.498c2.768-0.13,5.277-1.234,7.194-2.979l-1.41-1.41 c-1.558,1.387-3.565,2.268-5.784,2.395V26.498z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="852.957" cy="1197.2217" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="22.4143">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396l-1.409,1.42z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
-</radialGradient>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M7.257,23.52c1.92,1.744,4.431,2.852,7.194,2.98v-1.996c-2.218-0.127-4.228-1.008-5.784-2.396 L7.257,23.52z" fill="url(#SVGID_8_)"/>
+</g>
+<radialGradient cx="852.9561" cy="1197.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="22.4077">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395L9.96,9.186 C11.182,8.125,12.738,7.447,14.451,7.326z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="852.96" cy="1197.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="22.4133">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M9.186,9.96L7.891,8.667c-1.388,1.557-2.268,3.568-2.395,5.785h1.83 C7.447,12.738,8.125,11.182,9.186,9.96z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="852.96" cy="1197.2314" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="22.4101">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
+</radialGradient>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294 C8.125,18.818,7.447,17.262,7.326,15.549z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="852.959" cy="1197.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="22.4052">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="url(#SVGID_12_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83 C17.262,7.447,18.818,8.125,20.04,9.186z" fill="url(#SVGID_12_)"/>
+<radialGradient cx="852.958" cy="1197.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="22.4094">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="url(#SVGID_13_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M20.814,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83 C22.553,17.262,21.874,18.818,20.814,20.04z" fill="url(#SVGID_13_)"/>
+<radialGradient cx="852.9561" cy="1197.2305" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="22.4108">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="url(#SVGID_14_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785L20.814,9.96 C21.875,11.182,22.553,12.738,22.674,14.452z" fill="url(#SVGID_14_)"/>
+<radialGradient cx="852.959" cy="1197.2217" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_15_" r="22.413">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="url(#SVGID_15_)"/>
-<radialGradient cx="853" cy="1197" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="22.41">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.32" stop-color="#B2F56E"/>
-<stop offset="0.73" stop-color="#5CBF1B"/>
-<stop offset="1" stop-color="#227A00"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295 C18.816,21.875,17.262,22.553,15.549,22.674z" fill="url(#SVGID_15_)"/>
+<radialGradient cx="852.9551" cy="1197.2285" gradientTransform="matrix(0.4558 0 0 0.4558 -375.0893 -540.5683)" gradientUnits="userSpaceOnUse" id="SVGID_16_" r="22.4114">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.32" style="stop-color:#B2F56E"/>
+<stop offset="0.73" style="stop-color:#5CBF1B"/>
+<stop offset="1" style="stop-color:#227A00"/>
</radialGradient>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="url(#SVGID_16_)"/>
-<path d="M14.45,7.326v-1.829c-2.218,0.126-4.228,1.007-5.784,2.395l1.294,1.294c1.22-1.061,2.78-1.739,4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.186,9.96l-1.295-1.293c-1.388,1.557-2.268,3.568-2.395,5.785h1.83c0.121-1.71,0.799-3.27,1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M7.326,15.55h-1.83c0.127,2.219,1.008,4.229,2.395,5.784l1.295-1.294c-1.061-1.22-1.739-2.78-1.86-4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.04,9.186l1.293-1.294c-1.558-1.388-3.565-2.269-5.784-2.395v1.83c1.71,0.12,3.27,0.798,4.49,1.859z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M20.81,20.04l1.293,1.293c1.389-1.558,2.27-3.565,2.396-5.784h-1.83c-0.12,1.71-0.8,3.27-1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M22.67,14.45h1.83c-0.127-2.217-1.007-4.228-2.395-5.785l-1.29,1.295c1.07,1.22,1.74,2.78,1.86,4.49z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M15.55,22.67v1.83c2.219-0.127,4.229-1.007,5.784-2.395l-1.294-1.295c-1.22,1.08-2.78,1.75-4.49,1.87z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-<path d="M9.96,20.81l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83c-1.71-0.12-3.27-0.8-4.49-1.86z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
-</svg>
\ No newline at end of file
+<path d="M9.96,20.814l-1.294,1.293c1.557,1.389,3.567,2.27,5.784,2.396v-1.83 C12.738,22.553,11.182,21.874,9.96,20.814z" fill="url(#SVGID_16_)"/>
+<path d="M14.451,7.326V5.497c-2.218,0.126-4.228,1.007-5.784,2.395 L9.96,9.186C11.182,8.125,12.738,7.447,14.451,7.326z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.186,9.96L7.891,8.667 c-1.388,1.557-2.268,3.568-2.395,5.785h1.83C7.447,12.738,8.125,11.182,9.186,9.96z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M7.326,15.549h-1.83c0.127,2.219,1.008,4.229,2.395,5.784 l1.295-1.294C8.125,18.818,7.447,17.262,7.326,15.549z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.04,9.186l1.293-1.294 c-1.558-1.388-3.565-2.269-5.784-2.395v1.83C17.262,7.447,18.818,8.125,20.04,9.186z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M20.814,20.04l1.293,1.293 c1.389-1.558,2.27-3.565,2.396-5.784h-1.83C22.553,17.262,21.874,18.818,20.814,20.04z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M22.674,14.452h1.83c-0.127-2.217-1.007-4.228-2.395-5.785 L20.814,9.96C21.875,11.182,22.553,12.738,22.674,14.452z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M15.549,22.674v1.83c2.219-0.127,4.229-1.007,5.784-2.395 l-1.294-1.295C18.816,21.875,17.262,22.553,15.549,22.674z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+<path d="M9.96,20.814l-1.294,1.293 c1.557,1.389,3.567,2.27,5.784,2.396v-1.83C12.738,22.553,11.182,21.874,9.96,20.814z" fill="#FFFFFF" fill-opacity="0.17" stroke-opacity="0.17"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="10" y2="-39.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="10" y2="-39.8379">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h-1v6c0,2.2,1.8,4,4,4h6v-1h-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0H0v6c0,2.2,1.8,4,4,4h6V9H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="10" y2="-39.8404">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.201,0,4-1.8,4-4v-6h-10z" fill="url(#SVGID_1_)"/>
-<path d="M9,0v6c0,1.654-1.346,3-3,3h-6v1h6c2.201,0,4-1.8,4-4v-6h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h6c2.201,0,4-1.8,4-4V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M9,0v6c0,1.654-1.346,3-3,3H0v1h6c2.201,0,4-1.8,4-4V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.8404">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="10 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="35" x2="35" y1="40" y2="-9.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="35" x2="35" y1="40" y2="-9.8396">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="40" y2="-9.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="40" y2="-9.8396">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10" x="0"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="40" y2="-9.8396">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.84">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.8396">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="50" y2="0.1601">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="49.998" y2="0.1601">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="url(#SVGID_1_)"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h1v-6c0-1.654,1.346-3,3-3h6v-1h-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h1V4c0-1.654,1.346-3,3-3h6V0H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.1596">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="50" y2="0.1596">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_disabled_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.799-4-4-4h-6v10h10v-6z" fill="url(#SVGID_1_)"/>
-<path d="M6,0h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6c0-2.2-1.799-4-4-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,4c0-2.2-1.799-4-4-4H0v10h10V4z" fill="url(#SVGID_1_)"/>
+<path d="M6,0H0v1h6c1.654,0,3,1.346,3,3v6h1V4C10,1.8,8.201,0,6,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.1596">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v4c0,2.756,2.243,5,5,5h4v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,2.756,2.243,5,5,5h4v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,6c-1.654,0-3-1.346-3-3v-3h-1v3c0,2.205,1.794,4,4,4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,7c-2.206,0-4-1.795-4-4v-3h-1v3c0,2.756,2.243,5,5,5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v4c0,2.756,2.243,5,5,5h4V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,2.756,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,6C4.346,6,3,4.654,3,3V0H2v3c0,2.205,1.794,4,4,4h4V6H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,7C3.794,7,2,5.205,2,3V0H1v3c0,2.756,2.243,5,5,5h4V7H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.701,6-6v-4h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h4c2.758,0,5-2.244,5-5v-4h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h4c2.758,0,5-2.244,5-5v-3h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v3c0,1.654-1.346,3-3,3h-4v1h4c2.206,0,4-1.795,4-4v-3h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v3c0,2.205-1.794,4-4,4h-4v1h4c2.758,0,5-2.244,5-5v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h4c3.301,0,6-2.701,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h4c2.758,0,5-2.244,5-5V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h4c2.758,0,5-2.244,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v3c0,1.654-1.346,3-3,3H0v1h4c2.206,0,4-1.795,4-4V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v3c0,2.205-1.794,4-4,4H0v1h4c2.758,0,5-2.244,5-5V0H8z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="1" y2="48.02">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,2c-2.206,0-4,1.793-4,4v4h1v-4c0-1.654,1.346-3,3-3h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h1v-4c0-2.207,1.794-4,4-4h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,2C3.794,2,2,3.793,2,6v4h1V6c0-1.654,1.346-3,3-3h4V2H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h1V6c0-2.207,1.794-4,4-4h4V1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.301-2.699-6-6-6h-4v10h10v-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,6c0-2.758-2.242-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,2h-4v1h4c1.654,0,3,1.346,3,3v4h1v-4c0-2.207-1.794-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.793,4,4v4h1v-4c0-2.758-2.242-5-5-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,6c0-3.301-2.699-6-6-6H0v10h10V6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,6c0-2.758-2.242-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,2H0v1h4c1.654,0,3,1.346,3,3v4h1V6C8,3.793,6.206,2,4,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.793,4,4v4h1V6C9,3.242,6.758,1,4,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#9BD94A"/>
-<stop offset="1" stop-color="#15A62D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#9BD94A"/>
+<stop offset="1" style="stop-color:#15A62D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v4c0,2.756,2.243,5,5,5h4v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,2.756,2.243,5,5,5h4v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,6c-1.654,0-3-1.346-3-3v-3h-1v3c0,2.205,1.794,4,4,4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,7c-2.206,0-4-1.795-4-4v-3h-1v3c0,2.756,2.243,5,5,5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v4c0,2.756,2.243,5,5,5h4V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,2.756,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,6C4.346,6,3,4.654,3,3V0H2v3c0,2.205,1.794,4,4,4h4V6H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,7C3.794,7,2,5.205,2,3V0H1v3c0,2.756,2.243,5,5,5h4V7H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.701,6-6v-4h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h4c2.758,0,5-2.244,5-5v-4h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h4c2.758,0,5-2.244,5-5v-3h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v3c0,1.654-1.346,3-3,3h-4v1h4c2.206,0,4-1.795,4-4v-3h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v3c0,2.205-1.794,4-4,4h-4v1h4c2.758,0,5-2.244,5-5v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h4c3.301,0,6-2.701,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h4c2.758,0,5-2.244,5-5V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h4c2.758,0,5-2.244,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v3c0,1.654-1.346,3-3,3H0v1h4c2.206,0,4-1.795,4-4V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v3c0,2.205-1.794,4-4,4H0v1h4c2.758,0,5-2.244,5-5V0H8z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="1" y2="48.02">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,2c-2.206,0-4,1.793-4,4v4h1v-4c0-1.654,1.346-3,3-3h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h1v-4c0-2.207,1.794-4,4-4h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,2C3.794,2,2,3.793,2,6v4h1V6c0-1.654,1.346-3,3-3h4V2H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h1V6c0-2.207,1.794-4,4-4h4V1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.301-2.699-6-6-6h-4v10h10v-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,6c0-2.758-2.242-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,2h-4v1h4c1.654,0,3,1.346,3,3v4h1v-4c0-2.207-1.794-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.793,4,4v4h1v-4c0-2.758-2.242-5-5-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,6c0-3.301-2.699-6-6-6H0v10h10V6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,6c0-2.758-2.242-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,2H0v1h4c1.654,0,3,1.346,3,3v4h1V6C8,3.793,6.206,2,4,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.793,4,4v4h1V6C9,3.242,6.758,1,4,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#66CC69"/>
-<stop offset="1" stop-color="#2D993F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#66CC69"/>
+<stop offset="1" style="stop-color:#2D993F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="8" y2="-38.84">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="8" y2="-38.8404">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v4c0,2.756,2.243,5,5,5h4v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,2.756,2.243,5,5,5h4v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,6c-1.654,0-3-1.346-3-3v-3h-1v3c0,2.205,1.794,4,4,4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,7c-2.206,0-4-1.795-4-4v-3h-1v3c0,2.756,2.243,5,5,5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v4c0,2.756,2.243,5,5,5h4V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,2.756,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,6C4.346,6,3,4.654,3,3V0H2v3c0,2.205,1.794,4,4,4h4V6H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,7C3.794,7,2,5.205,2,3V0H1v3c0,2.756,2.243,5,5,5h4V7H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="8" y2="-38.84">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="8" y2="-38.8404">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.701,6-6v-4h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h4c2.758,0,5-2.244,5-5v-4h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h4c2.758,0,5-2.244,5-5v-3h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v3c0,1.654-1.346,3-3,3h-4v1h4c2.206,0,4-1.795,4-4v-3h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v3c0,2.205-1.794,4-4,4h-4v1h4c2.758,0,5-2.244,5-5v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h4c3.301,0,6-2.701,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h4c2.758,0,5-2.244,5-5V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h4c2.758,0,5-2.244,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v3c0,1.654-1.346,3-3,3H0v1h4c2.206,0,4-1.795,4-4V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v3c0,2.205-1.794,4-4,4H0v1h4c2.758,0,5-2.244,5-5V0H8z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="8" y2="-38.84">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="8" y2="-38.8404">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="38" y2="-8.84">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="38" y2="-8.8397">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="38" y2="-8.84">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="38" y2="-8.8397">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="38" y2="-8.84">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="38" y2="-8.8397">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="48" y2="1.161">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="48.001" y2="1.1606">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,2c-2.206,0-4,1.793-4,4v4h1v-4c0-1.654,1.346-3,3-3h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h1v-4c0-2.207,1.794-4,4-4h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,2C3.794,2,2,3.793,2,6v4h1V6c0-1.654,1.346-3,3-3h4V2H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h1V6c0-2.207,1.794-4,4-4h4V1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="48" y2="1.161">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="48.001" y2="1.1606">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_green_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.301-2.699-6-6-6h-4v10h10v-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,6c0-2.758-2.242-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,2h-4v1h4c1.654,0,3,1.346,3,3v4h1v-4c0-2.207-1.794-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.793,4,4v4h1v-4c0-2.758-2.242-5-5-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,6c0-3.301-2.699-6-6-6H0v10h10V6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,6c0-2.758-2.242-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,2H0v1h4c1.654,0,3,1.346,3,3v4h1V6C8,3.793,6.206,2,4,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.793,4,4v4h1V6C9,3.242,6.758,1,4,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="48" y2="1.161">
-<stop offset="0" stop-color="#59B35C"/>
-<stop offset="1" stop-color="#217330"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="48.001" y2="1.1606">
+<stop offset="0" style="stop-color:#59B35C"/>
+<stop offset="1" style="stop-color:#217330"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-39.88" y2="10.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-39.877" y2="10.1655">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h-1v6c0,2.2,1.8,4,4,4h6v-1h-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h1v6c0,1.103,0.896,2,2,2h6v1h-6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0H0v6c0,2.2,1.8,4,4,4h6V9H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0h1v6c0,1.103,0.896,2,2,2h6v1H4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.87" y2="10.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="-39.8745" y2="10.1655">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.201,0,4-1.8,4-4v-6h-10z" fill="url(#SVGID_1_)"/>
-<path d="M9,0v6c0,1.654-1.346,3-3,3h-6v1h6c2.201,0,4-1.8,4-4v-6h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,9h-6v-1h6c1.104,0,2-0.897,2-2v-6h1v6c0,1.654-1.346,3-3,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h6c2.201,0,4-1.8,4-4V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M9,0v6c0,1.654-1.346,3-3,3H0v1h6c2.201,0,4-1.8,4-4V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,9H0V8h6c1.104,0,2-0.897,2-2V0h1v6C9,7.654,7.654,9,6,9z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.87" y2="10.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.8745" y2="10.1655">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="10 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="35" x2="35" y1="-9.875" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="34.9995" x2="34.9995" y1="-9.875" y2="40.1658">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-9.875" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-9.875" y2="40.1658">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10" x="0"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="0"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.875" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="-9.875" y2="40.1658">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.875" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.875" y2="40.1658">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="0.125" y2="50.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="0.125" y2="50.1674">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="url(#SVGID_1_)"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3v6h1v-6c0-1.103,0.896-2,2-2h6v-1h-6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h1v-6c0-1.654,1.346-3,3-3h6v-1h-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,1C2.346,1,1,2.346,1,4v6h1V4c0-1.103,0.896-2,2-2h6V1H4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h1V4c0-1.654,1.346-3,3-3h6V0H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.125" y2="50.16">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="0.125" y2="50.165">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.799-4-4-4h-6v10h10v-6z" fill="url(#SVGID_1_)"/>
-<path d="M6,0h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6c0-2.2-1.799-4-4-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1h-6v1h6c1.104,0,2,0.897,2,2v6h1v-6c0-1.654-1.346-3-3-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,4c0-2.2-1.799-4-4-4H0v10h10V4z" fill="url(#SVGID_1_)"/>
+<path d="M6,0H0v1h6c1.654,0,3,1.346,3,3v6h1V4C10,1.8,8.201,0,6,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1H0v1h6c1.104,0,2,0.897,2,2v6h1V4C9,2.346,7.654,1,6,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.125" y2="50.16">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.125" y2="50.165">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="50" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-40" y2="10.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-40.002" y2="10.1472">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h-1v6c0,2.2,1.8,4,4,4h6v-1h-6z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h1v6c0,1.103,0.897,2,2,2h6v1h-6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0H0v6c0,2.2,1.8,4,4,4h6V9H4z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0h1v6c0,1.103,0.897,2,2,2h6v1H4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="-39.9995" y2="10.1472">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.201,0,4-1.8,4-4v-6h-10z" fill="url(#SVGID_1_)"/>
-<path d="M9,0v6c0,1.654-1.346,3-3,3h-6v1h6c2.201,0,4-1.8,4-4v-6h-1z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M6,9h-6v-1h6c1.104,0,2-0.897,2-2v-6h1v6c0,1.654-1.346,3-3,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v10h6c2.201,0,4-1.8,4-4V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M9,0v6c0,1.654-1.346,3-3,3H0v1h6c2.201,0,4-1.8,4-4V0H9z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6,9H0V8h6c1.104,0,2-0.897,2-2V0h1v6C9,7.654,7.654,9,6,9z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.1472">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="10 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="35" x2="35" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="34.9995" x2="34.9995" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10" x="0"/>
<rect fill="#9696A0" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="1" x="0"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill="#9696A0" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="50"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="3" stroke-opacity="0.4" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y2="50.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="0" y2="50.1491">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="url(#SVGID_1_)"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h1v-6c0-1.654,1.346-3,3-3h6v-1h-6z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3v6h1v-6h8v-3h-6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h1V4c0-1.654,1.346-3,3-3h6V0H4z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M4,1C2.346,1,1,2.346,1,4v6h1V4h8V2V1H4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="0" y2="50.1467">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.799-4-4-4h-6v10h10v-6z" fill="url(#SVGID_1_)"/>
-<path d="M6,0h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6c0-2.2-1.799-4-4-4z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M6,1h-6v3h8v6h1v-6c0-1.654-1.346-3-3-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M10,4c0-2.2-1.799-4-4-4H0v10h10V4z" fill="url(#SVGID_1_)"/>
+<path d="M6,0H0v1h6c1.654,0,3,1.346,3,3v6h1V4C10,1.8,8.201,0,6,0z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6,1H0v1v2h8v6h1V4C9,2.346,7.654,1,6,1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.15">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.1467">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="50" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-40" y2="10.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-39.9995" y2="10.1472">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h-1v6c0,2.2,1.8,4,4,4h6v-1h-6z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0H0v6c0,2.2,1.8,4,4,4h6V9H4z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.1472">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.2,0,4-1.8,4-4v-6h-10z" fill="url(#SVGID_1_)"/>
-<path d="M9,0v6c0,1.654-1.346,3-3,3h-6v1h6c2.2,0,4-1.8,4-4v-6h-1z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M0,0v10h6c2.2,0,4-1.8,4-4V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M9,0v6c0,1.654-1.346,3-3,3H0v1h6c2.2,0,4-1.8,4-4V0H9z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.1472">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill="#9696A0" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill="#9696A0" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.1476">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y2="50.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="0" y2="50.1467">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="url(#SVGID_1_)"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h1v-6c0-1.654,1.346-3,3-3h6v-1h-6z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h1V4c0-1.654,1.346-3,3-3h6V0H4z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.1467">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v10h10v-6z" fill="url(#SVGID_1_)"/>
-<path d="M6,0h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6c0-2.2-1.8-4-4-4z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M10,4c0-2.2-1.8-4-4-4H0v10h10V4z" fill="url(#SVGID_1_)"/>
+<path d="M6,0H0v1h6c1.654,0,3,1.346,3,3v6h1V4C10,1.8,8.2,0,6,0z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.15">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.1467">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="10" y2="-39.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="10" y2="-39.7482">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h-1v6c0,2.2,1.8,4,4,4h6v-1h-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,9c-1.654,0-3-1.346-3-3v-6h1v6c0,1.103,0.897,2,2,2h6v1h-6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0H0v6c0,2.2,1.8,4,4,4h6V9H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,9C2.346,9,1,7.654,1,6V0h1v6c0,1.103,0.897,2,2,2h6v1H4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="10" y2="-39.7506">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.201,0,4-1.8,4-4v-6h-10z" fill="url(#SVGID_1_)"/>
-<path d="M9,0v6c0,1.654-1.346,3-3,3h-6v1h6c2.201,0,4-1.8,4-4v-6h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,9h-6v-1h6c1.104,0,2-0.897,2-2v-6h1v6c0,1.654-1.346,3-3,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h6c2.201,0,4-1.8,4-4V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M9,0v6c0,1.654-1.346,3-3,3H0v1h6c2.201,0,4-1.8,4-4V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,9H0V8h6c1.104,0,2-0.897,2-2V0h1v6C9,7.654,7.654,9,6,9z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.7506">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="10 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="35" x2="35" y1="40" y2="-9.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="35" x2="35" y1="40" y2="-9.7498">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="30" width="50" x="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="40" y2="-9.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="40" y2="-9.7498">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10" x="0"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="0"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="40" y2="-9.7498">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.75">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.7498">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="50"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="50" y2="0.2498">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="49.998" y2="0.2498">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="url(#SVGID_1_)"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3v6h1v-6c0-1.103,0.897-2,2-2h6v-1h-6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h1v-6c0-1.654,1.346-3,3-3h6v-1h-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,1C2.346,1,1,2.346,1,4v6h1V4c0-1.103,0.897-2,2-2h6V1H4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v6h1V4c0-1.654,1.346-3,3-3h6V0H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.2494">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="50" y2="0.2494">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.799-4-4-4h-6v10h10v-6z" fill="url(#SVGID_1_)"/>
-<path d="M6,0h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6c0-2.2-1.799-4-4-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1h-6v1h6c1.104,0,2,0.897,2,2v6h1v-6c0-1.654-1.346-3-3-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,4c0-2.2-1.799-4-4-4H0v10h10V4z" fill="url(#SVGID_1_)"/>
+<path d="M6,0H0v1h6c1.654,0,3,1.346,3,3v6h1V4C10,1.8,8.201,0,6,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1H0v1h6c1.104,0,2,0.897,2,2v6h1V4C9,2.346,7.654,1,6,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.2494">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v4c0,2.756,2.243,5,5,5h4v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,2.756,2.243,5,5,5h4v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,6c-1.654,0-3-1.346-3-3v-3h-1v3c0,2.205,1.795,4,4,4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,7c-2.205,0-4-1.795-4-4v-3h-1v3c0,2.756,2.243,5,5,5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v4c0,2.756,2.243,5,5,5h4V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,2.756,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,6C4.346,6,3,4.654,3,3V0H2v3c0,2.205,1.795,4,4,4h4V6H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,7C3.795,7,2,5.205,2,3V0H1v3c0,2.756,2.243,5,5,5h4V7H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.701,6-6v-4h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h4c2.758,0,5-2.244,5-5v-4h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h4c2.758,0,5-2.244,5-5v-3h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v3c0,1.654-1.346,3-3,3h-4v1h4c2.206,0,4-1.795,4-4v-3h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v3c0,2.205-1.794,4-4,4h-4v1h4c2.758,0,5-2.244,5-5v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h4c3.301,0,6-2.701,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h4c2.758,0,5-2.244,5-5V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h4c2.758,0,5-2.244,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v3c0,1.654-1.346,3-3,3H0v1h4c2.206,0,4-1.795,4-4V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v3c0,2.205-1.794,4-4,4H0v1h4c2.758,0,5-2.244,5-5V0H8z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="1" y2="48.02">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,2c-2.205,0-4,1.793-4,4v4h1v-4c0-1.654,1.346-3,3-3h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h1v-4c0-2.207,1.795-4,4-4h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,2C3.795,2,2,3.793,2,6v4h1V6c0-1.654,1.346-3,3-3h4V2H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h1V6c0-2.207,1.795-4,4-4h4V1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.301-2.699-6-6-6h-4v10h10v-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,6c0-2.758-2.242-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,2h-4v1h4c1.654,0,3,1.346,3,3v4h1v-4c0-2.207-1.794-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.793,4,4v4h1v-4c0-2.758-2.242-5-5-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,6c0-3.301-2.699-6-6-6H0v10h10V6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,6c0-2.758-2.242-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,2H0v1h4c1.654,0,3,1.346,3,3v4h1V6C8,3.793,6.206,2,4,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.793,4,4v4h1V6C9,3.242,6.758,1,4,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#FA6464"/>
-<stop offset="1" stop-color="#D62700"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#FA6464"/>
+<stop offset="1" style="stop-color:#D62700"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v4c0,2.756,2.243,5,5,5h4v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,2.756,2.243,5,5,5h4v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,6c-1.654,0-3-1.346-3-3v-3h-1v3c0,2.205,1.794,4,4,4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,7c-2.206,0-4-1.795-4-4v-3h-1v3c0,2.756,2.243,5,5,5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v4c0,2.756,2.243,5,5,5h4V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,2.756,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,6C4.346,6,3,4.654,3,3V0H2v3c0,2.205,1.794,4,4,4h4V6H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,7C3.794,7,2,5.205,2,3V0H1v3c0,2.756,2.243,5,5,5h4V7H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.701,6-6v-4h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h4c2.758,0,5-2.244,5-5v-4h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h4c2.758,0,5-2.244,5-5v-3h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v3c0,1.654-1.346,3-3,3h-4v1h4c2.206,0,4-1.795,4-4v-3h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v3c0,2.205-1.794,4-4,4h-4v1h4c2.758,0,5-2.244,5-5v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h4c3.301,0,6-2.701,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h4c2.758,0,5-2.244,5-5V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h4c2.758,0,5-2.244,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v3c0,1.654-1.346,3-3,3H0v1h4c2.206,0,4-1.795,4-4V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v3c0,2.205-1.794,4-4,4H0v1h4c2.758,0,5-2.244,5-5V0H8z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-39" y2="8.024">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-38.9995" y2="8.0244">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.02">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="38.0247">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="1" y2="48.02">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,2c-2.206,0-4,1.793-4,4v4h1v-4c0-1.654,1.346-3,3-3h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h1v-4c0-2.207,1.794-4,4-4h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,2C3.794,2,2,3.793,2,6v4h1V6c0-1.654,1.346-3,3-3h4V2H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h1V6c0-2.207,1.794-4,4-4h4V1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.301-2.699-6-6-6h-4v10h10v-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,6c0-2.758-2.242-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,2h-4v1h4c1.654,0,3,1.346,3,3v4h1v-4c0-2.207-1.794-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.793,4,4v4h1v-4c0-2.758-2.242-5-5-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,6c0-3.301-2.699-6-6-6H0v10h10V6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,6c0-2.758-2.242-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,2H0v1h4c1.654,0,3,1.346,3,3v4h1V6C8,3.793,6.206,2,4,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.793,4,4v4h1V6C9,3.242,6.758,1,4,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.02">
-<stop offset="0" stop-color="#D45B5B"/>
-<stop offset="1" stop-color="#A82222"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="48.0239">
+<stop offset="0" style="stop-color:#D45B5B"/>
+<stop offset="1" style="stop-color:#A82222"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="8" y2="-39.03">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="8" y2="-39.0326">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v4c0,2.756,2.243,5,5,5h4v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,2.756,2.243,5,5,5h4v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,6c-1.654,0-3-1.346-3-3v-3h-1v3c0,2.205,1.795,4,4,4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,7c-2.205,0-4-1.795-4-4v-3h-1v3c0,2.756,2.243,5,5,5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v4c0,2.756,2.243,5,5,5h4V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,2.756,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,6C4.346,6,3,4.654,3,3V0H2v3c0,2.205,1.795,4,4,4h4V6H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,7C3.795,7,2,5.205,2,3V0H1v3c0,2.756,2.243,5,5,5h4V7H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="8" y2="-39.03">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="8" y2="-39.0326">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.701,6-6v-4h-10z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h4c2.758,0,5-2.244,5-5v-4h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h4c2.758,0,5-2.244,5-5v-3h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v3c0,1.654-1.346,3-3,3h-4v1h4c2.206,0,4-1.795,4-4v-3h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v3c0,2.205-1.794,4-4,4h-4v1h4c2.758,0,5-2.244,5-5v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h4c3.301,0,6-2.701,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h4c2.758,0,5-2.244,5-5V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h4c2.758,0,5-2.244,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v3c0,1.654-1.346,3-3,3H0v1h4c2.206,0,4-1.795,4-4V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v3c0,2.205-1.794,4-4,4H0v1h4c2.758,0,5-2.244,5-5V0H8z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="8" y2="-39.03">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="8" y2="-39.0326">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="38" y2="-9.032">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="38" y2="-9.0318">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="38" y2="-9.032">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="38" y2="-9.0318">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="38" y2="-9.032">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="38" y2="-9.0318">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="50"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="48" y2="0.9684">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="48.001" y2="0.9684">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,2c-2.205,0-4,1.793-4,4v4h1v-4c0-1.654,1.346-3,3-3h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.242-5,5v4h1v-4c0-2.207,1.795-4,4-4h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,2C3.795,2,2,3.793,2,6v4h1V6c0-1.654,1.346-3,3-3h4V2H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.242,1,6v4h1V6c0-2.207,1.795-4,4-4h4V1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="48" y2="0.9684">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="48.001" y2="0.9684">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_btn_red_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.301-2.699-6-6-6h-4v10h10v-4z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,6c0-2.758-2.242-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,2h-4v1h4c1.654,0,3,1.346,3,3v4h1v-4c0-2.207-1.794-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.793,4,4v4h1v-4c0-2.758-2.242-5-5-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,6c0-3.301-2.699-6-6-6H0v10h10V6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,6c0-2.758-2.242-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,2H0v1h4c1.654,0,3,1.346,3,3v4h1V6C8,3.793,6.206,2,4,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.793,4,4v4h1V6C9,3.242,6.758,1,4,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="48" y2="0.9684">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#731717"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="48.001" y2="0.9684">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#731717"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-90" y2="10.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-89.9995" y2="10.6015">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,4c0,3.3,2.7,6,6,6h4v-10h-10v4z" fill="url(#SVGID_1_)"/>
+<path d="M0,4c0,3.3,2.7,6,6,6h4V0H0V4z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90" y2="10.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.9995" y2="10.6015">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,10h4c3.3,0,6-2.7,6-6v-4h-10v10z" fill="url(#SVGID_1_)"/>
+<path d="M0,10h4c3.3,0,6-2.7,6-6V0H0V10z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90" y2="10.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.9995" y2="10.6015">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-10" y2="90.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-10" y2="90.6014">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="90.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="90.6014">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="90.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="90.6014">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y2="100.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="0" y2="100.601">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,0h-4c-3.3,0-6,2.7-6,6v4h10v-10z" fill="url(#SVGID_1_)"/>
+<path d="M10,0H6C2.7,0,0,2.7,0,6v4h10V0z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="100.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="100.601">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_focused_day_ind_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.7-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<path d="M10,6c0-3.3-2.7-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="100.6">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="100.601">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<g>
<rect fill="#FFFFFF" height="10" width="80"/>
+</g>
<rect fill="#B4B4B9" height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v4c0,3.299,2.7,6,6,6h4v-10h-10z" fill="#FFFFFF"/>
-<path d="M6,9c-2.757,0-5-2.244-5-5v-4h-1v4c0,3.299,2.7,6,6,6h4v-1h-4z" fill="#B4B4B9"/>
-</svg>
\ No newline at end of file
+<g>
+<g>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V0H0z" fill="#FFFFFF"/>
+</g>
+<path d="M6,9C3.243,9,1,6.756,1,4V0H0v4c0,3.299,2.7,6,6,6h4V9H6z" fill="#B4B4B9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v10h4c3.3,0,6-2.701,6-6v-4h-10z" fill="#FFFFFF"/>
-<path d="M9,0v4c0,2.756-2.243,5-5,5h-4v1h4c3.3,0,6-2.701,6-6v-4h-1z" fill="#B4B4B9"/>
-</svg>
\ No newline at end of file
+<g>
+<g>
+<path d="M0,0v10h4c3.3,0,6-2.701,6-6V0H0z" fill="#FFFFFF"/>
+</g>
+<path d="M9,0v4c0,2.756-2.243,5-5,5H0v1h4c3.3,0,6-2.701,6-6V0H9z" fill="#B4B4B9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="#FFFFFF" height="80" width="80"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<g>
<rect fill="#FFFFFF" height="80" width="10"/>
+</g>
<rect fill="#B4B4B9" height="80" width="1"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<g>
<rect fill="#FFFFFF" height="80" width="10"/>
+</g>
<rect fill="#B4B4B9" height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<g>
<rect fill="#FFFFFF" height="10" width="80"/>
+</g>
<rect fill="#B4B4B9" height="1" width="80"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h10v-10h-4z" fill="#FFFFFF"/>
-<path d="M6,0c-3.3,0-6,2.699-6,6v4h1v-4c0-2.758,2.243-5,5-5h4v-1h-4z" fill="#B4B4B9"/>
-</svg>
\ No newline at end of file
+<g>
+<g>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h10V0H6z" fill="#FFFFFF"/>
+</g>
+<path d="M6,0C2.7,0,0,2.699,0,6v4h1V6c0-2.758,2.243-5,5-5h4V0H6z" fill="#B4B4B9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_meeting_bg_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10,6c0-3.301-2.7-6-6-6h-4v10h10v-4z" fill="#FFFFFF"/>
-<path d="M4,0h-4v1h4c2.757,0,5,2.242,5,5v4h1v-4c0-3.301-2.7-6-6-6z" fill="#B4B4B9"/>
-</svg>
\ No newline at end of file
+<g>
+<g>
+<path d="M10,6c0-3.301-2.7-6-6-6H0v10h10V6z" fill="#FFFFFF"/>
+</g>
+<path d="M4,0H0v1h4c2.757,0,5,2.242,5,5v4h1V6C10,2.699,7.3,0,4,0z" fill="#B4B4B9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="#FFFFFF" height="10" width="80"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="#FFFFFF" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="#FFFFFF" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="#FFFFFF" height="80" width="80"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="#FFFFFF" height="80" width="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="#FFFFFF" height="80" width="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="#FFFFFF" height="10" width="80"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="#FFFFFF" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_bg_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="#FFFFFF" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_title_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_title_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#7D7D82" height="34" width="34"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_title_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_title_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#7D7D82" height="34" width="34"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_title_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_monthgrid_title_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#7D7D82" height="34" width="34"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="#14141E" fill-opacity="0.1" height="10" stroke-opacity="0.1" width="80"/>
<rect fill="#14141E" fill-opacity="0.2" height="9" stroke-opacity="0.2" width="80"/>
<rect fill="#FFFFFF" height="8" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v3c0,3.859,3.141,7,7,7h3v-10h-10z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M1,0v3c0,3.301,2.7,6,6,6h3v-9h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v2c0,3.301,2.7,6,6,6h3v-8h-9z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v3c0,3.859,3.141,7,7,7h3V0H0z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M1,0v3c0,3.301,2.7,6,6,6h3V0H1z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v2c0,3.301,2.7,6,6,6h3V0H1z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h3c3.859,0,7-3.141,7-7v-3h-10z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v9h3c3.3,0,6-2.699,6-6v-3h-9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v8h3c3.3,0,6-2.699,6-6v-2h-9z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v10h3c3.859,0,7-3.141,7-7V0H0z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M0,0v9h3c3.3,0,6-2.699,6-6V0H0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v8h3c3.3,0,6-2.699,6-6V0H0z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill="#FFFFFF" height="80" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="#14141E" fill-opacity="0.1" height="80" stroke-opacity="0.1" width="10"/>
<rect fill="#FFFFFF" height="80" width="9" x="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="#14141E" fill-opacity="0.1" height="80" stroke-opacity="0.1" width="10"/>
<rect fill="#FFFFFF" height="80" width="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="#14141E" fill-opacity="0.1" height="10" stroke-opacity="0.1" width="80"/>
<rect fill="#FFFFFF" height="9" width="80" y="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0c-3.859,0-7,3.141-7,7v3h10v-10h-3z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M7,1c-3.3,0-6,2.701-6,6v3h9v-9h-3z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M7,0C3.141,0,0,3.141,0,7v3h10V0H7z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M7,1C3.7,1,1,3.701,1,7v3h9V1H7z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_bg_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,7c0-3.859-3.141-7-7-7h-3v10h10v-3z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M9,8c0-3.299-2.7-6-6-6h-3v8h9v-2z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,7c0-3.299-2.7-6-6-6h-3v9h9v-3z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M10,7c0-3.859-3.141-7-7-7H0v10h10V7z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9,8c0-3.299-2.7-6-6-6H0v8h9V8z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,7c0-3.299-2.7-6-6-6H0v9h9V7z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_title_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_title_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="34" width="34" y="0"/>
+<rect fill="none" height="34" width="33.999" y="0"/>
<rect fill="url(#SVGID_1_)" height="34" width="34"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17" x2="17" y2="34">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="16.9995" x2="16.9995" y1="0" y2="34.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_title_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_title_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="34" width="34" y="0"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v28h34v-34h-28z" fill="url(#SVGID_1_)"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v28h34V0H6z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="34" width="34"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17" x2="17" y2="34">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17" x2="17" y1="0" y2="34.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_title_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_cal_preview_title_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="34" width="34" x="0.001" y="0"/>
-<path d="M34,6c0-3.3-2.7-6-6-6h-28v34h34v-28z" fill="url(#SVGID_1_)"/>
+<rect fill="none" height="34" width="33.999" x="0.001" y="0"/>
+<path d="M34,6c0-3.3-2.7-6-6-6H0v34h34V6z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="34" width="34"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17" x2="17" y2="34">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17" x2="17" y1="0" y2="34.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_character_preview_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_character_preview_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="70px" version="1.1" viewBox="0 0 10 70" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="70" width="10"/>
<rect fill-opacity="0.2" height="70" stroke-opacity="0.2" width="10"/>
@@ -11,9 +11,9 @@
<rect fill="#FFFFFF" height="3" width="10" y="1"/>
<rect fill="#FFFFFF" height="3" width="10" y="65"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="67" y2="2">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="67" y2="2.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_character_preview_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_character_preview_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="70px" version="1.1" viewBox="0 0 10 70" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="70" width="10"/>
-<path d="M9,0c-4.963,0-9,4.037-9,9v51c0,4.963,4.037,10,9,10h1v-70h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,60v1c0,4.4,3.6,8,8,8h1v-9h-9z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,2c-3.859,0-7,3.141-7,7v51c0,3.859,3.141,7,7,7h1v-65h-1z" fill="url(#SVGID_1_)"/>
-<path d="M9,64c-2.205,0-4-1.794-4-4v-51c0-2,1.795-3,4-3h1v-4h-1c-3.859,0-7,3.141-7,7v51c0,3.859,3.141,7,7,7h1v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,3c-3.309,0-6,2.691-6,6v1h1c0-2.757,2.243-5,5-5h1v-2h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,65c-2.757,0-5-2.243-5-5v-51c0-2.757,2.243-5,5-5h1v-3h-1c-4.4,0-8,3.6-8,8v51c0,4.4,3.6,8,8,8h1v-3h-1z" fill="#FFFFFF"/>
+<path d="M9,0C4.037,0,0,4.037,0,9v51c0,4.963,4.037,10,9,10h1V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,60v1c0,4.4,3.6,8,8,8h1v-9H1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,2C5.141,2,2,5.141,2,9v51c0,3.859,3.141,7,7,7h1V2H9z" fill="url(#SVGID_1_)"/>
+<path d="M9,64c-2.205,0-4-1.794-4-4V9c0-2,1.795-3,4-3h1V2H9C5.141,2,2,5.141,2,9v51c0,3.859,3.141,7,7,7h1v-3H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,3C5.691,3,3,5.691,3,9v1h1c0-2.757,2.243-5,5-5h1V3H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,65c-2.757,0-5-2.243-5-5V9c0-2.757,2.243-5,5-5h1V1H9C4.6,1,1,4.6,1,9v51c0,4.4,3.6,8,8,8h1v-3H9z" fill="#FFFFFF"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="67" y2="2">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="67" y2="2.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_character_preview_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_character_preview_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="70px" version="1.1" viewBox="0 0 10 70" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="70" width="10"/>
-<path d="M1,0h-1v70h1c4.963,0,9-5.037,9-10v-51c0-4.963-4.037-9-9-9z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,60v9h1c4.4,0,8-3.6,8-8v-1h-9z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,2h-1v65h1c3.859,0,7-3.141,7-7v-51c0-3.859-3.141-7-7-7z" fill="url(#SVGID_1_)"/>
-<path d="M1,2h-1v4h1c2.205,0,4,1,4,3v51c0,2.206-1.795,4-4,4h-1v3h1c3.859,0,7-3.141,7-7v-51c0-3.859-3.141-7-7-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,3h-1v2h1c2.757,0,5,2.243,5,5h1v-1c0-3.309-2.691-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,1h-1v3h1c2.757,0,5,2.243,5,5v51c0,2.757-2.243,5-5,5h-1v3h1c4.4,0,8-3.6,8-8v-51c0-4.4-3.6-8-8-8z" fill="#FFFFFF"/>
+<path d="M1,0H0v70h1c4.963,0,9-5.037,9-10V9C10,4.037,5.963,0,1,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,60v9h1c4.4,0,8-3.6,8-8v-1H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,2H0v65h1c3.859,0,7-3.141,7-7V9C8,5.141,4.859,2,1,2z" fill="url(#SVGID_1_)"/>
+<path d="M1,2H0v4h1c2.205,0,4,1,4,3v51c0,2.206-1.795,4-4,4H0v3h1c3.859,0,7-3.141,7-7V9C8,5.141,4.859,2,1,2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,3H0v2h1c2.757,0,5,2.243,5,5h1V9C7,5.691,4.309,3,1,3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,1H0v3h1c2.757,0,5,2.243,5,5v51c0,2.757-2.243,5-5,5H0v3h1c4.4,0,8-3.6,8-8V9C9,4.6,5.4,1,1,1z" fill="#FFFFFF"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="67" y2="2">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="67" y2="2.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="38" stroke-opacity="0.8" width="38"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38" y="37"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-38h-34z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M4,37c-1.654,0-3-1.346-3-3v-30c0-1.654,1.346-3,3-3h34v-1h-34c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-1h-34z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M4,0C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34V0H4z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M4,37c-1.654,0-3-1.346-3-3V4c0-1.654,1.346-3,3-3h34V0H4C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34v-1H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="38" stroke-opacity="0.8" width="38"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38" y="37"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_edit_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_edit_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
<rect fill="#BEBEC8" height="1" width="38" y="37"/>
<rect fill="#BEBEC8" height="1" width="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.25" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.25" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_edit_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_edit_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-38h-34z" fill="url(#SVGID_1_)"/>
-<path d="M4,37c-1.654,0-3-1.346-3-3v-30c0-1.654,1.346-3,3-3h34v-1h-34c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-1h-34z" fill="#BEBEC8"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,37c-1.654,0-3-1.346-3-3V4c0-1.654,1.346-3,3-3h34V0H4C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34v-1H4z" fill="#BEBEC8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.25" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.25" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_edit_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_edit_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
<rect fill="#BEBEC8" height="1" width="38" y="37"/>
<rect fill="#BEBEC8" height="1" width="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.25" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.25" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="2" y2="36">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="2" y2="36.0005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="34" width="38" y="2"/>
<rect fill="#3C3C3C" fill-opacity="0.1" height="2" stroke-opacity="0.1" width="38" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19" x2="19" y1="0.167" y2="37.94">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19" x2="19" y1="0.167" y2="37.936">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19" x2="19" y1="0.1675" y2="37.94">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19" x2="19" y1="0.1675" y2="37.9365">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="3" width="38" y="35"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="2" y2="36">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="2" y2="36.0005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M4,2c-1.103,0-2,0.897-2,2v30c0,1.103,0.897,2,2,2h34v-34h-34z" fill="url(#SVGID_1_)"/>
-<path d="M4,2c-1.103,0-2,0.897-2,2h36v-2h-34z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19" x2="19" y1="0.167" y2="37.94">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M4,2C2.897,2,2,2.897,2,4v30c0,1.103,0.897,2,2,2h34V2H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,2C2.897,2,2,2.897,2,4h36V2H4z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19" x2="19" y1="0.167" y2="37.9365">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M4,35c-0.542,0-1-0.458-1-1v-30c0-0.542,0.458-1,1-1h34v-3h-34c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-3h-34z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M4,35c-0.542,0-1-0.458-1-1V4c0-0.542,0.458-1,1-1h34V0H4C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34v-3 H4z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="2" y2="36">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="2" y2="36.0005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="34" width="38" y="2"/>
<rect fill="#3C3C3C" fill-opacity="0.1" height="2" stroke-opacity="0.1" width="38" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19" x2="19" y1="0.1675" y2="37.94">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19" x2="19" y1="0.1675" y2="37.9365">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="38" y="35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19" x2="19" y1="0.167" y2="37.94">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19" x2="19" y1="0.167" y2="37.936">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="3" width="38"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38" y="37"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#919196"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#919196"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-38h-34z" fill="url(#SVGID_1_)"/>
-<path d="M4,37c-1.654,0-3-1.346-3-3v-30c0-1.654,1.346-3,3-3h34v-1h-34c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-1h-34z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,37c-1.654,0-3-1.346-3-3V4c0-1.654,1.346-3,3-3h34V0H4C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34v-1H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#919196"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#919196"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38" y="37"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#919196"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#919196"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
<rect fill="#BEBEC8" height="1" width="38" y="37"/>
<rect fill="#BEBEC8" height="1" width="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-38h-34z" fill="url(#SVGID_1_)"/>
-<path d="M4,37c-1.654,0-3-1.346-3-3v-30c0-1.654,1.346-3,3-3h34v-1h-34c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-1h-34z" fill="#BEBEC8"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,37c-1.654,0-3-1.346-3-3V4c0-1.654,1.346-3,3-3h34V0H4C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34v-1H4z" fill="#BEBEC8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
<rect fill="#BEBEC8" height="1" width="38" y="37"/>
<rect fill="#BEBEC8" height="1" width="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
@@ -9,8 +9,8 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38" y="1"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="38" y2="0.1907">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-38h-34z" fill="url(#SVGID_1_)"/>
-<path d="M4,37c-1.654,0-3-1.346-3-3v-30c0-1.654,1.346-3,3-3h34v-1h-34c-2.2,0-4,1.8-4,4v30c0,2.2,1.8,4,4,4h34v-1h-34z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M38,36h-34c-1.103,0-2-0.897-2-2v-30c0-1.103,0.897-2,2-2h34v-1h-34c-1.654,0-3,1.346-3,3v30c0,1.654,1.346,3,3,3h34v-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34V0H4z" fill="url(#SVGID_1_)"/>
+<path d="M4,37c-1.654,0-3-1.346-3-3V4c0-1.654,1.346-3,3-3h34V0H4C1.8,0,0,1.8,0,4v30c0,2.2,1.8,4,4,4h34v-1H4z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M38,36H4c-1.103,0-2-0.897-2-2V4c0-1.103,0.897-2,2-2h34V1H4C2.346,1,1,2.346,1,4v30 c0,1.654,1.346,3,3,3h34V36z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="38" y2="0.1907">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_combobox_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
<rect fill="url(#SVGID_1_)" height="38" width="38"/>
@@ -9,8 +9,8 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="38" y="1"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="38" y2="0.1907">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="8.999" stroke-opacity="0.1" width="315"/>
-<rect fill="url(#SVGID_1_)" height="7.987" width="315"/>
-<rect fill-opacity="0.2" height="0.999" stroke-opacity="0.2" width="315" y="6.988"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="5.988"/>
-<rect fill="none" height="15" width="315"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="8.999" stroke-opacity="0.1" width="315"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="7.987" width="315"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="0.999" stroke-opacity="0.2" width="315" y="6.988"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="5.988"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="315"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="-42.53" y2="8.272">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="-42.5293" y2="8.2725">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0.002,0v0.004c0,4.96,4.037,8.995,9,8.995h5.998v-8.999h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0c0.005,4.404,3.592,7.987,8,7.987h7v-7.987h-15z" fill="url(#SVGID_1_)"/>
-<path d="M8,6.988c-3.857,0-6.995-3.133-7-6.988h-1c0.005,4.406,3.592,7.987,8,7.987h7v-0.999h-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,5.988c-3.306,0-5.995-2.684-6-5.988h-1c0.005,3.855,3.143,6.988,7,6.988h7v-1h-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="15" width="15"/>
+<g>
+<path d="M0.002,0v0.004c0,4.96,4.037,8.995,9,8.995H15V0 H0.002z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0c0.005,4.404,3.592,7.987,8,7.987h7V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M8,6.988C4.143,6.988,1.005,3.855,1,0H0 c0.005,4.406,3.592,7.987,8,7.987h7V6.988H8z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M8,5.988C4.694,5.988,2.005,3.304,2,0H1 c0.005,3.855,3.143,6.988,7,6.988h7v-1H8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="-42.53" y2="8.272">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="-42.5293" y2="8.2725">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v9h6c4.962,0,9-4.036,9-8.996v-0.004h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v7.987h6c4.408,0,7.995-3.583,8-7.987h-14z" fill="url(#SVGID_1_)"/>
-<path d="M13,0c-0.005,3.855-3.144,6.988-7,6.988h-6v0.999h6c4.408,0,7.995-3.581,8-7.987h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12,0c-0.005,3.304-2.694,5.988-6,5.988h-6v1h6c3.856,0,6.995-3.133,7-6.988h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="15" width="15" y="0"/>
+<g>
+<path d="M0,0v9h6c4.962,0,9-4.036,9-8.996V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0v7.987h6c4.408,0,7.995-3.583,8-7.987H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M13,0c-0.005,3.855-3.144,6.988-7,6.988H0v0.999h6 c4.408,0,7.995-3.581,8-7.987H13z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M12,0c-0.005,3.304-2.694,5.988-6,5.988H0v1h6 c3.856,0,6.995-3.133,7-6.988H12z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15" y="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="-42.53" y2="8.273">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="-42.5288" y2="8.2729">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 315 30" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="315" x="0.099"/>
-<rect fill="url(#SVGID_1_)" height="30" width="315" x="0.099"/>
-<rect fill="none" height="30" width="315" x="0.099"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="315" x="0.099"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="315" x="0.099"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="315" x="0.099"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.6" x2="157.6" y1="-12.53" y2="38.27">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5981" x2="157.5981" y1="-12.5293" y2="38.2733">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15" x="0.001"/>
-<polygon fill="url(#SVGID_1_)" points="0,0,0,29.99,0,30,15,30,15,0"/>
-<polygon fill-opacity="0.2" points="1,29.99,1,0,0,0,0,29.99,0,30,1,30" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,29.99,2,0,1,0,1,29.99,1,30,2,30" stroke-opacity="0.2"/>
-<rect fill="none" height="30" width="15" x="0"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="14.999" x="0.001"/>
+<polygon fill="url(#SVGID_1_)" fill-rule="evenodd" points="0,0 0,29.991 0,30 15,30 15,0 "/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="1,29.991 1,0 0,0 0,29.991 0,30 1,30 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" points="2,29.991 2,0 1,0 1,29.991 1,30 2,30 " stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="15" x="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="-12.53" y2="38.27">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="-12.5293" y2="38.2733">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,0.019v-0.019h-15v30h15v-29.98z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<polygon fill="url(#SVGID_1_)" points="0,0,0,30,14,30,14,29.99,14,0.006,14,0"/>
-<polygon fill-opacity="0.2" points="14,0.006,14,0,13,0,13,0.006,13,29.99,13,30,14,30,14,29.99" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="13,0.006,13,0,12,0,12,0.006,12,29.99,12,30,13,30,13,29.99" stroke-opacity="0.2"/>
-<rect fill="none" height="30" width="15"/>
+<g>
+<path d="M15,0.019C15,0.013,14.999,0.006,14.999,0H0v30h15 V0.019z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<polygon fill="url(#SVGID_1_)" fill-rule="evenodd" points="0,0 0,30 14,30 14,29.991 14,0.006 14,0 "/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="14,0.006 14,0 13,0 13,0.006 13,29.991 13,30 14,30 14,29.991 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" points="13,0.006 13,0 12,0 12,0.006 12,29.991 12,30 13,30 13,29.991 " stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="-12.53" y2="38.27">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="-12.5293" y2="38.2732">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="8.976" stroke-opacity="0.1" width="315" y="6.023"/>
-<rect fill="url(#SVGID_1_)" height="7.99" width="315" y="7.009"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="7.009"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="0.999" stroke-opacity="0.2" width="315" y="8.009"/>
-<rect fill="none" height="15" width="315"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="8.976" stroke-opacity="0.1" width="315" y="6.023"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="7.99" width="315" y="7.009"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="7.009"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="0.999" stroke-opacity="0.2" width="315" y="8.009"/>
+<rect fill="none" fill-rule="evenodd" height="14.999" width="315"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="2.469" y2="53.27">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="2.4692" y2="53.2741">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M11,6.024c-5.301,0.004-7.542-1.767-9.26-4.398-0.48-0.734-0.611-1.35-0.924-1.553-0.464-0.301-0.845,0.387-0.814,0.996v13.93h15v-8.976h-3.998z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,7.01c-5,0-8.203-2.823-9.545-5.716-0.294-0.633-0.455,0-0.455,0v13.71h15v-7.99h-5z" fill="url(#SVGID_1_)"/>
-<path d="M10,7.01c-5,0-8.203-2.823-9.545-5.716-0.294-0.633-0.455,0.002-0.455,0.002v13.7h1v-11.02c1.843,2.204,4.843,4.027,9,4.027h5v-1h-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,8.01c-4.157,0-7.157-1.823-9-4.026v11.02h1v-8.655c2.19,1.731,4.956,2.664,8,2.664h5v-0.999h-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="15" width="15" y="0.001"/>
+<g>
+<path d="M11.002,6.024C5.699,6.028,3.458,4.257,1.74,1.626 c-0.48-0.734-0.611-1.35-0.924-1.553C0.352-0.228-0.029,0.46,0.002,1.069v0.113V15H15V6.024H11.002z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M10,7.01c-5,0-8.203-2.823-9.545-5.716 C0.161,0.661,0,1.294,0,1.294V15h15V7.01H10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,7.01c-5,0-8.203-2.823-9.545-5.716 C0.161,0.661,0,1.296,0,1.296V15h1V3.983C2.843,6.187,5.843,8.01,10,8.01h5v-1H10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M10,8.01c-4.157,0-7.157-1.823-9-4.026V15h1V6.345 c2.19,1.731,4.956,2.664,8,2.664h5V8.01H10z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="14.999" width="15" y="0.001"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="2.471" y2="53.27">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="2.4707" y2="53.2742">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,15c-0.01-4.95-4.04-8.977-9-8.977h-6v8.976h15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M14,15c-0.004-4.406-3.591-7.99-8-7.99h-6v7.99h14z" fill="url(#SVGID_1_)"/>
-<path d="M6,7.009h-6v1h6c3.857,0,6.996,3.136,7,6.99h1c0-4.4-3.59-7.991-8-7.991z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,8.009h-6v0.999h6c3.307,0,5.996,2.688,6,5.991h1c0-3.86-3.143-6.991-7-6.991z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="15" width="15"/>
+<g>
+<path d="M14.999,14.999C14.988,10.048,10.955,6.023,6,6.023 H0v8.976H14.999z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M14,14.999c-0.004-4.406-3.591-7.99-8-7.99H0v7.99H14z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M6,7.009H0v1h6c3.857,0,6.996,3.136,7,6.99h1 C13.996,10.595,10.409,7.009,6,7.009z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M6,8.009H0v0.999h6c3.307,0,5.996,2.688,6,5.991h1 C12.996,11.145,9.857,8.009,6,8.009z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="14.999" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="2.469" y2="53.27">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="2.4692" y2="53.2741">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="-35.39" y2="7.279">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="-35.3867" y2="7.2793">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="5.967" width="315"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.5" x2="157.5" y1="-40.72" y2="7.946">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="5.967" width="315"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.4995" x2="157.4995" y1="-40.7207" y2="7.9462">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="3" width="315" y="4.967"/>
-<rect fill="none" height="15" width="315"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" fill-rule="evenodd" height="3" width="315" y="4.967"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="315"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0.002,0v0.006c0,4.959,4.038,8.994,9,8.994h5.998v-9h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.502" x2="8.502" y1="-35.39" y2="7.279">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M0.002,0v0.006C0.002,4.965,4.04,9,9.002,9H15V0 H0.002z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.502" x2="8.502" y1="-35.3867" y2="7.2793">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M2.002,0c0.017,3.293,2.701,5.967,5.998,5.967h7v-5.967h-13z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.501" x2="7.501" y1="-40.72" y2="7.946">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M2.002,0C2.019,3.293,4.703,5.967,8,5.967h7V0H2.002z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.501" x2="7.501" y1="-40.7207" y2="7.9463">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M8,4.967c-2.746,0-4.979-2.227-4.997-4.967h-3.001c0.017,4.395,3.598,7.967,7.998,7.967h7v-3h-7z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15" x="0"/>
-</svg>
\ No newline at end of file
+<path d="M8,4.967C5.254,4.967,3.021,2.74,3.003,0H0.002 C0.019,4.395,3.6,7.967,8,7.967h7v-3H8z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15" x="0"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v9h6c4.962,0,9-4.035,9-8.994v-0.006h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.998" x2="5.998" y1="-35.39" y2="7.279">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M0,0v9h6c4.962,0,9-4.035,9-8.994V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.9976" x2="5.9976" y1="-35.3867" y2="7.2793">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,0v5.967h5.998c3.298,0,5.981-2.674,5.998-5.967h-12z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.998" x2="6.998" y1="-40.72" y2="7.946">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M0,0v5.967h5.998c3.298,0,5.981-2.674,5.998-5.967H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.9976" x2="6.9976" y1="-40.7207" y2="7.9463">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M11,0c-0.018,2.74-2.25,4.967-4.997,4.967h-6.003v3h5.998c4.4,0,7.981-3.572,7.998-7.967h-3.005z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M10.995,0c-0.018,2.74-2.25,4.967-4.997,4.967H0v3h5.998 c4.4,0,7.981-3.572,7.998-7.967H10.995z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 315 30" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="315"/>
-<rect fill="url(#SVGID_1_)" height="30" width="315"/>
-<rect fill="none" height="30" width="315"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="315"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="315"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="315"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="-5.387" y2="37.28">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="-5.3867" y2="37.28">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15" x="0.002"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.5" x2="8.5" y1="-5.387" y2="37.28">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="14.998" x="0.002"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.5" x2="8.5" y1="-5.3867" y2="37.28">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M2,0v29.97c0,0.01,0.002,0.02,0.002,0.03h13v-30h-13z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.502" x2="1.502" y1="-10.72" y2="37.95">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M2,0v29.969C2,29.98,2.002,29.99,2.002,30H15V0H2z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5015" x2="1.5015" y1="-10.7207" y2="37.947">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M3,29.97v-29.97h-3v29.97c0,0.01,0.002,0.02,0.002,0.03h3.001c0-0.01-0.003-0.02-0.003-0.03z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="30" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M3,29.969V0H0v29.969C0,29.98,0.002,29.99,0.002,30h3.001 C3.003,29.99,3,29.98,3,29.969z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,0.021v-0.021h-15v30h15v-29.98z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.998" x2="5.998" y1="-5.387" y2="37.28">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M15,0.021C15,0.014,14.999,0.008,14.999,0H0v30h15 V0.021z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.9985" x2="5.9985" y1="-5.3867" y2="37.28">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,0v30h12c0-0.01,0.002-0.02,0.002-0.031v-29.97h-12z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="12.5" x2="12.5" y1="-10.72" y2="37.95">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M0,0v30h11.996c0-0.01,0.002-0.02,0.002-0.031V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="12.4961" x2="12.4961" y1="-10.7207" y2="37.947">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M14,0h-3v29.97c0,0.012-0.003,0.021-0.003,0.031h3.001c0-0.01,0.002-0.02,0.002-0.031v-29.97z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="30" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M13.998,0h-3v29.969c0,0.012-0.003,0.021-0.003,0.031 h3.001c0-0.01,0.002-0.02,0.002-0.031V0z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="8.975" stroke-opacity="0.1" width="315" y="6.025"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="9.613" y2="52.28">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="8.975" stroke-opacity="0.1" width="315" y="6.025"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="9.6133" y2="52.2793">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="6.014" width="315" y="8.986"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.5" x2="157.5" y1="4.279" y2="52.95">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="6.014" width="315" y="8.986"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.4995" x2="157.4995" y1="4.2788" y2="52.9537">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="2.998" width="315" y="6.988"/>
-<rect fill="none" height="15" width="315"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" fill-rule="evenodd" height="2.998" width="315" y="6.988"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="315"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M11,6.025c-5.301,0.004-7.542-1.767-9.26-4.398-0.48-0.734-0.611-1.35-0.924-1.553-0.464-0.301-0.845,0.387-0.814,0.996v13.93h15v-8.975h-3.998z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.5" x2="8.5" y1="9.613" y2="52.28">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M11.002,6.025C5.699,6.029,3.458,4.258,1.74,1.627 c-0.48-0.734-0.611-1.35-0.924-1.553C0.352-0.227-0.029,0.461,0.002,1.07v0.113V15H15V6.025H11.002z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.5" x2="8.5" y1="9.6133" y2="52.2818">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M10,8.986c-1.859,0-3.616-0.344-5.221-1.02l-2.779-1.173v8.207h13v-6.014h-5z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.5" x2="7.5" y1="4.279" y2="52.95">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M10,8.986c-1.859,0-3.616-0.344-5.221-1.02L2,6.793V15h13 V8.986H10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.4995" x2="7.4995" y1="4.2793" y2="52.948">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M10,6.988c-5,0-8.203-2.824-9.545-5.717-0.294-0.632-0.455,0-0.455,0v13.73h3v-6.701l1.39,0.588c1.727,0.729,3.614,1.1,5.61,1.1h5v-2.999h-5z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M10,6.988c-5,0-8.203-2.824-9.545-5.717 C0.161,0.639,0,1.271,0,1.271V15h3V8.299l1.39,0.588c1.727,0.729,3.614,1.1,5.61,1.1h5V6.988H10z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,15c-0.01-4.95-4.04-8.975-9-8.975h-6v8.975h15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.998" x2="5.998" y1="9.613" y2="52.28">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M14.999,15C14.988,10.049,10.955,6.025,6,6.025H0 V15H14.999z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.9985" x2="5.9985" y1="9.6133" y2="52.2793">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M12,14.98c0-3.307-2.691-5.998-6-5.998h-6v6.018h12v-0.016z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.998" x2="6.998" y1="4.279" y2="52.95">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M11.998,14.984c0-3.307-2.691-5.998-6-5.998H0V15h11.998 V14.984z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.9985" x2="6.9985" y1="4.2793" y2="52.9493">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M5.998,6.988h-5.998v2.998h5.998c2.758,0,5,2.242,5,4.998v0.02h3v-0.016c0-4.41-3.59-7.992-8.002-7.992z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M5.998,6.988H0v2.998h5.998c2.758,0,5,2.242,5,4.998V15h3 v-0.016C13.998,10.574,10.409,6.988,5.998,6.988z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" y="0"/>
-<rect fill="url(#SVGID_1_)" height="7.987" width="315" y="0"/>
-<rect fill-opacity="0.2" height="0.999" stroke-opacity="0.2" width="315" y="6.988"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="5.988"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" y="0"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="7.987" width="315" y="0"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="0.999" stroke-opacity="0.2" width="315" y="6.988"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="5.988"/>
<rect fill="none" height="15" width="315" y="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.2" y1="7.6" y2="-45.72">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5239" x2="157.1704" y1="7.6001" y2="-45.7241">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0.002,0v0.005c0,4.96,4.037,8.995,9,8.995h5.998v-9h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0.001,0c0.004,4.404,3.591,7.987,7.999,7.987h7v-7.987h-15z" fill="url(#SVGID_1_)"/>
-<path d="M8,6.988c-3.857,0-6.995-3.134-6.999-6.988h-1c0.004,4.405,3.591,7.987,7.999,7.987h7v-0.999h-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,5.988c-3.306,0-5.995-2.684-5.999-5.988h-1c0.004,3.854,3.142,6.988,6.999,6.988h7v-1h-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M0.002,0v0.005c0,4.96,4.037,8.995,9,8.995H15V0 H0.002z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0.001,0C0.005,4.404,3.592,7.987,8,7.987h7V0H0.001z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M8,6.988C4.143,6.988,1.005,3.854,1.001,0h-1 C0.005,4.405,3.592,7.987,8,7.987h7V6.988H8z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M8,5.988C4.694,5.988,2.005,3.304,2.001,0h-1 C1.005,3.854,4.143,6.988,8,6.988h7v-1H8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.559" x2="7.205" y1="8.693" y2="-44.62">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5586" x2="7.2052" y1="8.6934" y2="-44.6244">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v9h6c4.962,0,9-4.035,9-8.995v-0.005h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v7.987h6c4.408,0,7.995-3.583,7.999-7.987h-14z" fill="url(#SVGID_1_)"/>
-<path d="M13,0c0,3.854-3.144,6.988-7,6.988h-6v0.999h6c4.408,0,7.995-3.582,7.999-7.987h-1.001z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12,0c0,3.304-2.694,5.988-6,5.988h-6v1h6c3.856,0,6.995-3.134,6.999-6.988h-1.001z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M0,0v9h6c4.962,0,9-4.035,9-8.995V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0v7.987h6c4.408,0,7.995-3.583,7.999-7.987H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M12.999,0C12.995,3.854,9.856,6.988,6,6.988H0v0.999h6 c4.408,0,7.995-3.582,7.999-7.987H12.999z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M11.999,0C11.995,3.304,9.306,5.988,6,5.988H0v1h6 c3.856,0,6.995-3.134,6.999-6.988H11.999z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.017" x2="6.663" y1="6.51" y2="-46.81">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0166" x2="6.6631" y1="6.5098" y2="-46.8145">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 315 30" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="315"/>
-<rect fill="url(#SVGID_1_)" height="30" width="315"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="315"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="315"/>
<rect fill="none" height="30" width="315"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.6" x2="157.3" y1="37.6" y2="-15.72">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.6499" x2="157.2964" y1="37.5986" y2="-15.7238">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15" x="0.002"/>
-<polygon fill="url(#SVGID_1_)" points="0,0,0,29.99,0.001,30,15,30,15,0"/>
-<polygon fill-opacity="0.2" points="1,29.99,1,0,0,0,0,29.99,0.001,30,1.001,30" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,29.99,2,0,1,0,1,29.99,1.001,30,2.001,30" stroke-opacity="0.2"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="14.998" x="0.002"/>
+<polygon fill="url(#SVGID_1_)" fill-rule="evenodd" points="0,0 0,29.991 0.001,30 15,30 15,0 "/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="1,29.991 1,0 0,0 0,29.991 0.001,30 1.001,30 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" points="2,29.991 2,0 1,0 1,29.991 1.001,30 2.001,30 " stroke-opacity="0.2"/>
<rect fill="none" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.657" x2="7.304" y1="38.69" y2="-14.63">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.6572" x2="7.3037" y1="38.6934" y2="-14.6309">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,0.02c0-0.007-0.001-0.013-0.001-0.02h-15v30h15v-29.98z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<polygon fill="url(#SVGID_1_)" points="0,0,0,30,14,30,14,29.99,14,0.006,14,0"/>
-<polygon fill-opacity="0.2" points="14,0.006,14,0,13,0,13,0.006,13,29.99,13,30,14,30,14,29.99" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="13,0.006,13,0,12,0,12,0.006,12,29.99,12,30,13,30,13,29.99" stroke-opacity="0.2"/>
+<g>
+<path d="M15,0.02c0-0.007-0.001-0.013-0.001-0.02H0v30h15 V0.02z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<polygon fill="url(#SVGID_1_)" fill-rule="evenodd" points="0,0 0,30 13.999,30 14,29.991 14,0.006 14,0 "/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="14,0.006 14,0 13,0 13,0.006 13,29.991 12.999,30 13.999,30 14,29.991 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" points="13,0.006 13,0 12,0 12,0.006 12,29.991 11.999,30 12.999,30 13,29.991 " stroke-opacity="0.2"/>
<rect fill="none" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.143" x2="6.789" y1="36.51" y2="-16.81">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.1426" x2="6.7891" y1="36.5078" y2="-16.8146">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="8.976" stroke-opacity="0.1" width="315" y="6.024"/>
-<rect fill="url(#SVGID_1_)" height="7.99" width="315" y="7.01"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="7.01"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="0.999" stroke-opacity="0.2" width="315" y="8.01"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="8.976" stroke-opacity="0.1" width="315" y="6.024"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="7.99" width="315" y="7.01"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="7.01"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="0.999" stroke-opacity="0.2" width="315" y="8.01"/>
<rect fill="none" height="15" width="315"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.8" x2="157.4" y1="52.59" y2="-0.7243">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.7759" x2="157.4224" y1="52.5947" y2="-0.7243">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M11,6.024c-5.301,0.004-7.542-1.766-9.26-4.397-0.48-0.735-0.611-1.351-0.924-1.554-0.464-0.301-0.845,0.387-0.814,0.996v13.93h15v-8.976h-3.998z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,7.01c-5,0-8.203-2.824-9.545-5.716-0.294-0.633-0.455,0-0.455,0v13.71h15v-7.99h-5z" fill="url(#SVGID_1_)"/>
-<path d="M10,7.01c-5,0-8.203-2.824-9.545-5.716-0.294-0.633-0.455,0.002-0.455,0.002v13.7h1v-11.02c1.843,2.205,4.843,4.028,9,4.028h5v-1h-5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,8.01c-4.157,0-7.157-1.823-9-4.027v11.02h1v-8.655c2.19,1.731,4.956,2.664,8,2.664h5v-0.999h-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M11.002,6.024C5.699,6.028,3.458,4.258,1.74,1.627 C1.26,0.892,1.129,0.276,0.816,0.073C0.352-0.228-0.029,0.46,0.002,1.069v0.113V15H15V6.024H11.002z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M10,7.01c-5,0-8.203-2.824-9.545-5.716 C0.161,0.661,0,1.294,0,1.294V15h15V7.01H10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,7.01c-5,0-8.203-2.824-9.545-5.716 C0.161,0.661,0,1.296,0,1.296V15h1V3.982C2.843,6.187,5.843,8.01,10,8.01h5v-1H10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M10,8.01c-4.157,0-7.157-1.823-9-4.027V15h1V6.345 c2.19,1.731,4.956,2.664,8,2.664h5V8.01H10z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.783" x2="7.429" y1="53.69" y2="0.3682">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.7827" x2="7.4292" y1="53.6924" y2="0.3682">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_received_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,15c-0.01-4.95-4.04-8.976-9-8.976h-6v8.976h15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M14,15c-0.003-4.407-3.591-7.99-8-7.99h-6v7.99h14z" fill="url(#SVGID_1_)"/>
-<path d="M6,7.01h-6v1h6c3.857,0,6.997,3.136,7,6.99h1c0-4.4-3.59-7.99-8-7.99z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,8.01h-6v0.999h6c3.307,0,5.997,2.688,6,5.991h1c0-3.85-3.143-6.99-7-6.99z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M14.999,15C14.988,10.05,10.955,6.024,6,6.024H0V15 H14.999z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M14,15c-0.003-4.407-3.591-7.99-8-7.99H0V15H14z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M6,7.01H0v1h6c3.857,0,6.997,3.136,7,6.99h1 C13.997,10.595,10.409,7.01,6,7.01z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M6,8.01H0v0.999h6c3.307,0,5.997,2.688,6,5.991h1 C12.997,11.146,9.857,8.01,6,8.01z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.242" x2="6.889" y1="51.51" y2="-1.817">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.2422" x2="6.8887" y1="51.5137" y2="-1.817">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" y="0"/>
-<rect fill="url(#SVGID_1_)" height="8" width="315" y="0"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" y="0"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="8" width="315" y="0"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="7"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="6"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="6"/>
<rect fill="none" height="15" width="315" y="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="-36.42" y2="7.841">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="-36.4199" y2="7.8411">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0c0,4.963,4.037,9,9,9h6v-9h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v1c0,4.41,3.589,7,8,7h7v-8h-15z" fill="url(#SVGID_1_)"/>
-<path d="M14,7h-6c-3.484,0-7-1.856-7-6v-1h-1v1c0,4.41,3.589,7,8,7h7v-1h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,6c-2.768,0-6-1.309-6-5v-1h-1v1c0,4.145,3.516,6,7,6h7v-1h-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M0,0c0,4.963,4.037,9,9,9h6V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0v1c0,4.41,3.589,7,8,7h7V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14,7H8C4.516,7,1,5.144,1,1V0H0v1c0,4.41,3.589,7,8,7h6h1V7H14z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,6C5.232,6,2,4.691,2,1V0H1v1 c0,4.145,3.516,6,7,6h7V6H8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15" y="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="-36.42" y2="7.841">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="-36.4229" y2="7.8408">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v9h4c4.61,0,7.485,2.654,8.638,5.141,0.33,0.71,0.81,0.86,1.15,0.86,0.555,0,1.016-0.406,1.176-1.035l0.03-0.12v-13.84h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v8h4c5,0,8.203,2.827,9.545,5.719,0.294,0.633,0.455,0,0.455,0v-13.72h-14z" fill="url(#SVGID_1_)"/>
-<path d="M13,0v11.03c-1.84-2.206-4.843-4.03-9-4.03h-4v1h4c5,0,8.203,2.827,9.545,5.719,0.294,0.633,0.455,0,0.455,0v-13.72h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12,0v8.667c-2.191-1.734-4.957-2.667-8-2.667h-4v1h4c4.157,0,7.156,1.825,9,4.03v-11.03h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M0,0v9h4c4.61,0,7.485,2.654,8.638,5.141 C12.968,14.852,13.448,15,13.793,15c0.555,0,1.016-0.406,1.176-1.035L15,13.844V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0v8h4c5,0,8.203,2.827,9.545,5.719 c0.294,0.633,0.455,0,0.455,0V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M13,0v1v10.03C11.156,8.824,8.157,7,4,7H0v1h4c5,0,8.203,2.827,9.545,5.719c0.294,0.633,0.455,0,0.455,0V1V0 H13z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M12,0v8.667C9.809,6.933,7.043,6,4,6H0v1h4 c4.157,0,7.156,1.825,9,4.03V0H12z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15" y="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="-36.43" y2="7.842">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="-36.4253" y2="7.8415">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 315 30" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="315" x="-0.376" y="0.462"/>
-<rect fill="url(#SVGID_1_)" height="30" width="315"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="315" x="-0.376" y="0.462"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="315"/>
<rect fill="none" height="30" width="315" x="-0.376" y="0.462"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="-6.422" y2="37.84">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="-6.4224" y2="37.8422">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15"/>
-<rect fill="url(#SVGID_1_)" height="30" width="15"/>
-<polygon fill-opacity="0.2" points="1,6,1,0,0,0,0,6,0,30,1,30" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="15"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="15"/>
+<polygon fill-opacity="0.2" points="1,6 1,0 0,0 0,6 0,30 1,30 " stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="30" stroke-opacity="0.2" width="1" x="1"/>
<rect fill="none" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="-6.422" y2="37.84">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="-6.4224" y2="37.8422">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15"/>
-<rect fill="url(#SVGID_1_)" height="30" width="14"/>
-<polygon fill-opacity="0.2" points="14,0,13,0,13,6,13,30,14,30,14,6" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="12"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="15"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="14"/>
+<polygon fill-opacity="0.2" points="14,0 13,0 13,6 13,30 14,30 14,6 " stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="30" stroke-opacity="0.2" width="1" x="12"/>
<rect fill="none" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="-6.422" y2="37.84">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="-6.4224" y2="37.8422">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" x="0" y="6"/>
-<rect fill="url(#SVGID_1_)" height="8" width="315" x="0" y="7"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" x="0" y="6"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="8" width="315" x="0" y="7"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" x="0" y="7"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" x="0" y="8"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" x="0" y="8"/>
<rect fill="none" height="15" width="315" x="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="8.577" y2="52.84">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.4995" x2="157.4995" y1="8.5771" y2="52.8435">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M9,6c-4.963,0-9,4.037-9,9h15v-9h-6z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M8,7c-4.411,0-8,3.59-8,8h15v-8h-7z" fill="url(#SVGID_1_)"/>
-<path d="M14,7h-6c-4.411,0-8,3.59-8,8h1c0-3.859,3.14-7,7-7h7v-1h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,8c-3.86,0-7,3.141-7,7h1c0-3.309,2.691-6,6-6h7v-1h-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M9,6c-4.963,0-9,4.037-9,9h15V6H9z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M8,7c-4.411,0-8,3.59-8,8h15V7H8z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14,7H8c-4.411,0-8,3.59-8,8h1c0-3.859,3.14-7,7-7h6h1V7H14z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,8c-3.86,0-7,3.141-7,7h1c0-3.309,2.691-6,6-6h7 V8H8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="8.577" y2="52.84">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="8.5771" y2="52.8435">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,15c0-4.963-4.038-9-9-9h-6v9h15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M14,15c0-4.41-3.589-8-8-8h-6v8h14z" fill="url(#SVGID_1_)"/>
-<path d="M6,7h-6v1h6c3.859,0,7,3.141,7,7h1c0-4.41-3.59-8-8-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,8h-6v1h6c3.309,0,6,2.691,6,6h1c0-3.86-3.141-7-7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M15,15c0-4.963-4.038-9-9-9H0v9H15z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M14,15c0-4.41-3.589-8-8-8H0v8H14z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M6,7H0v1h6c3.859,0,7,3.141,7,7h1C14,10.59,10.411,7,6,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,8H0v1h6c3.309,0,6,2.691,6,6h1 C13,11.141,9.859,8,6,8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="8.577" y2="52.84">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="8.5771" y2="52.8435">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="15" width="315" x="0.124"/>
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" x="0.124"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.7" x2="157.3" y1="7.481" y2="-34.56">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="none" fill-rule="evenodd" height="15" width="315" x="0.124"/>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" x="0.124"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.6587" x2="157.3321" y1="7.4814" y2="-34.5649">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="6" width="315" x="0.124"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.6" x2="157.6" y1="-38.43" y2="9.567">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="6" width="315" x="0.124"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.6235" x2="157.6235" y1="-38.4326" y2="9.5674">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="3" width="315" x="0.124" y="5"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" fill-rule="evenodd" height="3" width="315" x="0.124" y="5"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0c0,4.963,4.037,9,9,9h6v-9h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.564" x2="8.238" y1="8.755" y2="-33.29">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M0,0c0,4.963,4.037,9,9,9h6V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.5645" x2="8.2379" y1="8.7549" y2="-33.2915">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M2,0v1c0,3.037,2.354,5,6,5h7v-6h-13z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.5" x2="7.5" y1="-38.43" y2="9.567">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<path d="M2,0v1c0,3.037,2.354,5,6,5h7V0H2z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.4995" x2="7.4995" y1="-38.4326" y2="9.5674">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<path d="M8,5c-2.757,0-5-1.244-5-4v-1h-3v1c0,4.41,3.589,7,8,7h7v-3h-7z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M8,5C5.243,5,3,3.756,3,1V0H0v1c0,4.41,3.589,7,8,7h7V5H8z " fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v9h4c4.61,0,7.485,2.654,8.638,5.141,0.33,0.71,0.811,0.859,1.155,0.859,0.555,0,1.016-0.406,1.176-1.036l0.02-0.12v-13.84h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.025" x2="5.698" y1="6.212" y2="-35.84">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M0,0v9h4c4.61,0,7.485,2.654,8.638,5.141 c0.33,0.71,0.811,0.859,1.155,0.859c0.555,0,1.016-0.406,1.176-1.036L15,13.843V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.0249" x2="5.6983" y1="6.2119" y2="-35.8394">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,0v6h4c1.861,0,3.618,0.344,5.221,1.021l2.779,1.175v-8.196h-12z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="7" y1="-38.44" y2="9.568">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<path d="M0,0v6h4c1.861,0,3.618,0.344,5.221,1.021L12,8.196V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.9995" x2="6.9995" y1="-38.4351" y2="9.5683">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<path d="M11,0v6.688l-1.39-0.588c-1.726-0.73-3.614-1.1-5.61-1.1h-4v3h4c5,0,8.203,2.826,9.545,5.719,0.3,0.63,0.46,0,0.46,0v-13.72h-3z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M11,0v6.688L9.61,6.1C7.884,5.37,5.996,5,4,5H0v3h4 c5,0,8.203,2.826,9.545,5.719C13.839,14.352,14,13.718,14,13.718V0H11z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 315 30" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="315" x="0.124"/>
-<rect fill="url(#SVGID_1_)" height="30" width="315" x="0.124"/>
-<rect fill="none" height="30" width="315" x="0.124"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="315" x="0.124"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="315" x="0.124"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="315" x="0.124"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.8" x2="157.5" y1="37.48" y2="-4.565">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.7988" x2="157.4723" y1="37.4805" y2="-4.5651">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.685" x2="8.358" y1="38.75" y2="-3.292">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="15"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.6846" x2="8.358" y1="38.7549" y2="-3.2923">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="30" width="13" x="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5" x2="1.5" y1="-8.433" y2="39.57">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="13" x="2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5" x2="1.5" y1="-8.4326" y2="39.5682">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="30" width="3"/>
-<rect fill="none" height="30" width="15"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" fill-rule="evenodd" height="30" width="3"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.165" x2="5.838" y1="36.21" y2="-5.835">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="15"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.1646" x2="5.838" y1="36.2109" y2="-5.8348">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="30" width="12"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="12.5" x2="12.5" y1="-8.433" y2="39.57">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="12"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="12.5" x2="12.5" y1="-8.4326" y2="39.5682">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="30" width="3" x="11"/>
-<rect fill="none" height="30" width="15"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" fill-rule="evenodd" height="30" width="3" x="11"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" y="6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.8" x2="157.5" y1="52.48" y2="10.43">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" y="6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.814" x2="157.4874" y1="52.4785" y2="10.4322">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="6" width="315" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.5" x2="157.5" y1="6.567" y2="54.58">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="6" width="315" y="9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="157.4995" x2="157.4995" y1="6.5674" y2="54.5752">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="3" width="315" y="7"/>
-<rect fill="none" height="15" width="315"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_2_)" fill-rule="evenodd" height="3" width="315" y="7"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="315"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M9,6c-4.963,0-9,4.037-9,9h15v-9h-6z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.824" x2="8.498" y1="53.75" y2="11.71">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M9,6c-4.963,0-9,4.037-9,9h15V6H9z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8.8242" x2="8.4977" y1="53.75" y2="11.7071">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M8,9c-3.309,0-6,2.691-6,6h13v-6h-7z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.5" x2="7.5" y1="6.567" y2="54.57">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<path d="M8,9c-3.309,0-6,2.691-6,6h13V9H8z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.4995" x2="7.4995" y1="6.5674" y2="54.5703">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<path d="M8,7c-4.411,0-8,3.589-8,8h3c0-2.757,2.243-5,5-5h7v-3h-7z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M8,7c-4.411,0-8,3.589-8,8h3c0-2.757,2.243-5,5-5h7V7H8z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,15c0-4.963-4.038-9-9-9h-6v9h15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.282" x2="5.955" y1="51.21" y2="9.163">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<path d="M15,15c0-4.963-4.038-9-9-9H0v9H15z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.2817" x2="5.9552" y1="51.2061" y2="9.1631">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M12,15c0-3.309-2.691-6-6-6h-6v6h12z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="7" y1="6.567" y2="54.57">
-<stop offset="0" stop-color="#66CCAD"/>
-<stop offset="1" stop-color="#3FA990"/>
+<path d="M12,15c0-3.309-2.691-6-6-6H0v6H12z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.9995" x2="6.9995" y1="6.5674" y2="54.5703">
+<stop offset="0" style="stop-color:#66CCAD"/>
+<stop offset="1" style="stop-color:#3FA990"/>
</linearGradient>
-<path d="M6,7h-6v3h6c2.757,0,5,2.243,5,5h3c0-4.41-3.59-8-8-8z" fill="url(#SVGID_2_)"/>
-<rect fill="none" height="15" width="15"/>
-</svg>
\ No newline at end of file
+<path d="M6,7H0v3h6c2.757,0,5,2.243,5,5h3C14,10.589,10.411,7,6,7z " fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="15" width="15"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" y="0.188"/>
-<rect fill="url(#SVGID_1_)" height="8" width="315"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" y="0.188"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="8" width="315"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="7.188"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="6.188"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="6.188"/>
<rect fill="none" height="15" width="315" y="0.188"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="7.812" y2="-37.85">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5005" x2="157.5005" y1="7.812" y2="-37.8517">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0c0,4.963,4.037,9,9,9h6v-9h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v1c0,4.41,3.589,7,8,7h7v-8h-15z" fill="url(#SVGID_1_)"/>
-<path d="M14,7h-6c-3.484,0-7-1.855-7-6v-1h-1v1c0,4.41,3.589,7,8,7h7v-1h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,6c-2.768,0-6-1.309-6-5v-1h-1v1c0,4.145,3.516,6,7,6h7v-1h-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M0,0c0,4.963,4.037,9,9,9h6V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0v1c0,4.41,3.589,7,8,7h7V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14,7H8C4.516,7,1,5.145,1,1V0H0v1c0,4.41,3.589,7,8,7h6h1V7H14z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,6C5.232,6,2,4.691,2,1V0H1v1 c0,4.145,3.516,6,7,6h7V6H8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="7.812" y2="-37.85">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5005" x2="7.5005" y1="7.812" y2="-37.8517">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v9h4c4.61,0,7.485,2.654,8.638,5.141,0.33,0.71,0.81,0.86,1.15,0.86,0.555,0,1.016-0.406,1.176-1.035l0.03-0.12v-13.84h-15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,0v8h4c5,0,8.203,2.826,9.545,5.719,0.294,0.633,0.455,0,0.455,0v-13.72h-14z" fill="url(#SVGID_1_)"/>
-<path d="M13,0v11.03c-1.84-2.206-4.843-4.03-9-4.03h-4v1h4c5,0,8.203,2.826,9.545,5.719,0.294,0.633,0.455,0,0.455,0v-13.72h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12,0v8.666c-2.191-1.732-4.957-2.666-8-2.666h-4v1h4c4.157,0,7.156,1.824,9,4.029v-11.03h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M0,0v9h4c4.61,0,7.485,2.654,8.638,5.141 C12.968,14.852,13.448,15,13.793,15c0.555,0,1.016-0.406,1.176-1.035L15,13.844V0H0z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M0,0v8h4c5,0,8.203,2.826,9.545,5.719 c0.294,0.633,0.455,0,0.455,0V0H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M13,0v1v10.029C11.156,8.824,8.157,7,4,7H0v1h4c5,0,8.203,2.826,9.545,5.719c0.294,0.633,0.455,0,0.455,0V1 V0H13z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M12,0v8.666C9.809,6.934,7.043,6,4,6H0v1h4 c4.157,0,7.156,1.824,9,4.029V0H12z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="7.812" y2="-37.85">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="7.0005" y1="7.812" y2="-37.8529">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 315 30" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="315" x="0.374" y="0.188"/>
-<rect fill="url(#SVGID_1_)" height="30" width="315" y="0.188"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="315" x="0.374" y="0.188"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="315" y="0.188"/>
<rect fill="none" height="30" width="315" x="0.374" y="0.188"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="38" y2="-7.666">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5005" x2="157.5005" y1="38" y2="-7.6659">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15"/>
-<rect fill="url(#SVGID_1_)" height="30" width="15"/>
-<polygon fill-opacity="0.2" points="1,6,1,0,0,0,0,6,0,30,1,30" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="15"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="15"/>
+<polygon fill-opacity="0.2" points="1,6 1,0 0,0 0,6 0,30 1,30 " stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="30" stroke-opacity="0.2" width="1" x="1"/>
<rect fill="none" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="37.81" y2="-7.853">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5005" x2="7.5005" y1="37.8125" y2="-7.8534">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="15"/>
-<rect fill="url(#SVGID_1_)" height="30" width="14"/>
-<polygon fill-opacity="0.2" points="14,0,13,0,13,6,13,30,14,30,14,6" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="12"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="30" stroke-opacity="0.1" width="15"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="30" width="14"/>
+<polygon fill-opacity="0.2" points="14,0 13,0 13,6 13,30 14,30 14,6 " stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="30" stroke-opacity="0.2" width="1" x="12"/>
<rect fill="none" height="30" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="37.81" y2="-7.853">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="7.0005" y1="37.8125" y2="-7.8534">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 315 15" width="315px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#14141E" fill-opacity="0.1" height="9" stroke-opacity="0.1" width="315" y="6"/>
-<rect fill="url(#SVGID_1_)" height="8" width="315" y="7"/>
+<g>
+<rect fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" height="9" stroke-opacity="0.1" width="315" y="6"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="8" width="315" y="7"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="7"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="315" y="8"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="315" y="8"/>
<rect fill="none" height="15" width="315"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5" x2="157.5" y1="52.81" y2="7.147">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="157.5005" x2="157.5005" y1="52.8105" y2="7.1469">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M9,6c-4.963,0-9,4.037-9,9h15v-9h-6z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M8,7c-4.411,0-8,3.59-8,8h15v-8h-7z" fill="url(#SVGID_1_)"/>
-<path d="M14,7h-6c-4.411,0-8,3.59-8,8h1c0-3.859,3.14-7,7-7h7v-1h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,8c-3.86,0-7,3.141-7,7h1c0-3.309,2.691-6,6-6h7v-1h-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M9,6c-4.963,0-9,4.037-9,9h15V6H9z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M8,7c-4.411,0-8,3.59-8,8h15V7H8z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14,7H8c-4.411,0-8,3.59-8,8h1c0-3.859,3.14-7,7-7h6h1V7H14z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,8c-3.86,0-7,3.141-7,7h1c0-3.309,2.691-6,6-6h7 V8H8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y1="52.81" y2="7.147">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5005" x2="7.5005" y1="52.8105" y2="7.1469">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_convlist_sent_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,15c0-4.963-4.038-9-9-9h-6v9h15z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M14,15c0-4.41-3.589-8-8-8h-6v8h14z" fill="url(#SVGID_1_)"/>
-<path d="M6,7h-6v1h6c3.859,0,7,3.141,7,7h1c0-4.41-3.59-8-8-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,8h-6v1h6c3.309,0,6,2.691,6,6h1c0-3.86-3.141-7-7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<path d="M15,15c0-4.963-4.038-9-9-9H0v9H15z" fill="#14141E" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M14,15c0-4.41-3.589-8-8-8H0v8H14z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M6,7H0v1h6c3.859,0,7,3.141,7,7h1C14,10.59,10.411,7,6,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,8H0v1h6c3.309,0,6,2.691,6,6h1 C13,11.141,9.859,8,6,8z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<rect fill="none" height="15" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="52.81" y2="7.147">
-<stop offset="0" stop-color="#59B397"/>
-<stop offset="1" stop-color="#2A7362"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="7.0005" y1="52.8105" y2="7.1469">
+<stop offset="0" style="stop-color:#59B397"/>
+<stop offset="1" style="stop-color:#2A7362"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80" x="0"/>
<rect fill="#E6E6E6" height="10" width="80" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" x="0"/>
<rect fill="#E6E6E6" height="10" width="10" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" x="0"/>
<rect fill="#E6E6E6" height="10" width="10" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80" x="0"/>
<rect fill="#E6E6E6" height="80" width="80" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="#E6E6E6" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="80" width="10" x="0"/>
-<rect height="80" width="10" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="#E6E6E6" height="80" width="10" x="0"/>
+<rect fill="#E6E6E6" height="80" width="10" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="#E6E6E6" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="80" width="10" x="0"/>
-<rect height="80" width="10" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="#E6E6E6" height="80" width="10" x="0"/>
+<rect fill="#E6E6E6" height="80" width="10" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="#E6E6E6" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="80" x="0"/>
-<rect height="10" width="80" x="0"/>
-<rect height="1" width="80" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="#E6E6E6" height="10" width="80" x="0"/>
+<rect fill="#E6E6E6" height="10" width="80" x="0"/>
+<rect fill="#E6E6E6" height="1" width="80" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="#E6E6E6" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10" x="0"/>
-<rect height="10" width="10" x="0"/>
-<rect height="1" width="10" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="#E6E6E6" height="10" width="10" x="0"/>
+<rect fill="#E6E6E6" height="10" width="10" x="0"/>
+<rect fill="#E6E6E6" height="1" width="10" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_icon_bg_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="#E6E6E6" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10" x="0"/>
-<rect height="10" width="10" x="0"/>
-<rect height="1" width="10" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="#E6E6E6" height="10" width="10" x="0"/>
+<rect fill="#E6E6E6" height="10" width="10" x="0"/>
+<rect fill="#E6E6E6" height="1" width="10" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="10" width="80" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="10" width="10" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="#FFFFFF" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10" x="0"/>
-<rect height="10" width="10" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="#FFFFFF" height="10" width="10" x="0"/>
+<rect fill="#FFFFFF" height="10" width="10" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="80" width="10" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="80" width="10" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="10" width="80" x="0"/>
<rect fill="#E6E6E6" height="1" width="80" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="10" width="10" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_coverflow_list_bg_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="10" width="10" x="-0.001"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="10" width="80"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+<g>
+<rect fill="#7D7D82" fill-rule="evenodd" height="10" width="80"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="80" y="9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="10" width="10"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="10" y="9"/>
-</svg>
\ No newline at end of file
+<g>
+<rect fill="#7D7D82" fill-rule="evenodd" height="10" width="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="10" y="9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="10" width="10"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="10" y="9"/>
-</svg>
\ No newline at end of file
+<g>
+<rect fill="#7D7D82" fill-rule="evenodd" height="10" width="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="10" y="9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="80" width="80"/>
-</svg>
\ No newline at end of file
+<rect fill="#7D7D82" fill-rule="evenodd" height="80" width="80"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="80" width="10"/>
-</svg>
\ No newline at end of file
+<rect fill="#7D7D82" fill-rule="evenodd" height="80" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="80" width="10"/>
-</svg>
\ No newline at end of file
+<rect fill="#7D7D82" fill-rule="evenodd" height="80" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="10" width="80"/>
-</svg>
\ No newline at end of file
+<rect fill="#7D7D82" fill-rule="evenodd" height="10" width="80"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="10" width="10"/>
-</svg>
\ No newline at end of file
+<rect fill="#7D7D82" fill-rule="evenodd" height="10" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_form_heading_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#7D7D82" height="10" width="10" x="0"/>
-</svg>
\ No newline at end of file
+<rect fill="#7D7D82" fill-rule="evenodd" height="10" width="10" x="0"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_fullscreen_heading_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_fullscreen_heading_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="60"/>
<rect fill="url(#SVGID_1_)" height="60" width="60"/>
<rect fill="#AAAAAF" height="1" width="60" y="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="60" y="58"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_fullscreen_heading_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_fullscreen_heading_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="60"/>
<rect fill="url(#SVGID_1_)" height="60" width="60"/>
<rect fill="#AAAAAF" height="1" width="60" y="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="60" y="58"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_fullscreen_heading_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_fullscreen_heading_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="60"/>
<rect fill="url(#SVGID_1_)" height="60" width="60"/>
<rect fill="#AAAAAF" height="1" width="60" y="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="60" y="58"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-90" y2="9.409">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-90.0044" y2="9.4087">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="8"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90" y2="9.409">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="-89.9995" y2="9.4087">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M6,8c-2.205,0-4-1.794-4-4v-4h-1v4c0,2.757,2.243,5,5,5h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,9c-2.756,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,8C3.795,8,2,6.206,2,4V0H1v4c0,2.757,2.243,5,5,5h4V8H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,9C3.244,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.301,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90" y2="9.409">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.9995" y2="9.4087">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M8,0v4c0,2.206-1.794,4-4,4h-4v1h4c2.758,0,5-2.243,5-5v-4h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,0v4c0,2.757-2.242,5-5,5h-4v1h4c3.301,0,6-2.7,6-6v-4h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M8,0v4c0,2.206-1.794,4-4,4H0v1h4c2.758,0,5-2.243,5-5V0H8z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,0v4c0,2.757-2.242,5-5,5H0v1h4c3.301,0,6-2.7,6-6V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-10" y2="89.41">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-10" y2="89.4086">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10" x="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="89.41">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="-10" y2="89.4086">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="1"/>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="0"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="89.41">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="89.4086">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="8"/>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y2="99.41">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="0" y2="99.413">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="1"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0c-3.3,0-6,2.7-6,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="99.41">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="0" y2="99.4082">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M6,1c-2.756,0-5,2.243-5,5v4h1v-4c0-2.206,1.794-4,4-4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,1C3.244,1,1,3.243,1,6v4h1V6c0-2.206,1.794-4,4-4h4V1H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0c-3.3,0-6,2.7-6,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.699-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.699-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="99.41">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="99.4082">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M4,1h-4v1h4c2.206,0,4,1.794,4,4v4h1v-4c0-2.757-2.242-5-5-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,0h-4v1h4c2.758,0,5,2.243,5,5v4h1v-4c0-3.3-2.699-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,1H0v1h4c2.206,0,4,1.794,4,4v4h1V6C9,3.243,6.758,1,4,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0H0v1h4c2.758,0,5,2.243,5,5v4h1V6C10,2.7,7.301,0,4,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-89.5" y2="9.748">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-89.4995" y2="9.7477">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="8"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.5" y2="9.748">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.4995" y2="9.7477">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-<path d="M6,8c-2.206,0-4-1.794-4-4v-4h-1v4c0,2.757,2.243,5,5,5h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,8C3.794,8,2,6.206,2,4V0H1v4c0,2.757,2.243,5,5,5h4V8H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.3,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.3,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.5" y2="9.748">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.4995" y2="9.7477">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-<path d="M8,0v4c0,2.206-1.795,4-4,4h-4v1h4c2.757,0,5-2.243,5-5v-4h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,0v4c0,2.757-2.243,5-5,5h-4v1h4c3.3,0,6-2.7,6-6v-4h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M8,0v4c0,2.206-1.795,4-4,4H0v1h4c2.757,0,5-2.243,5-5V0H8z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,0v4c0,2.757-2.243,5-5,5H0v1h4c3.3,0,6-2.7,6-6V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-9.5" y2="89.75">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-9.5" y2="89.7478">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.5" y2="89.75">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.5" y2="89.7478">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="1"/>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.5" y2="89.75">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.5" y2="89.7478">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="8"/>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="0.5" y2="99.75">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="0.5" y2="99.7472">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="1"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.5" y2="99.75">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.5" y2="99.7472">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-<path d="M6,1c-2.757,0-5,2.243-5,5v4h1v-4c0-2.206,1.794-4,4-4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,1C3.243,1,1,3.243,1,6v4h1V6c0-2.206,1.794-4,4-4h4V1H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.7-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.7-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.5" y2="99.75">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.5" y2="99.7472">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-<path d="M4,1h-4v1h4c2.205,0,4,1.794,4,4v4h1v-4c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,0h-4v1h4c2.757,0,5,2.243,5,5v4h1v-4c0-3.3-2.7-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,1H0v1h4c2.205,0,4,1.794,4,4v4h1V6C9,3.243,6.757,1,4,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0H0v1h4c2.757,0,5,2.243,5,5v4h1V6C10,2.7,7.3,0,4,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="9.666" y2="0.4995">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="9.666" y2="0.4995">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
+</g>
<rect fill="#BEBEC8" height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.666" y2="0.4995">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.3,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.3,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.666" y2="0.4995">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-<path d="M9,0v4c0,2.757-2.243,5-5,5h-4v1h4c3.3,0,6-2.7,6-6v-4h-1z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M9,0v4c0,2.757-2.243,5-5,5H0v1h4c3.3,0,6-2.7,6-6V0H9z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="89.67" y2="80.5">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="89.666" y2="80.4996">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="89.67" y2="80.5">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="89.666" y2="80.4996">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
+</g>
<rect fill="#BEBEC8" height="80" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="89.67" y2="80.5">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="89.666" y2="80.4996">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
+</g>
<rect fill="#BEBEC8" height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="99.67" y2="90.5">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="99.667" y2="90.5005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
+</g>
<rect fill="#BEBEC8" height="1" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="99.67" y2="90.5">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="99.667" y2="90.5005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.7-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.7-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="99.67" y2="90.5">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="99.667" y2="90.5005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-<path d="M4,0h-4v1h4c2.757,0,5,2.243,5,5v4h1v-4c0-3.3-2.7-6-6-6z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,0H0v1h4c2.757,0,5,2.243,5,5v4h1V6C10,2.7,7.3,0,4,0z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-88.75" y2="-80.48">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-88.7495" y2="-80.4844">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="40" x2="40" y1="-89.5" y2="9.966">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="39.9995" x2="39.9995" y1="-89.4995" y2="9.9657">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="2" width="80" y="8"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-88.75" y2="-80.48">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-88.7495" y2="-80.4844">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-89.5" y2="9.966">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-89.4995" y2="9.9656">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
-<path d="M6,8c-2.206,0-4-1.794-4-4v-4h-2v4c0,3.3,2.7,6,6,6h4v-2h-4z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M6,8C3.794,8,2,6.206,2,4V0H0v4c0,3.3,2.7,6,6,6h4V8H6z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-88.75" y2="-80.48">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-88.7495" y2="-80.4844">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,0v10h4c3.301,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-89.5" y2="9.966">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+<path d="M0,0v10h4c3.301,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-89.4995" y2="9.9656">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
-<path d="M8,0v4c0,2.206-1.795,4-4,4h-4v2h4c3.301,0,6-2.7,6-6v-4h-2z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M8,0v4c0,2.206-1.795,4-4,4H0v2h4c3.301,0,6-2.7,6-6V0H8z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-8.75" y2="-0.4848">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-8.75" y2="-0.4848">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-8.75" y2="-0.4848">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1" y1="-9.5" y2="89.97">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1" x2="1" y1="-9.5" y2="89.9654">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="80" width="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-8.75" y2="-0.4848">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="9" y1="-9.5" y2="89.97">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="9" y1="-9.5" y2="89.9654">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="80" width="2" x="8"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="1.25" y2="9.515">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="1.25" y2="9.5151">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="40" x2="40" y1="0.5" y2="99.97">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="39.9995" x2="39.9995" y1="0.5" y2="99.9652">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="1.25" y2="9.515">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="1.25" y2="9.5151">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0.5" y2="99.97">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0.5" y2="99.9651">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h2v-4c0-2.206,1.794-4,4-4h4v-2h-4z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M6,0C2.7,0,0,2.7,0,6v4h2V6c0-2.206,1.794-4,4-4h4V0H6z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_organize_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="1.25" y2="9.515">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="1.25" y2="9.5151">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M10,6c0-3.3-2.699-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0.5" y2="99.97">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+<path d="M10,6c0-3.3-2.699-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0.5" y2="99.9651">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
-<path d="M4,0h-4v2h4c2.205,0,4,1.794,4,4v4h2v-4c0-3.3-2.699-6-6-6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M4,0H0v2h4c2.205,0,4,1.794,4,4v4h2V6C10,2.7,7.301,0,4,0z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="10" y2="-89.77">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="10" y2="-89.7654">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="8"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.77">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.7654">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M6,8c-2.206,0-4-1.794-4-4v-4h-1v4c0,2.757,2.243,5,5,5h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,8C3.794,8,2,6.206,2,4V0H1v4c0,2.757,2.243,5,5,5h4V8H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.301,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.301,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.77">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.7654">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M8,0v4c0,2.206-1.795,4-4,4h-4v1h4c2.758,0,5-2.243,5-5v-4h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,0v4c0,2.757-2.242,5-5,5h-4v1h4c3.301,0,6-2.7,6-6v-4h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M8,0v4c0,2.206-1.795,4-4,4H0v1h4c2.758,0,5-2.243,5-5V0H8z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,0v4c0,2.757-2.242,5-5,5H0v1h4c3.301,0,6-2.7,6-6V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="90" y2="-9.765">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="90" y2="-9.7647">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.765">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.7647">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="1"/>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.765">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.7647">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="8"/>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="100" y2="0.2346">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="100" y2="0.2346">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="1"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="100" y2="0.2346">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M6,1c-2.757,0-5,2.243-5,5v4h1v-4c0-2.206,1.794-4,4-4h4v-1h-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,1C3.243,1,1,3.243,1,6v4h1V6c0-2.206,1.794-4,4-4h4V1H6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_grid_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.699-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.699-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="100" y2="0.2346">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M4,1h-4v1h4c2.205,0,4,1.794,4,4v4h1v-4c0-2.757-2.242-5-5-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,0h-4v1h4c2.758,0,5,2.243,5,5v4h1v-4c0-3.3-2.699-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,1H0v1h4c2.205,0,4,1.794,4,4v4h1V6C9,3.243,6.758,1,4,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0H0v1h4c2.758,0,5,2.243,5,5v4h1V6C10,2.7,7.301,0,4,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="10px" stroke-opacity="0.2" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="80" x="-0.001"/>
-<rect height="1" width="80" x="-0.001" y="9"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="80.001" x="-0.001"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80.001" x="-0.001" y="9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="10px" stroke-opacity="0.2" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10" x="0"/>
-<polygon points="1,9,1,0,0,0,0,10,10,10,10,9"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10" x="0"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="10px" stroke-opacity="0.2" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<polygon points="10,0,9,0,9,9,0,9,0,10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-90.33" y2="9.848">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-90.3325" y2="9.8475">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90.33" y2="9.848">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90.3325" y2="9.8475">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.3,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.3,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90.33" y2="9.848">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-90.3325" y2="9.8475">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M9,0v4c0,2.757-2.243,5-5,5h-4v1h4c3.3,0,6-2.7,6-6v-4h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M9,0v4c0,2.757-2.243,5-5,5H0v1h4c3.3,0,6-2.7,6-6V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-10.33" y2="89.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-10.333" y2="89.8476">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.33" y2="89.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.333" y2="89.8476">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.33" y2="89.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.333" y2="89.8476">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-0.333" y2="99.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-0.333" y2="99.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.333" y2="99.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.333" y2="99.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.7-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.7-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.333" y2="99.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.333" y2="99.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<path d="M4,0h-4v1h4c2.757,0,5,2.243,5,5v4h1v-4c0-3.3-2.7-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,0H0v1h4c2.757,0,5,2.243,5,5v4h1V6C10,2.7,7.3,0,4,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="80px" stroke-opacity="0.2" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="80" width="9.999"/>
-<rect height="80" width="1"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="9.999"/>
+<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-89.75" y2="9.752">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-89.7495" y2="9.7518">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.75" y2="9.752">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.7495" y2="9.7518">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.3,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.3,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.75" y2="9.752">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-89.7495" y2="9.7518">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
-<path d="M9,0v4c0,2.757-2.243,5-5,5h-4v1h4c3.3,0,6-2.7,6-6v-4h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M9,0v4c0,2.757-2.243,5-5,5H0v1h4c3.3,0,6-2.7,6-6V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="-9.75" y2="89.75">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="-9.75" y2="89.7522">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="89.75">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="89.7522">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="89.75">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="89.7522">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="0.25" y2="99.75">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.9995" x2="39.9995" y1="0.25" y2="99.7513">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="99.75">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="99.7513">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.7-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.7-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="99.75">
-<stop offset="0" stop-color="#AAAAAA"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="99.7513">
+<stop offset="0" style="stop-color:#AAAAAA"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
</defs>
-<path d="M4,0h-4v1h4c2.757,0,5,2.243,5,5v4h1v-4c0-3.3-2.7-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,0H0v1h4c2.757,0,5,2.243,5,5v4h1V6C10,2.7,7.3,0,4,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="10" y2="-89.5">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="10" y2="-89.505">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v4c0,3.3,2.7,6,6,6h4v-10h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v4c0,3.3,2.7,6,6,6h4V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.5">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.505">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h4c3.299,0,6-2.7,6-6v-4h-10z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M0,0v10h4c3.299,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.5">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-89.505">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M9,0v4c0,2.757-2.244,5-5,5h-4v1h4c3.299,0,6-2.7,6-6v-4h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M9,0v4c0,2.757-2.244,5-5,5H0v1h4c3.299,0,6-2.7,6-6V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="90" y2="-9.504">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="90" y2="-9.5042">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.504">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.5042">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="80" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.504">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="90" y2="-9.5042">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="80"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40" x2="40" y1="100" y2="0.495">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.0005" x2="40.0005" y1="100" y2="0.495">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h10v-10h-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h10V0H6z" fill="url(#SVGID_1_)"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="100" y2="0.495">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,6c0-3.3-2.701-6-6-6h-4v10h10v-4z" fill="url(#SVGID_1_)"/>
+<g>
+<path d="M10,6c0-3.3-2.701-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="100" y2="0.495">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-<path d="M4,0h-4v1h4c2.756,0,5,2.243,5,5v4h1v-4c0-3.3-2.701-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M4,0H0v1h4c2.756,0,5,2.243,5,5v4h1V6C10,2.7,7.299,0,4,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="80px" stroke-opacity="0.2" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="80" width="10"/>
-<rect height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="10"/>
+<rect fill-opacity="0.2" height="80" stroke-opacity="0.2" width="1" x="9"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="10px" stroke-opacity="0.2" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="80" x="0"/>
-<rect height="1" width="80" x="0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="80" x="0"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="80" x="0"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="10px" stroke-opacity="0.2" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="9.999"/>
-<polygon points="0,0,0,10,1,10,1,1,9.999,1,9.999,0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="9.999"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 9.999,1 9.999,0 " stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_groupbox_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill-opacity="0.2" height="10px" stroke-opacity="0.2" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<polygon points="0,0,0,1,9,1,9,10,10,10,10,0"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#AAAAAF" height="60" width="30"/>
<rect fill="#C8C8C8" height="56" width="30" y="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#AAAAAF" height="60" width="30"/>
<rect fill="#C8C8C8" height="56" width="28" x="2" y="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#AAAAAF" height="60" width="30"/>
<rect fill="#C8C8C8" height="56" width="28" y="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M6,0c-3.301,0-6,2.7-6,6v48c0,3.3,2.699,6,6,6h24v-60h-24z" fill="#AAAAAF"/>
-<path d="M6,58c-2.206,0-4-1.794-4-4v-48c0-2.206,1.794-4,4-4h24v56h-24z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M6,0C2.699,0,0,2.7,0,6v48c0,3.3,2.699,6,6,6h24V0H6z" fill="#AAAAAF"/>
+<path d="M6,58c-2.206,0-4-1.794-4-4V6c0-2.206,1.794-4,4-4h24v56H6z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M24,0h-24v60h24c3.299,0,6-2.7,6-6v-48c0-3.3-2.7-6-6-6z" fill="#AAAAAF"/>
-<path d="M0,58v-56h24c2.206,0,4,1.794,4,4v48c0,2.206-1.794,4-4,4h-24z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M24,0H0v60h24c3.299,0,6-2.7,6-6V6C30,2.7,27.299,0,24,0z" fill="#AAAAAF"/>
+<path d="M0,58V2h24c2.206,0,4,1.794,4,4v48c0,2.206-1.794,4-4,4H0z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#14141E" fill-opacity="0.2" height="60" stroke-opacity="0.2" width="30"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="58"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.48" x2="72.48" y1="-42.02" y2="-100">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.4795" x2="72.4795" y1="-42.0195" y2="-100.0195">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#14141E" fill-opacity="0.2" height="60" stroke-opacity="0.2" width="30"/>
@@ -8,11 +8,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="58" stroke-opacity="0.4" width="1" y="1"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.48" x2="72.48" y1="-42.02" y2="-100">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.4795" x2="72.4795" y1="-42.0195" y2="-100.0195">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#14141E" fill-opacity="0.2" height="60" stroke-opacity="0.2" width="30"/>
@@ -8,11 +8,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<rect fill="#9696A0" fill-opacity="0.5" height="58" stroke-opacity="0.5" width="1" x="29" y="1"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.48" x2="72.48" y1="-42.02" y2="-100">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.4795" x2="72.4795" y1="-42.0195" y2="-100.0195">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v48c0,3.3,2.7,6,6,6h24v-60h-24z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.243-5,5v48c0,2.757,2.243,5,5,5h24v-58h-24z" fill="url(#SVGID_1_)"/>
-<path d="M6,58c-2.206,0-4-1.795-4-4v-48c0-2.205,1.794-4,4-4h24v-1h-24c-2.757,0-5,2.243-5,5v48c0,2.757,2.243,5,5,5h24v-1h-24z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v48c0,3.3,2.7,6,6,6h24V0H6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.243,1,6v48c0,2.757,2.243,5,5,5h24V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,58c-2.206,0-4-1.795-4-4V6c0-2.205,1.794-4,4-4h24V1H6 C3.243,1,1,3.243,1,6v48c0,2.757,2.243,5,5,5h24v-1H6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.98" x2="72.98" y1="-42.02" y2="-100">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="72.9795" x2="72.9795" y1="-42.0195" y2="-100.0195">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M24,0h-24v60h24c3.3,0,6-2.7,6-6v-48c0-3.3-2.7-6-6-6z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M24,1h-24v58h24c2.757,0,5-2.243,5-5v-48c0-2.757-2.24-5-5-5z" fill="url(#SVGID_1_)"/>
-<path d="M24,1h-24v1h24c2.205,0,4,1.795,4,4v48c0,2.205-1.795,4-4,4h-24v1h24c2.757,0,5-2.243,5-5v-48c0-2.757-2.24-5-5-5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,0H0v60h24c3.3,0,6-2.7,6-6V6C30,2.7,27.3,0,24,0z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M24,1H0v58h24c2.757,0,5-2.243,5-5V6C29,3.243,26.757,1,24,1z" fill="url(#SVGID_1_)"/>
+<path d="M24,1H0v1h24c2.205,0,4,1.795,4,4v48c0,2.205-1.795,4-4,4H0v1h24 c2.757,0,5-2.243,5-5V6C29,3.243,26.757,1,24,1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="71.98" x2="71.98" y1="-42.02" y2="-100">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -41.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="71.9795" x2="71.9795" y1="-42.0195" y2="-100.0195">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#96969B" height="60" width="30"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="30" y="58"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="59">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#96969B" height="60" width="30"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="30" y="1"/>
<rect fill="#FFFFFF" fill-opacity="0.8" height="58" stroke-opacity="0.8" width="1" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="59">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="#96969B" height="60" width="30"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="30" y="1"/>
<rect fill-opacity="0.2" height="58" stroke-opacity="0.2" width="1" x="29" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="59">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M6,0c-3.301,0-6,2.7-6,6v48c0,3.3,2.699,6,6,6h24v-60h-24z" fill="#96969B"/>
-<path d="M6,1c-2.758,0-5,2.243-5,5v48c0,2.757,2.242,5,5,5h24v-58h-24z" fill="url(#SVGID_1_)"/>
-<path d="M6,58c-2.207,0-4-1.795-4-4v-48c0-2.205,1.793-4,4-4h24v-1h-24c-2.758,0-5,2.243-5,5v48c0,2.757,2.242,5,5,5h24v-1h-24z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6,0C2.699,0,0,2.7,0,6v48c0,3.3,2.699,6,6,6h24V0H6z" fill="#96969B"/>
+<path d="M6,1C3.242,1,1,3.243,1,6v48c0,2.757,2.242,5,5,5h24V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,58c-2.207,0-4-1.795-4-4V6c0-2.205,1.793-4,4-4h24V1H6C3.242,1,1,3.243,1,6v48 c0,2.757,2.242,5,5,5h24v-1H6z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="1" y2="59">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M24,0h-24v60h24c3.299,0,6-2.7,6-6v-48c0-3.3-2.7-6-6-6z" fill="#96969B"/>
-<path d="M24,1h-24v58h24c2.756,0,5-2.243,5-5v-48c0-2.757-2.24-5-5-5z" fill="url(#SVGID_1_)"/>
-<path d="M24,1h-24v1h24c2.205,0,4,1.795,4,4v48c0,2.205-1.795,4-4,4h-24v1h24c2.756,0,5-2.243,5-5v-48c0-2.757-2.24-5-5-5z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M24,0H0v60h24c3.299,0,6-2.7,6-6V6C30,2.7,27.299,0,24,0z" fill="#96969B"/>
+<path d="M24,1H0v58h24c2.756,0,5-2.243,5-5V6C29,3.243,26.756,1,24,1z" fill="url(#SVGID_1_)"/>
+<path d="M24,1H0v1h24c2.205,0,4,1.795,4,4v48c0,2.205-1.795,4-4,4H0v1h24c2.756,0,5-2.243,5-5V6 C29,3.243,26.756,1,24,1z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.5" x2="14.5" y1="1" y2="59">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.5" x2="14.5" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -10,9 +10,9 @@
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30" y="59"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.0004883">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="60" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
-<polygon fill-opacity="0.05" points="0,0,0,60,2,60,2,5,30,5,30,0"/>
+<polygon fill-opacity="0.05" points="0,0 0,60 2,60 2,5 30,5 30,0 "/>
<rect fill-opacity="0.1" height="4" width="30"/>
<rect fill-opacity="0.1" height="3" width="30"/>
<rect fill-opacity="0.1" height="2" width="30"/>
-<polygon fill-opacity="0.2" points="1,59,1,1,30,1,30,0,0,0,0,60,30,60,30,59" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="1,59 1,1 30,1 30,0 0,0 0,60 30,60 30,59 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.0004883">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
-<polygon fill-opacity="0.05" points="0,0,0,5,28,5,28,60,30,60,30,0"/>
+<polygon fill-opacity="0.05" points="0,0 0,5 28,5 28,60 30,60 30,0 "/>
<rect fill-opacity="0.1" height="4" width="30"/>
<rect fill-opacity="0.1" height="3" width="30"/>
<rect fill-opacity="0.1" height="2" width="30"/>
-<polygon fill-opacity="0.2" points="30,0,0,0,0,1,29,1,29,59,0,59,0,60,30,60" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="30,0 0,0 0,1 29,1 29,59 0,59 0,60 30,60 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.0004883">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M6,0c-3.301,0-6,2.7-6,6v48c0,3.3,2.699,6,6,6h24v-60h-24z" fill="url(#SVGID_1_)"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v48c0,3.3,2.7,6,6,6-2.205,0-4-1.794-4-4v-50c0-0.542,0.458-1,1-1h27v-5h-24z" fill-opacity="0.05"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6,0-1.084,0.916-2,2-2h28v-4h-24z" fill-opacity="0.1"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6,0-1.654,1.346-3,3-3h27v-3h-24z" fill-opacity="0.1"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6,0-2.206,1.795-4,4-4h26v-2h-24z" fill-opacity="0.1"/>
-<path d="M6,59c-2.757,0-5-2.243-5-5v-48c0-2.757,2.243-5,5-5h24v-1h-24c-3.3,0-6,2.7-6,6v48c0,3.3,2.7,6,6,6h24v-1h-24z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,0C2.699,0,0,2.7,0,6v48c0,3.3,2.699,6,6,6h24V0H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v48c0,3.3,2.7,6,6,6c-2.205,0-4-1.794-4-4V6c0-0.542,0.458-1,1-1h27V0H6z" fill-opacity="0.05"/>
+<path d="M6,0C2.7,0,0,2.7,0,6c0-1.084,0.916-2,2-2h28V0H6z" fill-opacity="0.1"/>
+<path d="M6,0C2.7,0,0,2.7,0,6c0-1.654,1.346-3,3-3h27V0H6z" fill-opacity="0.1"/>
+<path d="M6,0C2.7,0,0,2.7,0,6c0-2.206,1.795-4,4-4h26V0H6z" fill-opacity="0.1"/>
+<path d="M6,59c-2.757,0-5-2.243-5-5V6c0-2.757,2.243-5,5-5h24V0H6C2.7,0,0,2.7,0,6v48c0,3.3,2.7,6,6,6h24v-1H6z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.0004883">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsbutton_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30"/>
-<path d="M24,0h-24v60h24c3.299,0,6-2.7,6-6v-48c0-3.3-2.7-6-6-6z" fill="url(#SVGID_1_)"/>
-<path d="M24,0h-24v5h27c0.542,0,1,0.458,1,1v50c0,2.206-1.795,4-4,4,3.3,0,6-2.7,6-6v-48c0-3.3-2.7-6-6-6z" fill-opacity="0.05"/>
-<path d="M24,0h-24v4h28c1.084,0,2,0.916,2,2,0-3.3-2.7-6-6-6z" fill-opacity="0.1"/>
-<path d="M24,0h-24v3h27c1.654,0,3,1.346,3,3,0-3.3-2.7-6-6-6z" fill-opacity="0.1"/>
-<path d="M24,0h-24v2h26c2.205,0,4,1.794,4,4,0-3.3-2.7-6-6-6z" fill-opacity="0.1"/>
-<path d="M24,0h-24v1h24c2.757,0,5,2.243,5,5v48c0,2.757-2.243,5-5,5h-24v1h24c3.3,0,6-2.7,6-6v-48c0-3.3-2.7-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M24,0H0v60h24c3.299,0,6-2.7,6-6V6C30,2.7,27.299,0,24,0z" fill="url(#SVGID_1_)"/>
+<path d="M24,0H0v5h27c0.542,0,1,0.458,1,1v50c0,2.206-1.795,4-4,4c3.3,0,6-2.7,6-6V6C30,2.7,27.3,0,24,0z" fill-opacity="0.05"/>
+<path d="M24,0H0v4h28c1.084,0,2,0.916,2,2C30,2.7,27.3,0,24,0z" fill-opacity="0.1"/>
+<path d="M24,0H0v3h27c1.654,0,3,1.346,3,3C30,2.7,27.3,0,24,0z" fill-opacity="0.1"/>
+<path d="M24,0H0v2h26c2.205,0,4,1.794,4,4C30,2.7,27.3,0,24,0z" fill-opacity="0.1"/>
+<path d="M24,0H0v1h24c2.757,0,5,2.243,5,5v48c0,2.757-2.243,5-5,5H0v1h24c3.3,0,6-2.7,6-6V6C30,2.7,27.3,0,24,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.0004883">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
<g fill-opacity="0.1" stroke-opacity="0.1">
@@ -8,19 +8,21 @@
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#14141E" height="9" width="62"/>
</g>
+<g>
<rect fill="url(#SVGID_1_)" height="8" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="-71.17" y2="7.698">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-71.1655" y2="7.6982">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
+</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#FFFFFF" height="1" width="62" y="6"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect height="1" width="62" y="7"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<g fill-opacity="0.1" stroke-opacity="0.1">
@@ -8,19 +8,21 @@
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#14141E" height="9" width="10"/>
</g>
+<g>
<rect fill="url(#SVGID_1_)" height="8" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-71.17" y2="7.698">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-71.1655" y2="7.6982">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon fill="#FFFFFF" points="1,0,1,7,10,7,10,6,2,6,2,0"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon points="0,0,0,8,10,8,10,7,1,7,1,0"/>
+<polygon fill="#FFFFFF" points="1,0 1,7 10,7 10,6 2,6 2,0 "/>
</g>
-</svg>
\ No newline at end of file
+<g fill-opacity="0.2" stroke-opacity="0.2">
+<polygon points="0,0 0,8 10,8 10,7 1,7 1,0 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<g fill-opacity="0.1" stroke-opacity="0.1">
@@ -8,19 +8,21 @@
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#14141E" height="9" width="10"/>
</g>
+<g>
<rect fill="url(#SVGID_1_)" height="8" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-71.17" y2="7.698">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-71.1655" y2="7.6982">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon fill="#FFFFFF" points="8,6,0,6,0,7,9,7,9,0,8,0"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon points="9,7,0,7,0,8,10,8,10,0,9,0"/>
+<polygon fill="#FFFFFF" points="8,6 0,6 0,7 9,7 9,0 8,0 "/>
</g>
-</svg>
\ No newline at end of file
+<g fill-opacity="0.2" stroke-opacity="0.2">
+<polygon points="9,7 0,7 0,8 10,8 10,0 9,0 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 62 62" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="62"/>
+<g>
<rect fill="url(#SVGID_1_)" height="62" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="-9.166" y2="69.7">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-9.166" y2="69.6984">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.166" y2="69.7">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.166" y2="69.6984">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
+</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#FFFFFF" height="62" width="1" x="1"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect height="62" width="1"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.166" y2="69.7">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.166" y2="69.6984">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
+</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#FFFFFF" height="62" width="1" x="8"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect height="62" width="1" x="9"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
<g fill-opacity="0.1" stroke-opacity="0.1">
<rect fill="#14141E" height="10" width="62"/>
</g>
+<g>
<rect fill="url(#SVGID_1_)" height="9" width="62" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="0.834" y2="79.7">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="0.834" y2="79.6977">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
+</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect fill="#FFFFFF" height="1" width="62" y="2"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
<rect height="1" width="62" y="1"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<g fill-opacity="0.1" stroke-opacity="0.1">
<rect fill="#14141E" height="10" width="10"/>
</g>
+<g>
<rect fill="url(#SVGID_1_)" height="9" width="10" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.834" y2="79.7">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.834" y2="79.6977">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon fill="#FFFFFF" points="2,3,10,3,10,2,1,2,1,10,2,10"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon points="1,2,10,2,10,1,0,1,0,10,1,10"/>
+<polygon fill="#FFFFFF" points="2,3 10,3 10,2 1,2 1,10 2,10 "/>
</g>
-</svg>
\ No newline at end of file
+<g fill-opacity="0.2" stroke-opacity="0.2">
+<polygon points="1,2 10,2 10,1 0,1 0,10 1,10 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<g fill-opacity="0.1" stroke-opacity="0.1">
<rect fill="#14141E" height="10" width="10"/>
</g>
+<g>
<rect fill="url(#SVGID_1_)" height="9" width="10" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.834" y2="79.7">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.92" stop-color="#9B9BA0"/>
-<stop offset="0.92" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.834" y2="79.6977">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.92" style="stop-color:#9B9BA0"/>
+<stop offset="0.92" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon fill="#FFFFFF" points="9,2,0,2,0,3,8,3,8,10,9,10"/>
</g>
<g fill-opacity="0.2" stroke-opacity="0.2">
-<polygon points="10,1,0,1,0,2,9,2,9,10"/>
+<polygon fill="#FFFFFF" points="9,2 0,2 0,3 8,3 8,10 9,10 "/>
</g>
-</svg>
\ No newline at end of file
+<g fill-opacity="0.2" stroke-opacity="0.2">
+<polygon points="10,1 0,1 0,2 9,2 9,10 10,10 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="9.875" y2="-71.91">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="9.875" y2="-71.9095">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="62" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.875" y2="-71.91">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.875" y2="-71.9095">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.05" height="10" width="2"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.875" y2="-71.91">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.875" y2="-71.9095">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.05" height="10" width="2" x="8"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 62 62" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="62"/>
+<g>
<rect fill="url(#SVGID_1_)" height="62" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="71.88" y2="-9.909">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="71.875" y2="-9.9088">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="71.88" y2="-9.909">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="71.875" y2="-9.9088">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.05" height="62" width="2"/>
<rect fill-opacity="0.2" height="62" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="71.88" y2="-9.909">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="71.875" y2="-9.9088">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.05" height="62" width="2" x="8"/>
<rect fill-opacity="0.2" height="62" stroke-opacity="0.2" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="81.88" y2="0.0905">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="81.875" y2="0.0905">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
+</g>
<rect fill-opacity="0.05" height="5" width="62"/>
<rect fill-opacity="0.1" height="4" width="62"/>
<rect fill-opacity="0.1" height="3" width="62"/>
<rect fill-opacity="0.1" height="2" width="62"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="62"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="81.88" y2="0.0905">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="81.875" y2="0.0905">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<polygon fill-opacity="0.05" points="0,0,0,10,2,10,2,5,10,5,10,0"/>
+</g>
+<polygon fill-opacity="0.05" points="0,0 0,10 2,10 2,5 10,5 10,0 "/>
<rect fill-opacity="0.1" height="4" width="10"/>
<rect fill-opacity="0.1" height="3" width="10"/>
<rect fill-opacity="0.1" height="2" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems2_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
+<g>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="81.88" y2="0.0905">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="81.875" y2="0.0905">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-<polygon fill-opacity="0.05" points="0,0,0,5,8,5,8,10,10,10,10,0"/>
+</g>
+<polygon fill-opacity="0.05" points="0,0 0,5 8,5 8,10 10,10 10,0 "/>
<rect fill-opacity="0.1" height="4" width="10"/>
<rect fill-opacity="0.1" height="3" width="10"/>
<rect fill-opacity="0.1" height="2" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
<rect fill="url(#SVGID_1_)" height="10" width="62"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="62" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="10" y2="-71.63">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="10" y2="-71.6335">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v3c0,3.859,3.14,7,7,7h3v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M0,3c0,1.901,0.765,3.627,2,4.89v-7.89h-2v3z" fill-opacity="0.05"/>
-<path d="M7,9c-3.309,0-6-2.691-6-6v-3h-1v3c0,3.859,3.14,7,7,7h3v-1h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v3c0,3.859,3.14,7,7,7h3V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M0,3c0,1.901,0.765,3.627,2,4.89V0H0V3z" fill-opacity="0.05"/>
+<path d="M7,9C3.691,9,1,6.309,1,3V0H0v3c0,3.859,3.14,7,7,7h3V9H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.63">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.6335">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h3c3.859,0,7-3.141,7-7v-3h-10z" fill="url(#SVGID_1_)"/>
-<path d="M8,7.89c1.235-1.263,2-2.989,2-4.89v-3h-2v7.89z" fill-opacity="0.05"/>
-<path d="M9,0v3c0,3.309-2.691,6-6,6h-3v1h3c3.859,0,7-3.141,7-7v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h3c3.859,0,7-3.141,7-7V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M8,7.89C9.235,6.627,10,4.901,10,3V0H8V7.89z" fill-opacity="0.05"/>
+<path d="M9,0v3c0,3.309-2.691,6-6,6H0v1h3c3.859,0,7-3.141,7-7V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.63">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.6335">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 62 62" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="62"/>
<rect fill="url(#SVGID_1_)" height="62" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="72" y2="-9.633">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="72" y2="-9.6329">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<rect fill-opacity="0.05" height="62" width="2"/>
<rect fill-opacity="0.2" height="62" stroke-opacity="0.2" width="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.633">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.6329">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<rect fill-opacity="0.05" height="62" width="2" x="8"/>
<rect fill-opacity="0.2" height="62" stroke-opacity="0.2" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.633">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.6329">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
<rect fill="url(#SVGID_1_)" height="10" width="62"/>
@@ -9,9 +9,9 @@
<rect fill-opacity="0.1" height="2" width="62"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="82" y2="0.3675">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="82.001" y2="0.3675">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7v3h10v-10h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7v3h2v-3c0-1.103,0.897-2,2-2h6v-5h-3z" fill-opacity="0.05"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7,0-1.654,1.346-3,3-3h7v-4h-3z" fill-opacity="0.1"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7,0-2.206,1.794-4,4-4h6v-3h-3z" fill-opacity="0.1"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7,0-2.757,2.243-5,5-5h5v-2h-3z" fill-opacity="0.1"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7v3h1v-3c0-3.309,2.691-6,6-6h3v-1h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,0C3.14,0,0,3.141,0,7v3h10V0H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,0C3.14,0,0,3.141,0,7v3h2V7c0-1.103,0.897-2,2-2h6V0H7z" fill-opacity="0.05"/>
+<path d="M7,0C3.14,0,0,3.141,0,7c0-1.654,1.346-3,3-3h7V0H7z" fill-opacity="0.1"/>
+<path d="M7,0C3.14,0,0,3.141,0,7c0-2.206,1.794-4,4-4h6V0H7z" fill-opacity="0.1"/>
+<path d="M7,0C3.14,0,0,3.141,0,7c0-2.757,2.243-5,5-5h5V0H7z" fill-opacity="0.1"/>
+<path d="M7,0C3.14,0,0,3.141,0,7v3h1V7c0-3.309,2.691-6,6-6h3V0H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82" y2="0.3675">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82.001" y2="0.3675">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,7c0-3.859-3.141-7-7-7h-3v10h10v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,0h-3v5h6c1.104,0,2,0.897,2,2v3h2v-3c0-3.859-3.141-7-7-7z" fill-opacity="0.05"/>
-<path d="M3,0h-3v4h7c1.654,0,3,1.346,3,3,0-3.859-3.141-7-7-7z" fill-opacity="0.1"/>
-<path d="M3,0h-3v3h6c2.205,0,4,1.794,4,4,0-3.859-3.141-7-7-7z" fill-opacity="0.1"/>
-<path d="M3,0h-3v2h5c2.757,0,5,2.243,5,5,0-3.859-3.141-7-7-7z" fill-opacity="0.1"/>
-<path d="M3,0h-3v1h3c3.309,0,6,2.691,6,6v3h1v-3c0-3.859-3.141-7-7-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,7c0-3.859-3.141-7-7-7H0v10h10V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,0H0v5h6c1.104,0,2,0.897,2,2v3h2V7C10,3.141,6.859,0,3,0z" fill-opacity="0.05"/>
+<path d="M3,0H0v4h7c1.654,0,3,1.346,3,3C10,3.141,6.859,0,3,0z" fill-opacity="0.1"/>
+<path d="M3,0H0v3h6c2.205,0,4,1.794,4,4C10,3.141,6.859,0,3,0z" fill-opacity="0.1"/>
+<path d="M3,0H0v2h5c2.757,0,5,2.243,5,5C10,3.141,6.859,0,3,0z" fill-opacity="0.1"/>
+<path d="M3,0H0v1h3c3.309,0,6,2.691,6,6v3h1V7C10,3.141,6.859,0,3,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82" y2="0.3675">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#A0A0A5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82.001" y2="0.3675">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#A0A0A5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
<rect fill="url(#SVGID_1_)" height="10" width="62"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="62" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="10" y2="-71.63">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="10" y2="-71.6335">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v3c0,3.859,3.14,7,7,7h3v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M0,3c0,1.901,0.765,3.627,2,4.89v-7.89h-2v3z" fill-opacity="0.05"/>
-<path d="M7,9c-3.309,0-6-2.691-6-6v-3h-1v3c0,3.859,3.14,7,7,7h3v-1h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v3c0,3.859,3.14,7,7,7h3V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M0,3c0,1.901,0.765,3.627,2,4.89V0H0V3z" fill-opacity="0.05"/>
+<path d="M7,9C3.691,9,1,6.309,1,3V0H0v3c0,3.859,3.14,7,7,7h3V9H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.63">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.6335">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h3c3.859,0,7-3.141,7-7v-3h-10z" fill="url(#SVGID_1_)"/>
-<path d="M8,7.89c1.235-1.263,2-2.989,2-4.89v-3h-2v7.89z" fill-opacity="0.05"/>
-<path d="M9,0v3c0,3.309-2.691,6-6,6h-3v1h3c3.859,0,7-3.141,7-7v-3h-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v10h3c3.859,0,7-3.141,7-7V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M8,7.89C9.235,6.627,10,4.901,10,3V0H8V7.89z" fill-opacity="0.05"/>
+<path d="M9,0v3c0,3.309-2.691,6-6,6H0v1h3c3.859,0,7-3.141,7-7V0H9z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.63">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-71.6335">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 62 62" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="62"/>
<rect fill="url(#SVGID_1_)" height="62" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="72" y2="-9.633">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="72" y2="-9.6329">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<rect fill-opacity="0.05" height="62" width="2"/>
<rect fill-opacity="0.2" height="62" stroke-opacity="0.2" width="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.633">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.6329">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="62" width="10"/>
<rect fill="url(#SVGID_1_)" height="62" width="10"/>
<rect fill-opacity="0.05" height="62" width="2" x="8"/>
<rect fill-opacity="0.2" height="62" stroke-opacity="0.2" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.633">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="72" y2="-9.6329">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="62"/>
<rect fill="url(#SVGID_1_)" height="10" width="62"/>
@@ -9,9 +9,9 @@
<rect fill-opacity="0.1" height="2" width="62"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="82" y2="0.3675">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.0005" x2="31.0005" y1="82.001" y2="0.3675">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7v3h10v-10h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7v3h2v-3c0-1.103,0.897-2,2-2h6v-5h-3z" fill-opacity="0.05"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7,0-1.654,1.346-3,3-3h7v-4h-3z" fill-opacity="0.1"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7,0-2.206,1.794-4,4-4h6v-3h-3z" fill-opacity="0.1"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7,0-2.757,2.243-5,5-5h5v-2h-3z" fill-opacity="0.1"/>
-<path d="M7,0c-3.86,0-7,3.141-7,7v3h1v-3c0-3.309,2.691-6,6-6h3v-1h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,0C3.14,0,0,3.141,0,7v3h10V0H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,0C3.14,0,0,3.141,0,7v3h2V7c0-1.103,0.897-2,2-2h6V0H7z" fill-opacity="0.05"/>
+<path d="M7,0C3.14,0,0,3.141,0,7c0-1.654,1.346-3,3-3h7V0H7z" fill-opacity="0.1"/>
+<path d="M7,0C3.14,0,0,3.141,0,7c0-2.206,1.794-4,4-4h6V0H7z" fill-opacity="0.1"/>
+<path d="M7,0C3.14,0,0,3.141,0,7c0-2.757,2.243-5,5-5h5V0H7z" fill-opacity="0.1"/>
+<path d="M7,0C3.14,0,0,3.141,0,7v3h1V7c0-3.309,2.691-6,6-6h3V0H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82" y2="0.3675">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82.001" y2="0.3675">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsitems_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,7c0-3.859-3.141-7-7-7h-3v10h10v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,0h-3v5h6c1.104,0,2,0.897,2,2v3h2v-3c0-3.859-3.141-7-7-7z" fill-opacity="0.05"/>
-<path d="M3,0h-3v4h7c1.654,0,3,1.346,3,3,0-3.859-3.141-7-7-7z" fill-opacity="0.1"/>
-<path d="M3,0h-3v3h6c2.205,0,4,1.794,4,4,0-3.859-3.141-7-7-7z" fill-opacity="0.1"/>
-<path d="M3,0h-3v2h5c2.757,0,5,2.243,5,5,0-3.859-3.141-7-7-7z" fill-opacity="0.1"/>
-<path d="M3,0h-3v1h3c3.309,0,6,2.691,6,6v3h1v-3c0-3.859-3.141-7-7-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,7c0-3.859-3.141-7-7-7H0v10h10V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,0H0v5h6c1.104,0,2,0.897,2,2v3h2V7C10,3.141,6.859,0,3,0z" fill-opacity="0.05"/>
+<path d="M3,0H0v4h7c1.654,0,3,1.346,3,3C10,3.141,6.859,0,3,0z" fill-opacity="0.1"/>
+<path d="M3,0H0v3h6c2.205,0,4,1.794,4,4C10,3.141,6.859,0,3,0z" fill-opacity="0.1"/>
+<path d="M3,0H0v2h5c2.757,0,5,2.243,5,5C10,3.141,6.859,0,3,0z" fill-opacity="0.1"/>
+<path d="M3,0H0v1h3c3.309,0,6,2.691,6,6v3h1V7C10,3.141,6.859,0,3,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82" y2="0.3675">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="82.001" y2="0.3675">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="62"/>
-<rect fill="#14141E" fill-opacity="0.1" height="10" stroke-opacity="0.1" width="62"/>
-<rect fill="#14141E" fill-opacity="0.2" height="9" stroke-opacity="0.2" width="62"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="8" stroke-opacity="0.9" width="62"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62" y="7"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="10" stroke-opacity="0.9" width="62" x="0"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62" x="0" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="-70.87" y2="7.951">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-72.1675" y2="9.9154">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M0,3c0,3.859,3.14,7,7,7h3v-10h-10v3z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M1,3c0,3.3,2.7,6,6,6h3v-9h-9v3z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,2c0,3.3,2.7,6,6,6h3v-8h-9v2z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M1,0v2c0,3.3,2.7,6,6,6h3v-1h-3c-2.757,0-5-2.243-5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M0,4c0,3.299,2.7,6,6,6h4V0H0V4z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M0,0v4c0,3.299,2.7,6,6,6h4V9H6C3.242,9,1,6.756,1,4V0H0z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-70.87" y2="7.951">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-72.1714" y2="9.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M0,10h3c3.859,0,7-3.141,7-7v-3h-10v10z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,9h3c3.3,0,6-2.7,6-6v-3h-9v9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,8h3c3.3,0,6-2.7,6-6v-2h-9v8z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M8,2c0,2.757-2.243,5-5,5h-3v1h3c3.3,0,6-2.7,6-6v-2h-1v2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M0,10h4c3.299,0,6-2.7,6-6V0H0V10z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M9,4c0,2.757-2.244,5-5,5H0v1h4c3.299,0,6-2.7,6-6V0H9V4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-70.87" y2="7.951">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-72.1675" y2="9.9154">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 62 62" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="62" width="62"/>
-<rect fill="#14141E" fill-opacity="0.1" height="62" stroke-opacity="0.1" width="62"/>
-<rect fill="#14141E" fill-opacity="0.2" height="62" stroke-opacity="0.2" width="62"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="62"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="62" x="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="-8.875" y2="69.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-10.1641" y2="71.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="62" width="10"/>
-<rect fill="#14141E" fill-opacity="0.1" height="62" stroke-opacity="0.1" width="10"/>
-<rect fill="#14141E" fill-opacity="0.2" height="62" stroke-opacity="0.2" width="9" x="1"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="9" x="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="1"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="10" x="0"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="0"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-8.875" y2="69.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-10.1641" y2="71.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="62" width="10"/>
-<rect fill="#14141E" fill-opacity="0.1" height="62" stroke-opacity="0.1" width="10"/>
-<rect fill="#14141E" fill-opacity="0.2" height="62" stroke-opacity="0.2" width="9"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="9"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="8"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-8.875" y2="69.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-10.1641" y2="71.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="62"/>
-<rect fill="#14141E" fill-opacity="0.1" height="10" stroke-opacity="0.1" width="62"/>
-<rect fill="#14141E" fill-opacity="0.2" height="8" stroke-opacity="0.2" width="62" y="2"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="9" stroke-opacity="0.9" width="62" y="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62" y="1"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="10" stroke-opacity="0.9" width="62"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="1.125" y2="79.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-0.1641" y2="81.9188">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M10,0h-3c-3.86,0-7,3.14-7,7v3h10v-10z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,2h-3c-3.3,0-6,2.7-6,6v2h9v-8z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,1h-3c-3.3,0-6,2.7-6,6v3h9v-9z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M2,7c0-2.757,2.243-5,5-5h3v-1h-3c-3.3,0-6,2.7-6,6v3h1v-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M10,0H6C2.7,0,0,2.7,0,6v4h10V0z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M1,6c0-2.757,2.243-5,5-5h4V0H6C2.7,0,0,2.7,0,6v4h1V6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1.125" y2="79.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-0.1641" y2="81.9188">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hsshortcut_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M10,7c0-3.86-3.141-7-7-7h-3v10h10v-3z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M9,8c0-3.3-2.7-6-6-6h-3v8h9v-2z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,7c0-3.3-2.7-6-6-6h-3v9h9v-3z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M9,7c0-3.3-2.7-6-6-6h-3v1h3c2.757,0,5,2.243,5,5v3h1v-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M10,6c0-3.3-2.701-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M10,6c0-3.3-2.701-6-6-6H0v1h4c2.756,0,5,2.243,5,5v4h1V6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1.125" y2="79.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-0.1641" y2="81.9188">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="62"/>
-<rect fill="#14141E" fill-opacity="0.1" height="10" stroke-opacity="0.1" width="62"/>
-<rect fill="#14141E" fill-opacity="0.2" height="9" stroke-opacity="0.2" width="62"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="8" stroke-opacity="0.9" width="62"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62" y="7"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="10" stroke-opacity="0.9" width="62"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="-70.87" y2="7.951">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-72.1675" y2="9.9154">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M0,3c0,3.859,3.14,7,7,7h3v-10h-10v3z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M1,3c0,3.3,2.7,6,6,6h3v-9h-9v3z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,2c0,3.3,2.7,6,6,6h3v-8h-9v2z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M1,0v2c0,3.3,2.7,6,6,6h3v-1h-3c-2.757,0-5-2.243-5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M0,4c0,3.3,2.699,6,6,6h4V0H0V4z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M0,0v4c0,3.3,2.699,6,6,6h4V9H6C3.242,9,1,6.757,1,4V0H0z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-70.87" y2="7.951">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-72.1675" y2="9.9154">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M0,10h3c3.859,0,7-3.141,7-7v-3h-10v10z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M0,9h3c3.3,0,6-2.7,6-6v-3h-9v9z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,8h3c3.3,0,6-2.7,6-6v-2h-9v8z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M8,2c0,2.757-2.243,5-5,5h-3v1h3c3.3,0,6-2.7,6-6v-2h-1v2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M0,10h4c3.299,0,6-2.7,6-6V0H0V10z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M9,4c0,2.757-2.244,5-5,5H0v1h4c3.299,0,6-2.7,6-6V0H9V4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-70.87" y2="7.951">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-72.1675" y2="9.9154">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 62 62" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="62" width="62"/>
-<rect fill="#14141E" fill-opacity="0.1" height="62" stroke-opacity="0.1" width="62"/>
-<rect fill="#14141E" fill-opacity="0.2" height="62" stroke-opacity="0.2" width="62"/>
+<g>
<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="-8.875" y2="69.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-10.1641" y2="71.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="62" width="10"/>
-<rect fill="#14141E" fill-opacity="0.1" height="62" stroke-opacity="0.1" width="10"/>
-<rect fill="#14141E" fill-opacity="0.2" height="62" stroke-opacity="0.2" width="9" x="1"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="9" x="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="1"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-8.875" y2="69.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-10.1641" y2="71.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="62px" version="1.1" viewBox="0 0 10 62" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="62" width="10"/>
-<rect fill="#14141E" fill-opacity="0.1" height="62" stroke-opacity="0.1" width="10"/>
-<rect fill="#14141E" fill-opacity="0.2" height="62" stroke-opacity="0.2" width="9"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="9"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="8"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="62" stroke-opacity="0.9" width="10"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="62" stroke-opacity="0.4" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-8.875" y2="69.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-10.1641" y2="71.9155">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 62 10" width="62px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="62"/>
-<rect fill="#14141E" fill-opacity="0.1" height="10" stroke-opacity="0.1" width="62"/>
-<rect fill="#14141E" fill-opacity="0.2" height="8" stroke-opacity="0.2" width="62" y="2"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="9" stroke-opacity="0.9" width="62" y="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62" y="1"/>
+<g>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="10" stroke-opacity="0.9" width="62"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="62"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31" x2="31" y1="1.125" y2="79.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.9995" x2="30.9995" y1="-0.1641" y2="81.9188">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M10,0h-3c-3.86,0-7,3.14-7,7v3h10v-10z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,2h-3c-3.3,0-6,2.7-6,6v2h9v-8z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,1h-3c-3.3,0-6,2.7-6,6v3h9v-9z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M2,7c0-2.757,2.243-5,5-5h3v-1h-3c-3.3,0-6,2.7-6,6v3h1v-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M10,0H6C2.699,0,0,2.7,0,6v4h10V0z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M1,6c0-2.757,2.243-5,5-5h4V0H6C2.699,0,0,2.7,0,6v4h1V6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1.125" y2="79.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-0.1641" y2="81.9188">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_hswidget_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="none" height="10" width="10"/>
-<path d="M10,7c0-3.86-3.141-7-7-7h-3v10h10v-3z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M9,8c0-3.3-2.7-6-6-6h-3v8h9v-2z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,7c0-3.3-2.7-6-6-6h-3v9h9v-3z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M9,7c0-3.3-2.7-6-6-6h-3v1h3c2.757,0,5,2.243,5,5v3h1v-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M10,6c0-3.3-2.701-6-6-6H0v10h10V6z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M10,6c0-3.3-2.701-6-6-6H0v1h4c2.756,0,5,2.243,5,5v4h1V6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1.125" y2="79.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="-0.1641" y2="81.9188">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="7" stroke-opacity="0.8" width="50"/>
<rect fill-opacity="0.2" height="3" stroke-opacity="0.2" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-2v3c0,3.3,2.7,6,6,6h3v-3h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H1v3c0,3.3,2.7,6,6,6h3V6H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v3h3c3.3,0,6-2.7,6-6v-3h-2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v3h3c3.3,0,6-2.7,6-6V0H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="50"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="8" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="2" x="1"/>
<rect fill="none" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="8"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="2" x="7"/>
<rect fill="none" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="8" stroke-opacity="0.8" width="50" y="2"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="50" y="1"/>
<rect fill="none" height="10" width="50"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.205,1.794-4,4-4h3v-2h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.205,1.794-4,4-4h3V1H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_disabled_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M3,1h-3v2h3c2.206,0,4,1.795,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M3,1H0v2h3c2.206,0,4,1.795,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-38" y2="7.008">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-37.9995" y2="7.0082">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,7c-2.206,0-4-1.794-4-4v-3h-2v3c0,3.3,2.7,6,6,6h3v-2h-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,7C4.794,7,3,5.206,3,3V0H1v3c0,3.3,2.7,6,6,6h3V7H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-38" y2="7.008">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-37.9995" y2="7.0082">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0v3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,0v3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v6h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-38" y2="7.008">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-37.9995" y2="7.0082">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-8" y2="37.01">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-8" y2="37.0085">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="37.01">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="37.0085">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="37.01">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="37.0085">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="2" y2="47.01">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="2" y2="47.0077">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.206,1.794-4,4-4h3v-2h-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.205,1.794-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.206,1.794-4,4-4h3V1H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.205,1.794-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="47.01">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="47.0077">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,1h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,2h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M3,1H0v2h3c2.205,0,4,1.794,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,2H0v1h3c2.206,0,4,1.795,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="47.01">
-<stop offset="0" stop-color="#8C8C91"/>
-<stop offset="1" stop-color="#5A5A5F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="47.0077">
+<stop offset="0" style="stop-color:#8C8C91"/>
+<stop offset="1" style="stop-color:#5A5A5F"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-38" y2="6.934">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-37.9995" y2="6.9338">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,7c-2.206,0-4-1.794-4-4v-3h-2v3c0,3.3,2.7,6,6,6h3v-2h-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,7C4.794,7,3,5.206,3,3V0H1v3c0,3.3,2.7,6,6,6h3V7H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-38" y2="6.934">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-37.9995" y2="6.9338">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0v3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,0v3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v6h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-38" y2="6.934">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-37.9995" y2="6.9338">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-8" y2="36.93">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-8" y2="36.9341">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="36.93">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="36.9341">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="36.93">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="36.9341">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="2" y2="46.93">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="2" y2="46.9333">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.206,1.794-4,4-4h3v-2h-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.205,1.794-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.206,1.794-4,4-4h3V1H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.205,1.794-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="46.93">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="46.9333">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,1h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,2h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M3,1H0v2h3c2.205,0,4,1.794,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,2H0v1h3c2.206,0,4,1.795,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="46.93">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="1" stop-color="#8C8C91"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="46.9333">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="1" style="stop-color:#8C8C91"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="6.875" y2="-37.88">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="6.875" y2="-37.8794">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M1,0v3c0,3.3,2.7,6,6,6h3v-2h-3c-2.206,0-4-1.794-4-4v-3h-2z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,2c0,2.757,2.243,5,5,5h3v-7h-8v2z" fill="url(#SVGID_1_)"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-1h-3c-2.206,0-4-1.795-4-4v-2h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,3.3,2.7,6,6,6h3V7H7C4.794,7,3,5.206,3,3V0H1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,2c0,2.757,2.243,5,5,5h3V0H2V2z" fill="url(#SVGID_1_)"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V6H7C4.794,6,3,4.205,3,2V0H2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="6.875" y2="-37.88">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="6.875" y2="-37.8794">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2v3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,7h3c2.757,0,5-2.243,5-5v-2h-8v7z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1v2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7V3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v6h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,7h3c2.757,0,5-2.243,5-5V0H0V7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7V2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="6.875" y2="-37.88">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="6.875" y2="-37.8794">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="36.88" y2="-7.879">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="36.875" y2="-7.8786">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="36.88" y2="-7.879">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="36.875" y2="-7.8786">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="36.88" y2="-7.879">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="36.875" y2="-7.8786">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="46.88" y2="2.122">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="46.876" y2="2.1216">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,7c0-2.206,1.794-4,4-4h3v-2h-3c-3.3,0-6,2.7-6,6v3h2v-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M10,2h-3c-2.757,0-5,2.243-5,5v3h8v-8z" fill="url(#SVGID_1_)"/>
-<path d="M3,7c0-2.205,1.794-4,4-4h3v-1h-3c-2.757,0-5,2.243-5,5v3h1v-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M3,7c0-2.206,1.794-4,4-4h3V1H7C3.7,1,1,3.7,1,7v3h2V7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M10,2H7C4.243,2,2,4.243,2,7v3h8V2z" fill="url(#SVGID_1_)"/>
+<path d="M3,7c0-2.205,1.794-4,4-4h3V2H7C4.243,2,2,4.243,2,7v3h1V7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="46.88" y2="2.122">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="46.876" y2="2.1216">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_function_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M9,7c0-3.3-2.7-6-6-6h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,7c0-3.3-2.7-6-6-6H0v2h3c2.205,0,4,1.794,4,4v3h2V7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v1h3c2.206,0,4,1.795,4,4v3h1V7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="46.88" y2="2.122">
-<stop offset="0" stop-color="#AAAAAF"/>
-<stop offset="1" stop-color="#78787D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="46.876" y2="2.1216">
+<stop offset="0" style="stop-color:#AAAAAF"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#141414" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-38" y2="7.088">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-37.9995" y2="7.0883">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,7c-2.206,0-4-1.794-4-4v-3h-2v3c0,3.3,2.7,6,6,6h3v-2h-3z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,7C4.794,7,3,5.206,3,3V0H1v3c0,3.3,2.7,6,6,6h3V7H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-38" y2="7.088">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-37.9995" y2="7.0883">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0v3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,0v3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v6h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-38" y2="7.088">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-37.9995" y2="7.0883">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-8" y2="37.09">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-8" y2="37.0886">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#141414" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="37.09">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="37.0886">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#141414" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="37.09">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="37.0886">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#141414" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="2" y2="47.09">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="2" y2="47.0878">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.206,1.794-4,4-4h3v-2h-3z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.205,1.794-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.206,1.794-4,4-4h3V1H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.205,1.794-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="47.09">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="47.0878">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_accented_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,1h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,2h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M3,1H0v2h3c2.205,0,4,1.794,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,2H0v1h3c2.206,0,4,1.795,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="47.09">
-<stop offset="0" stop-color="#E1E1E6"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="47.0878">
+<stop offset="0" style="stop-color:#E1E1E6"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="7" stroke-opacity="0.8" width="50"/>
<rect fill-opacity="0.2" height="3" stroke-opacity="0.2" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-2v3c0,3.3,2.7,6,6,6h3v-3h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H1v3c0,3.3,2.7,6,6,6h3V6H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v3h3c3.3,0,6-2.7,6-6v-3h-2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v3h3c3.3,0,6-2.7,6-6V0H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="50"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="8" x="2"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="2" x="1"/>
<rect fill="none" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="8"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="2" x="7"/>
<rect fill="none" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#AAAAAF" fill-opacity="0.8" height="8" stroke-opacity="0.8" width="50" y="2"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="50" y="1"/>
<rect fill="none" height="10" width="50"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.205,1.794-4,4-4h3v-2h-3z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.205,1.794-4,4-4h3V1H7z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_disabled_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M3,1h-3v2h3c2.206,0,4,1.795,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="#AAAAAF" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M3,1H0v2h3c2.206,0,4,1.795,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-38" y2="6.983">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-37.9995" y2="6.9832">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,7c-2.206,0-4-1.794-4-4v-3h-2v3c0,3.3,2.7,6,6,6h3v-2h-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,7C4.794,7,3,5.206,3,3V0H1v3c0,3.3,2.7,6,6,6h3V7H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-38" y2="6.983">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-37.9995" y2="6.9832">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0v3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,0v3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v1v5h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-38" y2="6.983">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-37.9995" y2="6.9832">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-8" y2="36.98">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-8" y2="36.9833">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="36.98">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="36.9833">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#14141E" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="36.98">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="36.9833">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#14141E" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="2" y2="46.98">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="2" y2="46.9827">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.206,1.794-4,4-4h3v-2h-3z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.205,1.794-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.206,1.794-4,4-4h3V1H7z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.205,1.794-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="46.98">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="46.9827">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,1h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,2h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M3,1H0v2h3c2.205,0,4,1.794,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,2H0v1h3c2.206,0,4,1.795,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="46.98">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#9B9BA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="46.9827">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#9B9BA0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#141414" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-38" y2="7.088">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-37.9995" y2="7.0883">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,7c-2.206,0-4-1.794-4-4v-3h-2v3c0,3.3,2.7,6,6,6h3v-2h-3z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,7C4.794,7,3,5.206,3,3V0H1v3c0,3.3,2.7,6,6,6h3V7H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-38" y2="7.088">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-37.9995" y2="7.0883">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0v3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,0v3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v6h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-38" y2="7.088">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-37.9995" y2="7.0883">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-8" y2="37.09">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-8" y2="37.0886">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#141414" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="37.09">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="37.0886">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#141414" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="37.09">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="37.0886">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#141414" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="2" y2="47.09">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="2" y2="47.0878">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.206,1.794-4,4-4h3v-2h-3z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.205,1.794-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.206,1.794-4,4-4h3V1H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.205,1.794-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="47.09">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="47.0878">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,1h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,2h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M3,1H0v2h3c2.205,0,4,1.794,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,2H0v1h3c2.206,0,4,1.795,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="47.09">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="47.0878">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#141414" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="7"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="6"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="7" y2="-37.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="7" y2="-37.5142">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,7c-2.206,0-4-1.794-4-4v-3h-2v3c0,3.3,2.7,6,6,6h3v-2h-3z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M2,2v1c0,2.757,2.243,5,5,5h3v-6h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M2,0v2c0,2.757,2.243,5,5,5h3v-7h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.206,0-4-1.795-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,7C4.794,7,3,5.206,3,3V0H1v3c0,3.3,2.7,6,6,6h3V7H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M2,2v1c0,2.757,2.243,5,5,5h3V2H2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M2,0v2c0,2.757,2.243,5,5,5h3V0H2z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.794,6,3,4.205,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="7" y2="-37.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="7" y2="-37.5142">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0v3c0,2.206-1.795,4-4,4h-3v2h3c3.3,0,6-2.7,6-6v-3h-2z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M0,2v6h3c2.757,0,5-2.243,5-5v-1h-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v7h3c2.757,0,5-2.243,5-5v-2h-8z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.205-1.794,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,0v3c0,2.206-1.795,4-4,4H0v2h3c3.3,0,6-2.7,6-6V0H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,2v6h3c2.757,0,5-2.243,5-5V2H0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v7h3c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.205-1.794,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="7" y2="-37.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="7" y2="-37.5142">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 50 30" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="50"/>
<rect fill="url(#SVGID_1_)" height="30" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="37" y2="-7.514">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="37" y2="-7.5136">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#141414" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="2"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="37" y2="-7.514">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="37" y2="-7.5136">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#141414" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="2" x="7"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="7"/>
<rect fill="none" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="37" y2="-7.514">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="37" y2="-7.5136">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="#141414" fill-opacity="0.4" height="2" stroke-opacity="0.4" width="50" y="1"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="50" y="2"/>
<rect fill="none" height="10" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="47" y2="2.486">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.0005" x2="25.0005" y1="47" y2="2.4858">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h2v-3c0-2.206,1.794-4,4-4h3v-2h-3z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_1_)"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.205,1.794-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h2V7c0-2.206,1.794-4,4-4h3V1H7z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.205,1.794-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="47" y2="2.486">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="47" y2="2.4858">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_btn_keypad_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,1h-3v2h3c2.205,0,4,1.794,4,4v3h2v-3c0-3.3-2.7-6-6-6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_1_)"/>
-<path d="M3,2h-3v1h3c2.206,0,4,1.795,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M3,1H0v2h3c2.205,0,4,1.794,4,4v3h2V7C9,3.7,6.3,1,3,1z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_1_)"/>
+<path d="M3,2H0v1h3c2.206,0,4,1.795,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="47" y2="2.486">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="47" y2="2.4858">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="15" width="15"/>
<rect fill="#AAAAAF" height="15" width="15"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="15" width="15"/>
<rect fill="url(#SVGID_1_)" height="15" width="15"/>
<rect fill="#969696" height="15" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -940.5195 -3915.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3923" x2="-3923" y1="-940.5" y2="-955.5">
-<stop offset="0" stop-color="#D2D2D7"/>
-<stop offset="1" stop-color="#AAAAAF"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -940.5195 -3915.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3923.48" x2="-3923.48" y1="-940.5195" y2="-955.5195">
+<stop offset="0" style="stop-color:#D2D2D7"/>
+<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_h_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="15" width="15"/>
<rect fill="#AAAAAF" height="15" width="15"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="15" width="15" x="0"/>
<rect fill="#AAAAAF" height="15" width="15"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="15" width="15" x="0"/>
<rect fill="#AAAAAF" height="15" width="15"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_input_v_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 15 15" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="15" width="15" x="0"/>
<rect fill="url(#SVGID_1_)" height="15" width="15"/>
<rect fill="#969696" height="1" width="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.5" x2="7.5" y2="15">
-<stop offset="0" stop-color="#D2D2D7"/>
-<stop offset="1" stop-color="#AAAAAF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.4995" x2="7.4995" y1="0" y2="15">
+<stop offset="0" style="stop-color:#D2D2D7"/>
+<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 318 10" width="318px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="318" x="0"/>
<rect fill="#141414" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="318"/>
<rect fill="#141414" fill-opacity="0.2" height="9" stroke-opacity="0.2" width="318"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-9.333" x2="327.3" y1="4" y2="4">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-9.333" x2="327.3366" y1="4" y2="4">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="8" width="318"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="318" y="6"/>
<rect fill-opacity="0.3" height="1" width="318" y="7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-6.333" x2="324.1" y1="5" y2="5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-6.333" x2="324.0545" y1="5" y2="5">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" fill-opacity="0.7" height="2" width="318" y="4"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v3c0,3.859,3.141,7,7,7h3v-10h-10z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,0v3c0,3.3,2.7,6,6,6h3v-9h-9z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.667" x2="337.3" y1="4" y2="4">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M0,0v3c0,3.859,3.141,7,7,7h3V0H0z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v3c0,3.3,2.7,6,6,6h3V0H1z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.667" x2="337.3366" y1="4" y2="4">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M1,0v2c0,3.3,2.7,6,6,6h3v-8h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,6c-2.205,0-4-1.794-4-4v-2h-1v2c0,2.757,2.243,5,5,5h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M7,7c-2.757,0-5-2.243-5-5v-2h-1v2c0,3.3,2.7,6,6,6h3v-1h-3z" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="3.667" x2="334.1" y1="5" y2="5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M1,0v2c0,3.3,2.7,6,6,6h3V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M7,6C4.795,6,3,4.206,3,2V0H2v2c0,2.757,2.243,5,5,5h3V6H7z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M7,7C4.243,7,2,4.757,2,2V0H1v2c0,3.3,2.7,6,6,6h3V7H7z" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="3.667" x2="334.0545" y1="5" y2="5">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M3.557,4c0.693,1.189,1.969,2,3.443,2h3v-2h-6.443z" fill="url(#SVGID_2_)" fill-opacity="0.7"/>
-</svg>
\ No newline at end of file
+<path d="M3.557,4C4.25,5.189,5.526,6,7,6h3V4H3.557z" fill="url(#SVGID_2_)" fill-opacity="0.7"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h3c3.859,0,7-3.141,7-7v-3h-10z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,0v9h3c3.3,0,6-2.7,6-6v-3h-9z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-327.3" x2="9.337" y1="4" y2="4">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M0,0v10h3c3.859,0,7-3.141,7-7V0H0z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v9h3c3.3,0,6-2.7,6-6V0H0z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-327.333" x2="9.3366" y1="4" y2="4">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M0,0v8h3c3.3,0,6-2.7,6-6v-2h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v2c0,2.206-1.795,4-4,4h-3v1h3c2.757,0,5-2.243,5-5v-2h-1z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M8,0v2c0,2.757-2.243,5-5,5h-3v1h3c3.3,0,6-2.7,6-6v-2h-1z" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-324.3" x2="6.054" y1="5" y2="5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M0,0v8h3c3.3,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v2c0,2.206-1.795,4-4,4H0v1h3c2.757,0,5-2.243,5-5V0H7z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M8,0v2c0,2.757-2.243,5-5,5H0v1h3c3.3,0,6-2.7,6-6V0H8z" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-324.333" x2="6.0545" y1="5" y2="5">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M0,4v2h3c1.475,0,2.75-0.811,3.443-2h-6.443z" fill="url(#SVGID_2_)" fill-opacity="0.7"/>
-</svg>
\ No newline at end of file
+<path d="M0,4v2h3c1.475,0,2.75-0.811,3.443-2H0z" fill="url(#SVGID_2_)" fill-opacity="0.7"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="204px" version="1.1" viewBox="0 0 318 204" width="318px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="204" width="318"/>
<rect fill="#141414" fill-opacity="0.2" height="204" stroke-opacity="0.2" width="318"/>
<rect fill="#141414" fill-opacity="0.2" height="204" stroke-opacity="0.2" width="318"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-9.333" x2="327.3" y1="102" y2="102">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-9.333" x2="327.3366" y1="102" y2="102">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="204" width="318"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="159" x2="159" y1="101" y2="-7.416">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="159" x2="159" y1="101" y2="-7.4161">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
-<path d="M0,0v89.6c46.1,7.22,100.6,11.4,159,11.4s112.9-4.181,159-11.4v-89.6h-318z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v89.6c46.1,7.22,100.591,11.4,159,11.4s112.9-4.181,159-11.4V0H0z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="204px" version="1.1" viewBox="0 0 10 204" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="204" width="10"/>
<rect fill="#141414" fill-opacity="0.2" height="204" stroke-opacity="0.2" width="10"/>
<rect fill="#141414" fill-opacity="0.2" height="204" stroke-opacity="0.2" width="9" x="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.667" x2="337.3" y1="102" y2="102">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.667" x2="337.3366" y1="102" y2="102">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="204" width="9" x="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6" x2="6" y1="101" y2="-7.416">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6" x2="6" y1="101" y2="-7.4162">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
-<path d="M2,0v88.3c2.636,0.442,5.306,0.873,8,1.295v-89.6h-8z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
+<path d="M2,0v88.305c2.636,0.442,5.306,0.873,8,1.295V0H2z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="204" stroke-opacity="0.5" width="1" x="2"/>
<rect fill-opacity="0.3" height="204" width="1" x="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 318 10" width="318px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="318" x="0"/>
<rect fill="url(#SVGID_1_)" height="5" width="318"/>
<rect fill="none" height="10" width="318"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-6.999" x2="324.7" y1="2.5" y2="2.5">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-6.999" x2="324.7274" y1="2.5" y2="2.5">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M3,0v1c0,2.205,1.795,4,4,4h3v-5h-7z" fill="url(#SVGID_1_)"/>
+<path d="M3,0v1c0,2.205,1.795,4,4,4h3V0H3z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3" x2="334.7" y1="2.5" y2="2.5">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3" x2="334.7265" y1="2.5" y2="2.5">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v5h3c2.206,0,4-1.795,4-4v-1h-7z" fill="url(#SVGID_1_)"/>
+<path d="M0,0v5h3c2.206,0,4-1.795,4-4V0H0z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-325" x2="6.727" y1="2.5" y2="2.5">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-324.999" x2="6.7274" y1="2.5" y2="2.5">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="204px" version="1.1" viewBox="0 0 318 204" width="318px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="204" width="318"/>
<rect fill="url(#SVGID_1_)" height="204" width="318"/>
<rect fill="none" height="204" width="318"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-6.999" x2="324.7" y1="102" y2="102">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-6.999" x2="324.7274" y1="102" y2="102">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="204px" version="1.1" viewBox="0 0 10 204" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="204" width="10"/>
<rect fill="url(#SVGID_1_)" height="204" width="7" x="3"/>
<rect fill="none" height="204" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3" x2="334.7" y1="102" y2="102">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3" x2="334.7265" y1="102" y2="102">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="204px" version="1.1" viewBox="0 0 10 204" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="204" width="10"/>
<rect fill="url(#SVGID_1_)" height="204" width="7"/>
<rect fill="none" height="204" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-325" x2="6.727" y1="102" y2="102">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-324.999" x2="6.7274" y1="102" y2="102">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 318 10" width="318px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="318" x="0"/>
<rect fill="url(#SVGID_1_)" height="8" width="318" y="2"/>
<rect fill="none" height="10" width="318"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-6.999" x2="324.7" y1="6" y2="6">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-6.999" x2="324.7274" y1="6" y2="6">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,2c-2.205,0-4,1.794-4,4v4h7v-8h-3z" fill="url(#SVGID_1_)"/>
+<path d="M7,2C4.795,2,3,3.794,3,6v4h7V2H7z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3" x2="334.7" y1="6" y2="6">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3" x2="334.7265" y1="6" y2="6">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_overlay_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,6c0-2.206-1.794-4-4-4h-3v8h7v-4z" fill="url(#SVGID_1_)"/>
+<path d="M7,6c0-2.206-1.794-4-4-4H0v8h7V6z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-325" x2="6.727" y1="6" y2="6">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-324.999" x2="6.7274" y1="6" y2="6">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="204px" version="1.1" viewBox="0 0 10 204" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="204" width="10"/>
<rect fill="#141414" fill-opacity="0.2" height="204" stroke-opacity="0.2" width="10"/>
<rect fill="#141414" fill-opacity="0.2" height="204" stroke-opacity="0.2" width="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-327.3" x2="9.337" y1="102" y2="102">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-327.333" x2="9.3366" y1="102" y2="102">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="204" width="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4" x2="4" y1="101" y2="-7.416">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4" x2="4" y1="101" y2="-7.4162">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
-<path d="M8,0h-8v89.6c2.694-0.422,5.364-0.853,8-1.295v-88.3z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
+<path d="M8,0H0v89.6c2.694-0.422,5.364-0.853,8-1.295V0z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="204" stroke-opacity="0.5" width="1" x="7"/>
<rect fill-opacity="0.3" height="204" width="1" x="8"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 318 10" width="318px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="318" x="0"/>
<rect fill="#141414" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="318"/>
<rect fill="#141414" fill-opacity="0.2" height="8" stroke-opacity="0.2" width="318" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-9.333" x2="327.3" y1="5.5" y2="5.5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-9.333" x2="327.3366" y1="5.5" y2="5.5">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="9" width="318" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="159" x2="159" y1="111" y2="2.584">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="159" x2="159" y1="111" y2="2.5838">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" fill-opacity="0.3" height="8" width="318" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="318" y="2"/>
<rect fill-opacity="0.3" height="1" width="318" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-6.333" x2="324.1" y1="4" y2="4">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-6.333" x2="324.0545" y1="4" y2="4">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" fill-opacity="0.7" height="2" width="318" y="3"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M7,0c-3.859,0-7,3.141-7,7v3h10v-10h-3z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M7,2c-3.3,0-6,2.7-6,6v2h9v-8h-3z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.667" x2="337.3" y1="5.5" y2="5.5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M7,0C3.141,0,0,3.141,0,7v3h10V0H7z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7,2C3.7,2,1,4.7,1,8v2h9V2H7z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.667" x2="337.3366" y1="5.5" y2="5.5">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h9v-9h-3z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6" x2="6" y1="111" y2="2.584">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h9V1H7z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6" x2="6" y1="111" y2="2.5838">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h8v-8h-3z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
-<path d="M7,2c-2.757,0-5,2.243-5,5v3h1v-3c0-2.206,1.795-4,4-4h3v-1h-3z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M7,1c-3.3,0-6,2.7-6,6v3h1v-3c0-2.757,2.243-5,5-5h3v-1h-3z" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.667" x2="334.1" y1="4" y2="4">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h8V2H7z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
+<path d="M7,2C4.243,2,2,4.243,2,7v3h1V7c0-2.206,1.795-4,4-4h3V2H7z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M7,1C3.7,1,1,3.7,1,7v3h1V7c0-2.757,2.243-5,5-5h3V1H7z" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.667" x2="334.0545" y1="4" y2="4">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M7,3c-1.474,0-2.75,0.811-3.443,2h6.443v-2h-3z" fill="url(#SVGID_3_)" fill-opacity="0.7"/>
-</svg>
\ No newline at end of file
+<path d="M7,3C5.526,3,4.25,3.811,3.557,5H10V3H7z" fill="url(#SVGID_3_)" fill-opacity="0.7"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lcd_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,7c0-3.859-3.141-7-7-7h-3v10h10v-3z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,8c0-3.3-2.7-6-6-6h-3v8h9v-2z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-327.3" x2="9.337" y1="5.5" y2="5.5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M10,7c0-3.859-3.141-7-7-7H0v10h10V7z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,8c0-3.3-2.7-6-6-6H0v8h9V8z" fill="#141414" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-327.333" x2="9.3366" y1="5.5" y2="5.5">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M9,7c0-3.3-2.7-6-6-6h-3v9h9v-3z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4" x2="4" y1="111" y2="2.584">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<path d="M9,7c0-3.3-2.7-6-6-6H0v9h9V7z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4" x2="4" y1="111" y2="2.5838">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
-<path d="M8,7c0-2.757-2.243-5-5-5h-3v8h8v-3z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
-<path d="M3,2h-3v1h3c2.205,0,4,1.794,4,4v3h1v-3c0-2.757-2.243-5-5-5z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M3,1h-3v1h3c2.757,0,5,2.243,5,5v3h1v-3c0-3.3-2.7-6-6-6z" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-324.3" x2="6.054" y1="4" y2="4">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M8,7c0-2.757-2.243-5-5-5H0v8h8V7z" fill="url(#SVGID_2_)" fill-opacity="0.3"/>
+<path d="M3,2H0v1h3c2.205,0,4,1.794,4,4v3h1V7C8,4.243,5.757,2,3,2z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M3,1H0v1h3c2.757,0,5,2.243,5,5v3h1V7C9,3.7,6.3,1,3,1z" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-324.333" x2="6.0545" y1="4" y2="4">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<path d="M6.443,5c-0.693-1.189-1.968-2-3.443-2h-3v2h6.443z" fill="url(#SVGID_3_)" fill-opacity="0.7"/>
-</svg>
\ No newline at end of file
+<path d="M6.443,5C5.75,3.811,4.475,3,3,3H0v2H6.443z" fill="url(#SVGID_3_)" fill-opacity="0.7"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="#AAAAAF" height="10" width="300"/>
<rect fill="#C8C8C8" height="8" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="#AAAAAF"/>
-<path d="M2,0v6c0,1.103,0.897,2,2,2h6v-8h-8z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="#AAAAAF"/>
+<path d="M2,0v6c0,1.103,0.897,2,2,2h6V0H2z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.2,0,4-1.8,4-4v-6h-10z" fill="#AAAAAF"/>
-<path d="M0,0v8h6c1.104,0,2-0.897,2-2v-6h-8z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v10h6c2.2,0,4-1.8,4-4V0H0z" fill="#AAAAAF"/>
+<path d="M0,0v8h6c1.104,0,2-0.897,2-2V0H0z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 300 20" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="300"/>
<rect fill="#AAAAAF" height="20" width="300"/>
<rect fill="#C8C8C8" height="20" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="#AAAAAF" height="20" width="10"/>
<rect fill="#C8C8C8" height="20" width="8" x="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="#AAAAAF" height="20" width="10"/>
<rect fill="#C8C8C8" height="20" width="8"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="#AAAAAF" height="10" width="300"/>
<rect fill="#C8C8C8" height="8" width="300" y="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="#AAAAAF"/>
-<path d="M4,2c-1.103,0-2,0.897-2,2v6h8v-8h-6z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="#AAAAAF"/>
+<path d="M4,2C2.897,2,2,2.897,2,4v6h8V2H4z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_disabled_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v10h10v-6z" fill="#AAAAAF"/>
-<path d="M8,4c0-1.103-0.896-2-2-2h-6v8h8v-6z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M10,4c0-2.2-1.8-4-4-4H0v10h10V4z" fill="#AAAAAF"/>
+<path d="M8,4c0-1.103-0.896-2-2-2H0v8h8V4z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-28" y2="7.673">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-27.9995" y2="7.6726">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="8" width="300"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="150" x2="150" y1="-30" y2="9.876">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="149.9995" x2="149.9995" y1="-29.9995" y2="9.8756">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="300" y="7"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-28" y2="7.673">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-27.9995" y2="7.6726">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M2,6c0,1.103,0.897,2,2,2h6v-8h-8v6z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-30" y2="9.876">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M2,6c0,1.103,0.897,2,2,2h6V0H2V6z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-29.9995" y2="9.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-3h-6c-0.542,0-1-0.459-1-1v-6h-3z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V7H4C3.458,7,3,6.541,3,6V0H0z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-28" y2="7.673">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-27.9995" y2="7.6726">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,8h6c1.104,0,2-0.897,2-2v-6h-8v8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-30" y2="9.876">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M0,8h6c1.104,0,2-0.897,2-2V0H0V8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-29.9995" y2="9.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M7,6c0,0.541-0.458,1-1,1h-6v3h6c2.2,0,4-1.8,4-4v-6h-3v6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M7,6c0,0.541-0.458,1-1,1H0v3h6c2.2,0,4-1.8,4-4V0H7V6z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 300 20" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="300"/>
<rect fill="url(#SVGID_1_)" height="20" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-8" y2="27.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-8" y2="27.6731">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="27.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="27.6731">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="8" x="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5" x2="1.5" y1="-10" y2="29.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5" x2="1.5" y1="-10.0005" y2="29.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="20" width="3"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="27.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="27.6731">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="-10" y2="29.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="-10.0005" y2="29.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="20" width="3" x="7"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="2" y2="37.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="2" y2="37.6721">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="8" width="300" y="2"/>
<rect fill="#3C3C3C" fill-opacity="0.1" height="2" stroke-opacity="0.1" width="300" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="150" x2="150" y2="39.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="149.9995" x2="149.9995" y1="0" y2="39.8751">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="37.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="37.6721">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M10,2h-6c-1.103,0-2,0.897-2,2v6h8v-8z" fill="url(#SVGID_1_)"/>
-<path d="M4,2c-1.103,0-2,0.897-2,2h8v-2h-6z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y2="39.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M10,2H4C2.897,2,2,2.897,2,4v6h8V2z" fill="url(#SVGID_1_)"/>
+<path d="M4,2C2.897,2,2,2.897,2,4h8V2H4z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0" y2="39.8752">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M3,4c0-0.542,0.458-1,1-1h6v-3h-6c-2.2,0-4,1.8-4,4v6h3v-6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M3,4c0-0.542,0.458-1,1-1h6V0H4C1.8,0,0,1.8,0,4v6h3V4z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="37.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="37.6721">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M8,4c0-1.103-0.896-2-2-2h-6v8h8v-6z" fill="url(#SVGID_1_)"/>
-<path d="M8,4c0-1.103-0.896-2-2-2h-6v2h8z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y2="39.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M8,4c0-1.103-0.896-2-2-2H0v8h8V4z" fill="url(#SVGID_1_)"/>
+<path d="M8,4c0-1.103-0.896-2-2-2H0v2H8z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0" y2="39.8752">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v3h6c0.542,0,1,0.458,1,1v6h3v-6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M10,4c0-2.2-1.8-4-4-4H0v3h6c0.542,0,1,0.458,1,1v6h3V4z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="9.5" width="300"/>
<rect fill="#B4B4B9" height="1" width="300" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-29.5" y2="9.566">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-29.4995" y2="9.5663">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0.5,6c0,1.93,1.57,3.5,3.5,3.5h6v-9.5h-9.5v6z" fill="url(#SVGID_1_)"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-1h-6c-1.654,0-3-1.346-3-3v-6h-1z" fill="#B4B4B9"/>
+<path d="M0.5,6c0,1.93,1.57,3.5,3.5,3.5h6V0H0.5V6z" fill="url(#SVGID_1_)"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V9H4C2.346,9,1,7.654,1,6V0H0z" fill="#B4B4B9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-29.5" y2="9.566">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-29.4995" y2="9.5663">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,9.5h6c1.93,0,3.5-1.57,3.5-3.5v-6h-9.5v9.5z" fill="url(#SVGID_1_)"/>
-<path d="M9,6c0,1.654-1.346,3-3,3h-6v1h6c2.2,0,4-1.8,4-4v-6h-1v6z" fill="#B4B4B9"/>
+<path d="M0,9.5h6c1.93,0,3.5-1.57,3.5-3.5V0H0V9.5z" fill="url(#SVGID_1_)"/>
+<path d="M9,6c0,1.654-1.346,3-3,3H0v1h6c2.2,0,4-1.8,4-4V0H9V6z" fill="#B4B4B9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-29.5" y2="9.566">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-29.4995" y2="9.5663">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 300 20" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="300"/>
<rect fill="url(#SVGID_1_)" height="20" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-9.5" y2="29.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-9.5" y2="29.5668">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="url(#SVGID_1_)" height="20" width="9.5" x="0.5"/>
<rect fill="#B4B4B9" height="20" width="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-9.5" y2="29.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-9.5" y2="29.5668">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="url(#SVGID_1_)" height="20" width="9.5"/>
<rect fill="#B4B4B9" height="20" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-9.5" y2="29.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-9.5" y2="29.5668">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="9.5" width="300" y="0.5"/>
<rect fill="#B4B4B9" height="1" width="300"/>
<rect fill="#646464" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="0.5" y2="39.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0.5" y2="39.5658">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,0.5h-6c-1.93,0-3.5,1.57-3.5,3.5v6h9.5v-9.5z" fill="url(#SVGID_1_)"/>
-<path d="M1,4c0-1.654,1.346-3,3-3h6v-1h-6c-2.2,0-4,1.8-4,4v6h1v-6z" fill="#B4B4B9"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3,0-1.654,1.346-2,3-2h6v-1h-6z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M10,0.5H4C2.07,0.5,0.5,2.07,0.5,4v6H10V0.5z" fill="url(#SVGID_1_)"/>
+<path d="M1,4c0-1.654,1.346-3,3-3h6V0H4C1.8,0,0,1.8,0,4v6h1V4z" fill="#B4B4B9"/>
+<path d="M4,1C2.346,1,1,2.346,1,4c0-1.654,1.346-2,3-2h6V1H4z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="0.5" y2="39.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="0.5" y2="39.5658">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_lineedit_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M9.5,4c0-1.93-1.57-3.5-3.5-3.5h-6v9.5h9.5v-6z" fill="url(#SVGID_1_)"/>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6z" fill="#B4B4B9"/>
-<path d="M6,1h-6v1h6c1.654,0,3,0.346,3,2,0-1.654-1.346-3-3-3z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9.5,4c0-1.93-1.57-3.5-3.5-3.5H0V10h9.5V4z" fill="url(#SVGID_1_)"/>
+<path d="M10,4c0-2.2-1.8-4-4-4H0v1h6c1.654,0,3,1.346,3,3v6h1V4z" fill="#B4B4B9"/>
+<path d="M6,1H0v1h6c1.654,0,3,0.346,3,2C9,2.346,7.654,1,6,1z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="0.5" y2="39.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="0.5" y2="39.5658">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="300" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-40" y2="10.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-39.9995" y2="10.094">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="2,8,2,0,1,0,1,9,10,9,10,8" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="2,8 2,0 1,0 1,9 10,9 10,8 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.094">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="9,0,8,0,8,8,0,8,0,9" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="9,0 8,0 8,8 0,8 0,9 9,9 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.094">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-10" y2="40.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-10" y2="40.0942">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.0942">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.0942">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="300" y="1"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y2="50.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0" y2="50.0935">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="9" x="1" y="1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="1,1,1,10,2,10,2,2,10,2,10,1" stroke-opacity="0.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="1,1 1,10 2,10 2,2 10,2 10,1 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.0935">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="9" y="1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="0,1,0,2,8,2,8,10,9,10,9,1" stroke-opacity="0.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="0,1 0,2 8,2 8,10 9,10 9,1 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.0935">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="300" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-40.17" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-40.166" y2="10.0105">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,8,2,0,1,0,1,9,10,9,10,8" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,8 2,0 1,0 1,9 10,9 10,8 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.17" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.166" y2="10.0105">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="9,0,8,0,8,8,0,8,0,9" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="9,0 8,0 8,8 0,8 0,9 9,9 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.17" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.166" y2="10.0105">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-10.17" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-10.1665" y2="40.0108">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.17" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.1665" y2="40.0108">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.17" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.1665" y2="40.0108">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-0.1665" y2="50.01">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1,1,10,2,10,2,2,10,2,10,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1 1,10 2,10 2,2 10,2 10,1 " stroke-opacity="0.4"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1,0,2,8,2,8,10,9,10,9,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1 0,2 8,2 8,10 9,10 9,1 " stroke-opacity="0.4"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_new_item_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_new_item_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="10" width="10" x="0"/>
<rect fill="url(#SVGID_1_)" height="10" width="7.999" x="0"/>
<rect height="10" width="1" x="6.998"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.998" x2="3.998" y1="-20.17" y2="10.16">
-<stop offset="0" stop-color="#39393A"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.9985" x2="3.9985" y1="-20.1709" y2="10.1579">
+<stop offset="0" style="stop-color:#39393A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_new_item_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_new_item_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="10" width="10" x="0"/>
-<polygon fill="url(#SVGID_1_)" points="7.998,0,0,0,0,10,7.998,10,7.998,1.58"/>
-<polygon points="7.998,0,6.998,0,6.998,10,7.998,10,7.998,1.58"/>
+<polygon fill="url(#SVGID_1_)" points="7.998,0 0,0 0,10 7.998,10 7.998,1.58 "/>
+<polygon points="7.998,0 6.998,0 6.998,10 7.998,10 7.998,1.58 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.998" x2="3.998" y1="-10.17" y2="20.16">
-<stop offset="0" stop-color="#39393A"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.9985" x2="3.9985" y1="-10.1704" y2="20.1583">
+<stop offset="0" style="stop-color:#39393A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_new_item_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_new_item_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="10" width="10" x="0"/>
<rect fill="url(#SVGID_1_)" height="10" width="7.999" x="0"/>
<rect height="10" width="1" x="6.998"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.998" x2="3.998" y1="-0.1699" y2="30.16">
-<stop offset="0" stop-color="#39393A"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.9985" x2="3.9985" y1="-0.1699" y2="30.1588">
+<stop offset="0" style="stop-color:#39393A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill="#FFFFFF" height="1" width="300" y="8"/>
<rect fill="#DCDCDC" height="1" width="300" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-40" y2="10.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-39.9995" y2="10.2376">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#FFFFFF" height="1" width="10" y="8"/>
-<polygon fill="#DCDCDC" points="0,9,0,9.5,0,10,10,10,10,9"/>
+<polygon fill="#DCDCDC" points="0,9 0,9.5 0,10 10,10 10,9 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.2376">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#FFFFFF" height="1" width="10" y="8"/>
-<polygon fill="#DCDCDC" points="0,9,0,10,10,10,10,9.5,10,9"/>
+<polygon fill="#DCDCDC" points="0,9 0,10 10,10 10,9.5 10,9 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.2376">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-10" y2="40.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-10" y2="40.2379">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.2379">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.2379">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y2="50.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0" y2="50.2371">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.2371">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.24">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.2371">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill="#FFFFFF" height="1" width="300" y="8"/>
<rect fill="#DCDCDC" height="1" width="300" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-40" y2="10.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-39.9995" y2="10.2376">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#FFFFFF" height="1" width="10" y="8"/>
-<polygon fill="#DCDCDC" points="0,9,0,9.5,0,10,10,10,10,9"/>
+<polygon fill="#DCDCDC" points="0,9 0,9.5 0,10 10,10 10,9 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.2376">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#FFFFFF" height="1" width="10" y="8"/>
-<polygon fill="#DCDCDC" points="0,9,0,10,10,10,10,9.5,10,9"/>
+<polygon fill="#DCDCDC" points="0,9 0,10 10,10 10,9.5 10,9 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.2376">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-10" y2="40.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-10" y2="40.2379">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.2379">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.2379">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y2="50.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0" y2="50.2371">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.2371">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_parent_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.24">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="0.83" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.2371">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="0.83" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="10" y2="-39.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="10" y2="-39.5077">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10" x="0"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,8,2,0,1,0,1,9,10,9,10,8" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,8 2,0 1,0 1,9 10,9 10,8 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="10" y2="-39.5101">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="9,0,8,0,8,8,0,8,0,9" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="9,0 8,0 8,8 0,8 0,9 9,9 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.5101">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="40" y2="-9.509">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="40" y2="-9.5093">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10" x="0"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="0"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.509">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="40" y2="-9.5093">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.509">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.5093">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="50" y2="0.4904">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150.0005" x2="150.0005" y1="49.998" y2="0.4904">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10" x="0"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1,1,10,2,10,2,2,10,2,10,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1 1,10 2,10 2,2 10,2 10,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.4899">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="50" y2="0.4899">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1,0,2,8,2,8,10,9,10,9,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1 0,2 8,2 8,10 9,10 9,1 " stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.4899">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-39.75" y2="10.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-39.7495" y2="10.361">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.75" y2="10.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.7495" y2="10.361">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.75" y2="10.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.7495" y2="10.361">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-9.75" y2="40.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-9.75" y2="40.3613">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="40.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="40.3613">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="40.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.75" y2="40.3613">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill="#FFFFFF" height="1" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="0.25" y2="50.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0.25" y2="50.3605">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#FFFFFF" height="1" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="50.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="50.3605">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_list_separator_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#FFFFFF" height="1" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="50.36">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.25" y2="50.3605">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_messaging_char_count_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_messaging_char_count_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="15"/>
<rect fill="#AAAAAF" height="30" width="15"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_messaging_char_count_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_messaging_char_count_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="15"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v22c0,2.2,1.8,4,4,4h11v-30h-11z" fill="#AAAAAF"/>
-</svg>
\ No newline at end of file
+<path d="M4,0C1.8,0,0,1.8,0,4v22c0,2.2,1.8,4,4,4h11V0H4z" fill="#AAAAAF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_messaging_char_count_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_messaging_char_count_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 15 30" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="15"/>
-<path d="M11,0h-11v30h11c2.2,0,4-1.8,4-4v-22c0-2.2-1.8-4-4-4z" fill="#AAAAAF"/>
-</svg>
\ No newline at end of file
+<path d="M11,0H0v30h11c2.2,0,4-1.8,4-4V4C15,1.8,13.2,0,11,0z" fill="#AAAAAF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="80"/>
<rect height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="0,0,0,10,10,10,10,9,1,9,1,0"/>
-</svg>
\ No newline at end of file
+<polygon points="0,0 0,10 10,10 10,9 1,9 1,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="0,10,10,10,10,0,9,0,9,9,0,9"/>
-</svg>
\ No newline at end of file
+<polygon points="0,10 10,10 10,0 9,0 9,9 0,9 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="10"/>
<rect height="80" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="10"/>
<rect height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="80"/>
<rect height="1" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="10,0,0,0,0,10,1,10,1,1,10,1"/>
-</svg>
\ No newline at end of file
+<polygon points="10,0 0,0 0,10 1,10 1,1 10,1 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_multimedia_trans_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="10,10,10,0,0,0,0,1,9,1,9,10"/>
-</svg>
\ No newline at end of file
+<polygon points="10,10 10,0 0,0 0,1 9,1 9,10 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="#FFFFFF" height="10" width="80"/>
<rect fill="#BEBEC8" height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,10c-5.523,0-10-4.478-10-10h10v10z" fill="#FFFFFF"/>
-<path d="M9.998,9c-4.961,0-9-4.039-9-9h-0.998c0,5.523,4.478,10,9.999,10l-0.001-1z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M10,10C4.477,10,0,5.522,0,0h10V10z" fill="#FFFFFF"/>
+<path d="M9.998,9c-4.961,0-9-4.039-9-9H0c0,5.523,4.478,10,9.999,10L9.998,9z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,10c5.523,0,10-4.478,10-10h-10v10z" fill="#FFFFFF"/>
-<path d="M9,0.001c0,4.961-4.038,9-9,9v0.998c5.523,0,10-4.478,10-9.999l-1,0.001z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M0,10c5.523,0,10-4.478,10-10H0V10z" fill="#FFFFFF"/>
+<path d="M9,0.001c0,4.961-4.038,9-9,9v0.998c5.523,0,10-4.478,10-9.999L9,0.001z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill="#FFFFFF" height="80" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="30"/>
<rect fill="url(#SVGID_1_)" height="10" width="30"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-40" y2="9.828">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-39.9995" y2="9.8281">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="9.828">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="9.8281">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="9.828">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="9.8281">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
<rect fill="url(#SVGID_1_)" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-10" y2="39.83">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-10" y2="39.8284">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="39.83">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="39.8284">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10" y="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="39.83">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="39.8284">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="30"/>
<rect fill="url(#SVGID_1_)" height="10" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y2="49.83">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="0" y2="49.8276">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="49.83">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="49.8276">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="49.83">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="49.8276">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="30"/>
<rect fill="url(#SVGID_1_)" height="10" width="30"/>
<rect fill="#D9D9D9" height="1" width="30" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-39.83" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-39.833" y2="10.0075">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#D9D9D9" height="1" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.83" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.833" y2="10.0075">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill="#D9D9D9" points="9,0,9,9,0,9,0,10,10,10,10,0"/>
+<polygon fill="#D9D9D9" points="9,0 9,9 0,9 0,10 10,10 10,0 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.83" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.833" y2="10.0075">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-9.834" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-9.8335" y2="40.0078">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.834" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.8335" y2="40.0078">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10" y="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill="#D9D9D9" height="30" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.834" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-9.8335" y2="40.0078">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="0.1665" y2="50.0094">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.1665" y2="50.007">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill="#D9D9D9" height="10" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#9696A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0.1665" y2="50.007">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#9696A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="30"/>
<rect fill="none" height="10" width="30"/>
<rect fill="#BEBEC8" height="1" width="30" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
<rect fill="#BEBEC8" height="1" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
-<polygon fill="#BEBEC8" points="9,0,9,9,0,9,0,10,10,10,10,0"/>
-</svg>
\ No newline at end of file
+<polygon fill="#BEBEC8" points="9,0 9,9 0,9 0,10 10,10 10,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="30"/>
-<rect height="30" width="30"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect fill="none" height="30" width="30"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="10"/>
-<rect height="30" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="10"/>
+<rect fill="none" height="30" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10" y="0"/>
<rect fill="none" height="30" width="10"/>
<rect fill="#BEBEC8" height="30" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="30"/>
-<rect height="10" width="30"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="30"/>
+<rect fill="none" height="10" width="30"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<rect height="10" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="10"/>
+<rect fill="none" height="10" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
<rect fill="#BEBEC8" height="10" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="30"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="10" y2="-39.9">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="10" y2="-39.8982">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.9">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.9007">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.9">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.9007">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="40" y2="-9.9">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="40" y2="-9.8999">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.9">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.8999">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10" y="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.9">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.8999">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="50" y2="0.0998">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="49.998" y2="0.0998">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.0993">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_grid_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.0993">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_heading_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_heading_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 52 52" width="52px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="52"/>
-<rect fill="#BEBEC8" height="52" width="52"/>
-<rect fill="url(#SVGID_1_)" height="51" width="52" y="1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="52"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="52" y="1"/>
<rect fill="#FFFFFF" height="1" width="52" y="50"/>
<rect fill="#DCDCDC" height="1" width="52" y="51"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26" x2="26" y1="1" y2="52">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.9" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.9995" x2="25.9995" y1="1" y2="52.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.9" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_heading_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_heading_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 52 52" width="52px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M52,0h-42c-5.523,0-10,4.478-10,10v42h52v-52z" fill="#BEBEC8"/>
-<path d="M1,52v-42c0-4.963,4.038-9,9-9h42v51h-51z" fill="url(#SVGID_1_)"/>
+<path d="M52,0H10C4.477,0,0,4.478,0,10v42h52V0z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M1,52V10c0-4.963,4.038-9,9-9h42v51H1z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
<rect fill="#FFFFFF" height="1" width="51" x="1" y="50"/>
<rect fill="#DCDCDC" height="1" width="51" x="1" y="51"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.5" x2="26.5" y1="1" y2="52">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.9" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4995" x2="26.4995" y1="1" y2="52.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.9" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_heading_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_heading_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 52 52" width="52px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="52"/>
-<path d="M0,0h42c5.523,0,10,4.478,10,10v42h-52v-52z" fill="#BEBEC8"/>
-<path d="M0,52v-51h42c4.962,0,9,4.037,9,9v42h-51z" fill="url(#SVGID_1_)"/>
+<path d="M0,0h42c5.523,0,10,4.478,10,10v42H0V0z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M0,52V1h42c4.962,0,9,4.037,9,9v42H0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
<rect fill="#FFFFFF" height="1" width="51" y="50"/>
<rect fill="#DCDCDC" height="1" width="51" y="51"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.5" x2="25.5" y1="1" y2="52">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.9" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.5" x2="25.5" y1="1" y2="52.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.9" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="#FFFFFF" height="80" width="10"/>
<rect fill="#BEBEC8" height="80" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="300" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-40" y2="10.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-39.9995" y2="10.094">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="2,8,2,0,1,0,1,9,10,9,10,8" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="2,8 2,0 1,0 1,9 10,9 10,8 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.094">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="9,0,8,0,8,8,0,8,0,9" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="9,0 8,0 8,8 0,8 0,9 9,9 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40" y2="10.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-39.9995" y2="10.094">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-10" y2="40.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-10" y2="40.0942">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.0942">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10" y2="40.0942">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="300" y="1"/>
<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y2="50.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0" y2="50.0935">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="9" x="1" y="1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="1,1,1,10,2,10,2,2,10,2,10,1" stroke-opacity="0.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="1,1 1,10 2,10 2,2 10,2 10,1 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.0935">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="9" y="1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="0,1,0,2,8,2,8,10,9,10,9,1" stroke-opacity="0.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" points="0,1 0,2 8,2 8,10 9,10 9,1 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y2="50.09">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="0" y2="50.0935">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="300" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-40.17" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-40.166" y2="10.0105">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,8,2,0,1,0,1,9,10,9,10,8" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,8 2,0 1,0 1,9 10,9 10,8 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.17" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.166" y2="10.0105">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="9,0,8,0,8,8,0,8,0,9" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="9,0 8,0 8,8 0,8 0,9 9,9 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.17" y2="10.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-40.166" y2="10.0105">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-10.17" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-10.1665" y2="40.0108">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.17" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.1665" y2="40.0108">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.17" y2="40.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-10.1665" y2="40.0108">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-0.1665" y2="50.01">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1,1,10,2,10,2,2,10,2,10,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1 1,10 2,10 2,2 10,2 10,1 " stroke-opacity="0.4"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_latched_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1,0,2,8,2,8,10,9,10,9,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1 0,2 8,2 8,10 9,10 9,1 " stroke-opacity="0.4"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="-0.1665" y2="50.01">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#8C8C96"/>
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#8C8C96"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="300"/>
<rect fill="#DCDCDC" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
<rect fill="#DCDCDC" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
<rect fill="#DCDCDC" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="300"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="300"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="300"/>
+<rect fill="none" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="300"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="10"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="10"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="300"/>
-<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="300"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="300"/>
+<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="300"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="#FAFAFA" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="#FAFAFA" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="#FAFAFA" height="10" width="10"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="300"/>
<rect fill="#FAFAFA" height="30" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#FAFAFA" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="#FAFAFA" height="30" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="#FAFAFA" height="10" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="#FAFAFA" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_parent_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="#FAFAFA" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="10" y2="-39.51">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="10" y2="-39.5077">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10" x="0"/>
-<polygon fill-opacity="0.2" points="1,9,1,0,0,0,0,10,10,10,10,9" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,8,2,0,1,0,1,9,10,9,10,8" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="1,9 1,0 0,0 0,10 10,10 10,9 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,8 2,0 1,0 1,9 10,9 10,8 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.67">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="10" y2="-39.6735">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="10,0,9,0,9,9,0,9,0,10" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="9,0,8,0,8,8,0,8,0,9" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="10,0 9,0 9,9 0,9 0,10 10,10 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="9,0 8,0 8,8 0,8 0,9 9,9 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.67">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="10" y2="-39.6735">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="30" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="40" y2="-9.509">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="40" y2="-9.5093">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10" x="0"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="0"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.673">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="40" y2="-9.6727">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10"/>
<rect fill="url(#SVGID_1_)" height="30" width="10"/>
<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="9"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.673">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="40" y2="-9.6727">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="300"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="50" y2="0.4904">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150.0005" x2="150.0005" y1="49.998" y2="0.4904">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10" x="0"/>
-<polygon fill-opacity="0.2" points="0,0,0,10,1,10,1,1,10,1,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1,1,10,2,10,2,2,10,2,10,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,10 1,10 1,1 10,1 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1 1,10 2,10 2,2 10,2 10,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.3265">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.0005" x2="5.0005" y1="50" y2="0.3265">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_list_pressed_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,9,1,9,10,10,10,10,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1,0,2,8,2,8,10,9,10,9,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 9,1 9,10 10,10 10,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1 0,2 8,2 8,10 9,10 9,1 " stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="50" y2="0.3265">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="80"/>
<rect height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,10c-5.523,0-10-4.478-10-10h10v10z" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M9.998,9c-4.961,0-9-4.039-9-9h-0.998c0,5.523,4.478,10,9.999,10l-0.001-1z"/>
-</svg>
\ No newline at end of file
+<path d="M10,10C4.477,10,0,5.522,0,0h10V10z" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M9.998,9c-4.961,0-9-4.039-9-9H0c0,5.523,4.478,10,9.999,10L9.998,9z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,10c5.523,0,10-4.478,10-10h-10v10z" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M9,0.001c0,4.961-4.038,9-9,9v0.998c5.523,0,10-4.478,10-9.999l-1,0.001z"/>
-</svg>
\ No newline at end of file
+<path d="M0,10c5.523,0,10-4.478,10-10H0V10z" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M9,0.001c0,4.961-4.038,9-9,9v0.998c5.523,0,10-4.478,10-9.999L9,0.001z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="10"/>
<rect height="80" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="10"/>
<rect height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="80"/>
<rect height="1" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,0c-5.523,0-10,4.477-10,10h10v-10z" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M1,9.998c0-4.961,4.038-9,9-9v-0.998c-5.523,0-10,4.478-10,9.999l1-0.001z"/>
-</svg>
\ No newline at end of file
+<path d="M10,0C4.477,0,0,4.477,0,10h10V0z" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M1,9.998c0-4.961,4.038-9,9-9L10,0C4.477,0,0,4.478,0,9.999L1,9.998z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_preview_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0c5.523,0,10,4.477,10,10h-10v-10z" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M0.001,1c4.961,0,9,4.037,9,8.999l0.998,0.001c0-5.523-4.478-10-9.999-10l0.001,1z"/>
-</svg>
\ No newline at end of file
+<path d="M0,0c5.523,0,10,4.477,10,10H0V0z" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M0.001,1c4.961,0,9,4.037,9,8.999L9.999,10C9.999,4.477,5.521,0,0,0L0.001,1z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="#FFFFFF" height="80" width="10"/>
<rect fill="#BEBEC8" height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="#F0F0FA" height="10" width="80"/>
<rect fill="#BEBEC8" height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,10c-5.523,0-10-4.478-10-10h10v10z" fill="#F0F0FA"/>
-<path d="M9.998,9c-4.961,0-9-4.039-9-9h-0.998c0,5.523,4.478,10,9.999,10l-0.001-1z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M10,10C4.477,10,0,5.522,0,0h10V10z" fill="#F0F0FA"/>
+<path d="M9.998,9c-4.961,0-9-4.039-9-9H0c0,5.523,4.478,10,9.999,10L9.998,9z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,10c5.523,0,10-4.478,10-10h-10v10z" fill="#F0F0FA"/>
-<path d="M9,0.001c0,4.961-4.038,9-9,9v0.998c5.523,0,10-4.478,10-9.999l-1,0.001z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M0,10c5.523,0,10-4.478,10-10H0V10z" fill="#F0F0FA"/>
+<path d="M9,0.001c0,4.961-4.038,9-9,9v0.998c5.523,0,10-4.478,10-9.999L9,0.001z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill="#F0F0FA" height="80" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="#F0F0FA" height="80" width="10"/>
<rect fill="#BEBEC8" height="80" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill="#F0F0FA" height="80" width="10"/>
<rect fill="#BEBEC8" height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="#F0F0FA" height="10" width="80"/>
<rect fill="#BEBEC8" height="1" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,0c-5.523,0-10,4.477-10,10h10v-10z" fill="#F0F0FA"/>
-<path d="M1,9.998c0-4.961,4.038-9,9-9v-0.998c-5.523,0-10,4.478-10,9.999l1-0.001z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M10,0C4.477,0,0,4.477,0,10h10V0z" fill="#F0F0FA"/>
+<path d="M1,9.998c0-4.961,4.038-9,9-9L10,0C4.477,0,0,4.478,0,9.999L1,9.998z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_secondary_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0c5.523,0,10,4.477,10,10h-10v-10z" fill="#F0F0FA"/>
-<path d="M0.001,1c4.961,0,9,4.037,9,8.999l0.998,0.001c0-5.523-4.478-10-9.999-10l0.001,1z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M0,0c5.523,0,10,4.477,10,10H0V0z" fill="#F0F0FA"/>
+<path d="M0.001,1c4.961,0,9,4.037,9,8.999L9.999,10C9.999,4.477,5.521,0,0,0L0.001,1z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="url(#SVGID_1_)" height="52" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="26" y="51"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="26" y="51"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="52" y2="0.3297">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.0005" x2="13.0005" y1="52" y2="0.3297">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="url(#SVGID_1_)" height="52" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="26" y="51"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="26" y="51"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="52" y2="0.3297">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="url(#SVGID_1_)" height="52" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="26" y="51"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="26" y="51"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="52" y2="0.3297">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M26,52h-16c-5.523,0-10-4.48-10-10v-42h26v52z" fill="url(#SVGID_1_)"/>
-<path d="M26,1v-1h-26v42c0,5.521,4.477,10,10,10h16v-1h-16c-4.963,0-9-4.037-9-9v-41h25z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M26,52H10C4.477,52,0,47.521,0,42V0h26V52z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M26,1V0H0v42c0,5.521,4.477,10,10,10h16v-1H10 c-4.963,0-9-4.037-9-9V1H26z" fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" stroke-opacity="0.5"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="52" y2="0.3297">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M0,52h16c5.523,0,10-4.479,10-10v-42h-26v52z" fill="url(#SVGID_1_)"/>
-<path d="M0,0v1h25v41c0,4.963-4.037,9-9,9h-16v1h16c5.523,0,10-4.479,10-10v-42h-26z" fill="#9696A0" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M0,52h16c5.523,0,10-4.479,10-10V0H0V52z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M0,0v1h25v41c0,4.963-4.037,9-9,9H0v1h16 c5.523,0,10-4.479,10-10V0H0z" fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" stroke-opacity="0.5"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="52" y2="0.3297">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="50"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="26" y="49"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="26" y="2"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="50"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="26" y="49"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="26" y="2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y2="51">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.9995" x2="12.9995" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<polygon fill-opacity="0.2" points="26,2,26,1,0,1,0,51,26,51,26,50,1,50,1,2" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="26,49,2,49,2,3,26,3,26,2,1,2,1,50,26,50" stroke-opacity="0.1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="26,2 26,1 0,1 0,51 26,51 26,50 1,50 1,2 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" points="26,49 2,49 2,3 26,3 26,2 1,2 1,50 26,50 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y2="51">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<polygon fill-opacity="0.2" points="0,1,0,2,25,2,25,50,0,50,0,51,26,51,26,1" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="0,49,24,49,24,3,0,3,0,2,25,2,25,50,0,50" stroke-opacity="0.1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="0,1 0,2 25,2 25,50 0,50 0,51 26,51 26,1 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" points="0,49 24,49 24,3 0,3 0,2 25,2 25,50 0,50 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y2="51">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M26,52h-16c-5.523,0-10-4.48-10-10v-42h26v52z" fill="#BEBEC8"/>
-<path d="M10,51c-4.962,0-9-4.037-9-9v-42h25v51h-16z" fill="url(#SVGID_1_)"/>
-<rect fill="#BEBEC8" height="1" width="25" x="1"/>
-<path d="M10,49c-3.86,0-7-3.141-7-7v-39h23v-1h-24v40c0,4.411,3.589,8,8,8h16v-1h-16z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,50c-4.411,0-8-3.589-8-8v-40h24v-1h-25v41c0,4.963,4.038,9,9,9h16v-1h-16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26,52H10C4.477,52,0,47.522,0,42V0h26V52z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M10,51c-4.962,0-9-4.037-9-9V0h25v51H10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="25" x="1"/>
+<path d="M10,49c-3.86,0-7-3.141-7-7V3h23V2H2v40 c0,4.411,3.589,8,8,8h16v-1H10z" fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M10,50c-4.411,0-8-3.589-8-8V2h24V1H1v41c0,4.963,4.038,9,9,9h16v-1 H10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y2="51">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M0,52h16c5.523,0,10-4.478,10-10v-42h-26v52z" fill="#BEBEC8"/>
-<path d="M16,51c4.963,0,9-4.037,9-9v-42h-25v51h16z" fill="url(#SVGID_1_)"/>
-<rect fill="#BEBEC8" height="1" width="25"/>
-<path d="M16,49c3.859,0,7-3.141,7-7v-39h-23v-1h24v40c0,4.411-3.589,8-8,8h-16v-1h16z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M16,50c4.411,0,8-3.589,8-8v-40h-24v-1h25v41c0,4.963-4.037,9-9,9h-16v-1h16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,52h16c5.523,0,10-4.478,10-10V0H0V52z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M16,51c4.963,0,9-4.037,9-9V0H0v51H16z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="25"/>
+<path d="M16,49c3.859,0,7-3.141,7-7V3H0V2h24v40 c0,4.411-3.589,8-8,8H0v-1H16z" fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M16,50c4.411,0,8-3.589,8-8V2H0V1h25v41c0,4.963-4.037,9-9,9H0v-1 H16z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1640 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1652" x2="-1652" y2="51">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1640 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1652.5" x2="-1652.5" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="50"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y2="51">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#C8C8D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.9995" x2="12.9995" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="50"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="50" stroke-opacity="0.9" width="1" y="1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="50"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" fill-rule="evenodd" height="50" stroke-opacity="0.9" width="1" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y2="51">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#C8C8D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="50"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="50" stroke-opacity="0.5" width="1" x="25" y="1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="50"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<rect fill="#9696A0" fill-opacity="0.5" fill-rule="evenodd" height="50" stroke-opacity="0.5" width="1" x="25" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y2="51">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#C8C8D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M26,52h-16c-5.523,0-10-4.48-10-10v-42h26v52z" fill="#BEBEC8"/>
-<path d="M10,51c-4.962,0-9-4.037-9-9v-42h25v51h-16z" fill="url(#SVGID_1_)"/>
-<rect fill="#BEBEC8" height="1" width="25" x="1"/>
-<path d="M26,50h-16c-4.411,0-8-3.589-8-8v-41h-1v41c0,4.963,4.038,9,9,9h16v-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26,52H10C4.477,52,0,47.522,0,42V0h26V52z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M10,51c-4.962,0-9-4.037-9-9V0h25v51H10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="25" x="1"/>
+<path d="M26,50H10c-4.411,0-8-3.589-8-8V1H1v41 c0,4.963,4.038,9,9,9h16V50z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y2="51">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#C8C8D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M0,52h16c5.523,0,10-4.478,10-10v-42h-26v52z" fill="#BEBEC8"/>
-<path d="M16,51c4.963,0,9-4.037,9-9v-42h-25v51h16z" fill="url(#SVGID_1_)"/>
-<rect fill="#BEBEC8" height="1" width="25"/>
-<path d="M0,50h16c4.411,0,8-3.589,8-8v-41h1v41c0,4.963-4.037,9-9,9h-16v-1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,52h16c5.523,0,10-4.478,10-10V0H0V52z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M16,51c4.963,0,9-4.037,9-9V0H0v51H16z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="25"/>
+<path d="M0,50h16c4.411,0,8-3.589,8-8V1h1v41 c0,4.963-4.037,9-9,9H0V50z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -2390 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2402" x2="-2402" y2="51">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#C8C8D2"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -2390 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2402.5" x2="-2402.5" y1="0" y2="51.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#C8C8D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" x="0" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="50"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="26" y="49"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" y="1"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="26" y="2"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="50"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="26" y="49"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="26" y="1"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="26" y="2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="51" y2="0.1572">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.0005" x2="13.0005" y1="51" y2="0.1572">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<polygon fill-opacity="0.2" points="26,2,26,1,0,1,0,51,26,51,26,50,1,50,1,2" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="26,49,2,49,2,3,26,3,26,2,1,2,1,50,26,50" stroke-opacity="0.1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="26,2 26,1 0,1 0,51 26,51 26,50 1,50 1,2 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" points="26,49 2,49 2,3 26,3 26,2 1,2 1,50 26,50 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="51" y2="0.1572">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.9995" x2="12.9995" y1="51" y2="0.1572">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<rect fill="#BEBEC8" height="52" width="26"/>
-<rect fill="url(#SVGID_1_)" height="51" width="26"/>
-<rect fill="#BEBEC8" height="1" width="26"/>
-<polygon fill-opacity="0.2" points="0,1,0,2,25,2,25,50,0,50,0,51,26,51,26,1" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.1" points="0,49,24,49,24,3,0,3,0,2,25,2,25,50,0,50" stroke-opacity="0.1"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="52" width="26"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="51" width="26"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="26"/>
+<polygon fill-opacity="0.2" fill-rule="evenodd" points="0,1 0,2 25,2 25,50 0,50 0,51 26,51 26,1 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" points="0,49 24,49 24,3 0,3 0,2 25,2 25,50 0,50 " stroke-opacity="0.1"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13" x2="13" y1="51" y2="0.1572">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M26,52h-16c-5.523,0-10-4.48-10-10v-42h26v52z" fill="#BEBEC8"/>
-<path d="M10,51c-4.962,0-9-4.037-9-9v-42h25v51h-16z" fill="url(#SVGID_1_)"/>
-<rect fill="#BEBEC8" height="1" width="25" x="1"/>
-<path d="M10,49c-3.86,0-7-3.141-7-7v-39h23v-1h-24v40c0,4.411,3.589,8,8,8h16v-1h-16z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,50c-4.411,0-8-3.589-8-8v-40h24v-1h-25v41c0,4.963,4.038,9,9,9h16v-1h-16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26,52H10C4.477,52,0,47.522,0,42V0h26V52z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M10,51c-4.962,0-9-4.037-9-9V0h25v51H10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="25" x="1"/>
+<path d="M10,49c-3.86,0-7-3.141-7-7V3h23V2H2v40 c0,4.411,3.589,8,8,8h16v-1H10z" fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M10,50c-4.411,0-8-3.589-8-8V2h24V1H1v41c0,4.963,4.038,9,9,9h16v-1 H10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y1="51" y2="0.1572">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_sk_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="52px" version="1.1" viewBox="0 0 26 52" width="26px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="52" width="26" y="0"/>
-<path d="M0,52h16c5.523,0,10-4.478,10-10v-42h-26v52z" fill="#BEBEC8"/>
-<path d="M16,51c4.963,0,9-4.037,9-9v-42h-25v51h16z" fill="url(#SVGID_1_)"/>
-<rect fill="#BEBEC8" height="1" width="25"/>
-<path d="M16,49c3.859,0,7-3.141,7-7v-39h-23v-1h24v40c0,4.411-3.588,8-8,8h-16v-1h16z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M16,50c4.412,0,8-3.589,8-8v-40h-24v-1h25v41c0,4.963-4.037,9-9,9h-16v-1h16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,52h16c5.523,0,10-4.478,10-10V0H0V52z" fill="#BEBEC8" fill-rule="evenodd"/>
+<path d="M16,51c4.963,0,9-4.037,9-9V0H0v51H16z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<rect fill="#BEBEC8" fill-rule="evenodd" height="1" width="25"/>
+<path d="M16,49c3.859,0,7-3.141,7-7V3H0V2h24v40 c0,4.411-3.588,8-8,8H0v-1H16z" fill="#FFFFFF" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M16,50c4.412,0,8-3.589,8-8V2H0V1h25v41c0,4.963-4.037,9-9,9H0v-1 H16z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1640 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1652" x2="-1652" y1="51" y2="0.1572">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1640 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1652.5" x2="-1652.5" y1="51" y2="0.1572">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill="#FFFFFF" height="10" width="80"/>
<rect fill="#BEBEC8" height="1" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,0c-5.523,0-10,4.477-10,10h10v-10z" fill="#FFFFFF"/>
-<path d="M1,9.998c0-4.961,4.038-9,9-9v-0.998c-5.523,0-10,4.478-10,9.999l1-0.001z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M10,0C4.477,0,0,4.477,0,10h10V0z" fill="#FFFFFF"/>
+<path d="M1,9.998c0-4.961,4.038-9,9-9L10,0C4.477,0,0,4.478,0,9.999L1,9.998z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0c5.523,0,10,4.477,10,10h-10v-10z" fill="#FFFFFF"/>
-<path d="M0.001,1c4.961,0,9,4.037,9,8.999l0.998,0.001c0-5.523-4.478-10-9.999-10l0.001,1z" fill="#BEBEC8"/>
-</svg>
\ No newline at end of file
+<path d="M0,0c5.523,0,10,4.477,10,10H0V0z" fill="#FFFFFF"/>
+<path d="M0.001,1c4.961,0,9,4.037,9,8.999L9.999,10C9.999,4.477,5.521,0,0,0L0.001,1z" fill="#BEBEC8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="80"/>
<rect height="1" width="80" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="0,0,0,10,10,10,10,9,1,9,1,0"/>
-</svg>
\ No newline at end of file
+<polygon points="0,0 0,10 10,10 10,9 1,9 1,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="0,10,10,10,10,0,9,0,9,9,0,9"/>
-</svg>
\ No newline at end of file
+<polygon points="0,10 10,10 10,0 9,0 9,9 0,9 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 80 80" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="80"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="30"/>
<rect fill="none" height="10" width="30"/>
<rect fill="#D9D9D9" height="1" width="30" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
<rect fill="#D9D9D9" height="1" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
-<polygon fill="#D9D9D9" points="9,0,9,9,0,9,0,10,10,10,10,0"/>
-</svg>
\ No newline at end of file
+<polygon fill="#D9D9D9" points="9,0 9,9 0,9 0,10 10,10 10,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 10 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="30"/>
-<rect height="30" width="30" y="10"/>
-<rect height="30" width="30" y="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 10 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="30"/>
+<rect fill="none" height="30" width="30" y="10"/>
+<rect fill="none" height="30" width="30" y="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="10"/>
-<rect height="30" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="10"/>
+<rect fill="none" height="30" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="10" y="0"/>
<rect fill="none" height="30" width="10"/>
<rect fill="#D9D9D9" height="30" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="30"/>
-<rect height="10" width="30"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 30 10" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="30"/>
+<rect fill="none" height="10" width="30"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<rect height="10" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="10"/>
+<rect fill="none" height="10" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_grid_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
<rect fill="#D9D9D9" height="10" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="10"/>
<rect height="80" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="300"/>
<rect fill="#DCDCDC" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="300" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
<rect fill="#DCDCDC" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
<rect fill="#DCDCDC" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" y="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="300"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="300"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 300 30" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="300"/>
+<rect fill="none" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="300"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="10"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="30" width="10"/>
-<rect fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 10 30" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="300"/>
-<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="300"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="300"/>
+<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="300"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_list_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
-<svg baseProfile="tiny" fill="none" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect height="10" width="10"/>
-<rect fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
-</svg>
\ No newline at end of file
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="10" width="10"/>
+<rect fill="none" fill-opacity="0.2" height="10" stroke-opacity="0.2" width="10"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="80px" version="1.1" viewBox="0 0 10 80" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="80" width="10"/>
<rect fill-opacity="0.8" height="80" stroke-opacity="0.8" width="10"/>
<rect height="80" width="1" x="9"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 80 10" width="80px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="80"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="80"/>
<rect height="1" width="80"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="10,0,0,0,0,10,1,10,1,1,10,1"/>
-</svg>
\ No newline at end of file
+<polygon points="10,0 0,0 0,10 1,10 1,1 10,1 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_popup_trans_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.8" height="10" stroke-opacity="0.8" width="10"/>
-<polygon points="10,10,10,0,0,0,0,1,9,1,9,10"/>
-</svg>
\ No newline at end of file
+<polygon points="10,10 10,0 0,0 0,1 9,1 9,10 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_filled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_filled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="14"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_filled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_filled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M6,5c-2.757,0-5,2.243-5,5s2.243,5,5,5h14v-10h-14z" fill="url(#SVGID_1_)"/>
-<path d="M2,10c0-2.206,1.794-4,4-4h14v-1h-14c-2.757,0-5,2.243-5,5s2.243,5,5,5h14v-1h-14c-2.206,0-4-1.79-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,5c-2.757,0-5,2.243-5,5s2.243,5,5,5h14V5H6z" fill="url(#SVGID_1_)"/>
+<path d="M2,10c0-2.206,1.794-4,4-4h14V5H6c-2.757,0-5,2.243-5,5s2.243,5,5,5h14v-1H6 C3.794,14,2,12.206,2,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.5" x2="10.5" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.5" x2="10.5" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_filled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_filled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M14,5c2.757,0,5,2.243,5,5s-2.243,5-5,5h-14v-10h14z" fill="url(#SVGID_1_)"/>
-<path d="M18,10c0-2.206-1.795-4-4-4h-14v-1h14c2.757,0,5,2.243,5,5s-2.243,5-5,5h-14v-1h14c2.2,0,4-1.79,4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14,5c2.757,0,5,2.243,5,5s-2.243,5-5,5H0V5H14z" fill="url(#SVGID_1_)"/>
+<path d="M18,10c0-2.206-1.795-4-4-4H0V5h14c2.757,0,5,2.243,5,5s-2.243,5-5,5H0v-1h14 C16.205,14,18,12.206,18,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -2484 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2494" x2="-2494" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -2484 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2493.5" x2="-2493.5" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_frame_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_frame_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,10 +7,10 @@
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="4"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="16" y2="4">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="16" y2="4.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_frame_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_frame_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M6,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h14v-12h-14z" fill="url(#SVGID_1_)"/>
-<path d="M6,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h14v-1h-14c-3.3,0-6,2.7-6,6s2.7,6,6,6h14v-1h-14z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h14V4H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h14V4H6c-3.3,0-6,2.7-6,6s2.7,6,6,6h14v-1H6z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="16" y2="4">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="16" y2="4.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_frame_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_frame_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M14,4c3.3,0,6,2.7,6,6s-2.7,6-6,6h-14v-12h14z" fill="url(#SVGID_1_)"/>
-<path d="M14,15c2.757,0,5-2.243,5-5s-2.243-5-5-5h-14v-1h14c3.3,0,6,2.7,6,6s-2.7,6-6,6h-14v-1h14z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M14,4c3.3,0,6,2.7,6,6s-2.7,6-6,6H0V4H14z" fill="url(#SVGID_1_)"/>
+<path d="M14,15c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h14c3.3,0,6,2.7,6,6s-2.7,6-6,6H0v-1H14z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1722 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1732" x2="-1732" y1="16" y2="4">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1722 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1732" x2="-1732" y1="16" y2="4.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_mask_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_mask_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect height="10" width="20" y="5"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_mask_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_mask_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M6,5c-2.757,0-5,2.243-5,5s2.243,5,5,5h14v-10h-14z"/>
-</svg>
\ No newline at end of file
+<path d="M6,5c-2.757,0-5,2.243-5,5s2.243,5,5,5h14V5H6z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_mask_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_h_mask_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M14,5c2.758,0,5,2.243,5,5s-2.242,5-5,5h-14v-10h14z"/>
-</svg>
\ No newline at end of file
+<path d="M14,5c2.758,0,5,2.243,5,5s-2.242,5-5,5H0V5H14z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M15,14c0,2.757-2.244,5-5,5-2.758,0-5-2.243-5-5v-14h10v14z" fill="url(#SVGID_1_)"/>
-<path d="M10,18c2.205,0,4-1.795,4-4v-14h1v14c0,2.757-2.244,5-5,5-2.758,0-5-2.243-5-5v-14h1v14c0,2.2,1.793,4,4,4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,14c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h10V14z" fill="url(#SVGID_1_)"/>
+<path d="M10,18c2.205,0,4-1.795,4-4V0h1v14c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h1v14 C6,16.205,7.793,18,10,18z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1726 -249)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-258.5" x2="-258.5" y1="-1741" y2="-1731">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1726 -249)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-258.5005" x2="-258.5005" y1="-1740.9995" y2="-1730.9995">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="14"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1706 -229)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-239" x2="-239" y1="-1721" y2="-1711">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1706 -229)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-239.0005" x2="-239.0005" y1="-1720.9995" y2="-1710.9995">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_filled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M15,6c0-2.757-2.244-5-5-5-2.758,0-5,2.243-5,5v14h10v-14z" fill="url(#SVGID_1_)"/>
-<path d="M10,2c2.205,0,4,1.795,4,4v14h1v-14c0-2.757-2.244-5-5-5-2.758,0-5,2.243-5,5v14h1v-14c0-2.205,1.793-4,4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,6c0-2.757-2.244-5-5-5C7.242,1,5,3.243,5,6v14h10V6z" fill="url(#SVGID_1_)"/>
+<path d="M10,2c2.205,0,4,1.795,4,4v14h1V6c0-2.757-2.244-5-5-5C7.242,1,5,3.243,5,6v14h1V6 C6,3.795,7.793,2,10,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1686 2235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2225" x2="-2225" y1="-1701" y2="-1691">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1686 2235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2224.5005" x2="-2224.5005" y1="-1700.9995" y2="-1690.9995">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,14c0,3.3-2.701,6-6,6-3.301,0-6-2.7-6-6v-14h12v14z" fill="url(#SVGID_1_)"/>
-<path d="M5,14c0,2.757,2.242,5,5,5,2.756,0,5-2.243,5-5v-14h1v14c0,3.3-2.701,6-6,6-3.301,0-6-2.7-6-6v-14h1v14z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,14c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h12V14z" fill="url(#SVGID_1_)"/>
+<path d="M5,14c0,2.757,2.242,5,5,5c2.756,0,5-2.243,5-5V0h1v14c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h1V14z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1348 105)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="95" x2="95" y1="-1352" y2="-1364">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1348 105)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="95" x2="95" y1="-1352.001" y2="-1364.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,10 +7,10 @@
<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="15"/>
<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1328 125)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="115" x2="115" y1="-1332" y2="-1344">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1328 125)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="115" x2="115" y1="-1332.001" y2="-1344.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_frame_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,6c0-3.3-2.701-6-6-6-3.301,0-6,2.7-6,6v14h12v-14z" fill="url(#SVGID_1_)"/>
-<path d="M5,6c0-2.757,2.242-5,5-5,2.756,0,5,2.243,5,5v14h1v-14c0-3.3-2.701-6-6-6-3.301,0-6,2.7-6,6v14h1v-14z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,6c0-3.3-2.701-6-6-6C6.699,0,4,2.7,4,6v14h12V6z" fill="url(#SVGID_1_)"/>
+<path d="M5,6c0-2.757,2.242-5,5-5c2.756,0,5,2.243,5,5v14h1V6c0-3.3-2.701-6-6-6C6.699,0,4,2.7,4,6v14h1V6z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1308 1827)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1817" x2="-1817" y1="-1312" y2="-1324">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1308 1827)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1816.9995" x2="-1816.9995" y1="-1312.001" y2="-1324.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_mask_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_mask_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M5,14c0,2.757,2.244,5,5,5,2.758,0,5-2.243,5-5v-14h-10v14z"/>
-</svg>
\ No newline at end of file
+<path d="M5,14c0,2.757,2.244,5,5,5c2.758,0,5-2.243,5-5V0H5V14z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_mask_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_mask_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20" y="0"/>
<rect fill="none" height="20" width="20" x="0"/>
<rect height="20" width="10" x="5"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_mask_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progbar_v_mask_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M5,6c0-2.757,2.244-5,5-5,2.758,0,5,2.243,5,5v14h-10v-14z"/>
-</svg>
\ No newline at end of file
+<path d="M5,6c0-2.757,2.244-5,5-5c2.758,0,5,2.243,5,5v14H5V6z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="#969696" fill-opacity="0.8" height="18" stroke-opacity="0.8" width="20" y="1"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="1"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="18"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M9,19c-4.962,0-9-4.037-9-9s4.038-9,9-9h11v18h-11z" fill="#969696" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M9,2h11v-1h-11c-4.962,0-9,4.037-9,9s4.038,9,9,9h11v-1h-11c-4.411,0-8-3.589-8-8s3.589-8,8-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M9,19c-4.962,0-9-4.037-9-9s4.038-9,9-9h11v18H9z" fill="#969696" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M9,2h11V1H9c-4.962,0-9,4.037-9,9s4.038,9,9,9h11v-1H9c-4.411,0-8-3.589-8-8S4.589,2,9,2z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M0,19v-18h11c4.963,0,9,4.037,9,9s-4.037,9-9,9h-11z" fill="#969696" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M11,1h-11v1h11c4.411,0,8,3.589,8,8s-3.589,8-8,8h-11v1h11c4.963,0,9-4.037,9-9s-4.04-9-9-9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,19V1h11c4.963,0,9,4.037,9,9s-4.037,9-9,9H0z" fill="#969696" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M11,1H0v1h11c4.411,0,8,3.589,8,8s-3.589,8-8,8H0v1h11c4.963,0,9-4.037,9-9S15.963,1,11,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="20" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,10 +7,10 @@
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="1"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="18"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="19" y2="1">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="19" y2="1.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M9,19c-4.962,0-9-4.037-9-9s4.038-9,9-9h11v18h-11z" fill="url(#SVGID_1_)"/>
-<path d="M9,2h11v-1h-11c-4.962,0-9,4.037-9,9s4.038,9,9,9h11v-1h-11c-4.411,0-8-3.589-8-8s3.589-8,8-8z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9,19c-4.962,0-9-4.037-9-9s4.038-9,9-9h11v18H9z" fill="url(#SVGID_1_)"/>
+<path d="M9,2h11V1H9c-4.962,0-9,4.037-9,9s4.038,9,9,9h11v-1H9c-4.411,0-8-3.589-8-8S4.589,2,9,2z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="19" y2="1">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="19" y2="1.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M0,19v-18h11c4.963,0,9,4.037,9,9s-4.037,9-9,9h-11z" fill="url(#SVGID_1_)"/>
-<path d="M11,1h-11v1h11c4.411,0,8,3.589,8,8s-3.589,8-8,8h-11v1h11c4.963,0,9-4.037,9-9s-4.04-9-9-9z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M0,19V1h11c4.963,0,9,4.037,9,9s-4.037,9-9,9H0z" fill="url(#SVGID_1_)"/>
+<path d="M11,1H0v1h11c4.411,0,8,3.589,8,8s-3.589,8-8,8H0v1h11c4.963,0,9-4.037,9-9S15.963,1,11,1z" fill-opacity="0.1" stroke-opacity="0.1"/>
<rect fill="none" height="20" width="20"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="19" y2="1">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="19" y2="1.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -9,9 +9,9 @@
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="18"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="17"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="1" y2="19">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="1" y2="19.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M9,19c-4.962,0-9-4.037-9-9s4.038-9,9-9h11v18h-11z" fill="url(#SVGID_1_)"/>
-<path d="M9,3h11v-1h-11c-4.411,0-8,3.589-8,8s3.589,8,8,8h11v-1h-11c-3.86,0-7-3.141-7-7s3.14-7,7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9,2h11v-1h-11c-4.962,0-9,4.037-9,9s4.038,9,9,9h11v-1h-11c-4.411,0-8-3.589-8-8s3.589-8,8-8z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9,19c-4.962,0-9-4.037-9-9s4.038-9,9-9h11v18H9z" fill="url(#SVGID_1_)"/>
+<path d="M9,3h11V2H9c-4.411,0-8,3.589-8,8s3.589,8,8,8h11v-1H9c-3.86,0-7-3.141-7-7S5.14,3,9,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,2h11V1H9c-4.962,0-9,4.037-9,9s4.038,9,9,9h11v-1H9c-4.411,0-8-3.589-8-8S4.589,2,9,2z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="1" y2="19">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="1" y2="19.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_frame_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M0,19v-18h11c4.963,0,9,4.037,9,9s-4.037,9-9,9h-11z" fill="url(#SVGID_1_)"/>
-<path d="M11,2h-11v1h11c3.859,0,7,3.141,7,7s-3.141,7-7,7h-11v1h11c4.411,0,8-3.589,8-8s-3.59-8-8-8z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M11,1h-11v1h11c4.411,0,8,3.589,8,8s-3.589,8-8,8h-11v1h11c4.963,0,9-4.037,9-9s-4.04-9-9-9z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M0,19V1h11c4.963,0,9,4.037,9,9s-4.037,9-9,9H0z" fill="url(#SVGID_1_)"/>
+<path d="M11,2H0v1h11c3.859,0,7,3.141,7,7s-3.141,7-7,7H0v1h11c4.411,0,8-3.589,8-8S15.411,2,11,2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M11,1H0v1h11c4.411,0,8,3.589,8,8s-3.589,8-8,8H0v1h11c4.963,0,9-4.037,9-9S15.963,1,11,1z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="1" y2="19">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="1" y2="19.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="17"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="18">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="18.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<rect fill="#969696" fill-opacity="0.4" height="12" width="20" y="4"/>
-</svg>
\ No newline at end of file
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<rect fill="#969696" fill-opacity="0.4" fill-rule="evenodd" height="12" width="20" y="4"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M7,4c-3.309,0-6,2.691-6,6s2.691,6,6,6h13v-12h-13z" fill="#969696" fill-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M7,4c-3.309,0-6,2.691-6,6s2.691,6,6,6h13V4H7z " fill="#969696" fill-opacity="0.4" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M13,4h-13v12h13c3.309,0,6-2.691,6-6s-2.69-6-6-6z" fill="#969696" fill-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M13,4H0v12h13c3.309,0,6-2.691,6-6 S16.309,4,13,4z" fill="#969696" fill-opacity="0.4" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M20,2h-11c-4.4,0-8,3.6-8,8s3.6,8,8,8h11v-16z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M9,3h11v-1h-11c-4.4,0-8,3.6-8,8s3.6,8,8,8h11v-1h-11c-3.86,0-7-3.141-7-7s3.14-7,7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20,2H9c-4.4,0-8,3.6-8,8s3.6,8,8,8h11V2z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M9,3h11V2H9c-4.4,0-8,3.6-8,8s3.6,8,8,8h11v-1H9c-3.86,0-7-3.141-7-7S5.14,3,9,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="18">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="18.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_loaded_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M0,2h11c4.4,0,8,3.6,8,8s-3.6,8-8,8h-11v-16z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M11,3h-11v-1h11c4.4,0,8,3.6,8,8s-3.6,8-8,8h-11v-1h11c3.859,0,7-3.141,7-7s-3.14-7-7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,2h11c4.4,0,8,3.6,8,8s-3.6,8-8,8H0V2z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M11,3H0V2h11c4.4,0,8,3.6,8,8s-3.6,8-8,8H0v-1h11c3.859,0,7-3.141,7-7S14.859,3,11,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="20" width="20"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="18">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="18.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="17"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="2" y2="18">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="2" y2="18.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<rect fill="url(#SVGID_1_)" height="12" width="20" y="4"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="15"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="4"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="12" width="20" y="4"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="15"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="4" y2="16">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#A9A9A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="4" y2="16.0005">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#A9A9A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M7,4c-3.309,0-6,2.691-6,6s2.691,6,6,6h13v-12h-13z" fill="url(#SVGID_1_)"/>
-<path d="M7,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h13v-1h-13c-3.309,0-6,2.691-6,6s2.691,6,6,6h13v-1h-13z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M7,4c-3.309,0-6,2.691-6,6s2.691,6,6,6h13V4H7z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M7,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h13V4H7 c-3.309,0-6,2.691-6,6s2.691,6,6,6h13v-1H7z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.5" x2="10.5" y1="4" y2="16">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#A9A9A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.5" x2="10.5" y1="4" y2="16.0005">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#A9A9A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M13,4h-13v12h13c3.309,0,6-2.691,6-6s-2.69-6-6-6z" fill="url(#SVGID_1_)"/>
-<path d="M13,4h-13v1h13c2.757,0,5,2.243,5,5s-2.243,5-5,5h-13v1h13c3.309,0,6-2.691,6-6s-2.69-6-6-6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M13,4H0v12h13c3.309,0,6-2.691,6-6S16.309,4,13,4z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M13,4H0v1h13c2.757,0,5,2.243,5,5s-2.243,5-5,5H0v1h13 c3.309,0,6-2.691,6-6S16.309,4,13,4z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.5" x2="9.5" y1="4" y2="16">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#A9A9A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.5" x2="9.5" y1="4" y2="16.0005">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#A9A9A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M20,2h-11c-4.4,0-8,3.6-8,8s3.6,8,8,8h11v-16z" fill="url(#SVGID_1_)"/>
-<path d="M9,3h11v-1h-11c-4.4,0-8,3.6-8,8s3.6,8,8,8h11v-1h-11c-3.86,0-7-3.141-7-7s3.14-7,7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20,2H9c-4.4,0-8,3.6-8,8s3.6,8,8,8h11V2z" fill="url(#SVGID_1_)"/>
+<path d="M9,3h11V2H9c-4.4,0-8,3.6-8,8s3.6,8,8,8h11v-1H9c-3.86,0-7-3.141-7-7S5.14,3,9,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.5" x2="10.5" y1="2" y2="18">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.5" x2="10.5" y1="2" y2="18.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_progslider_played_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M0,2h11c4.4,0,8,3.6,8,8s-3.6,8-8,8h-11v-16z" fill="url(#SVGID_1_)"/>
-<path d="M11,3h-11v-1h11c4.4,0,8,3.6,8,8s-3.6,8-8,8h-11v-1h11c3.859,0,7-3.141,7-7s-3.14-7-7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,2h11c4.4,0,8,3.6,8,8s-3.6,8-8,8H0V2z" fill="url(#SVGID_1_)"/>
+<path d="M11,3H0V2h11c4.4,0,8,3.6,8,8s-3.6,8-8,8H0v-1h11c3.859,0,7-3.141,7-7S14.859,3,11,3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="20" width="20"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -2497 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2506" x2="-2506" y1="2" y2="18">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -2497 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2506.5" x2="-2506.5" y1="2" y2="18.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M144.6,144.6c-8.8,8.9-21.1,14.4-34.6,14.4s-25.78-5.484-34.65-14.35l-39.6,39.6c19.01,19,45.25,30.8,74.25,30.8,28.99,0,55.24-11.75,74.25-30.75l-39.6-39.6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M110,212c-26.87,0-52.18-10.36-71.38-29.2l36.74-36.74c9.36,9,21.62,13.9,34.64,13.9s25.28-4.944,34.64-13.94l36.74,36.74c-19.1,18.8-44.4,29.2-71.3,29.2z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
-<polygon fill="#787878" points="121,176,110,194,99,176"/>
+<path d="M144.648,144.648C135.781,153.516,123.531,159,110,159s-25.781-5.484-34.648-14.352 l-39.598,39.598C54.755,203.247,81.005,215,110,215c28.994,0,55.244-11.753,74.246-30.754L144.648,144.648z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M110,212c-26.869,0-52.176-10.363-71.38-29.205l36.739-36.739 C84.716,155.056,96.979,160,110,160s25.283-4.944,34.642-13.944l36.739,36.739C162.176,201.637,136.869,212,110,212L110,212z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
+<polygon fill="#787878" points="121,176 110,194 99,176 "/>
<rect fill="none" height="220" width="220"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="110" cy="110" fill="#141414" fill-opacity="0.4" r="49" stroke-opacity="0.4"/>
<circle cx="110" cy="110" fill="#BEBEBE" fill-opacity="0.8" r="47" stroke-opacity="0.8"/>
-<path d="M110,126c-8.822,0-16-7.178-16-16s7.178-16,16-16,16,7.178,16,16-7.2,16-16,16z" fill="#787878"/>
+<path d="M110,126c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S118.822,126,110,126L110,126z" fill="#787878"/>
<rect fill="none" height="220" width="220"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M61,110c0-13.53,5.484-25.78,14.35-34.65l-39.6-39.6c-19,19.01-30.75,45.25-30.75,74.25,0,28.99,11.75,55.24,30.75,74.25l39.6-39.6c-8.87-8.8-14.35-21.1-14.35-34.6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M37.21,181.4c-18.85-19.2-29.21-44.5-29.21-71.4s10.36-52.18,29.21-71.38l36.74,36.74c-9.01,9.36-13.95,21.62-13.95,34.64s4.944,25.28,13.94,34.64l-36.73,36.8z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
-<polygon fill="#787878" points="44,121,26,110,44,99"/>
+<path d="M61,110c0-13.531,5.484-25.781,14.352-34.648L35.754,35.754C16.752,54.755,5,81.005,5,110 c0,28.994,11.752,55.244,30.754,74.246l39.598-39.598C66.484,135.781,61,123.531,61,110z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M37.206,181.38C18.363,162.177,8,136.868,8,110s10.363-52.177,29.206-71.38l36.739,36.738 C64.944,84.716,60,96.979,60,110s4.944,25.284,13.944,34.642L37.206,181.38z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
+<polygon fill="#787878" points="44,121 26,110 44,99 "/>
<rect fill="none" height="220" width="220"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M184.2,35.75l-39.6,39.6c8.9,8.87,14.4,21.12,14.4,34.65s-5.484,25.78-14.35,34.65l39.6,39.6c19-19,30.8-45.2,30.8-74.2s-11.8-55.24-30.8-74.25z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M146.1,144.6c9-9.357,13.94-21.62,13.94-34.64s-4.944-25.28-13.94-34.64l36.74-36.74c18.8,19.2,29.2,44.51,29.2,71.38s-10.36,52.18-29.2,71.38l-36.7-36.8z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M184.246,35.754l-39.598,39.598C153.516,84.219,159,96.469,159,110 s-5.484,25.781-14.352,34.648l39.598,39.598C203.248,165.244,215,138.994,215,110C215,81.005,203.248,54.755,184.246,35.754z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M146.056,144.642c9-9.357,13.944-21.62,13.944-34.642s-4.944-25.284-13.944-34.642 l36.739-36.738C201.637,57.823,212,83.132,212,110s-10.363,52.177-29.205,71.38L146.056,144.642z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
<rect fill="none" height="220" width="220"/>
-<polygon fill="#787878" points="176,99,194,110,176,121"/>
-</svg>
\ No newline at end of file
+<polygon fill="#787878" points="176,99 194,110 176,121 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="220" width="220"/>
-<path d="M110,61c13.53,0,25.78,5.484,34.65,14.35l39.6-39.6c-19-19-45.2-30.75-74.2-30.75s-55.24,11.75-74.25,30.75l39.6,39.6c8.87-8.87,21.12-14.35,34.65-14.35z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M38.62,37.2c19.2-18.84,44.51-29.2,71.38-29.2s52.18,10.36,71.38,29.2l-36.74,36.74c-9.4-9-21.7-13.94-34.7-13.94s-25.28,4.944-34.64,13.94l-36.74-36.74z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
-<polygon fill="#787878" points="99,44,110,26,121,44"/>
-</svg>
\ No newline at end of file
+<path d="M110,61c13.531,0,25.781,5.484,34.648,14.352l39.598-39.598C165.245,16.752,138.995,5,110,5 S54.755,16.752,35.754,35.754l39.598,39.598C84.219,66.484,96.469,61,110,61z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M38.62,37.205C57.824,18.363,83.131,8,110,8c26.869,0,52.176,10.363,71.381,29.205 l-36.739,36.739C135.283,64.944,123.021,60,110,60s-25.284,4.944-34.642,13.944L38.62,37.205z" fill="#BEBEBE" fill-opacity="0.8" stroke-opacity="0.8"/>
+<polygon fill="#787878" points="99,44 110,26 121,44 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M144.6,144.6c-8.8,8.9-21.1,14.4-34.6,14.4s-25.78-5.484-34.65-14.35l-39.6,39.6c19.01,19,45.25,30.8,74.25,30.8,28.99,0,55.24-11.75,74.25-30.75l-39.6-39.6z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M110,213c28.4,0,54.15-11.55,72.8-30.2l-38.15-38.15c-8.8,8.9-21.1,14.4-34.6,14.4s-25.78-5.484-34.65-14.35l-38.15,38.15c18.65,18.6,44.4,30.2,72.8,30.2z" fill="#B4B4B9"/>
-<path d="M110,212c-26.87,0-52.18-10.36-71.38-29.2l36.74-36.74c9.36,9,21.62,13.9,34.64,13.9s25.28-4.944,34.64-13.94l36.74,36.74c-19.1,18.8-44.4,29.2-71.3,29.2z" fill="url(#SVGID_1_)"/>
-<path d="M144.6,146.1c-9.358,9-21.62,13.94-34.64,13.94s-25.28-4.944-34.64-13.94l-36.74,36.7c19.2,18.8,44.51,29.2,71.38,29.2s52.18-10.36,71.38-29.2l-36.8-36.7zm-104.6,36.7l35.33-35.34c9.45,8.7,21.71,13.5,34.63,13.5s25.18-4.804,34.62-13.55l35.34,35.34c-18.9,18.3-43.7,28.3-69.9,28.3-26.24,0-51.04-10-69.96-28.2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#3C3C3C" points="121,176,110,194,99,176"/>
+<path d="M144.648,144.648C135.781,153.516,123.531,159,110,159s-25.781-5.484-34.648-14.352 l-39.598,39.598C54.755,203.247,81.005,215,110,215c28.994,0,55.244-11.753,74.246-30.754L144.648,144.648z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M110,213c28.396,0,54.146-11.552,72.798-30.202l-38.149-38.149C135.781,153.516,123.531,159,110,159 s-25.781-5.484-34.648-14.352l-38.149,38.149C55.853,201.448,81.603,213,110,213z" fill="#B4B4B9"/>
+<path d="M110,212c-26.869,0-52.176-10.363-71.38-29.205l36.739-36.739C84.716,155.056,96.979,160,110,160 s25.283-4.944,34.642-13.944l36.739,36.739C162.176,201.637,136.869,212,110,212L110,212z" fill="url(#SVGID_1_)"/>
+<path d="M144.642,146.056c-9.358,9-21.62,13.944-34.642,13.944s-25.284-4.944-34.642-13.944 L38.62,182.795C57.824,201.637,83.131,212,110,212c26.869,0,52.176-10.363,71.381-29.205L144.642,146.056z M40.044,182.785 l35.334-35.336C84.824,156.196,97.079,161,110,161c12.922,0,25.176-4.804,34.621-13.551l35.335,35.336 C161.037,200.988,136.236,211,110,211C83.764,211,58.962,200.988,40.044,182.785z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#3C3C3C" points="121,176 110,194 99,176 "/>
<rect fill="none" height="220" width="220"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="8" y2="212.1">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="8.0005" y2="212.0619">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="110" cy="110" fill="#141414" fill-opacity="0.5" r="49" stroke-opacity="0.5"/>
-<path d="M110,157c-25.92,0-47-21.08-47-47s21.08-47,47-47c25.92,0,47,21.08,47,47s-21.1,47-47,47z" fill="url(#SVGID_1_)"/>
-<path d="M110,63c-25.92,0-47,21.08-47,47s21.08,47,47,47c25.92,0,47-21.08,47-47s-21.1-47-47-47zm0,93c-25.36,0-46-20.64-46-46s20.64-46,46-46,46,20.64,46,46-20.6,46-46,46z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M110,126c-8.822,0-16-7.178-16-16s7.178-16,16-16,16,7.178,16,16-7.2,16-16,16z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M110,124c-7.72,0-14-6.28-14-14,0-7.721,6.28-14,14-14,7.719,0,14,6.279,14,14,0,7.7-6.3,14-14,14z" fill="#FFFFFF"/>
+<path d="M110,157c-25.916,0-47-21.084-47-47s21.084-47,47-47c25.916,0,47,21.084,47,47S135.916,157,110,157 L110,157z" fill="url(#SVGID_1_)"/>
+<path d="M110,63c-25.916,0-47,21.084-47,47s21.084,47,47,47c25.916,0,47-21.084,47-47 S135.916,63,110,63z M110,156c-25.364,0-46-20.636-46-46s20.636-46,46-46s46,20.636,46,46S135.364,156,110,156z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M110,126c-8.822,0-16-7.178-16-16s7.178-16,16-16s16,7.178,16,16S118.822,126,110,126L110,126 z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M110,124c-7.72,0-14-6.28-14-14c0-7.721,6.28-14,14-14c7.719,0,14,6.279,14,14 C124,117.72,117.719,124,110,124L110,124z" fill="#FFFFFF"/>
<rect fill="none" height="220" width="220"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="63" y2="157">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="109.9995" x2="109.9995" y1="63" y2="157.0005">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M61,110c0-13.53,5.484-25.78,14.35-34.65l-39.6-39.6c-19,19.01-30.75,45.25-30.75,74.25,0,28.99,11.75,55.24,30.75,74.25l39.6-39.6c-8.87-8.8-14.35-21.1-14.35-34.6z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M7,110c0,28.4,11.55,54.15,30.2,72.8l38.15-38.15c-8.87-8.8-14.35-21.1-14.35-34.6s5.484-25.78,14.35-34.65l-38.15-38.15c-18.65,18.65-30.2,44.4-30.2,72.8z" fill="#B4B4B9"/>
-<path d="M37.21,181.4c-18.85-19.2-29.21-44.5-29.21-71.4s10.36-52.18,29.21-71.38l36.74,36.74c-9.01,9.36-13.95,21.62-13.95,34.64s4.944,25.28,13.94,34.64l-36.73,36.8z" fill="url(#SVGID_1_)"/>
-<path d="M73.94,75.36l-36.73-36.74c-18.85,19.2-29.21,44.51-29.21,71.38s10.36,52.18,29.21,71.38l36.74-36.74c-9.01-9.4-13.95-21.7-13.95-34.7s4.94-25.28,13.94-34.64zm-1.39,69.24l-35.33,35.33c-18.21-18.9-28.22-43.7-28.22-69.9s10.01-51.04,28.22-69.96l35.33,35.34c-8.75,9.44-13.55,21.7-13.55,34.62s4.8,25.2,13.55,34.6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#3C3C3C" points="44,121,26,110,44,99"/>
+<path d="M61,110c0-13.531,5.484-25.781,14.352-34.648L35.754,35.754C16.752,54.755,5,81.005,5,110 c0,28.994,11.752,55.244,30.754,74.246l39.598-39.598C66.484,135.781,61,123.531,61,110z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M7,110c0,28.396,11.551,54.146,30.202,72.798l38.149-38.149C66.484,135.781,61,123.531,61,110 s5.484-25.781,14.352-34.648L37.202,37.202C18.551,55.854,7,81.604,7,110z" fill="#B4B4B9"/>
+<path d="M37.206,181.38C18.363,162.177,8,136.868,8,110s10.363-52.177,29.206-71.38l36.739,36.738 C64.944,84.716,60,96.979,60,110s4.944,25.284,13.944,34.642L37.206,181.38z" fill="url(#SVGID_1_)"/>
+<path d="M73.944,75.358L37.206,38.62C18.363,57.823,8,83.132,8,110s10.363,52.177,29.206,71.38 l36.739-36.738C64.944,135.284,60,123.021,60,110S64.944,84.716,73.944,75.358z M72.55,144.621l-35.334,35.334 C19.012,161.039,9,136.237,9,110s10.012-51.039,28.216-69.955L72.55,75.379C63.804,84.823,59,97.078,59,110 S63.804,135.177,72.55,144.621z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#3C3C3C" points="44,121 26,110 44,99 "/>
<rect fill="none" height="220" width="220"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.97" x2="40.97" y1="8" y2="212.1">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.9722" x2="40.9722" y1="8" y2="212.0615">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M184.2,35.75l-39.6,39.6c8.9,8.87,14.4,21.12,14.4,34.65s-5.484,25.78-14.35,34.65l39.6,39.6c19-19,30.8-45.2,30.8-74.2s-11.8-55.24-30.8-74.25z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M182.8,37.2l-38.15,38.15c8.9,8.87,14.4,21.12,14.4,34.65s-5.484,25.78-14.35,34.65l38.15,38.15c18.6-18.7,30.2-44.4,30.2-72.8s-11.6-54.15-30.2-72.8z" fill="#B4B4B9"/>
-<path d="M146.1,144.6c9-9.357,13.94-21.62,13.94-34.64s-4.944-25.28-13.94-34.64l36.74-36.74c18.8,19.2,29.2,44.51,29.2,71.38s-10.36,52.18-29.2,71.38l-36.7-36.8z" fill="url(#SVGID_1_)"/>
-<path d="M182.8,38.62l-36.74,36.74c9,9.36,13.9,21.62,13.9,34.64s-4.944,25.28-13.94,34.64l36.74,36.74c18.8-19.1,29.2-44.4,29.2-71.3s-10.4-52.18-29.2-71.38zm0,141.4l-35.34-35.33c8.7-9.5,13.5-21.8,13.5-34.7s-4.805-25.18-13.55-34.62l35.34-35.33c18.3,18.91,28.3,43.71,28.3,69.95s-10,51-28.2,70z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M184.246,35.754l-39.598,39.598C153.516,84.219,159,96.469,159,110 s-5.484,25.781-14.352,34.648l39.598,39.598C203.248,165.244,215,138.994,215,110C215,81.005,203.248,54.755,184.246,35.754z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M182.798,37.202l-38.149,38.149C153.516,84.219,159,96.469,159,110s-5.484,25.781-14.352,34.648 l38.149,38.149C201.449,164.146,213,138.396,213,110S201.449,55.854,182.798,37.202z" fill="#B4B4B9"/>
+<path d="M146.056,144.642c9-9.357,13.944-21.62,13.944-34.642s-4.944-25.284-13.944-34.642l36.739-36.738 C201.637,57.823,212,83.132,212,110s-10.363,52.177-29.205,71.38L146.056,144.642z" fill="url(#SVGID_1_)"/>
+<path d="M182.795,38.62l-36.739,36.738C155.056,84.716,160,96.979,160,110 s-4.944,25.284-13.944,34.642l36.739,36.738C201.637,162.177,212,136.868,212,110S201.637,57.823,182.795,38.62z M182.784,179.955 l-35.335-35.334C156.195,135.177,161,122.922,161,110s-4.805-25.177-13.551-34.621l35.335-35.334C200.988,58.961,211,83.763,211,110 S200.988,161.039,182.784,179.955z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="220" width="220"/>
-<polygon fill="#3C3C3C" points="176,99,194,110,176,121"/>
+<polygon fill="#3C3C3C" points="176,99 194,110 176,121 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="179" x2="179" y1="8" y2="212.1">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="179.0273" x2="179.0273" y1="8" y2="212.0615">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="220" width="220"/>
-<path d="M110,61c13.53,0,25.78,5.484,34.65,14.35l39.6-39.6c-19-19-45.2-30.75-74.2-30.75s-55.24,11.75-74.25,30.75l39.6,39.6c8.87-8.87,21.12-14.35,34.65-14.35z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M110,7c-28.4,0-54.15,11.55-72.8,30.2l38.15,38.15c8.87-8.87,21.12-14.35,34.65-14.35s25.78,5.484,34.65,14.35l38.15-38.15c-18.7-18.65-44.4-30.2-72.8-30.2z" fill="#B4B4B9"/>
-<path d="M38.62,37.2c19.2-18.84,44.51-29.2,71.38-29.2s52.18,10.36,71.38,29.2l-36.74,36.74c-9.4-9-21.7-13.94-34.7-13.94s-25.28,4.944-34.64,13.94l-36.74-36.74z" fill="url(#SVGID_1_)"/>
-<path d="M110,8c-26.87,0-52.18,10.36-71.38,29.2l36.74,36.74c9.36-9,21.62-13.94,34.64-13.94s25.28,4.944,34.64,13.94l36.74-36.74c-19.1-18.84-44.4-29.2-71.3-29.2zm34.6,64.55c-9.4-8.75-21.7-13.55-34.6-13.55-12.92,0-25.18,4.804-34.62,13.55l-35.34-35.33c18.92-18.21,43.72-28.22,69.96-28.22s51.04,10.01,69.96,28.22l-35.4,35.33z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#3C3C3C" points="99,44,110,26,121,44"/>
+<path d="M110,61c13.531,0,25.781,5.484,34.648,14.352l39.598-39.598C165.245,16.752,138.995,5,110,5 S54.755,16.752,35.754,35.754l39.598,39.598C84.219,66.484,96.469,61,110,61z" fill="#141414" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M110,7C81.603,7,55.853,18.552,37.202,37.202l38.149,38.149C84.219,66.484,96.469,61,110,61 s25.781,5.484,34.648,14.352l38.149-38.149C164.146,18.552,138.396,7,110,7z" fill="#B4B4B9"/>
+<path d="M38.62,37.205C57.824,18.363,83.131,8,110,8c26.869,0,52.176,10.363,71.381,29.205l-36.739,36.739 C135.283,64.944,123.021,60,110,60s-25.284,4.944-34.642,13.944L38.62,37.205z" fill="url(#SVGID_1_)"/>
+<path d="M110,8C83.131,8,57.824,18.363,38.62,37.205l36.739,36.739C84.716,64.944,96.979,60,110,60 s25.283,4.944,34.642,13.944l36.739-36.739C162.176,18.363,136.869,8,110,8z M144.621,72.551C135.176,63.804,122.922,59,110,59 c-12.921,0-25.176,4.804-34.622,13.551L40.044,37.215C58.962,19.012,83.764,9,110,9c26.236,0,51.037,10.012,69.956,28.215 L144.621,72.551z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#3C3C3C" points="99,44 110,26 121,44 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="8" y2="212.1">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="8" y2="212.0614">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M144.6,144.6c-8.8,8.9-21.1,14.4-34.6,14.4s-25.78-5.484-34.65-14.35l-39.6,39.6c19.01,19,45.25,30.8,74.25,30.8,28.99,0,55.24-11.75,74.25-30.75l-39.6-39.6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M110,212c-26.87,0-52.18-10.36-71.38-29.2l36.74-36.74c9.36,9,21.62,13.9,34.64,13.9s25.28-4.944,34.64-13.94l36.74,36.74c-19.1,18.8-44.4,29.2-71.3,29.2z" fill="url(#SVGID_1_)"/>
-<path d="M144.6,146.1c-9.358,9-21.62,13.94-34.64,13.94s-25.28-4.944-34.64-13.94l-36.74,36.7c19.2,18.8,44.51,29.2,71.38,29.2s52.18-10.36,71.38-29.2l-36.8-36.7zm-104.6,36.7l35.33-35.34c9.45,8.7,21.71,13.5,34.63,13.5s25.18-4.804,34.62-13.55l35.34,35.34c-18.9,18.3-43.7,28.3-69.9,28.3-26.24,0-51.04-10-69.96-28.2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="121,176,110,194,99,176"/>
+<path d="M144.648,144.648C135.781,153.516,123.531,159,110,159s-25.781-5.484-34.648-14.352 l-39.598,39.598C54.755,203.247,81.005,215,110,215c28.994,0,55.244-11.753,74.246-30.754L144.648,144.648z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M110,212c-26.869,0-52.176-10.363-71.38-29.205l36.739-36.739C84.716,155.056,96.979,160,110,160 s25.283-4.944,34.642-13.944l36.739,36.739C162.176,201.637,136.869,212,110,212L110,212z" fill="url(#SVGID_1_)"/>
+<path d="M144.642,146.056c-9.358,9-21.62,13.944-34.642,13.944s-25.284-4.944-34.642-13.944 L38.62,182.795C57.824,201.637,83.131,212,110,212c26.869,0,52.176-10.363,71.381-29.205L144.642,146.056z M40.044,182.785 l35.334-35.336C84.824,156.196,97.079,161,110,161c12.922,0,25.176-4.804,34.621-13.551l35.335,35.336 C161.037,200.988,136.236,211,110,211C83.764,211,58.962,200.988,40.044,182.785z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="121,176 110,194 99,176 "/>
<rect fill="none" height="220" width="220"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="212" y2="146.1">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110.0005" x2="110.0005" y1="212" y2="146.0557">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="110" cy="110" fill="url(#SVGID_1_)" r="48"/>
-<path d="M110,62c-26.51,0-48,21.49-48,48s21.49,48,48,48,48-21.49,48-48-21.5-48-48-48zm0,95c-25.92,0-47-21.08-47-47s21.08-47,47-47c25.92,0,47,21.08,47,47s-21.1,47-47,47z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M110,124c-7.72,0-14-6.28-14-14,0-7.721,6.28-14,14-14,7.719,0,14,6.279,14,14,0,7.7-6.3,14-14,14z" fill="#FFFFFF"/>
+<path d="M110,62c-26.51,0-48,21.49-48,48s21.49,48,48,48s48-21.49,48-48S136.51,62,110,62z M110,157 c-25.916,0-47-21.084-47-47s21.084-47,47-47c25.916,0,47,21.084,47,47S135.916,157,110,157z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M110,124c-7.72,0-14-6.28-14-14c0-7.721,6.28-14,14-14c7.719,0,14,6.279,14,14 C124,117.72,117.719,124,110,124L110,124z" fill="#FFFFFF"/>
<rect fill="none" height="220" width="220"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="158" y2="62">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110.0005" x2="110.0005" y1="158" y2="62.0005">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M61,110c0-13.53,5.484-25.78,14.35-34.65l-39.6-39.6c-19,19.01-30.75,45.25-30.75,74.25,0,28.99,11.75,55.24,30.75,74.25l39.6-39.6c-8.87-8.8-14.35-21.1-14.35-34.6z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M37.21,181.4c-18.85-19.2-29.21-44.5-29.21-71.4s10.36-52.18,29.21-71.38l36.74,36.74c-9.01,9.36-13.95,21.62-13.95,34.64s4.944,25.28,13.94,34.64l-36.73,36.8z" fill="url(#SVGID_1_)"/>
-<path d="M73.94,75.36l-36.73-36.74c-18.85,19.2-29.21,44.51-29.21,71.38s10.36,52.18,29.21,71.38l36.74-36.74c-9.01-9.4-13.95-21.7-13.95-34.7s4.94-25.28,13.94-34.64zm-1.39,69.24l-35.33,35.33c-18.21-18.9-28.22-43.7-28.22-69.9s10.01-51.04,28.22-69.96l35.33,35.34c-8.75,9.44-13.55,21.7-13.55,34.62s4.8,25.2,13.55,34.6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="44,121,26,110,44,99"/>
+<path d="M61,110c0-13.531,5.484-25.781,14.352-34.648L35.754,35.754C16.752,54.755,5,81.005,5,110 c0,28.994,11.752,55.244,30.754,74.246l39.598-39.598C66.484,135.781,61,123.531,61,110z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M37.206,181.38C18.363,162.177,8,136.868,8,110s10.363-52.177,29.206-71.38l36.739,36.738 C64.944,84.716,60,96.979,60,110s4.944,25.284,13.944,34.642L37.206,181.38z" fill="url(#SVGID_1_)"/>
+<path d="M73.944,75.358L37.206,38.62C18.363,57.823,8,83.132,8,110s10.363,52.177,29.206,71.38 l36.739-36.738C64.944,135.284,60,123.021,60,110S64.944,84.716,73.944,75.358z M72.55,144.621l-35.334,35.334 C19.012,161.039,9,136.237,9,110s10.012-51.039,28.216-69.955L72.55,75.379C63.804,84.823,59,97.078,59,110 S63.804,135.177,72.55,144.621z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="44,121 26,110 44,99 "/>
<rect fill="none" height="220" width="220"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="73.94" y1="110" y2="110">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="73.9443" y1="110" y2="110">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M184.2,35.75l-39.6,39.6c8.9,8.87,14.4,21.12,14.4,34.65s-5.484,25.78-14.35,34.65l39.6,39.6c19-19,30.8-45.2,30.8-74.2s-11.8-55.24-30.8-74.25z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M146.1,144.6c9-9.357,13.94-21.62,13.94-34.64s-4.944-25.28-13.94-34.64l36.74-36.74c18.8,19.2,29.2,44.51,29.2,71.38s-10.36,52.18-29.2,71.38l-36.7-36.8z" fill="url(#SVGID_1_)"/>
-<path d="M182.8,38.62l-36.74,36.74c9,9.36,13.9,21.62,13.9,34.64s-4.944,25.28-13.94,34.64l36.74,36.74c18.8-19.1,29.2-44.4,29.2-71.3s-10.4-52.18-29.2-71.38zm0,141.4l-35.34-35.33c8.7-9.5,13.5-21.8,13.5-34.7s-4.805-25.18-13.55-34.62l35.34-35.33c18.3,18.91,28.3,43.71,28.3,69.95s-10,51-28.2,70z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M184.246,35.754l-39.598,39.598C153.516,84.219,159,96.469,159,110 s-5.484,25.781-14.352,34.648l39.598,39.598C203.248,165.244,215,138.994,215,110C215,81.005,203.248,54.755,184.246,35.754z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M146.056,144.642c9-9.357,13.944-21.62,13.944-34.642s-4.944-25.284-13.944-34.642l36.739-36.738 C201.637,57.823,212,83.132,212,110s-10.363,52.177-29.205,71.38L146.056,144.642z" fill="url(#SVGID_1_)"/>
+<path d="M182.795,38.62l-36.739,36.738C155.056,84.716,160,96.979,160,110 s-4.944,25.284-13.944,34.642l36.739,36.738C201.637,162.177,212,136.868,212,110S201.637,57.823,182.795,38.62z M182.784,179.955 l-35.335-35.334C156.195,135.177,161,122.922,161,110s-4.805-25.177-13.551-34.621l35.335-35.334C200.988,58.961,211,83.763,211,110 S200.988,161.039,182.784,179.955z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="220" width="220"/>
-<polygon fill="#FFFFFF" points="176,99,194,110,176,121"/>
+<polygon fill="#FFFFFF" points="176,99 194,110 176,121 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="212" x2="146.1" y1="110" y2="110">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="212" x2="146.0557" y1="109.9995" y2="109.9995">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_rocker_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="220px" version="1.1" viewBox="0 0 220 220" width="220px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="220" width="220"/>
-<path d="M110,61c13.53,0,25.78,5.484,34.65,14.35l39.6-39.6c-19-19-45.2-30.75-74.2-30.75s-55.24,11.75-74.25,30.75l39.6,39.6c8.87-8.87,21.12-14.35,34.65-14.35z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M38.62,37.2c19.2-18.84,44.51-29.2,71.38-29.2s52.18,10.36,71.38,29.2l-36.74,36.74c-9.4-9-21.7-13.94-34.7-13.94s-25.28,4.944-34.64,13.94l-36.74-36.74z" fill="url(#SVGID_1_)"/>
-<path d="M110,8c-26.87,0-52.18,10.36-71.38,29.2l36.74,36.74c9.36-9,21.62-13.94,34.64-13.94s25.28,4.944,34.64,13.94l36.74-36.74c-19.1-18.84-44.4-29.2-71.3-29.2zm34.6,64.55c-9.4-8.75-21.7-13.55-34.6-13.55-12.92,0-25.18,4.804-34.62,13.55l-35.34-35.33c18.92-18.21,43.72-28.22,69.96-28.22s51.04,10.01,69.96,28.22l-35.4,35.33z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="99,44,110,26,121,44"/>
+<path d="M110,61c13.531,0,25.781,5.484,34.648,14.352l39.598-39.598C165.245,16.752,138.995,5,110,5 S54.755,16.752,35.754,35.754l39.598,39.598C84.219,66.484,96.469,61,110,61z" fill="#141414" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M38.62,37.205C57.824,18.363,83.131,8,110,8c26.869,0,52.176,10.363,71.381,29.205l-36.739,36.739 C135.283,64.944,123.021,60,110,60s-25.284,4.944-34.642,13.944L38.62,37.205z" fill="url(#SVGID_1_)"/>
+<path d="M110,8C83.131,8,57.824,18.363,38.62,37.205l36.739,36.739C84.716,64.944,96.979,60,110,60 s25.283,4.944,34.642,13.944l36.739-36.739C162.176,18.363,136.869,8,110,8z M144.621,72.551C135.176,63.804,122.922,59,110,59 c-12.921,0-25.176,4.804-34.622,13.551L40.044,37.215C58.962,19.012,83.764,9,110,9c26.236,0,51.037,10.012,69.956,28.215 L144.621,72.551z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="99,44 110,26 121,44 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="8" y2="73.94">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="110" x2="110" y1="8" y2="73.9443">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="16" stroke-opacity="0.9" width="20" y="2"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="2"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="17"/>
-<rect fill="none" height="20" width="20"/>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" fill-rule="evenodd" height="16" stroke-opacity="0.9" width="20" y="2"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="2"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="17"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 614 -1662)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1664" x2="-1680" y1="-604" y2="-604">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.2" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 614 -1662)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1664.5" x2="-1680" y1="-604.0005" y2="-604.0005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M0,10c0-4.419,3.58-8,8-8h12v16h-12c-4.42,0-8-3.58-8-8z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M0,10c0,4.42,3.58,8,8,8h12v-1.001h-12c-3.859,0-6.999-3.14-6.999-7s3.14-6.999,6.999-6.999h12v-1.001h-12c-4.42,0-8,3.581-8,8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M0,10c0-4.419,3.58-8,8-8h12v16H8 C3.58,18,0,14.42,0,10z" fill="url(#SVGID_1_)" fill-opacity="0.9" fill-rule="evenodd" stroke-opacity="0.9"/>
+<path d="M0,10c0,4.42,3.58,8,8,8h12v-1.001H7.999C4.14,16.999,1,13.859,1,10 s3.14-6.999,6.999-6.999h11H20V2H8C3.58,2,0,5.581,0,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 634 -1642)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1644" x2="-1660" y1="-624" y2="-624">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.2" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 634 -1642)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1644.5" x2="-1660" y1="-624.0005" y2="-624.0005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M12,18h-12v-16h12c4.42,0,8,3.581,8,8,0,4.42-3.58,8-8,8z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M20,10c0,4.42-3.58,8-8,8h-12v-1.001h12c3.86,0,7-3.14,7-7s-3.14-6.999-6.999-6.999h-12v-1.001h12c4.42,0,8,3.581,8,8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M12,18H0V2h12c4.42,0,8,3.581,8,8 C20,14.42,16.42,18,12,18z" fill="url(#SVGID_1_)" fill-opacity="0.9" fill-rule="evenodd" stroke-opacity="0.9"/>
+<path d="M20,10c0,4.42-3.58,8-8,8H0v-1.001h12.001 C15.86,16.999,19,13.859,19,10s-3.14-6.999-6.999-6.999h-11H0V2h12C16.42,2,20,5.581,20,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 594 -1682)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1684" x2="-1700" y1="-584" y2="-584">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.2" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 594 -1682)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1684.5" x2="-1700" y1="-584.0005" y2="-584.0005">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="url(#SVGID_1_)" height="16" width="20" y="2"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="2"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="17"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="16"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="3"/>
-<rect fill="none" height="20" width="20"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="16" width="20" y="2"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="2"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="17"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="3"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1000 -1278)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1280" x2="-1296" y1="-990" y2="-990">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="0.2" stop-color="#D2D2DC"/>
-<stop offset="0.8" stop-color="#D2D2DC"/>
-<stop offset="1" stop-color="#B4B4BE"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 1000 -1278)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1280.5" x2="-1296" y1="-990.0005" y2="-990.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="0.2" style="stop-color:#D2D2DC"/>
+<stop offset="0.8" style="stop-color:#D2D2DC"/>
+<stop offset="1" style="stop-color:#B4B4BE"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M0,10c0-4.419,3.58-8,8-8h12v16h-12c-4.42,0-8-3.58-8-8z" fill="url(#SVGID_1_)"/>
-<path d="M1,10c0,3.86,3.14,7,7,7h12v-1h-12c-3.309,0-6-2.691-6-6s2.691-6,6-6h12v-1h-12c-3.86,0-7,3.141-7,7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M0,10c0,4.42,3.58,8,8,8h12v-1.001h-12c-3.859,0-6.999-3.14-6.999-7s3.14-6.999,6.999-6.999h12v-1.001h-12c-4.42,0-8,3.581-8,8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M0,10c0-4.419,3.58-8,8-8h12v16H8C3.58,18,0,14.42,0,10z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M1,10c0,3.86,3.14,7,7,7h12v-1H8 c-3.309,0-6-2.691-6-6s2.691-6,6-6h12V3H8C4.14,3,1,6.141,1,10z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M0,10c0,4.42,3.58,8,8,8h12v-1.001H7.999C4.14,16.999,1,13.859,1,10 s3.14-6.999,6.999-6.999h11H20V2H8C3.58,2,0,5.581,0,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 1020 -1258)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1260" x2="-1276" y1="-1010" y2="-1010">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="0.2" stop-color="#D2D2DC"/>
-<stop offset="0.8" stop-color="#D2D2DC"/>
-<stop offset="1" stop-color="#B4B4BE"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 1020 -1258)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1260.5" x2="-1276" y1="-1010.0005" y2="-1010.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="0.2" style="stop-color:#D2D2DC"/>
+<stop offset="0.8" style="stop-color:#D2D2DC"/>
+<stop offset="1" style="stop-color:#B4B4BE"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_frame_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M12,18h-12v-16h12c4.42,0,8,3.581,8,8,0,4.42-3.58,8-8,8z" fill="url(#SVGID_1_)"/>
-<path d="M19,10c0,3.86-3.141,7-7,7h-12v-1h12c3.309,0,6-2.691,6-6s-2.691-6-6-6h-12v-1h12c3.86,0,7,3.141,7,7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M20,10c0,4.42-3.58,8-8,8h-12v-1.001h12c3.86,0,7-3.14,7-7s-3.14-6.999-6.999-6.999h-12v-1.001h12c4.42,0,8,3.581,8,8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M12,18H0V2h12c4.42,0,8,3.581,8,8C20,14.42,16.42,18,12,18z " fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M19,10c0,3.86-3.141,7-7,7H0v-1h12 c3.309,0,6-2.691,6-6s-2.691-6-6-6H0V3h12C15.859,3,19,6.141,19,10z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M20,10c0,4.42-3.58,8-8,8H0v-1.001h12.001 C15.86,16.999,19,13.859,19,10s-3.14-6.999-6.999-6.999h-11H0V2h12C16.42,2,20,5.581,20,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 980 -1298)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1300" x2="-1316" y1="-970" y2="-970">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="0.2" stop-color="#D2D2DC"/>
-<stop offset="0.8" stop-color="#D2D2DC"/>
-<stop offset="1" stop-color="#B4B4BE"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 980 -1298)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1300.5" x2="-1316" y1="-970.0005" y2="-970.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="0.2" style="stop-color:#D2D2DC"/>
+<stop offset="0.8" style="stop-color:#D2D2DC"/>
+<stop offset="1" style="stop-color:#B4B4BE"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill-opacity="0.1" height="16" stroke-opacity="0.1" width="20" y="2"/>
-<rect fill="#FAFAFA" height="14" width="20" y="3"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="3"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="16"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" y="15"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" y="4"/>
-<rect fill="none" height="20" width="20"/>
-</svg>
\ No newline at end of file
+<rect fill-opacity="0.1" fill-rule="evenodd" height="16" stroke-opacity="0.1" width="20" y="2"/>
+<rect fill="#FAFAFA" fill-rule="evenodd" height="14" width="20" y="3"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="3"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="20" y="15"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="20" y="4"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M20,18h-12c-4.411,0-8-3.589-8-8s3.589-8,8-8h12v16z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M1,10c0-3.867,3.133-7,7-7h12v14h-12c-3.867,0-7-3.13-7-7z" fill="url(#SVGID_1_)"/>
-<path d="M2,10c0,3.309,2.691,6,6,6h12v-1h-12c-2.757,0-5-2.243-5-5s2.243-5,5-5h12v-1h-12c-3.309,0-6,2.691-6,6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M1,10c0,3.867,3.133,7,7,7h12v-1h-12c-3.309,0-5.998-2.691-5.998-6s2.689-5.998,5.998-5.998h12v-1.002h-12c-3.867,0-7,3.133-7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="8" stroke-opacity="0.9" width="1" x="12" y="6"/>
-<rect fill-opacity="0.1" height="8" stroke-opacity="0.1" width="1" x="11" y="6"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M20,18H8c-4.411,0-8-3.589-8-8s3.589-8,8-8h12V18z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M1,10c0-3.867,3.133-7,7-7h12v14H8C4.133,17,1,13.867,1,10z " fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M2,10c0,3.309,2.691,6,6,6h12v-1H8 c-2.757,0-5-2.243-5-5s2.243-5,5-5h12V4H8C4.691,4,2,6.691,2,10z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M1,10c0,3.867,3.133,7,7,7h12v-1H8c-3.309,0-5.998-2.691-5.998-6 S4.691,4.002,8,4.002h12V3H8C4.133,3,1,6.133,1,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" fill-rule="evenodd" height="8" stroke-opacity="0.9" width="1" x="12" y="6"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="8" stroke-opacity="0.1" width="1" x="11" y="6"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -84 -2400)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2410" x2="-2410" y1="103.9" y2="85.68">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -84 -2400)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2409.9995" x2="-2409.9995" y1="103.8721" y2="85.6786">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M20,10c0,4.411-3.589,8-8,8h-12v-16h12c4.41,0,8,3.589,8,8z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M12,17h-12v-14h12c3.867,0,7,3.133,7,7,0,3.87-3.13,7-7,7z" fill="url(#SVGID_1_)"/>
-<path d="M18,10c0,3.309-2.691,6-6,6h-12v-1h12c2.757,0,5-2.243,5-5s-2.243-5-5-5h-12v-1h12c3.31,0,6,2.691,6,6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M19,10c0,3.867-3.133,7-7,7h-12v-1h12c3.309,0,5.998-2.691,5.998-6s-2.69-5.998-6-5.998h-12v-1.002h12c3.87,0,7,3.133,7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="8" stroke-opacity="0.9" width="1" x="8" y="6"/>
-<rect fill-opacity="0.1" height="8" stroke-opacity="0.1" width="1" x="7" y="6"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M20,10c0,4.411-3.589,8-8,8H0V2h12C16.411,2,20,5.589,20,10L20,10z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M12,17H0V3h12c3.867,0,7,3.133,7,7 C19,13.867,15.867,17,12,17z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M18,10c0,3.309-2.691,6-6,6H0v-1h12 c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h12C15.309,4,18,6.691,18,10z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M19,10c0,3.867-3.133,7-7,7H0v-1h12c3.309,0,5.998-2.691,5.998-6 S15.309,4.002,12,4.002H0V3h12C15.867,3,19,6.133,19,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" fill-rule="evenodd" height="8" stroke-opacity="0.9" width="1" x="8" y="6"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="8" stroke-opacity="0.1" width="1" x="7" y="6"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1460 -2440)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2450" x2="-2450" y1="-1460" y2="-1478">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1460 -2440)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2449.9995" x2="-2449.9995" y1="-1460.1279" y2="-1478.3214">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill-opacity="0.1" height="16" stroke-opacity="0.1" width="20" y="2"/>
-<rect fill="#DCDCE6" height="14" width="20" y="3"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="3"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="16"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" y="15"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" y="4"/>
-<rect fill="none" height="20" width="20"/>
-</svg>
\ No newline at end of file
+<rect fill-opacity="0.1" fill-rule="evenodd" height="16" stroke-opacity="0.1" width="20" y="2"/>
+<rect fill="#DCDCE6" fill-rule="evenodd" height="14" width="20" y="3"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="3"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="20" y="16"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="20" y="15"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="20" y="4"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M20,18h-12c-4.411,0-8-3.589-8-8s3.589-8,8-8h12v16z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M1,10c0-3.866,3.133-7,7-7h12v14h-12c-3.867,0-7-3.13-7-7z" fill="url(#SVGID_1_)"/>
-<path d="M2,10c0,3.309,2.691,6,6,6h12v-1h-12c-2.757,0-5-2.243-5-5s2.243-5,5-5h12v-1h-12c-3.309,0-6,2.691-6,6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M1,10c0,3.867,3.133,7,7,7h12v-1h-12c-3.309,0-5.998-2.691-5.998-6,0-3.31,2.689-5.998,5.998-5.998h12v-1.002h-12c-3.867,0-7,3.134-7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="8" stroke-opacity="0.5" width="1" x="12" y="6"/>
-<rect fill-opacity="0.1" height="8" stroke-opacity="0.1" width="1" x="11" y="6"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M20,18H8c-4.411,0-8-3.589-8-8s3.589-8,8-8h12V18z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M1,10c0-3.866,3.133-7,7-7h12v14H8C4.133,17,1,13.867,1,10z " fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M2,10c0,3.309,2.691,6,6,6h12v-1H8 c-2.757,0-5-2.243-5-5s2.243-5,5-5h12V4H8C4.691,4,2,6.691,2,10z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M1,10c0,3.867,3.133,7,7,7h12v-1H8c-3.309,0-5.998-2.691-5.998-6 c0-3.31,2.689-5.998,5.998-5.998h12V3H8C4.133,3,1,6.134,1,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" fill-rule="evenodd" height="8" stroke-opacity="0.5" width="1" x="12" y="6"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="8" stroke-opacity="0.1" width="1" x="11" y="6"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 274.0005 -2002)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2012" x2="-2012" y1="-254" y2="-273">
-<stop offset="0" stop-color="#DCDCE6"/>
-<stop offset="0.2" stop-color="#DCDCE6"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 274.0005 -2002)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2011.9995" x2="-2011.9995" y1="-254.001" y2="-273.001">
+<stop offset="0" style="stop-color:#DCDCE6"/>
+<stop offset="0.2" style="stop-color:#DCDCE6"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_active_handle_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M20,10c0,4.411-3.589,8-8,8h-12v-16h12c4.41,0,8,3.589,8,8z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M12,17h-12v-14h12c3.867,0,7,3.134,7,7,0,3.87-3.13,7-7,7z" fill="url(#SVGID_1_)"/>
-<path d="M18,10c0,3.309-2.691,6-6,6h-12v-1h12c2.757,0,5-2.243,5-5s-2.243-5-5-5h-12v-1h12c3.31,0,6,2.691,6,6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M19,10c0,3.867-3.133,7-7,7h-12v-1h12c3.309,0,5.998-2.691,5.998-6,0-3.31-2.689-5.998-5.998-5.998h-12v-1.002h12c3.87,0,7,3.134,7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="8" stroke-opacity="0.5" width="1" x="8" y="6"/>
-<rect fill-opacity="0.1" height="8" stroke-opacity="0.1" width="1" x="7" y="6"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M20,10c0,4.411-3.589,8-8,8H0V2h12C16.411,2,20,5.589,20,10L20,10z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M12,17H0V3h12c3.867,0,7,3.134,7,7 C19,13.867,15.867,17,12,17z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M18,10c0,3.309-2.691,6-6,6H0v-1h12 c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h12C15.309,4,18,6.691,18,10z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M19,10c0,3.867-3.133,7-7,7H0v-1h12c3.309,0,5.998-2.691,5.998-6 c0-3.31-2.689-5.998-5.998-5.998H0V3h12C15.867,3,19,6.134,19,10z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" fill-rule="evenodd" height="8" stroke-opacity="0.5" width="1" x="8" y="6"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="8" stroke-opacity="0.1" width="1" x="7" y="6"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 234.0005 -2042)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2052" x2="-2052" y1="-234" y2="-215">
-<stop offset="0" stop-color="#DCDCE6"/>
-<stop offset="0.2" stop-color="#DCDCE6"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 234.0005 -2042)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2052.0005" x2="-2052.0005" y1="-234" y2="-215">
+<stop offset="0" style="stop-color:#DCDCE6"/>
+<stop offset="0.2" style="stop-color:#DCDCE6"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_frame_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_frame_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" y="0"/>
<rect fill-opacity="0.35" height="6" stroke-opacity="0.35" width="10" y="2"/>
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="10" y="7"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="10" y="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_frame_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_frame_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" y="0"/>
<rect fill="none" height="10" width="10"/>
-<path d="M10,8h-7c-1.654,0-3-1.346-3-3s1.346-3,3-3h7v6z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M0,5c0,1.656,1.343,3,3,3s7,0,7,0v-1h-7c-1.104,0-2-0.896-2-2s0.896-2,2-2h7v-1h-7c-1.657,0-3,1.343-3,3z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M10,8H3C1.346,8,0,6.654,0,5s1.346-3,3-3h7V8z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M0,5c0,1.656,1.343,3,3,3s7,0,7,0V7H3C1.896,7,1,6.104,1,5s0.896-2,2-2h7V2c0,0-5.855,0-7,0 C1.343,2,0,3.343,0,5z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_frame_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_frame_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" y="0"/>
<rect fill="none" height="10" width="10"/>
-<path d="M10,5c0,1.654-1.346,3-3,3h-7v-6h7c1.654,0,3,1.346,3,3z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M10,5c0-1.657-1.343-3-3-3s-7,0-7,0v1h7c1.104,0,2,0.896,2,2s-0.896,2-2,2h-7v1h7c1.657,0,3-1.344,3-3z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M10,5c0,1.654-1.346,3-3,3H0V2h7C8.654,2,10,3.346,10,5L10,5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M10,5c0-1.657-1.343-3-3-3S0,2,0,2v1h7c1.104,0,2,0.896,2,2S8.104,7,7,7H0v1c0,0,5.855,0,7,0 C8.657,8,10,6.656,10,5z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_handle_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_handle_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" y="0"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="4" stroke-opacity="0.9" width="10" y="3"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_handle_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_handle_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" y="0"/>
<rect fill="none" height="10" width="10"/>
-<path d="M10,3v4h-7c-1.104,0-2-0.896-2-2s0.896-2,2-2h7z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
-</svg>
\ No newline at end of file
+<path d="M10,3v4H3C1.896,7,1,6.104,1,5l0,0c0-1.104,0.896-2,2-2H10z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_handle_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_h_handle_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10" y="0"/>
<rect fill="none" height="10" width="10"/>
-<path d="M0,7v-4h7c1.104,0,2,0.896,2,2s-0.896,2-2,2h-7z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
-</svg>
\ No newline at end of file
+<path d="M0,7V3h7c1.104,0,2,0.896,2,2l0,0c0,1.104-0.896,2-2,2H0z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M2,12v-12h16v12c0,4.42-3.58,8-8,8s-8-3.58-8-8z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M10,20c-4.42,0-8-3.58-8-8v-12h1.001v12c0,3.86,3.14,7,6.999,7s6.999-3.14,6.999-6.999v-12h1v12c0,4.42-3.58,8-8,8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M2,12V0h16v12c0,4.42-3.58,8-8,8 S2,16.42,2,12z" fill="url(#SVGID_1_)" fill-opacity="0.9" fill-rule="evenodd" stroke-opacity="0.9"/>
+<path d="M10,20c-4.42,0-8-3.58-8-8V0h1.001v12.001 C3.001,15.86,6.141,19,10,19s6.999-3.14,6.999-6.999v-11V0H18v12C18,16.42,14.42,20,10,20z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="2" y1="10" y2="10">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.2" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="1.9995" y1="10" y2="10">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="20" stroke-opacity="0.9" width="16" x="2"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="17"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="2"/>
-<rect fill="none" height="20" width="20"/>
+<rect fill="url(#SVGID_1_)" fill-opacity="0.9" fill-rule="evenodd" height="20" stroke-opacity="0.9" width="16" x="2"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="17"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="2" y1="10" y2="10">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.2" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="1.9995" y1="9.9995" y2="9.9995">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M10,0c4.42,0,8,3.58,8,8v12h-16v-12c0-4.42,3.58-8,8-8z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M10,0c-4.42,0-8,3.58-8,8v12h1.001v-12c0-3.859,3.14-6.999,6.999-6.999s6.999,3.14,6.999,6.999v12h1v-12c0-4.42-3.58-8-8-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M10,0c4.42,0,8,3.58,8,8v12H2V8 C2,3.58,5.58,0,10,0z" fill="url(#SVGID_1_)" fill-opacity="0.9" fill-rule="evenodd" stroke-opacity="0.9"/>
+<path d="M10,0C5.58,0,2,3.58,2,8v12h1.001V7.999C3.001,4.14,6.141,1,10,1 s6.999,3.14,6.999,6.999v11V20H18V8C18,3.58,14.42,0,10,0z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="2" y1="10" y2="10">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="0.2" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="1.9995" y1="10" y2="10">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="0.2" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M2,12v-12h16v12c0,4.42-3.58,8-8,8s-8-3.58-8-8z" fill="url(#SVGID_1_)"/>
-<path d="M10,19c-3.859,0-7-3.14-7-7v-12h1v12c0,3.309,2.691,6,6,6s6-2.691,6-6v-12h1v12c0,3.86-3.14,7-7,7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,20c-4.42,0-8-3.58-8-8v-12h1.001v12c0,3.86,3.14,7,6.999,7s6.999-3.14,6.999-6.999v-12h1v12c0,4.42-3.58,8-8,8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M2,12V0h16v12c0,4.42-3.58,8-8,8S2,16.42,2,12z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,19c-3.859,0-7-3.14-7-7V0h1v12 c0,3.309,2.691,6,6,6s6-2.691,6-6V0h1v12C17,15.86,13.859,19,10,19z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M10,20c-4.42,0-8-3.58-8-8V0h1.001v12.001 C3.001,15.86,6.141,19,10,19s6.999-3.14,6.999-6.999v-11V0H18v12C18,16.42,14.42,20,10,20z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="2" y1="10" y2="10">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="0.2" stop-color="#D2D2DC"/>
-<stop offset="0.8" stop-color="#D2D2DC"/>
-<stop offset="1" stop-color="#B4B4BE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="1.9995" y1="10" y2="10">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="0.2" style="stop-color:#D2D2DC"/>
+<stop offset="0.8" style="stop-color:#D2D2DC"/>
+<stop offset="1" style="stop-color:#B4B4BE"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="url(#SVGID_1_)" height="20" width="16" x="2"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="17"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="2"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="3"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="16"/>
-<rect fill="none" height="20" width="20"/>
+<rect fill="url(#SVGID_1_)" fill-rule="evenodd" height="20" width="16" x="2"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="17"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="2"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="3"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="16"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="2" y1="10" y2="10">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="0.2" stop-color="#D2D2DC"/>
-<stop offset="0.8" stop-color="#D2D2DC"/>
-<stop offset="1" stop-color="#B4B4BE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="1.9995" y1="9.9995" y2="9.9995">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="0.2" style="stop-color:#D2D2DC"/>
+<stop offset="0.8" style="stop-color:#D2D2DC"/>
+<stop offset="1" style="stop-color:#B4B4BE"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_frame_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M10,0c4.42,0,8,3.58,8,8v12h-16v-12c0-4.42,3.58-8,8-8z" fill="url(#SVGID_1_)"/>
-<path d="M10,1c-3.859,0-7,3.14-7,7v12h1v-12c0-3.309,2.691-6,6-6s6,2.691,6,6v12h1v-12c0-3.86-3.14-7-7-7z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,0c-4.42,0-8,3.58-8,8v12h1.001v-12c0-3.859,3.14-6.999,6.999-6.999s6.999,3.14,6.999,6.999v12h1v-12c0-4.42-3.58-8-8-8z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M10,0c4.42,0,8,3.58,8,8v12H2V8C2,3.58,5.58,0,10,0z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,1C6.141,1,3,4.14,3,8v12h1V8 c0-3.309,2.691-6,6-6s6,2.691,6,6v12h1V8C17,4.14,13.859,1,10,1z" fill="#FFFFFF" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M10,0C5.58,0,2,3.58,2,8v12h1.001V7.999C3.001,4.14,6.141,1,10,1 s6.999,3.14,6.999,6.999v11V20H18V8C18,3.58,14.42,0,10,0z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="2" y1="10" y2="10">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="0.2" stop-color="#D2D2DC"/>
-<stop offset="0.8" stop-color="#D2D2DC"/>
-<stop offset="1" stop-color="#B4B4BE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.5" x2="1.9995" y1="10" y2="10">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="0.2" style="stop-color:#D2D2DC"/>
+<stop offset="0.8" style="stop-color:#D2D2DC"/>
+<stop offset="1" style="stop-color:#B4B4BE"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M10,20c-4.411,0-8-3.589-8-8v-12h16v12c0,4.41-3.59,8-8,8z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M3,12v-12h14v12c0,3.867-3.133,7-7,7s-7-3.13-7-7z" fill="url(#SVGID_1_)"/>
-<path d="M10,18c-3.309,0-6-2.691-6-6v-12h1v12c0,2.757,2.243,5,5,5s5-2.243,5-5v-12h1v12c0,3.31-2.69,6-6,6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M10,19c-3.867,0-7-3.133-7-7v-12h1v12c0,3.309,2.691,5.998,6,5.998,3.31,0,5.998-2.689,5.998-5.998v-12h1v12c0,3.87-3.13,7-7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="1" stroke-opacity="0.9" width="8" x="6" y="8"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="7"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M10,20c-4.411,0-8-3.589-8-8V0h16v12C18,16.411,14.411,20,10,20 L10,20z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M3,12V0h14v12c0,3.867-3.133,7-7,7S3,15.867,3,12z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,18c-3.309,0-6-2.691-6-6V0h1v12 c0,2.757,2.243,5,5,5s5-2.243,5-5V0h1v12C16,15.309,13.309,18,10,18z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M10,19c-3.867,0-7-3.133-7-7V0h1v12c0,3.309,2.691,5.998,6,5.998 c3.31,0,5.998-2.689,5.998-5.998V0H17v12C17,15.867,13.867,19,10,19z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" fill-rule="evenodd" height="1" stroke-opacity="0.9" width="8" x="6" y="8"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="7"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 0 -1376)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="-1376" y2="-1394">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 0 -1376)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="-1376.1274" y2="-1394.3209">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="16" x="2"/>
-<rect fill="#FAFAFA" height="20" width="14" x="3"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="16"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="3"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="20" stroke-opacity="0.4" width="1" x="4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="20" stroke-opacity="0.4" width="1" x="15"/>
-<rect fill="none" height="20" width="20"/>
-</svg>
\ No newline at end of file
+<rect fill-opacity="0.1" fill-rule="evenodd" height="20" stroke-opacity="0.1" width="16" x="2"/>
+<rect fill="#FAFAFA" fill-rule="evenodd" height="20" width="14" x="3"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="16"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="3"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="20" stroke-opacity="0.4" width="1" x="4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="20" stroke-opacity="0.4" width="1" x="15"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M2,20v-12c0-4.411,3.589-8,8-8s8,3.589,8,8v12h-16z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,1c3.867,0,7,3.133,7,7v12h-14v-12c0-3.867,3.133-7,7-7z" fill="url(#SVGID_1_)"/>
-<path d="M10,2c-3.309,0-6,2.691-6,6v12h1v-12c0-2.757,2.243-5,5-5s5,2.243,5,5v12h1v-12c0-3.309-2.69-6-6-6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M10,1c-3.867,0-7,3.133-7,7v12h1v-12c0-3.309,2.691-5.998,6-5.998,3.31,0,5.998,2.689,5.998,5.998v12h1v-12c0-3.867-3.13-7-7-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="1" stroke-opacity="0.9" width="8" x="6" y="12"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="11"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M2,20V8c0-4.411,3.589-8,8-8s8,3.589,8,8v12H2z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M10,1c3.867,0,7,3.133,7,7v12H3V8C3,4.133,6.133,1,10,1z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,2C6.691,2,4,4.691,4,8v12h1V8 c0-2.757,2.243-5,5-5s5,2.243,5,5v12h1V8C16,4.691,13.309,2,10,2z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M10,1C6.133,1,3,4.133,3,8v12h1V8c0-3.309,2.691-5.998,6-5.998 c3.31,0,5.998,2.689,5.998,5.998v12H17V8C17,4.133,13.867,1,10,1z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" fill-rule="evenodd" height="1" stroke-opacity="0.9" width="8" x="6" y="12"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="11"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="19.87" y2="1.679">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="19.8726" y2="1.6791">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M10,20c-4.411,0-8-3.589-8-8v-12h16v12c0,4.41-3.59,8-8,8z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M3,12v-12h14v12c0,3.867-3.133,7-7,7s-7-3.13-7-7z" fill="url(#SVGID_1_)"/>
-<path d="M10,18c-3.309,0-6-2.691-6-6v-12h1v12c0,2.757,2.243,5,5,5s5-2.243,5-5v-12h1v12c0,3.31-2.69,6-6,6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M10,19c-3.867,0-7-3.133-7-7v-12h1v12c0,3.309,2.691,5.998,6,5.998,3.31,0,5.998-2.689,5.998-5.998v-12h1v12c0,3.87-3.13,7-7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="8" x="6" y="8"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="7"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M10,20c-4.411,0-8-3.589-8-8V0h16v12C18,16.411,14.411,20,10,20 L10,20z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M3,12V0h14v12c0,3.867-3.133,7-7,7S3,15.867,3,12z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,18c-3.309,0-6-2.691-6-6V0h1v12 c0,2.757,2.243,5,5,5s5-2.243,5-5V0h1v12C16,15.309,13.309,18,10,18z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M10,19c-3.867,0-7-3.133-7-7V0h1v12c0,3.309,2.691,5.998,6,5.998 c3.31,0,5.998-2.689,5.998-5.998V0H17v12C17,15.867,13.867,19,10,19z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="8" x="6" y="8"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="7"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y2="19">
-<stop offset="0" stop-color="#DCDCE6"/>
-<stop offset="0.2" stop-color="#DCDCE6"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="0" y2="19">
+<stop offset="0" style="stop-color:#DCDCE6"/>
+<stop offset="0.2" style="stop-color:#DCDCE6"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="16" x="2"/>
-<rect fill="#DCDCE6" height="20" width="14" x="3"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="16"/>
-<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="3"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="20" stroke-opacity="0.4" width="1" x="4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="20" stroke-opacity="0.4" width="1" x="15"/>
-<rect fill="none" height="20" width="20"/>
-</svg>
\ No newline at end of file
+<rect fill-opacity="0.1" fill-rule="evenodd" height="20" stroke-opacity="0.1" width="16" x="2"/>
+<rect fill="#DCDCE6" fill-rule="evenodd" height="20" width="14" x="3"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="16"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="20" stroke-opacity="0.2" width="1" x="3"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="20" stroke-opacity="0.4" width="1" x="4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="20" stroke-opacity="0.4" width="1" x="15"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_active_handle_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<rect fill="none" height="20" width="20"/>
-<path d="M2,20v-12c0-4.411,3.589-8,8-8s8,3.589,8,8v12h-16z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M10,1c3.867,0,7,3.133,7,7v12h-14v-12c0-3.867,3.133-7,7-7z" fill="url(#SVGID_1_)"/>
-<path d="M10,2c-3.309,0-6,2.691-6,6v12h1v-12c0-2.757,2.243-5,5-5s5,2.243,5,5v12h1v-12c0-3.309-2.69-6-6-6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M10,1c-3.867,0-7,3.133-7,7v12h1v-12c0-3.309,2.691-5.998,6-5.998,3.31,0,5.998,2.689,5.998,5.998v12h1v-12c0-3.867-3.13-7-7-7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="8" x="6" y="12"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="11"/>
+<rect fill="none" fill-rule="evenodd" height="20" width="20"/>
+<path d="M2,20V8c0-4.411,3.589-8,8-8s8,3.589,8,8v12H2z" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M10,1c3.867,0,7,3.133,7,7v12H3V8C3,4.133,6.133,1,10,1z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M10,2C6.691,2,4,4.691,4,8v12h1V8 c0-2.757,2.243-5,5-5s5,2.243,5,5v12h1V8C16,4.691,13.309,2,10,2z" fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" stroke-opacity="0.4"/>
+<path d="M10,1C6.133,1,3,4.133,3,8v12h1V8c0-3.309,2.691-5.998,6-5.998 c3.31,0,5.998,2.689,5.998,5.998v12H17V8C17,4.133,13.867,1,10,1z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" fill-rule="evenodd" height="1" stroke-opacity="0.5" width="8" x="6" y="12"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="11"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="20" y2="1">
-<stop offset="0" stop-color="#DCDCE6"/>
-<stop offset="0.2" stop-color="#DCDCE6"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="20" y2="1">
+<stop offset="0" style="stop-color:#DCDCE6"/>
+<stop offset="0.2" style="stop-color:#DCDCE6"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_frame_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_frame_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
-<path d="M5,10c-1.654,0-3-1.346-3-3v-7h6v7c0,1.654-1.346,3-3,3z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M5,10c1.656,0,3-1.343,3-3s0-7,0-7h-1v7c0,1.104-0.896,2-2,2s-2-0.896-2-2v-7h-1v7c0,1.657,1.343,3,3,3z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M5,10c-1.654,0-3-1.346-3-3V0h6v7C8,8.654,6.654,10,5,10L5,10z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M5,10c1.656,0,3-1.343,3-3s0-7,0-7H7v7c0,1.104-0.896,2-2,2S3,8.104,3,7V0H2c0,0,0,5.855,0,7 C2,8.657,3.343,10,5,10z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_frame_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_frame_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.35" height="10" stroke-opacity="0.35" width="6" x="2"/>
<rect fill="none" height="10" width="10"/>
<rect fill-opacity="0.1" height="10" stroke-opacity="0.1" width="1" x="2"/>
<rect fill-opacity="0.1" height="10" stroke-opacity="0.1" width="1" x="7"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_frame_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_frame_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
-<path d="M2,10v-7c0-1.654,1.346-3,3-3s3,1.346,3,3v7h-6z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M5,0c-1.657,0-3,1.343-3,3s0,7,0,7h1v-7c0-1.104,0.896-2,2-2s2,0.896,2,2v7h1v-7c0-1.657-1.344-3-3-3z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M2,10V3c0-1.654,1.346-3,3-3s3,1.346,3,3v7H2z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M5,0C3.343,0,2,1.343,2,3s0,7,0,7h1V3c0-1.104,0.896-2,2-2s2,0.896,2,2v7h1c0,0,0-5.855,0-7 C8,1.343,6.656,0,5,0z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_handle_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_handle_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
-<path d="M3,0h4v7c0,1.104-0.896,2-2,2s-2-0.896-2-2v-7z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
-</svg>
\ No newline at end of file
+<path d="M3,0h4v7c0,1.104-0.896,2-2,2l0,0C3.896,9,3,8.104,3,7V0z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_handle_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_handle_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="10" stroke-opacity="0.9" width="4" x="3"/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_handle_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_scroll_v_handle_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
<rect fill="none" height="10" width="10"/>
-<path d="M7,10h-4v-7c0-1.104,0.896-2,2-2s2,0.896,2,2v7z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
-</svg>
\ No newline at end of file
+<path d="M7,10H3V3c0-1.104,0.896-2,2-2l0,0c1.104,0,2,0.896,2,2V10z" fill="#FFFFFF" fill-opacity="0.9" stroke-opacity="0.9"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_shortcut_badge_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_shortcut_badge_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="28px" version="1.1" viewBox="0 0 14 28" width="14px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#14141E" fill-opacity="0.1" height="28" stroke-opacity="0.1" width="14"/>
<rect fill="#FFFFFF" height="26" width="14" y="1"/>
<rect fill="url(#SVGID_1_)" height="24" width="14" y="2"/>
<rect fill="none" height="28" width="14"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="7" y1="2" y2="26">
-<stop offset="0" stop-color="#A0F800"/>
-<stop offset="1" stop-color="#319E00"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9995" x2="6.9995" y1="2" y2="26.0005">
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_shortcut_badge_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_shortcut_badge_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="28px" version="1.1" viewBox="0 0 14 28" width="14px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,14c0,7.72,6.28,14,14,14v-28c-7.72,0-14,6.28-14,14z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M1,14c0,7.18,5.82,13,13,13v-26c-7.18,0-13,5.82-13,13z" fill="#FFFFFF"/>
-<path d="M2,14c0,6.617,5.383,12,12,12v-24c-6.617,0-12,5.383-12,12z" fill="url(#SVGID_1_)"/>
+<path d="M0,14c0,7.72,6.28,14,14,14V0C6.28,0,0,6.28,0,14z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M1,14c0,7.18,5.82,13,13,13V1C6.82,1,1,6.82,1,14z" fill="#FFFFFF"/>
+<path d="M2,14c0,6.617,5.383,12,12,12V2C7.383,2,2,7.383,2,14z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="28" width="14"/>
<rect fill="none" height="28" width="14"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="8" y1="2" y2="26">
-<stop offset="0" stop-color="#A0F800"/>
-<stop offset="1" stop-color="#319E00"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="8" y1="2" y2="26.0005">
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_shortcut_badge_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_shortcut_badge_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="28px" version="1.1" viewBox="0 0 14 28" width="14px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M14,14c0-7.72-6.28-14-14-14v28c7.72,0,14-6.28,14-14z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M13,14c0-7.18-5.82-13-13-13v26c7.18,0,13-5.82,13-13z" fill="#FFFFFF"/>
-<path d="M12,14c0-6.617-5.383-12-12-12v24c6.617,0,12-5.38,12-12z" fill="url(#SVGID_1_)"/>
+<path d="M14,14C14,6.28,7.72,0,0,0v28C7.72,28,14,21.72,14,14z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M13,14C13,6.82,7.18,1,0,1v26C7.18,27,13,21.18,13,14z" fill="#FFFFFF"/>
+<path d="M12,14C12,7.383,6.617,2,0,2v24C6.617,26,12,20.617,12,14z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="28" width="14"/>
<rect fill="none" height="28" width="14"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="26">
-<stop offset="0" stop-color="#A0F800"/>
-<stop offset="1" stop-color="#319E00"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="26.0005">
+<stop offset="0" style="stop-color:#A0F800"/>
+<stop offset="1" style="stop-color:#319E00"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="14"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="5"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<rect fill="#8BB8C6" height="10" width="20" y="5"/>
+</g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M10,5c-2.757,0-5,2.243-5,5c0,2.758,2.243,5,5,5h10V5H10z" fill="#8BB8C6"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M10,5c2.757,0,5,2.243,5,5c0,2.758-2.243,5-5,5H0V5H10z" fill="#8BB8C6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,5c-2.757,0-5,2.243-5,5s2.243,5,5,5h10v-10h-10z" fill="url(#SVGID_1_)"/>
-<path d="M6,10c0-2.206,1.794-4,4-4h10v-1h-10c-2.757,0-5,2.243-5,5s2.243,5,5,5h10v-1h-10c-2.206,0-4-1.79-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,5c-2.757,0-5,2.243-5,5s2.243,5,5,5h10V5H10z" fill="url(#SVGID_1_)"/>
+<path d="M6,10c0-2.206,1.794-4,4-4h10V5H10c-2.757,0-5,2.243-5,5s2.243,5,5,5h10v-1H10 C7.794,14,6,12.206,6,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_filled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,5c2.757,0,5,2.243,5,5s-2.243,5-5,5h-10v-10h10z" fill="url(#SVGID_1_)"/>
-<path d="M14,10c0-2.206-1.795-4-4-4h-10v-1h10c2.757,0,5,2.243,5,5s-2.243,5-5,5h-10v-1h10c2.2,0,4-1.79,4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,5c2.757,0,5,2.243,5,5s-2.243,5-5,5H0V5H10z" fill="url(#SVGID_1_)"/>
+<path d="M14,10c0-2.206-1.795-4-4-4H0V5h10c2.757,0,5,2.243,5,5s-2.243,5-5,5H0v-1h10 C12.205,14,14,12.206,14,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -2484 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2492" x2="-2492" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -2484 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2491.5" x2="-2491.5" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="12" stroke-opacity="0.8" width="20" y="4"/>
<rect fill="#646464" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="20" y="4"/>
<rect fill="#646464" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="20" y="15"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-12h-10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10v-1h-10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1h-10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10V4H10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10V4H10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1H10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6h-10v-12h10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5h-10v-1h10c3.3,0,6,2.7,6,6s-2.7,6-6,6h-10v-1h10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6H0V4H10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h10c3.3,0,6,2.7,6,6s-2.7,6-6,6H0v-1H10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,10 +7,10 @@
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="4"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="20" y="15"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="16" y2="4">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="16" y2="4.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-12h-10z" fill="url(#SVGID_1_)"/>
-<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10v-1h-10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1h-10z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10V4H10z" fill="url(#SVGID_1_)"/>
+<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10V4H10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1H10z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12" x2="12" y1="16" y2="4">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12" x2="12" y1="16" y2="4.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6h-10v-12h10z" fill="url(#SVGID_1_)"/>
-<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5h-10v-1h10c3.3,0,6,2.7,6,6s-2.7,6-6,6h-10v-1h10z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6H0V4H10z" fill="url(#SVGID_1_)"/>
+<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h10c3.3,0,6,2.7,6,6s-2.7,6-6,6H0v-1H10z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1722 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1730" x2="-1730" y1="16" y2="4">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1722 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1730" x2="-1730" y1="16" y2="4.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -9,9 +9,9 @@
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="15"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="20" y="14"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="4" y2="16">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="4" y2="16.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-12h-10z" fill="url(#SVGID_1_)"/>
-<path d="M10,6h10v-1h-10c-2.757,0-5,2.243-5,5s2.243,5,5,5h10v-1h-10c-2.206,0-4-1.794-4-4s1.794-4,4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10v-1h-10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1h-10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,4c-3.3,0-6,2.7-6,6s2.7,6,6,6h10V4H10z" fill="url(#SVGID_1_)"/>
+<path d="M10,6h10V5H10c-2.757,0-5,2.243-5,5s2.243,5,5,5h10v-1H10c-2.206,0-4-1.794-4-4S7.794,6,10,6z " fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,15c-2.757,0-5-2.243-5-5s2.243-5,5-5h10V4H10c-3.3,0-6,2.7-6,6s2.7,6,6,6h10v-1H10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12" x2="12" y1="4" y2="16">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12" x2="12" y1="4" y2="16.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_h_frame_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6h-10v-12h10z" fill="url(#SVGID_1_)"/>
-<path d="M10,6h-10v-1h10c2.757,0,5,2.243,5,5s-2.243,5-5,5h-10v-1h10c2.205,0,4-1.794,4-4s-1.8-4-4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5h-10v-1h10c3.3,0,6,2.7,6,6s-2.7,6-6,6h-10v-1h10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,4c3.3,0,6,2.7,6,6s-2.7,6-6,6H0V4H10z" fill="url(#SVGID_1_)"/>
+<path d="M10,6H0V5h10c2.757,0,5,2.243,5,5s-2.243,5-5,5H0v-1h10c2.205,0,4-1.794,4-4S12.205,6,10,6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,15c2.757,0,5-2.243,5-5s-2.243-5-5-5H0V4h10c3.3,0,6,2.7,6,6s-2.7,6-6,6H0v-1H10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="20" width="20"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1722 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1730" x2="-1730" y1="4" y2="16">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1722 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1730" x2="-1730" y1="4" y2="16.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M15,10c0,2.757-2.244,5-5,5-2.758,0-5-2.243-5-5v-10h10v10z" fill="url(#SVGID_1_)"/>
-<path d="M10,14c2.205,0,4-1.795,4-4v-10h1v10c0,2.757-2.244,5-5,5-2.758,0-5-2.243-5-5v-10h1v10c0,2.2,1.793,4,4,4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,10c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h10V10z" fill="url(#SVGID_1_)"/>
+<path d="M10,14c2.205,0,4-1.795,4-4V0h1v10c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h1v10 C6,12.205,7.793,14,10,14z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1412 74)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="66.5" x2="66.5" y1="-1427" y2="-1417">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1412 74)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="66.5" x2="66.5" y1="-1426.9995" y2="-1417">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="14"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1392 94)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="84" x2="84" y1="-1407" y2="-1397">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1392 94)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="84" x2="84" y1="-1406.9995" y2="-1397">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M15,10c0,2.758-2.244,5-5,5c-2.758,0-5-2.242-5-5V0h10V10z" fill="#8BB8C6"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<rect fill="#8BB8C6" height="20" width="10" x="5"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="20" width="20"/>
+<rect fill="none" height="20" width="20"/>
+<path d="M15,10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h10V10z" fill="#8BB8C6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_filled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M15,10c0-2.757-2.244-5-5-5-2.758,0-5,2.243-5,5v10h10v-10z" fill="url(#SVGID_1_)"/>
-<path d="M10,6c2.205,0,4,1.795,4,4v10h1v-10c0-2.757-2.244-5-5-5-2.758,0-5,2.243-5,5v10h1v-10c0-2.205,1.793-4,4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h10V10z" fill="url(#SVGID_1_)"/>
+<path d="M10,6c2.205,0,4,1.795,4,4v10h1V10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h1V10 C6,7.795,7.793,6,10,6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1372 2558)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2546" x2="-2546" y1="-1387" y2="-1377">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1372 2558)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2545.5005" x2="-2545.5005" y1="-1386.9995" y2="-1377">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,10c0,3.3-2.7,6-6,6s-6-2.7-6-6v-10h12v10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M5,10c0,2.757,2.243,5,5,5s5-2.243,5-5v-10h1v10c0,3.3-2.7,6-6,6s-6-2.7-6-6v-10h1v10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<path d="M16,10c0,3.3-2.7,6-6,6s-6-2.7-6-6V0h12V10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M5,10c0,2.757,2.243,5,5,5s5-2.243,5-5V0h1v10c0,3.3-2.7,6-6,6s-6-2.7-6-6V0h1V10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="20" stroke-opacity="0.8" width="12" x="4"/>
<rect fill="#646464" fill-opacity="0.5" height="20" stroke-opacity="0.5" width="1" x="15"/>
<rect fill="#646464" fill-opacity="0.5" height="20" stroke-opacity="0.5" width="1" x="4"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,10c0-3.3-2.7-6-6-6s-6,2.7-6,6v10h12v-10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M5,10c0-2.757,2.243-5,5-5s5,2.243,5,5v10h1v-10c0-3.3-2.7-6-6-6s-6,2.7-6,6v10h1v-10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<path d="M16,10c0-3.3-2.7-6-6-6s-6,2.7-6,6v10h12V10z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M5,10c0-2.757,2.243-5,5-5s5,2.243,5,5v10h1V10c0-3.3-2.7-6-6-6s-6,2.7-6,6v10h1V10z" fill="#646464" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,10c0,3.3-2.701,6-6,6-3.301,0-6-2.7-6-6v-10h12v10z" fill="url(#SVGID_1_)"/>
-<path d="M5,10c0,2.757,2.242,5,5,5,2.755,0,5-2.243,5-5v-10h1v10c0,3.3-2.701,6-6,6-3.301,0-6-2.7-6-6v-10h1v10z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M5,10c0,2.757,2.242,5,5,5c2.755,0,5-2.243,5-5V0h1v10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h1V10z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1046 417)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="409" x2="409" y1="-1050" y2="-1062">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1046 417)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="409" x2="409" y1="-1050.001" y2="-1062.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -7,10 +7,10 @@
<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="15"/>
<rect fill-opacity="0.1" height="20" stroke-opacity="0.1" width="1" x="4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1026 437)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="427" x2="427" y1="-1030" y2="-1042">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1026 437)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="427" x2="427" y1="-1030.001" y2="-1042.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,10c0-3.3-2.701-6-6-6-3.3,0-6,2.7-6,6v10h12v-10z" fill="url(#SVGID_1_)"/>
-<path d="M5,10c0-2.757,2.242-5,5-5,2.755,0,5,2.243,5,5v10h1v-10c0-3.3-2.701-6-6-6-3.3,0-6,2.7-6,6v10h1v-10z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M16,10c0-3.3-2.701-6-6-6C6.7,4,4,6.7,4,10v10h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M5,10c0-2.757,2.242-5,5-5c2.755,0,5,2.243,5,5v10h1V10c0-3.3-2.701-6-6-6C6.7,4,4,6.7,4,10v10h1V10z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1006 2139)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2127" x2="-2127" y1="-1010" y2="-1022">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.7" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#D2D2D2"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1006 2139)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2126.9995" x2="-2126.9995" y1="-1010.001" y2="-1022.0005">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.7" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#D2D2D2"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,10c0,3.3-2.701,6-6,6-3.301,0-6-2.7-6-6v-10h12v10z" fill="url(#SVGID_1_)"/>
-<path d="M14,10v-10h1v10c0,2.757-2.244,5-5,5-2.758,0-5-2.243-5-5v-10h1v10c0,2.205,1.793,4,4,4,2.2,0,4-1.8,4-4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5,10c0,2.757,2.242,5,5,5,2.756,0,5-2.243,5-5v-10h1v10c0,3.3-2.701,6-6,6-3.301,0-6-2.7-6-6v-10h1v10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M16,10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M14,10V0h1v10c0,2.757-2.244,5-5,5c-2.758,0-5-2.243-5-5V0h1v10c0,2.205,1.793,4,4,4 C12.205,14,14,12.205,14,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M5,10c0,2.757,2.242,5,5,5c2.756,0,5-2.243,5-5V0h1v10c0,3.3-2.701,6-6,6c-3.301,0-6-2.7-6-6V0h1V10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -651 817)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="809" x2="809" y1="-667" y2="-655">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -651 817)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="809" x2="809" y1="-666.9995" y2="-655">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
@@ -9,9 +9,9 @@
<rect fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="4"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="20" stroke-opacity="0.2" width="1" x="5"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -631 837)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="827" x2="827" y1="-647" y2="-635">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -631 837)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="827" x2="827" y1="-646.9995" y2="-635">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_slider_v_frame_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill="none" height="20" width="20"/>
-<path d="M16,10c0-3.3-2.701-6-6-6-3.301,0-6,2.7-6,6v10h12v-10z" fill="url(#SVGID_1_)"/>
-<path d="M14,10v10h1v-10c0-2.757-2.244-5-5-5-2.758,0-5,2.243-5,5v10h1v-10c0-2.205,1.793-4,4-4,2.2,0,4,1.795,4,4z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5,10c0-2.757,2.242-5,5-5,2.756,0,5,2.243,5,5v10h1v-10c0-3.3-2.701-6-6-6-3.301,0-6,2.7-6,6v10h1v-10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M16,10c0-3.3-2.701-6-6-6c-3.301,0-6,2.7-6,6v10h12V10z" fill="url(#SVGID_1_)"/>
+<path d="M14,10v10h1V10c0-2.757-2.244-5-5-5c-2.758,0-5,2.243-5,5v10h1V10c0-2.205,1.793-4,4-4 C12.205,6,14,7.795,14,10z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M5,10c0-2.757,2.242-5,5-5c2.756,0,5,2.243,5,5v10h1V10c0-3.3-2.701-6-6-6c-3.301,0-6,2.7-6,6v10h1V10z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -611 2539)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2527" x2="-2527" y1="-627" y2="-615">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#D2D2DC"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -611 2539)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2527.0005" x2="-2527.0005" y1="-626.9995" y2="-615">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#D2D2DC"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect height="20" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect height="20" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect height="20" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_trans_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_trans_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill-opacity="0.8" height="20" stroke-opacity="0.8" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_trans_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_trans_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill-opacity="0.8" height="20" stroke-opacity="0.8" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_trans_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_statusbar_trans_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
<rect fill-opacity="0.8" height="20" stroke-opacity="0.8" width="20"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
<rect fill="#646464" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="30" y="59"/>
<rect fill="#646464" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
-<polygon fill="#646464" fill-opacity="0.5" points="1,59,1,1,30,1,30,0,0,0,0,60,30,60,30,59" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.5" points="1,59 1,1 30,1 30,0 0,0 0,60 30,60 30,59 " stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
-<polygon fill="#646464" fill-opacity="0.5" points="30,0,0,0,0,1,29,1,29,59,0,59,0,60,30,60" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.5" points="30,0 0,0 0,1 29,1 29,59 0,59 0,60 30,60 " stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
-<polygon fill="#646464" fill-opacity="0.5" points="1,59,1,1,30,1,30,0,0,0,0,60,30,60,30,59" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.5" points="1,59 1,1 30,1 30,0 0,0 0,60 30,60 30,59 " stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#AAAAAA" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
-<polygon fill="#646464" fill-opacity="0.5" points="30,0,0,0,0,1,29,1,29,59,0,59,0,60,30,60" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.5" points="30,0 0,0 0,1 29,1 29,59 0,59 0,60 30,60 " stroke-opacity="0.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30" y="58"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="3" stroke-opacity="0.2" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
-<polygon fill-opacity="0.2" points="0,0,0,60,1,60,1,1,30,1,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58,2,4,30,4,30,1,1,1,1,59,30,59,30,58" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,60 1,60 1,1 30,1 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58 2,4 30,4 30,1 1,1 1,59 30,59 30,58 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,29,1,29,60,30,60,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1,0,4,28,4,28,58,0,58,0,59,29,59,29,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 29,1 29,60 30,60 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1 0,4 28,4 28,58 0,58 0,59 29,59 29,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
-<polygon fill-opacity="0.2" points="0,0,0,60,1,60,1,1,30,1,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58,2,4,30,4,30,1,1,1,1,59,30,59,30,58" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,60 1,60 1,1 30,1 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58 2,4 30,4 30,1 1,1 1,59 30,59 30,58 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,29,1,29,60,30,60,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1,0,4,28,4,28,58,0,58,0,59,29,59,29,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 29,1 29,60 30,60 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1 0,4 28,4 28,58 0,58 0,59 29,59 29,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -8,11 +8,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="58"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="3" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" x="1" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,60,1,60,1,1,30,1,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1,1,59,30,59,30,58,2,58,2,4,30,4,30,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,60 1,60 1,1 30,1 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1 1,59 30,59 30,58 2,58 2,4 30,4 30,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,29,1,29,60,30,60,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1,0,4,28,4,28,58,0,58,0,59,29,59,29,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 29,1 29,60 30,60 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1 0,4 28,4 28,58 0,58 0,59 29,59 29,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" x="1" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,60,1,60,1,1,30,1,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1,1,59,30,59,30,58,2,58,2,4,30,4,30,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,60 1,60 1,1 30,1 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,1 1,59 30,59 30,58 2,58 2,4 30,4 30,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,29,1,29,60,30,60,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1,0,4,28,4,28,58,0,58,0,59,29,59,29,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 29,1 29,60 30,60 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,1 0,4 28,4 28,58 0,58 0,59 29,59 29,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="58"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -8,11 +8,11 @@
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="58" stroke-opacity="0.9" width="1" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -8,11 +8,11 @@
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30"/>
<rect fill="#9696A0" fill-opacity="0.5" height="58" stroke-opacity="0.5" width="1" x="29" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30" y="59"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.124" y2="59.22">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.1235" y2="59.2168">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.4" points="1,58,1,1,0,1,0,59,30,59,30,58" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.4" points="1,58 1,1 0,1 0,59 30,59 30,58 " stroke-opacity="0.4"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30" y="59"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="30"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.124" y2="59.22">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.1235" y2="59.2168">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.4" points="29,1,29,58,0,58,0,59,30,59,30,1" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.4" points="29,1 29,58 0,58 0,59 30,59 30,1 " stroke-opacity="0.4"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" x="0" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30" y="58"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.8867">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="60" y2="0.8867">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" x="1" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,60,1,60,1,1,30,1,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58,2,2,30,2,30,1,1,1,1,59,30,59,30,58" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,60 1,60 1,1 30,1 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58 2,2 30,2 30,1 1,1 1,59 30,59 30,58 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.8867">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="60" y2="0.8867">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,29,1,29,60,30,60,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="29,1,0,1,0,2,28,2,28,58,0,58,0,59,29,59" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 29,1 29,60 30,60 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="29,1 0,1 0,2 28,2 28,58 0,58 0,59 29,59 " stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.8867">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" x="1" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,60,1,60,1,1,30,1,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58,2,2,30,2,30,1,1,1,1,59,30,59,30,58" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,60 1,60 1,1 30,1 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,58 2,2 30,2 30,1 1,1 1,59 30,59 30,58 " stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.8867">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_h_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" height="60" width="30"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="29" y="59"/>
-<polygon fill-opacity="0.2" points="0,0,0,1,29,1,29,60,30,60,30,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="29,1,0,1,0,2,28,2,28,58,0,58,0,59,29,59" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,0 0,1 29,1 29,60 30,60 30,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="29,1 0,1 0,2 28,2 28,58 0,58 0,59 29,59 " stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60" y2="0.8867">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#646464" fill-opacity="0.6" height="60" stroke-opacity="0.6" width="30"/>
<rect fill="#646464" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="30" y="59"/>
<rect fill="#646464" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#646464" fill-opacity="0.6" height="60" stroke-opacity="0.6" width="30"/>
-<polygon fill="#646464" fill-opacity="0.6" points="1,59,1,1,30,1,30,0,0,0,0,60,30,60,30,59" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="1,59 1,1 30,1 30,0 0,0 0,60 30,60 30,59 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#646464" fill-opacity="0.6" height="60" stroke-opacity="0.6" width="30"/>
-<polygon fill="#646464" fill-opacity="0.6" points="30,0,0,0,0,1,29,1,29,59,0,59,0,60,30,60" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="30,0 0,0 0,1 29,1 29,59 0,59 0,60 30,60 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#646464" fill-opacity="0.6" height="60" stroke-opacity="0.6" width="30"/>
-<polygon fill="#646464" fill-opacity="0.6" points="1,59,1,1,30,1,30,0,0,0,0,60,30,60,30,59" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="1,59 1,1 30,1 30,0 0,0 0,60 30,60 30,59 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="#646464" fill-opacity="0.6" height="60" stroke-opacity="0.6" width="30"/>
-<polygon fill="#646464" fill-opacity="0.6" points="30,0,0,0,0,1,29,1,29,59,0,59,0,60,30,60" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="30,0 0,0 0,1 29,1 29,59 0,59 0,60 30,60 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1" y2="59">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="58" stroke-opacity="0.7" width="30" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="-30" y2="59.81">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="-29.9995" y2="59.8148">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="30" y="57"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y2="89.81">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="0" y2="89.8143">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="3" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="1" y2="59">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="58" stroke-opacity="0.7" width="29" x="1" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y2="59.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="0" y2="59.8766">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="3,57,3,3,30,3,30,0,0,0,0,60,30,60,30,57"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="3,57 3,3 30,3 30,0 0,0 0,60 30,60 30,57 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.5" x2="14.5" y1="1" y2="59">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.5" x2="14.5" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="58" stroke-opacity="0.7" width="29" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y2="59.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="0" y2="59.8766">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="30,0,0,0,0,3,27,3,27,57,0,57,0,60,30,60"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="30,0 0,0 0,3 27,3 27,57 0,57 0,60 30,60 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="1" y2="59">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="58" stroke-opacity="0.7" width="29" x="1" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y2="59.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="0" y2="59.8766">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="3,57,3,3,30,3,30,0,0,0,0,60,30,60,30,57"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="3,57 3,3 30,3 30,0 0,0 0,60 30,60 30,57 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.5" x2="14.5" y1="1" y2="59">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.5" x2="14.5" y1="1" y2="59.0005">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="58" stroke-opacity="0.7" width="29" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y2="59.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="0" y2="59.8766">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="30,0,0,0,0,3,27,3,27,57,0,57,0,60,30,60"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="30,0 0,0 0,3 27,3 27,57 0,57 0,60 30,60 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.3" height="58" stroke-opacity="0.3" width="1" y="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<rect fill="#141414" fill-opacity="0.3" height="58" stroke-opacity="0.3" width="1" x="29" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="60" stroke-opacity="0.7" width="30"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="60" stroke-opacity="0.7" width="30" x="0"/>
<rect fill="#282828" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="59"/>
@@ -7,9 +7,9 @@
<rect fill="#C8C8C8" fill-opacity="0.3" height="58" stroke-opacity="0.3" width="1" y="1"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="60" stroke-opacity="0.7" width="30"/>
@@ -8,9 +8,9 @@
<rect fill="#C8C8C8" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<rect fill="#141414" fill-opacity="0.3" height="58" stroke-opacity="0.3" width="1" x="29" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="60" stroke-opacity="0.7" width="30" x="0"/>
<rect fill="#282828" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="59"/>
<rect fill="#282828" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="60" stroke-opacity="0.7" width="30"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="30" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.77">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-0.5" y2="59.7705">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30" y="59"/>
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60.5" y2="0.2305">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="60.5" y2="0.2305">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -8,8 +8,8 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="58" stroke-opacity="0.4" width="1" y="1"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60.5" y2="0.2305">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -8,8 +8,8 @@
<rect fill="#141414" fill-opacity="0.2" height="58" stroke-opacity="0.2" width="1" x="29" y="1"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60.5" y2="0.2305">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -7,8 +7,8 @@
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60.5" y2="0.2305">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_h_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 30 60" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="60" width="30" y="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="60" stroke-opacity="0.8" width="30"/>
@@ -7,8 +7,8 @@
<rect fill="#282828" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="30"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="60.5" y2="0.2305">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="60"/>
-<polygon fill="#646464" fill-opacity="0.6" points="59,29,1,29,1,0,0,0,0,30,60,30,60,0,59,0" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="59,29 1,29 1,0 0,0 0,30 60,30 60,0 59,0 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="60"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="1" x="59"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="60"/>
-<polygon fill="#646464" fill-opacity="0.6" points="59,29,1,29,1,0,0,0,0,30,60,30,60,0,59,0" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="59,29 1,29 1,0 0,0 0,30 60,30 60,0 59,0 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="60"/>
-<polygon fill="#646464" fill-opacity="0.6" points="0,0,0,30,1,30,1,1,59,1,59,30,60,30,60,0" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="0,0 0,30 1,30 1,1 59,1 59,30 60,30 60,0 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="#646464" fill-opacity="0.6" height="30" stroke-opacity="0.6" width="60"/>
-<polygon fill="#646464" fill-opacity="0.6" points="0,0,0,30,1,30,1,1,59,1,59,30,60,30,60,0" stroke-opacity="0.6"/>
-</svg>
\ No newline at end of file
+<polygon fill="#646464" fill-opacity="0.6" points="0,0 0,30 1,30 1,1 59,1 59,30 60,30 60,0 " stroke-opacity="0.6"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1598.5 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1691" x2="-1691" y1="-1658" y2="-1598">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1598.5 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1690.5005" x2="-1690.5005" y1="-1658.4995" y2="-1598.4995">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1598.5 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1691" x2="-1691" y1="-1658" y2="-1599">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1598.5 -1675.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1690.5005" x2="-1690.5005" y1="-1658.4995" y2="-1598.6234">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="3,27,57,27,57,0,60,0,60,30,0,30,0,0,3,0"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="3,27 57,27 57,0 60,0 60,30 0,30 0,0 3,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1631" x2="-1631" y1="-1598" y2="-1538">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1630.5005" x2="-1630.5005" y1="-1598.4995" y2="-1538.4995">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1631" x2="-1631" y1="-1628" y2="-1539">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1630.5005" x2="-1630.5005" y1="-1628.4995" y2="-1538.6852">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="30" width="3"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1631" x2="-1631" y1="-1598" y2="-1509">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1538.5 -1615.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1630.5005" x2="-1630.5005" y1="-1598.4995" y2="-1508.6852">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="30" width="3" x="57"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1568.5 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1661" x2="-1661" y1="-1628" y2="-1568">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1568.5 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1660.5005" x2="-1660.5005" y1="-1628.4995" y2="-1568.4995">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1568.5 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1661" x2="-1661" y1="-1628" y2="-1569">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1568.5 -1645.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1660.5005" x2="-1660.5005" y1="-1628.4995" y2="-1568.6234">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="3,27,57,27,57,0,60,0,60,30,0,30,0,0,3,0"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="3,27 57,27 57,0 60,0 60,30 0,30 0,0 3,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1508.5 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1601" x2="-1601" y1="-1568" y2="-1508">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1508.5 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1600.5005" x2="-1600.5005" y1="-1568.4995" y2="-1508.4995">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1508.5 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1601" x2="-1601" y1="-1568" y2="-1509">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1508.5 -1585.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1600.5005" x2="-1600.5005" y1="-1568.4995" y2="-1508.6234">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="60,0,60,30,57,30,57,3,3,3,3,30,0,30,0,0"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="60,0 60,30 57,30 57,3 3,3 3,30 0,30 0,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1478.5 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1571" x2="-1571" y1="-1538" y2="-1478">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#1E1E1E"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1478.5 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1570.5005" x2="-1570.5005" y1="-1538.4995" y2="-1478.4995">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#1E1E1E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1478.5 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1571" x2="-1571" y1="-1538" y2="-1479">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1478.5 -1555.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1570.5005" x2="-1570.5005" y1="-1538.4995" y2="-1478.6234">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="60,0,60,30,57,30,57,3,3,3,3,30,0,30,0,0"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="60,0 60,30 57,30 57,3 3,3 3,30 0,30 0,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2332.5 -2409.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2425" x2="-2425" y1="-2393" y2="-2333">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2332.5 -2409.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2424.5005" x2="-2424.5005" y1="-2392.9995" y2="-2332.7295">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2272.5 -2349.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2365" x2="-2365" y1="-2333" y2="-2273">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2272.5 -2349.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2364.5005" x2="-2364.5005" y1="-2332.9995" y2="-2272.7295">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1" y="29"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2302.5 -2379.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2395" x2="-2395" y1="-2363" y2="-2303">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2302.5 -2379.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2394.5005" x2="-2394.5005" y1="-2362.9995" y2="-2302.7295">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<rect fill="#141414" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2242.5 -2319.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2335" x2="-2335" y1="-2303" y2="-2243">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2242.5 -2319.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2334.5005" x2="-2334.5005" y1="-2302.9995" y2="-2242.7295">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2212.5 -2289.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2305" x2="-2305" y1="-2273" y2="-2213">
-<stop offset="0" stop-color="#A0A0A0"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2212.5 -2289.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2304.5005" x2="-2304.5005" y1="-2272.9995" y2="-2212.7295">
+<stop offset="0" style="stop-color:#A0A0A0"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3085.5 -3162.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3178" x2="-3178" y1="-3146" y2="-3086">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3085.5 -3162.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3177.5" x2="-3177.5" y1="-3146" y2="-3085.73">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3025.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3118" x2="-3118" y1="-3086" y2="-3026">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3025.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3117.5" x2="-3117.5" y1="-3086" y2="-3025.73">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
@@ -8,9 +8,9 @@
<rect fill="#C8C8C8" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1" y="29"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3055.5 -3132.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3148" x2="-3148" y1="-3116" y2="-3056">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3055.5 -3132.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3147.5" x2="-3147.5" y1="-3116" y2="-3055.73">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" y="0"/>
@@ -7,9 +7,9 @@
<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58" y="0"/>
<rect fill="#141414" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="58" x="1" y="0"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3025.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3118" x2="-3118" y1="-3086" y2="-3026">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3025.5 -3102.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3117.5" x2="-3117.5" y1="-3086" y2="-3025.73">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.7" height="30" stroke-opacity="0.7" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="59" y="0"/>
<rect fill="#C8C8C8" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="58" y="0"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2965.5 -3042.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3058" x2="-3058" y1="-3026" y2="-2966">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2965.5 -3042.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3057.5" x2="-3057.5" y1="-3026" y2="-2965.73">
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2710.5 -2789)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2804" x2="-2804" y1="-2710" y2="-2770">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2710.5 -2789)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2804" x2="-2804" y1="-2710" y2="-2770.27">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2650.5 -2729)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2744" x2="-2744" y1="-2650" y2="-2710">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2650.5 -2729)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2744" x2="-2744" y1="-2650" y2="-2710.27">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="58" x="1" y="29"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2680.5 -2759)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2774" x2="-2774" y1="-2680" y2="-2740">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2680.5 -2759)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2774" x2="-2774" y1="-2680" y2="-2740.27">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
@@ -7,9 +7,9 @@
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<rect fill="#141414" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="58" x="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2620.5 -2699)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2714" x2="-2714" y1="-2620" y2="-2680">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2620.5 -2699)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2714" x2="-2714" y1="-2620" y2="-2680.27">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_trans_v_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="30" stroke-opacity="0.8" width="60"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1"/>
<rect fill="#282828" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="1" x="59"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2590.5 -2669)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2684" x2="-2684" y1="-2590" y2="-2650">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#5A5A5A"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2590.5 -2669)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2684" x2="-2684" y1="-2590" y2="-2650.27">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#5A5A5A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill="#9696A0" fill-opacity="0.5" points="59,29,1,29,1,0,0,0,0,30,60,30,60,0,59,0" stroke-opacity="0.5"/>
+<polygon fill="#9696A0" fill-opacity="0.5" points="59,29 1,29 1,0 0,0 0,30 60,30 60,0 59,0 " stroke-opacity="0.5"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1827.4991 -1928.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1944" x2="-1944" y1="-1768" y2="-1827">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1827.4991 -1928.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1943.5" x2="-1943.5" y1="-1767.8335" y2="-1827.2428">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1767.4991 -1868.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1884" x2="-1884" y1="-1708" y2="-1767">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1767.4991 -1868.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1883.5" x2="-1883.5" y1="-1707.8335" y2="-1767.2428">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.1" points="59,29,1,29,1,0,0,0,0,30,60,30,60,0,59,0" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.1" points="59,29 1,29 1,0 0,0 0,30 60,30 60,0 59,0 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1797.4991 -1898.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1914" x2="-1914" y1="-1738" y2="-1797">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1797.4991 -1898.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1913.5" x2="-1913.5" y1="-1737.8335" y2="-1797.2428">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.1" points="0,0,0,30,1,30,1,1,59,1,59,30,60,30,60,0" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.1" points="0,0 0,30 1,30 1,1 59,1 59,30 60,30 60,0 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1737.4991 -1838.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1854" x2="-1854" y1="-1678" y2="-1737">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1737.4991 -1838.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1853.5" x2="-1853.5" y1="-1677.8335" y2="-1737.2428">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.1" points="0,0,0,30,1,30,1,1,59,1,59,30,60,30,60,0" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.1" points="0,0 0,30 1,30 1,1 59,1 59,30 60,30 60,0 " stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1707.4991 -1808.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1824" x2="-1824" y1="-1648" y2="-1707">
-<stop offset="0" stop-color="#D2D2D2"/>
-<stop offset="1" stop-color="#AAAAAA"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 1707.4991 -1808.5009)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1823.5" x2="-1823.5" y1="-1647.8335" y2="-1707.2428">
+<stop offset="0" style="stop-color:#D2D2D2"/>
+<stop offset="1" style="stop-color:#AAAAAA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="60,30,0,30,0,29,59,29,59,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28,56,28,56,0,59,0,59,29,1,29,1,0,2,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 56,28 56,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<rect fill="none" height="30" width="60"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3102.5 -1604.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1620" x2="-1620" y1="-3163" y2="-3103">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3102.5 -1604.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1619.5" x2="-1619.5" y1="-3162.9995" y2="-3102.7295">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="3" x="56"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3042.5 -1544.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1560" x2="-1560" y1="-3103" y2="-3043">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3042.5 -1544.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1559.5" x2="-1559.5" y1="-3102.9995" y2="-3042.7295">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="60,30,0,30,0,29,59,29,59,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28,56,28,56,0,59,0,59,29,1,29,1,0,2,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 56,28 56,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3072.5 -1574.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1590" x2="-1590" y1="-3133" y2="-3073">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3072.5 -1574.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1589.5" x2="-1589.5" y1="-3132.9995" y2="-3072.7295">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="60,30,59,30,59,1,0,1,0,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,30,56,30,56,2,2,2,2,30,1,30,1,1,59,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3012.5 -1514.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1530" x2="-1530" y1="-3073" y2="-3013">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3012.5 -1514.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1529.5" x2="-1529.5" y1="-3072.9995" y2="-3012.7295">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
-<polygon fill-opacity="0.2" points="60,30,59,30,59,1,0,1,0,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,30,56,30,56,2,2,2,2,30,1,30,1,1,59,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -2982.5 -1484.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1500" x2="-1500" y1="-3043" y2="-2983">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -2982.5 -1484.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1499.5" x2="-1499.5" y1="-3042.9995" y2="-2982.7295">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1"/>
-<polygon fill-opacity="0.2" points="60,30,0,30,0,29,59,29,59,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,29,1,29,1,0,2,0,2,28,56,28,56,0,59,0" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,29 1,29 1,0 2,0 2,28 56,28 56,0 59,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3771.5 -2311.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2326" x2="-2326" y1="-3832" y2="-3772">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3771.5 -2311.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2326.5" x2="-2326.5" y1="-3831.9995" y2="-3771.7295">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
@@ -8,11 +8,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="3" x="56"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3711.5 -2251.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266" x2="-2266" y1="-3772" y2="-3712">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3711.5 -2251.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266.5" x2="-2266.5" y1="-3771.9995" y2="-3711.7295">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1"/>
-<polygon fill-opacity="0.2" points="60,30,0,30,0,29,59,29,59,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,29,1,29,1,0,2,0,2,28,56,28,56,0,59,0" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,29 1,29 1,0 2,0 2,28 56,28 56,0 59,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3741.5 -2281.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2296" x2="-2296" y1="-3802" y2="-3742">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3741.5 -2281.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2296.5" x2="-2296.5" y1="-3801.9995" y2="-3741.7295">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" y="1"/>
-<polygon fill-opacity="0.2" points="60,30,59,30,59,1,0,1,0,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,30,56,30,56,2,2,2,2,30,1,30,1,1,59,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3681.5 -2221.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2236" x2="-2236" y1="-3742" y2="-3682">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3681.5 -2221.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2236.5" x2="-2236.5" y1="-3741.9995" y2="-3681.7295">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_latched_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="29" stroke-opacity="0.1" width="1" y="1"/>
-<polygon fill-opacity="0.2" points="60,30,59,30,59,1,0,1,0,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,30,56,30,56,2,2,2,2,30,1,30,1,1,59,1" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,30 56,30 56,2 2,2 2,30 1,30 1,1 59,1 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -3651.5 -2191.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2206" x2="-2206" y1="-3712" y2="-3652">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="0.9" stop-color="#9B9BA0"/>
-<stop offset="0.9" stop-color="#919196"/>
-<stop offset="1" stop-color="#87878C"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -3651.5 -2191.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2206.5" x2="-2206.5" y1="-3711.9995" y2="-3651.7295">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="0.9" style="stop-color:#9B9BA0"/>
+<stop offset="0.9" style="stop-color:#919196"/>
+<stop offset="1" style="stop-color:#87878C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,29,59,29,59,30,1,30,1,0,2,0" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="2,29 59,29 59,30 1,30 1,0 2,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -4589.5 -3081.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3096" x2="-3096" y1="-4650" y2="-4590">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4589.5 -3081.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3096.5" x2="-3096.5" y1="-4650" y2="-4589.73">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="30" stroke-opacity="0.4" width="1" x="1"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -4529.5 -3021.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3036" x2="-3036" y1="-4590" y2="-4530">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4529.5 -3021.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3036.5" x2="-3036.5" y1="-4590" y2="-4529.73">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
@@ -8,11 +8,11 @@
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="1" stroke-opacity="0.9" width="58" x="1" y="29"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -4559.5 -3051.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3066" x2="-3066" y1="-4620" y2="-4560">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4559.5 -3051.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3066.5" x2="-3066.5" y1="-4620" y2="-4559.73">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
@@ -8,11 +8,11 @@
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
<rect fill="#9696A0" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="58" x="1"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -4499.5 -2991.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3006" x2="-3006" y1="-4560" y2="-4500">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4499.5 -2991.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3006.5" x2="-3006.5" y1="-4560" y2="-4499.73">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1" x="59"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,1,2,1,2,30,1,30,1,0,59,0" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,1 2,1 2,30 1,30 1,0 59,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -4469.5 -2961.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2976" x2="-2976" y1="-4530" y2="-4470">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -4469.5 -2961.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2976.5" x2="-2976.5" y1="-4530" y2="-4469.73">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
-<polygon fill-opacity="0.2" points="60,30,0,30,0,29,59,29,59,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28,58,28,58,0,59,0,59,29,1,29,1,0,2,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 58,28 58,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105" x2="-3164" y1="15" y2="15">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="15" y2="15">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
@@ -8,9 +8,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="1"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="30" stroke-opacity="0.2" width="1" x="58"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105" x2="-3164" y1="15" y2="15">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="14.9995" y2="14.9995">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_cb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_cb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
-<polygon fill-opacity="0.2" points="60,30,0,30,0,29,59,29,59,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28,58,28,58,0,59,0,59,29,1,29,1,0,2,0" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 0,30 0,29 59,29 59,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2,28 58,28 58,0 59,0 59,29 1,29 1,0 2,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105" x2="-3164" y1="15" y2="15">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="15" y2="15">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_ct.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_ct.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
-<polygon fill-opacity="0.2" points="60,30,59,30,59,1,0,1,0,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,1,59,30,58,30,58,2,2,2,2,30,1,30,1,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,1 59,30 58,30 58,2 2,2 2,30 1,30 1,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105" x2="-3164" y1="15" y2="15">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="14.9995" y2="14.9995">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tb_v_pressed_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 60 30" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="60" x="0"/>
<rect fill="url(#SVGID_1_)" height="30" width="60"/>
<rect fill-opacity="0.1" height="30" stroke-opacity="0.1" width="1"/>
-<polygon fill-opacity="0.2" points="60,30,59,30,59,1,0,1,0,0,60,0" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,1,59,30,58,30,58,2,2,2,2,30,1,30,1,1" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="60,30 59,30 59,1 0,1 0,0 60,0 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="59,1 59,30 58,30 58,2 2,2 2,30 1,30 1,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105" x2="-3164" y1="15" y2="15">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -3105 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3105.2495" x2="-3164.2495" y1="14.9995" y2="14.9995">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="#AAAAAF" height="10" width="300"/>
<rect fill="#C8C8C8" height="8" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-10h-10z" fill="#AAAAAF"/>
-<path d="M2,0v6c0,1.103,0.897,2,2,2h6v-8h-8z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V0H0z" fill="#AAAAAF"/>
+<path d="M2,0v6c0,1.103,0.897,2,2,2h6V0H2z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v10h6c2.2,0,4-1.8,4-4v-6h-10z" fill="#AAAAAF"/>
-<path d="M0,0v8h6c1.104,0,2-0.897,2-2v-6h-8z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v10h6c2.2,0,4-1.8,4-4V0H0z" fill="#AAAAAF"/>
+<path d="M0,0v8h6c1.104,0,2-0.897,2-2V0H0z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 300 20" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="300"/>
<rect fill="#AAAAAF" height="20" width="300"/>
<rect fill="#C8C8C8" height="20" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="#AAAAAF" height="20" width="10"/>
<rect fill="#C8C8C8" height="20" width="8" x="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="#AAAAAF" height="20" width="10"/>
<rect fill="#C8C8C8" height="20" width="8"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="#AAAAAF" height="10" width="300"/>
<rect fill="#C8C8C8" height="8" width="300" y="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M4,0c-2.2,0-4,1.8-4,4v6h10v-10h-6z" fill="#AAAAAF"/>
-<path d="M4,2c-1.103,0-2,0.897-2,2v6h8v-8h-6z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M4,0C1.8,0,0,1.8,0,4v6h10V0H4z" fill="#AAAAAF"/>
+<path d="M4,2C2.897,2,2,2.897,2,4v6h8V2H4z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_disabled_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v10h10v-6z" fill="#AAAAAF"/>
-<path d="M8,4c0-1.103-0.896-2-2-2h-6v8h8v-6z" fill="#C8C8C8"/>
-</svg>
\ No newline at end of file
+<path d="M10,4c0-2.2-1.8-4-4-4H0v10h10V4z" fill="#AAAAAF"/>
+<path d="M8,4c0-1.103-0.896-2-2-2H0v8h8V4z" fill="#C8C8C8"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-28" y2="7.673">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-27.9995" y2="7.6726">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="8" width="300"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="150" x2="150" y1="-30" y2="9.876">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="149.9995" x2="149.9995" y1="-29.9995" y2="9.8756">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="300" y="7"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-28" y2="7.673">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-27.9995" y2="7.6726">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M2,6c0,1.103,0.897,2,2,2h6v-8h-8v6z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-30" y2="9.876">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M2,6c0,1.103,0.897,2,2,2h6V0H2V6z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-29.9995" y2="9.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-3h-6c-0.542,0-1-0.459-1-1v-6h-3z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V7H4C3.458,7,3,6.541,3,6V0H0z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-28" y2="7.673">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-27.9995" y2="7.6726">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M0,8h6c1.104,0,2-0.897,2-2v-6h-8v8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-30" y2="9.876">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M0,8h6c1.104,0,2-0.897,2-2V0H0V8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="-29.9995" y2="9.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M7,6c0,0.541-0.458,1-1,1h-6v3h6c2.2,0,4-1.8,4-4v-6h-3v6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M7,6c0,0.541-0.458,1-1,1H0v3h6c2.2,0,4-1.8,4-4V0H7V6z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 300 20" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="300"/>
<rect fill="url(#SVGID_1_)" height="20" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-8" y2="27.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-8" y2="27.6731">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="27.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="-8" y2="27.6731">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="8" x="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5" x2="1.5" y1="-10" y2="29.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1.5" x2="1.5" y1="-10.0005" y2="29.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="20" width="3"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="27.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="-8" y2="27.6731">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="-10" y2="29.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="-10.0005" y2="29.8757">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="20" width="3" x="7"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="2" y2="37.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="2" y2="37.6721">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="8" width="300" y="2"/>
<rect fill="#3C3C3C" fill-opacity="0.1" height="2" stroke-opacity="0.1" width="300" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="150" x2="150" y2="39.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="149.9995" x2="149.9995" y1="0" y2="39.8751">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="300"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="37.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6" x2="6" y1="2" y2="37.6721">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M10,2h-6c-1.103,0-2,0.897-2,2v6h8v-8z" fill="url(#SVGID_1_)"/>
-<path d="M4,2c-1.103,0-2,0.897-2,2h8v-2h-6z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y2="39.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M10,2H4C2.897,2,2,2.897,2,4v6h8V2z" fill="url(#SVGID_1_)"/>
+<path d="M4,2C2.897,2,2,2.897,2,4h8V2H4z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0" y2="39.8752">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M3,4c0-0.542,0.458-1,1-1h6v-3h-6c-2.2,0-4,1.8-4,4v6h3v-6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M3,4c0-0.542,0.458-1,1-1h6V0H4C1.8,0,0,1.8,0,4v6h3V4z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_highlight_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="37.67">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4" x2="4" y1="2" y2="37.6721">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M8,4c0-1.103-0.896-2-2-2h-6v8h8v-6z" fill="url(#SVGID_1_)"/>
-<path d="M8,4c0-1.103-0.896-2-2-2h-6v2h8z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y2="39.88">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M8,4c0-1.103-0.896-2-2-2H0v8h8V4z" fill="url(#SVGID_1_)"/>
+<path d="M8,4c0-1.103-0.896-2-2-2H0v2H8z" fill="#3C3C3C" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="0" y2="39.8752">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v3h6c0.542,0,1,0.458,1,1v6h3v-6z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M10,4c0-2.2-1.8-4-4-4H0v3h6c0.542,0,1,0.458,1,1v6h3V4z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="9.5" width="300"/>
<rect fill="#B4B4B9" height="1" width="300" y="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-29.5" y2="9.566">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-29.4995" y2="9.5663">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0.5,6c0,1.93,1.57,3.5,3.5,3.5h6v-9.5h-9.5v6z" fill="url(#SVGID_1_)"/>
-<path d="M0,0v6c0,2.2,1.8,4,4,4h6v-1h-6c-1.654,0-3-1.346-3-3v-6h-1z" fill="#B4B4B9"/>
+<path d="M0.5,6c0,1.93,1.57,3.5,3.5,3.5h6V0H0.5V6z" fill="url(#SVGID_1_)"/>
+<path d="M0,0v6c0,2.2,1.8,4,4,4h6V9H4C2.346,9,1,7.654,1,6V0H0z" fill="#B4B4B9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-29.5" y2="9.566">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-29.4995" y2="9.5663">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,9.5h6c1.93,0,3.5-1.57,3.5-3.5v-6h-9.5v9.5z" fill="url(#SVGID_1_)"/>
-<path d="M9,6c0,1.654-1.346,3-3,3h-6v1h6c2.2,0,4-1.8,4-4v-6h-1v6z" fill="#B4B4B9"/>
+<path d="M0,9.5h6c1.93,0,3.5-1.57,3.5-3.5V0H0V9.5z" fill="url(#SVGID_1_)"/>
+<path d="M9,6c0,1.654-1.346,3-3,3H0v1h6c2.2,0,4-1.8,4-4V0H9V6z" fill="#B4B4B9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-29.5" y2="9.566">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-29.4995" y2="9.5663">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 300 20" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="300"/>
<rect fill="url(#SVGID_1_)" height="20" width="300"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="-9.5" y2="29.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="-9.5" y2="29.5668">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="url(#SVGID_1_)" height="20" width="9.5" x="0.5"/>
<rect fill="#B4B4B9" height="20" width="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-9.5" y2="29.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="-9.5" y2="29.5668">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 10 20" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="10"/>
<rect fill="url(#SVGID_1_)" height="20" width="9.5"/>
<rect fill="#B4B4B9" height="20" width="1" x="9"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-9.5" y2="29.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="-9.5" y2="29.5668">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 300 10" width="300px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="300"/>
<rect fill="url(#SVGID_1_)" height="9.5" width="300" y="0.5"/>
<rect fill="#B4B4B9" height="1" width="300"/>
<rect fill="#646464" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="300" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="150" x2="150" y1="0.5" y2="39.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="149.9995" x2="149.9995" y1="0.5" y2="39.5658">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M10,0.5h-6c-1.93,0-3.5,1.57-3.5,3.5v6h9.5v-9.5z" fill="url(#SVGID_1_)"/>
-<path d="M1,4c0-1.654,1.346-3,3-3h6v-1h-6c-2.2,0-4,1.8-4,4v6h1v-6z" fill="#B4B4B9"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3,0-1.654,1.346-2,3-2h6v-1h-6z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M10,0.5H4C2.07,0.5,0.5,2.07,0.5,4v6H10V0.5z" fill="url(#SVGID_1_)"/>
+<path d="M1,4c0-1.654,1.346-3,3-3h6V0H4C1.8,0,0,1.8,0,4v6h1V4z" fill="#B4B4B9"/>
+<path d="M4,1C2.346,1,1,2.346,1,4c0-1.654,1.346-2,3-2h6V1H4z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="0.5" y2="39.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.25" x2="5.25" y1="0.5" y2="39.5658">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_textedit_normal_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M9.5,4c0-1.93-1.57-3.5-3.5-3.5h-6v9.5h9.5v-6z" fill="url(#SVGID_1_)"/>
-<path d="M10,4c0-2.2-1.8-4-4-4h-6v1h6c1.654,0,3,1.346,3,3v6h1v-6z" fill="#B4B4B9"/>
-<path d="M6,1h-6v1h6c1.654,0,3,0.346,3,2,0-1.654-1.346-3-3-3z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9.5,4c0-1.93-1.57-3.5-3.5-3.5H0V10h9.5V4z" fill="url(#SVGID_1_)"/>
+<path d="M10,4c0-2.2-1.8-4-4-4H0v1h6c1.654,0,3,1.346,3,3v6h1V4z" fill="#B4B4B9"/>
+<path d="M6,1H0v1h6c1.654,0,3,0.346,3,2C9,2.346,7.654,1,6,1z" fill="#646464" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="0.5" y2="39.57">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="0.15" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.75" x2="4.75" y1="0.5" y2="39.5658">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="0.15" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
@@ -8,11 +8,11 @@
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="40"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="40" y="39"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1,1,39,40,39,40,38,2,38,2,4,40,4,40,2,40,1" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="40,39,1,39,1,1,40,1,40,0,0,0,0,40" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="1,1 1,39 40,39 40,38 2,38 2,4 40,4 40,2 40,1 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="40,39 1,39 1,1 40,1 40,0 0,0 0,40 40,40 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1,0,2,0,4,38,4,38,38,0,38,0,39,39,39,39,1" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="0,39,39,39,39,1,0,1,0,0,40,0,40,40,0,40" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,1 0,2 0,4 38,4 38,38 0,38 0,39 39,39 39,1 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="0,39 39,39 39,1 0,1 0,0 40,0 40,40 0,40 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,1v38h58v-38h-58zm57,37h-56v-34h56v34z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,1v38h58V1H1z M58,38H2V4h56V38z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M1,1v38h58v-38h-58zm57,37h-56v-34h56v34z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,1v38h58V1H1z M58,38H2V4h56V38z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40" y="38"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="3" stroke-opacity="0.4" width="40"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="39" x="1" y="39"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,0,1,39,40,39,40,38,2,38,2,3,40,3,40,1,40,0" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,0 1,39 40,39 40,38 2,38 2,3 40,3 40,1 40,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="39" y="39"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="39"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,0,0,1,0,3,38,3,38,38,0,38,0,39,39,39,39,0" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,0 0,1 0,3 38,3 38,38 0,38 0,39 39,39 39,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="58" x="1" y="39"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1"/>
-<path d="M1,0v39h58v-39h-58zm57,38h-56v-35h56v35z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M1,0v39h58V0H1z M58,38H2V3h56V38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="58" x="1" y="39"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1"/>
-<path d="M1,0v39h58v-39h-58zm57,38h-56v-35h56v35z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M1,0v39h58V0H1z M58,38H2V3h56V38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="0.9" stop-color="#9696A0"/>
-<stop offset="0.9" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#82828C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="0.9" style="stop-color:#9696A0"/>
+<stop offset="0.9" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#82828C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="40" y="39"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40" y="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
@@ -7,11 +7,11 @@
<rect fill="#FFFFFF" fill-opacity="0.5" height="39" stroke-opacity="0.5" width="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="39" x="1" y="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
@@ -7,11 +7,11 @@
<rect fill="#9696A0" fill-opacity="0.5" height="39" stroke-opacity="0.5" width="1" x="39"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="39" y="38"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="60" y="39"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,38,1,0,0,0,0,39,59,39,59,38" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,38 1,0 0,0 0,39 59,39 59,38 " stroke-opacity="0.4"/>
<rect fill="#9696A0" fill-opacity="0.5" height="39" stroke-opacity="0.5" width="1" x="59"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="60" y="39"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="39" stroke-opacity="0.5" width="1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,0,59,38,1,38,1,39,60,39,60,0" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59,0 59,38 1,38 1,39 60,39 60,0 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
@@ -7,9 +7,9 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="40" y="38"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="40"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="39.78" y2="-0.0051">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.0005" x2="20.0005" y1="39.7783" y2="-0.0051">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="39" x="1" y="39"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="40,1,40,0,1,0,1,39,40,39,40,38,2,38,2,1" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="40,1 40,0 1,0 1,39 40,39 40,38 2,38 2,1 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="39.78" y2="-0.0051">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="39.7783" y2="-0.0051">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" height="40" width="40"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="39" y="39"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="39"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,0,0,1,38,1,38,38,0,38,0,39,39,39,39,0" stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="0,0 0,1 38,1 38,38 0,38 0,39 39,39 39,0 " stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="39.78" y2="-0.0051">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="39.7783" y2="-0.0051">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="58" x="1" y="39"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1"/>
-<path d="M1,0v39h58v-39h-58zm57,38h-56v-37h56v37z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v39h58V0H1z M58,38H2V1h56V38z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="39.78" y2="-0.0051">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="39.7783" y2="-0.0051">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" height="40" width="60"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="58" x="1" y="39"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1"/>
-<path d="M1,0v39h58v-39h-58zm57,38h-56v-37h56v37z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M1,0v39h58V0H1z M58,38H2V1h56V38z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="39.78" y2="-0.0051">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="39.7783" y2="-0.0051">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20" x2="20" y2="60.25">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19.9995" x2="19.9995" y1="0" y2="60.2536">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="2" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="20" x2="20" y1="-20" y2="40.25">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.9995" x2="19.9995" y1="-19.9995" y2="40.2541">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="40" y="38"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20" x2="20" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20" x2="20" y1="0" y2="40.1693">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="40,38,2,38,2,2,40,2,40,0,0,0,0,40"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="40,38 2,38 2,2 40,2 40,0 0,0 0,40 40,40 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20" x2="20" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="20" x2="20" y1="0" y2="40.1693">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="0,38,38,38,38,2,0,2,0,0,40,0,40,40,0,40"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" points="0,38 38,38 38,2 0,2 0,0 40,0 40,40 0,40 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="0" y2="40.1693">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M0,0v40h60v-40h-60zm58,38h-56v-36h56v36z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v40h60V0H0z M58,38H2V2h56V38z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_highlight_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y2="40.17">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="0" y2="40.1693">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M0,0v40h60v-40h-60zm58,38h-56v-36h56v36z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M0,0v40h60V0H0z M58,38H2V2h56V38z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40" y="39"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="40,39,1,39,1,1,40,1,40,0,0,0,0,40" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="40,39 1,39 1,1 40,1 40,0 0,0 0,40 40,40 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,39,39,39,39,1,0,1,0,0,40,0,40,40,0,40" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,39 39,39 39,1 0,1 0,0 40,0 40,40 0,40 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_latched_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y2="40.11">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0" y2="40.1089">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40" y="39"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="40,39,1,39,1,1,40,1,40,0,0,0,0,40" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="40,39 1,39 1,1 40,1 40,0 0,0 0,40 40,40 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,39,39,39,39,1,0,1,0,0,40,0,40,40,0,40" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,39 39,39 39,1 0,1 0,0 40,0 40,40 0,40 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_normal_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.6" height="40" stroke-opacity="0.6" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.85">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="-0.3335" y2="39.847">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="40" stroke-opacity="0.9" width="40"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="40" y="39"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="40" y2="0.0004883">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.0005" x2="20.0005" y1="40" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_cl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_cl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="40" stroke-opacity="0.9" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="40,39,1,39,1,1,40,1,40,0,0,0,0,40" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="40,39 1,39 1,1 40,1 40,0 0,0 0,40 40,40 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="40" y2="0.0004883">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="40" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_cr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_cr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="40" stroke-opacity="0.9" width="40"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,39,39,39,39,1,0,1,0,0,40,0,40,40,0,40" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0,39 39,39 39,1 0,1 0,0 40,0 40,40 0,40 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="40" y2="0.0004883">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="40" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="40" stroke-opacity="0.9" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="40" y2="0.0004883">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="40" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_titlebar_trans_pressed_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 60 40" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="60"/>
<rect fill-opacity="0.2" height="40" stroke-opacity="0.2" width="1" x="59"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.9" height="40" stroke-opacity="0.9" width="60"/>
-<path d="M0,0v40h60v-40h-60zm59,39h-58v-38h58v38z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M0,0v40h60V0H0z M59,39H1V1h58V39z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="40" y2="0.0004883">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="40" y2="4.882813e-004">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="url(#SVGID_1_)" height="9" width="50"/>
@@ -8,12 +8,12 @@
<rect fill="#FFFFFF" height="1" width="50" y="9"/>
<rect fill-opacity="0.1" height="3" stroke-opacity="0.1" width="50" y="6"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-59" y2="8.863">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-58.9995" y2="8.863">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M1,0v4c0,2.757,2.243,5,5,5h4v-9h-9z" fill="url(#SVGID_1_)"/>
-<path d="M6,7c-1.654,0-3-1.346-3-3v-4h-2v4c0,2.757,2.243,5,5,5h4v-2h-4z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,8c-2.206,0-4-1.794-4-4v-4h-1v4c0,2.757,2.243,5,5,5h4v-1h-4z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.3,2.7,6,6,6h4v-1h-4z" fill="#FFFFFF"/>
-<path d="M4,6c-1.103,0-2-0.896-2-2v-4h-1v4c0,2.757,2.243,5,5,5h4v-3h-6z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M1,0v4c0,2.757,2.243,5,5,5h4V0H1z" fill="url(#SVGID_1_)"/>
+<path d="M6,7C4.346,7,3,5.654,3,4V0H1v4c0,2.757,2.243,5,5,5h4V7H6z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,8C3.794,8,2,6.206,2,4V0H1v4c0,2.757,2.243,5,5,5h4V8H6z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.3,2.7,6,6,6h4V9H6z" fill="#FFFFFF"/>
+<path d="M4,6C2.897,6,2,5.104,2,4V0H1v4c0,2.757,2.243,5,5,5h4V6H4z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-59" y2="8.863">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-58.9995" y2="8.863">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M0,0v9h4c2.757,0,5-2.243,5-5v-4h-9z" fill="url(#SVGID_1_)"/>
-<path d="M7,0v4c0,1.654-1.346,3-3,3h-4v2h4c2.757,0,5-2.243,5-5v-4h-2z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,0v4c0,2.206-1.794,4-4,4h-4v1h4c2.757,0,5-2.243,5-5v-4h-1z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M9,0v4c0,2.757-2.243,5-5,5h-4v1h4c3.3,0,6-2.7,6-6v-4h-1z" fill="#FFFFFF"/>
-<path d="M8,0v4c0,1.104-0.897,2-2,2h-6v3h4c2.757,0,5-2.243,5-5v-4h-1z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M0,0v9h4c2.757,0,5-2.243,5-5V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M7,0v4c0,1.654-1.346,3-3,3H0v2h4c2.757,0,5-2.243,5-5V0H7z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,0v4c0,2.206-1.794,4-4,4H0v1h4c2.757,0,5-2.243,5-5V0H8z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M9,0v4c0,2.757-2.243,5-5,5H0v1h4c3.3,0,6-2.7,6-6V0H9z" fill="#FFFFFF"/>
+<path d="M8,0v4c0,1.104-0.897,2-2,2H0v3h4c2.757,0,5-2.243,5-5V0H8z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-59" y2="8.863">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-58.9995" y2="8.863">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 50 50" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="50"/>
<rect fill="url(#SVGID_1_)" height="50" width="50"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="-9" y2="58.86">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="-9" y2="58.8632">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 10 50" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="10"/>
<rect fill="url(#SVGID_1_)" height="50" width="9" x="1"/>
@@ -8,12 +8,12 @@
<rect fill="#FFFFFF" height="50" width="1"/>
<rect fill-opacity="0.1" height="50" stroke-opacity="0.1" width="1" x="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="58.86">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="-9" y2="58.8632">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 10 50" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="10"/>
<rect fill="url(#SVGID_1_)" height="50" width="9"/>
@@ -8,12 +8,12 @@
<rect fill="#FFFFFF" height="50" width="1" x="9"/>
<rect fill-opacity="0.1" height="50" stroke-opacity="0.1" width="1" x="8"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="58.86">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="-9" y2="58.8632">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="50"/>
<rect fill="url(#SVGID_1_)" height="9" width="50" y="1"/>
@@ -8,12 +8,12 @@
<rect fill="#FFFFFF" height="1" width="50"/>
<rect fill-opacity="0.1" height="3" stroke-opacity="0.1" width="50" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25" x2="25" y1="1" y2="68.86">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.9995" x2="24.9995" y1="1" y2="68.8625">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M6,1c-2.757,0-5,2.243-5,5v4h9v-9h-4z" fill="url(#SVGID_1_)"/>
-<path d="M6,1c-2.757,0-5,2.243-5,5v4h2v-4c0-1.654,1.346-3,3-3h4v-2h-4z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6,1c-2.757,0-5,2.243-5,5v4h1v-4c0-2.206,1.794-4,4-4h4v-1h-4z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M6,0c-3.3,0-6,2.7-6,6v4h1v-4c0-2.757,2.243-5,5-5h4v-1h-4z" fill="#FFFFFF"/>
-<path d="M6,1c-2.757,0-5,2.243-5,5v4h1v-4c0-1.104,0.897-2,2-2h6v-3h-4z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6,1C3.243,1,1,3.243,1,6v4h9V1H6z" fill="url(#SVGID_1_)"/>
+<path d="M6,1C3.243,1,1,3.243,1,6v4h2V6c0-1.654,1.346-3,3-3h4V1H6z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6,1C3.243,1,1,3.243,1,6v4h1V6c0-2.206,1.794-4,4-4h4V1H6z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6,0C2.7,0,0,2.7,0,6v4h1V6c0-2.757,2.243-5,5-5h4V0H6z" fill="#FFFFFF"/>
+<path d="M6,1C3.243,1,1,3.243,1,6v4h1V6c0-1.104,0.897-2,2-2h6V1H6z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="68.86">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="1" y2="68.8625">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_bg_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="10" width="10"/>
-<path d="M9,6c0-2.757-2.243-5-5-5h-4v9h9v-4z" fill="url(#SVGID_1_)"/>
-<path d="M4,1h-4v2h4c1.654,0,3,1.346,3,3v4h2v-4c0-2.757-2.243-5-5-5z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,1h-4v1h4c2.206,0,4,1.794,4,4v4h1v-4c0-2.757-2.243-5-5-5z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M4,0h-4v1h4c2.757,0,5,2.243,5,5v4h1v-4c0-3.3-2.7-6-6-6z" fill="#FFFFFF"/>
-<path d="M4,1h-4v3h6c1.103,0,2,0.896,2,2v4h1v-4c0-2.757-2.243-5-5-5z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M9,6c0-2.757-2.243-5-5-5H0v9h9V6z" fill="url(#SVGID_1_)"/>
+<path d="M4,1H0v2h4c1.654,0,3,1.346,3,3v4h2V6C9,3.243,6.757,1,4,1z" fill="#5A5A64" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,1H0v1h4c2.206,0,4,1.794,4,4v4h1V6C9,3.243,6.757,1,4,1z" fill="#5A5A64" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M4,0H0v1h4c2.757,0,5,2.243,5,5v4h1V6C10,2.7,7.3,0,4,0z" fill="#FFFFFF"/>
+<path d="M4,1H0v3h6c1.103,0,2,0.896,2,2v4h1V6C9,3.243,6.757,1,4,1z" fill-opacity="0.1" stroke-opacity="0.1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="68.86">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.0043" stop-color="#CCCCCC"/>
-<stop offset="0.35" stop-color="#FFFFFF"/>
-<stop offset="0.7" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.5" x2="4.5" y1="1" y2="68.8625">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.0043" style="stop-color:#CCCCCC"/>
+<stop offset="0.35" style="stop-color:#FFFFFF"/>
+<stop offset="0.7" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_pri_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_pri_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,24 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 25 50" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="25"/>
<rect fill-opacity="0.3" height="5" stroke-opacity="0.3" width="25" y="45"/>
<rect fill-opacity="0.5" height="5" stroke-opacity="0.5" width="25" y="44"/>
<rect fill-opacity="0.1" height="3" stroke-opacity="0.1" width="25" y="3"/>
<rect fill-opacity="0.3" height="2" stroke-opacity="0.3" width="25" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="0.0004883" y2="48.07">
-<stop offset="0" stop-color="#6BD7FF"/>
-<stop offset="0.3" stop-color="#00BAFF"/>
-<stop offset="0.7" stop-color="#0083CA"/>
-<stop offset="1" stop-color="#00BAFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.4995" x2="12.4995" y1="4.882813e-004" y2="48.0745">
+<stop offset="0" style="stop-color:#6BD7FF"/>
+<stop offset="0.3" style="stop-color:#00BAFF"/>
+<stop offset="0.7" style="stop-color:#0083CA"/>
+<stop offset="1" style="stop-color:#00BAFF"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="4" width="25" y="44"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="12.5" x2="12.5" y2="48.07">
-<stop offset="0" stop-color="#6BD7FF"/>
-<stop offset="0.3" stop-color="#00BAFF"/>
-<stop offset="0.7" stop-color="#0083CA"/>
-<stop offset="1" stop-color="#00BAFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="12.4995" x2="12.4995" y1="0" y2="48.074">
+<stop offset="0" style="stop-color:#6BD7FF"/>
+<stop offset="0.3" style="stop-color:#00BAFF"/>
+<stop offset="0.7" style="stop-color:#0083CA"/>
+<stop offset="1" style="stop-color:#00BAFF"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="4" width="25"/>
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="25" y="4"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_pri_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_pri_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 25 50" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="25"/>
-<path d="M0,45c0,3,1.8,5,4,5h21v-5h-25z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M0,44c0,3,1.8,5,4,5h21v-5h-25z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<polygon fill-opacity="0.1" points="3,3,3,45,6,45,6,6,25,6,25,3" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.3" points="3,3,3,45,5,45,5,5,25,5,25,3" stroke-opacity="0.3"/>
-<path d="M4,44v-40h21v-4h-21c-2.2,0-4,1.8-4,4v40c0,2.2,1.8,4,4,4h21v-4h-21z" fill="url(#SVGID_1_)"/>
+<path d="M0,45c0,3,1.8,5,4,5h21v-5H0z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M0,44c0,3,1.8,5,4,5h21v-5H0z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill-opacity="0.1" points="3,3 3,45 6,45 6,6 25,6 25,3 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.3" points="3,3 3,45 5,45 5,5 25,5 25,3 " stroke-opacity="0.3"/>
+<path d="M4,44V4h21V0H4C1.8,0,0,1.8,0,4v40c0,2.2,1.8,4,4,4h21v-4H4z" fill="url(#SVGID_1_)"/>
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="21" x="4" y="4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y2="48.07">
-<stop offset="0" stop-color="#6BD7FF"/>
-<stop offset="0.3" stop-color="#00BAFF"/>
-<stop offset="0.7" stop-color="#0083CA"/>
-<stop offset="1" stop-color="#00BAFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="0" y2="48.0744">
+<stop offset="0" style="stop-color:#6BD7FF"/>
+<stop offset="0.3" style="stop-color:#00BAFF"/>
+<stop offset="0.7" style="stop-color:#0083CA"/>
+<stop offset="1" style="stop-color:#00BAFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_pri_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_pri_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 25 50" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="25"/>
-<path d="M0,45v5h21c2.2,0,4-2,4-5h-25z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M0,44v5h21c2.2,0,4-2,4-5h-25z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<polygon fill-opacity="0.1" points="0,3,0,6,19,6,19,45,22,45,22,3" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.3" points="0,3,0,5,20,5,20,45,22,45,22,3" stroke-opacity="0.3"/>
-<path d="M21,0h-21v4h21v40h-21v4h21c2.2,0,4-1.8,4-4v-40c0-2.2-1.8-4-4-4z" fill="url(#SVGID_1_)"/>
+<path d="M0,45v5h21c2.2,0,4-2,4-5H0z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M0,44v5h21c2.2,0,4-2,4-5H0z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill-opacity="0.1" points="0,3 0,6 19,6 19,45 22,45 22,3 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.3" points="0,3 0,5 20,5 20,45 22,45 22,3 " stroke-opacity="0.3"/>
+<path d="M21,0H0v4h21v40H0v4h21c2.2,0,4-1.8,4-4V4C25,1.8,23.2,0,21,0z" fill="url(#SVGID_1_)"/>
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="21" y="4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y2="48.07">
-<stop offset="0" stop-color="#6BD7FF"/>
-<stop offset="0.3" stop-color="#00BAFF"/>
-<stop offset="0.7" stop-color="#0083CA"/>
-<stop offset="1" stop-color="#00BAFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="0" y2="48.0744">
+<stop offset="0" style="stop-color:#6BD7FF"/>
+<stop offset="0.3" style="stop-color:#00BAFF"/>
+<stop offset="0.7" style="stop-color:#0083CA"/>
+<stop offset="1" style="stop-color:#00BAFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_sec_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_sec_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 25 50" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="25"/>
<rect fill="url(#SVGID_1_)" fill-opacity="0.8" height="48" stroke-opacity="0.8" width="25"/>
<rect fill="none" height="50" width="25"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y2="48">
-<stop offset="0" stop-color="#193C70"/>
-<stop offset="1" stop-color="#18234D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.4995" x2="12.4995" y1="0" y2="48.0005">
+<stop offset="0" style="stop-color:#193C70"/>
+<stop offset="1" style="stop-color:#18234D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_sec_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_sec_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 25 50" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="25"/>
-<path d="M4,0c-2.2,0-4,1.801-4,4v40c0,2.201,1.8,4,4,4h21v-48h-21z" fill="url(#SVGID_1_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M4,0C1.8,0,0,1.801,0,4v40c0,2.201,1.8,4,4,4h21V0H4z" fill="url(#SVGID_1_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<rect fill="none" height="50" width="25"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y2="48">
-<stop offset="0" stop-color="#193C70"/>
-<stop offset="1" stop-color="#18234D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="0" y2="48.0005">
+<stop offset="0" style="stop-color:#193C70"/>
+<stop offset="1" style="stop-color:#18234D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_sec_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_highlight_sec_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 25 50" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="50" width="25"/>
-<path d="M21,0h-21v48h21c2.2,0,4-1.799,4-4v-40c0-2.199-1.8-4-4-4z" fill="url(#SVGID_1_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M21,0H0v48h21c2.2,0,4-1.799,4-4V4C25,1.801,23.2,0,21,0z" fill="url(#SVGID_1_)" fill-opacity="0.8" stroke-opacity="0.8"/>
<rect fill="none" height="50" width="25"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y2="48">
-<stop offset="0" stop-color="#193C70"/>
-<stop offset="1" stop-color="#18234D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="0" y2="48.0005">
+<stop offset="0" style="stop-color:#193C70"/>
+<stop offset="1" style="stop-color:#18234D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="9.5" width="50"/>
<rect fill="#FFFFFF" height="1" width="50" y="9"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 47.9308 -77.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-86.87" x2="-17.87" y1="-22.93" y2="-22.93">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 47.9308 -77.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-86.8726" x2="-17.8726" y1="-22.9307" y2="-22.9307">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_bl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_bl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0.5,0v3.585c0,3.267,2.648,5.915,5.914,5.915h3.586v-9.5h-9.5z" fill="url(#SVGID_1_)"/>
-<path d="M6,9c-2.757,0-5-2.243-5-5v-4h-1v4c0,3.313,2.687,6,6,6h4v-1h-4z" fill="#FFFFFF"/>
+<path d="M0.5,0v3.585C0.5,6.852,3.148,9.5,6.414,9.5H10V0H0.5z" fill="url(#SVGID_1_)"/>
+<path d="M6,9C3.243,9,1,6.757,1,4V0H0v4c0,3.313,2.687,6,6,6h4V9H6z" fill="#FFFFFF"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 27.9303 -97.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-106.9" x2="-37.87" y1="-22.68" y2="-22.68">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 27.9303 -97.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-106.8726" x2="-37.8726" y1="-22.6802" y2="-22.6802">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_br.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_br.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M9.5,0v3.585c0,3.267-2.648,5.915-5.914,5.915h-3.586v-9.5h9.5z" fill="url(#SVGID_1_)"/>
-<path d="M4,9c2.757,0,5-2.243,5-5v-4h1v4c0,3.313-2.687,6-6,6h-4v-1h4z" fill="#FFFFFF"/>
+<path d="M9.5,0v3.585C9.5,6.852,6.852,9.5,3.586,9.5H0V0H9.5z" fill="url(#SVGID_1_)"/>
+<path d="M4,9c2.757,0,5-2.243,5-5V0h1v4c0,3.313-2.687,6-6,6H0V9H4z" fill="#FFFFFF"/>
<defs>
-<linearGradient gradientTransform="matrix(4.375628e-008 -1 -1 -4.375628e-008 -17.9298 -97.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-106.9" x2="-37.87" y1="-22.68" y2="-22.68">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(4.375628e-008 -1 -1 -4.375628e-008 -17.9298 -97.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-106.8726" x2="-37.8726" y1="-22.6797" y2="-22.6797">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 50 50" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="50" width="50"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 27.9308 -57.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-116.9" x2="-47.87" y1="-2.931" y2="-2.931">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 27.9308 -57.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-116.8726" x2="-47.8726" y1="-2.9307" y2="-2.9307">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 10 50" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="50" width="9.5" x="0.5" y="0"/>
<rect fill="#FFFFFF" height="50" width="1"/>
<defs>
-<linearGradient gradientTransform="matrix(4.375628e-008 -1 -1 -4.375628e-008 2.0702 -77.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-136.9" x2="-67.87" y1="-3.18" y2="-3.18">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(4.375628e-008 -1 -1 -4.375628e-008 2.0702 -77.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-136.8726" x2="-67.8726" y1="-3.1797" y2="-3.1797">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="50px" version="1.1" viewBox="0 0 10 50" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="50" width="9.5" y="0"/>
<rect fill="#FFFFFF" height="50" width="1" x="9"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 7.9303 -77.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-136.9" x2="-67.87" y1="-3.18" y2="-3.18">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 7.9303 -77.3719)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-136.8726" x2="-67.8726" y1="-3.1802" y2="-3.1802">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 50 10" width="50px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="9.5" width="50" y="0.5"/>
<rect fill="#FFFFFF" height="1" width="50"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 47.9308 -77.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-146.9" x2="-77.87" y1="-22.93" y2="-22.93">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 47.9308 -77.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-146.8726" x2="-77.8726" y1="-22.9307" y2="-22.9307">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_tl.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_tl.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10,0.5h-3.586c-3.266,0-5.914,2.648-5.914,5.914v3.586h9.5v-9.5z" fill="url(#SVGID_1_)"/>
-<path d="M1,6c0-2.757,2.243-5,5-5h4v-1h-4c-3.313,0-6,2.687-6,6v4h1v-4z" fill="#FFFFFF"/>
+<path d="M10,0.5H6.414C3.148,0.5,0.5,3.148,0.5,6.414V10H10V0.5z" fill="url(#SVGID_1_)"/>
+<path d="M1,6c0-2.757,2.243-5,5-5h4V0H6C2.687,0,0,2.687,0,6v4h1V6z" fill="#FFFFFF"/>
<defs>
-<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 27.9308 -97.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-166.9" x2="-97.87" y1="-22.68" y2="-22.68">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 -1 1 -4.371139e-008 27.9308 -97.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-166.8726" x2="-97.8726" y1="-22.6807" y2="-22.6807">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_tr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tumbler_overlay_tr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0.5h3.586c3.266,0,5.914,2.648,5.914,5.914v3.586h-9.5v-9.5z" fill="url(#SVGID_1_)"/>
-<path d="M9,6c0-2.757-2.243-5-5-5h-4v-1h4c3.313,0,6,2.687,6,6v4h-1v-4z" fill="#FFFFFF"/>
+<path d="M0,0.5h3.586C6.852,0.5,9.5,3.148,9.5,6.414V10H0V0.5z" fill="url(#SVGID_1_)"/>
+<path d="M9,6c0-2.757-2.243-5-5-5H0V0h4c3.313,0,6,2.687,6,6v4H9V6z" fill="#FFFFFF"/>
<defs>
-<linearGradient gradientTransform="matrix(4.375628e-008 -1 -1 -4.375628e-008 -17.9303 -97.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-166.9" x2="-97.87" y1="-22.68" y2="-22.68">
-<stop offset="0" stop-color="#505050" stop-opacity="0.7"/>
-<stop offset="0.3" stop-color="#FFFFFF" stop-opacity="0"/>
-<stop offset="0.7" stop-color="#F9F9F9" stop-opacity="0"/>
-<stop offset="1" stop-color="#3C3C3C" stop-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(4.375628e-008 -1 -1 -4.375628e-008 -17.9303 -97.3724)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-166.8726" x2="-97.8726" y1="-22.6802" y2="-22.6802">
+<stop offset="0" style="stop-color:#505050;stop-opacity:0.7"/>
+<stop offset="0.3" style="stop-color:#FFFFFF;stop-opacity:0"/>
+<stop offset="0.7" style="stop-color:#F9F9F9;stop-opacity:0"/>
+<stop offset="1" style="stop-color:#3C3C3C;stop-opacity:0.7"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tuner_c.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tuner_c.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,32 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="34" width="34"/>
<rect fill="#141414" fill-opacity="0.2" height="34" stroke-opacity="0.2" width="34"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-33.17" x2="66.84" y1="17" y2="17">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-33.166" x2="66.8408" y1="17" y2="17">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="32" width="34" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-33" x2="67.17" y1="32" y2="32">
-<stop offset="0" stop-color="#505050"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#505050"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-32.999" x2="67.1671" y1="32" y2="32">
+<stop offset="0" style="stop-color:#505050"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#505050"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" fill-opacity="0.8" height="2" width="34" y="31"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17" x2="17" y1="15" y2="1">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" fill-opacity="0.3" height="14" width="34" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-33.17" x2="67" y1="17" y2="17">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-33.166" x2="67.0032" y1="17" y2="17">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="32" width="34" y="1"/>
<rect fill-opacity="0.1" height="5" width="34" y="1"/>
@@ -34,4 +34,4 @@
<rect fill-opacity="0.1" height="3" width="34" y="1"/>
<rect fill-opacity="0.1" height="2" width="34" y="1"/>
<rect fill-opacity="0.1" height="1" width="34" y="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tuner_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tuner_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="34" width="34" y="0"/>
<rect fill="#141414" fill-opacity="0.2" height="34" stroke-opacity="0.2" width="34"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.834" x2="100.8" y1="17" y2="17">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0.834" x2="100.8408" y1="17" y2="17">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="32" width="33" x="1" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1" x2="101.2" y1="32" y2="32">
-<stop offset="0" stop-color="#505050"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#505050"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="1" x2="101.1662" y1="32" y2="32">
+<stop offset="0" style="stop-color:#505050"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#505050"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" fill-opacity="0.8" height="2" width="33" x="1" y="31"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.5" x2="17.5" y1="15" y2="1">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" fill-opacity="0.3" height="14" width="33" x="1" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="0.834" x2="101" y1="17" y2="17">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="0.834" x2="101.0032" y1="17" y2="17">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="32" width="33" x="1" y="1"/>
-<polygon fill-opacity="0.1" points="1,1,1,33,3,33,4,6,34,6,34,1"/>
-<polygon fill-opacity="0.1" points="1,1,1,33,2,33,2,5,34,5,34,1"/>
+<polygon fill-opacity="0.1" points="1,1 1,33 3,33 4,6 34,6 34,1 "/>
+<polygon fill-opacity="0.1" points="1,1 1,33 2,33 2,5 34,5 34,1 "/>
<rect fill-opacity="0.1" height="3" width="33" x="1" y="1"/>
<rect fill-opacity="0.1" height="2" width="33" x="1" y="1"/>
<rect fill-opacity="0.1" height="1" width="33" x="1" y="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tuner_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_fr_tuner_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,38 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="34" width="34"/>
<rect fill="#141414" fill-opacity="0.2" height="34" stroke-opacity="0.2" width="34"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-67.17" x2="32.84" y1="17" y2="17">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.5" stop-color="#78787D"/>
-<stop offset="1" stop-color="#282828"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-67.166" x2="32.8408" y1="17" y2="17">
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.5" style="stop-color:#78787D"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="32" width="33" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-67" x2="33.17" y1="32" y2="32">
-<stop offset="0" stop-color="#505050"/>
-<stop offset="0.5" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#505050"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-66.999" x2="33.1671" y1="32" y2="32">
+<stop offset="0" style="stop-color:#505050"/>
+<stop offset="0.5" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#505050"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" fill-opacity="0.8" height="2" width="33" y="31"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="16.5" x2="16.5" y1="15" y2="1">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#141414"/>
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" fill-opacity="0.3" height="14" width="33" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-67.17" x2="33" y1="17" y2="17">
-<stop offset="0" stop-color="#000000" stop-opacity="0.8"/>
-<stop offset="0.2" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="0.4" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.6" stop-color="#000000" stop-opacity="0"/>
-<stop offset="0.8" stop-color="#000000" stop-opacity="0.2"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-67.166" x2="33.0032" y1="17" y2="17">
+<stop offset="0" style="stop-color:#000000;stop-opacity:0.8"/>
+<stop offset="0.2" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="0.4" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.6" style="stop-color:#000000;stop-opacity:0"/>
+<stop offset="0.8" style="stop-color:#000000;stop-opacity:0.2"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0.8"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="32" width="33" y="1"/>
-<polygon fill-opacity="0.1" points="0,1,0,6,30,6,31,33,33,33,33,1"/>
-<polygon fill-opacity="0.1" points="0,1,0,5,32,5,32,33,33,33,33,1"/>
+<polygon fill-opacity="0.1" points="0,1 0,6 30,6 31,33 33,33 33,1 "/>
+<polygon fill-opacity="0.1" points="0,1 0,5 32,5 32,33 33,33 33,1 "/>
<rect fill-opacity="0.1" height="3" width="33" y="1"/>
<rect fill-opacity="0.1" height="2" width="33" y="1"/>
<rect fill-opacity="0.1" height="1" width="33" y="1"/>
<rect fill="none" height="34" width="34"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_bg.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_bg.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="url(#SVGID_1_)" points="3,4,1,4,1,11,3,11,3,15,29,15,29,0,3,0"/>
+<polygon fill="url(#SVGID_1_)" points="3,4 1,4 1,11 3,11 3,15 29,15 29,0 3,0 "/>
<rect fill-opacity="0.2" height="8" stroke-opacity="0.2" width="2" x="22" y="3.5"/>
-<polygon fill-opacity="0.2" points="9,3.5,9,6.5,6,6.5,6,8.5,9,8.5,9,11.5,11,11.5,11,8.5,14,8.5,14,6.5,11,6.5,11,3.5" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="9,3.5 9,6.5 6,6.5 6,8.5 9,8.5 9,11.5 11,11.5 11,8.5 14,8.5 14,6.5 11,6.5 11,3.5 " stroke-opacity="0.2"/>
<rect fill="none" height="15" width="30"/>
<defs>
<linearGradient gradientTransform="matrix(0 -1 1 0 -1172 -152)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-167" x2="-152" y1="1187" y2="1187">
-<stop offset="0" stop-color="#C8C8C8"/>
-<stop offset="1" stop-color="#B4B4B4"/>
+<stop offset="0" style="stop-color:#C8C8C8"/>
+<stop offset="1" style="stop-color:#B4B4B4"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_full.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_full.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="url(#SVGID_1_)" points="3,4,1,4,1,11,3,11,3,15,29,15,29,0,3,0"/>
+<polygon fill="url(#SVGID_1_)" points="3,4 1,4 1,11 3,11 3,15 29,15 29,0 3,0 "/>
<rect fill-opacity="0.2" height="8" stroke-opacity="0.2" width="2" x="22" y="3.5"/>
-<polygon fill-opacity="0.2" points="9,3.5,9,6.5,6,6.5,6,8.5,9,8.5,9,11.5,11,11.5,11,8.5,14,8.5,14,6.5,11,6.5,11,3.5" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="9,3.5 9,6.5 6,6.5 6,8.5 9,8.5 9,11.5 11,11.5 11,8.5 14,8.5 14,6.5 11,6.5 11,3.5 " stroke-opacity="0.2"/>
<rect fill="none" height="15" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -407.5 -1291.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1291" x2="-1306" y1="422.5" y2="422.5">
-<stop offset="0" stop-color="#92DE2F"/>
-<stop offset="1" stop-color="#19B016"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -407.5 -1291.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1291.4995" x2="-1306.4995" y1="422.499" y2="422.499">
+<stop offset="0" style="stop-color:#92DE2F"/>
+<stop offset="1" style="stop-color:#19B016"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_low.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_low.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="url(#SVGID_1_)" points="3,4,1,4,1,11,3,11,3,15,29,15,29,0,3,0"/>
+<polygon fill="url(#SVGID_1_)" points="3,4 1,4 1,11 3,11 3,15 29,15 29,0 3,0 "/>
<rect fill-opacity="0.2" height="8" stroke-opacity="0.2" width="2" x="22" y="3.5"/>
-<polygon fill-opacity="0.2" points="9,3.5,9,6.5,6,6.5,6,8.5,9,8.5,9,11.5,11,11.5,11,8.5,14,8.5,14,6.5,11,6.5,11,3.5" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="9,3.5 9,6.5 6,6.5 6,8.5 9,8.5 9,11.5 11,11.5 11,8.5 14,8.5 14,6.5 11,6.5 11,3.5 " stroke-opacity="0.2"/>
<rect fill="none" height="15" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -999 57)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="57" x2="42" y1="1014" y2="1014">
-<stop offset="0" stop-color="#FA772B"/>
-<stop offset="1" stop-color="#CC2500"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -999 57)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="57" x2="42" y1="1013.999" y2="1013.999">
+<stop offset="0" style="stop-color:#FA772B"/>
+<stop offset="1" style="stop-color:#CC2500"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_medium.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_battery_medium.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="url(#SVGID_1_)" points="3,4,1,4,1,11,3,11,3,15,29,15,29,0,3,0"/>
+<polygon fill="url(#SVGID_1_)" points="3,4 1,4 1,11 3,11 3,15 29,15 29,0 3,0 "/>
<rect fill-opacity="0.2" height="8" stroke-opacity="0.2" width="2" x="22" y="3.5"/>
-<polygon fill-opacity="0.2" points="9,3.5,9,6.5,6,6.5,6,8.5,9,8.5,9,11.5,11,11.5,11,8.5,14,8.5,14,6.5,11,6.5,11,3.5" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="9,3.5 9,6.5 6,6.5 6,8.5 9,8.5 9,11.5 11,11.5 11,8.5 14,8.5 14,6.5 11,6.5 11,3.5 " stroke-opacity="0.2"/>
<rect fill="none" height="15" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -407.5 -1291.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1291" x2="-1306" y1="422.5" y2="422.5">
-<stop offset="0" stop-color="#FAD347"/>
-<stop offset="1" stop-color="#FA9600"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -407.5 -1291.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1291.4995" x2="-1306.4995" y1="422.499" y2="422.499">
+<stop offset="0" style="stop-color:#FAD347"/>
+<stop offset="1" style="stop-color:#FA9600"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_cal_bg_lsc.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_cal_bg_lsc.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="360px" version="1.1" viewBox="0 0 640 360" width="640px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="360" width="640"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="320" x2="320" y2="360">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6EB"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="319.9995" x2="319.9995" y1="0" y2="360.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6EB"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_cal_bg_prt.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_cal_bg_prt.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="640px" version="1.1" viewBox="0 0 360 640" width="360px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="640" width="360"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="180" x2="180" y2="640">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6EB"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="179.9995" x2="179.9995" y1="0" y2="640.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6EB"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_cal_event_ind.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_cal_event_ind.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="#66CCAD" points="10,0,0,10"/>
+<polygon fill="#66CCAD" points="10,0 0,10 10,10 "/>
<rect fill="none" height="10" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_bg.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_bg.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,107 +1,109 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.2" stroke-opacity="0.2">
-<path d="M108,216c-59.55,0-108-48.4-108-108,0-59.55,48.45-108,108-108s108,48.45,108,108c0,59.6-48.4,108-108,108z"/>
+<path d="M108,216C48.448,216,0,167.553,0,108C0,48.448,48.448,0,108,0c59.553,0,108,48.448,108,108 C216,167.553,167.553,216,108,216L108,216z"/>
</g>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-97.04" x2="-97.04" y1="627.5" y2="841.1">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DCDCDC"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-97.0405" x2="-97.0405" y1="627.5244" y2="841.1494">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
</linearGradient>
-<path d="M108,214.8c-58.9,0-106.8-47.9-106.8-106.8s47.91-106.8,106.8-106.8c58.9,0,106.8,47.92,106.8,106.8,0,58.9-47.9,106.8-106.8,106.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-97.04" x2="-97.04" y1="631.1" y2="837.6">
-<stop offset="0" stop-color="#F0F0FA"/>
-<stop offset="1" stop-color="#B4B4B9"/>
+<path d="M108,214.813C49.102,214.813,1.187,166.896,1.187,108C1.187,49.104,49.102,1.187,108,1.187 c58.898,0,106.813,47.917,106.813,106.813C214.813,166.896,166.898,214.813,108,214.813L108,214.813z" fill="url(#SVGID_1_)"/>
+</g>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-97.04" x2="-97.04" y1="631.0742" y2="837.5801">
+<stop offset="0" style="stop-color:#F0F0FA"/>
+<stop offset="1" style="stop-color:#B4B4B9"/>
</linearGradient>
-<path d="M108,211.3c-56.93,0-103.3-46.4-103.3-103.3,0-56.93,46.32-103.3,103.3-103.3,56.93,0,103.3,46.32,103.3,103.3,0,56.9-46.4,103.3-103.3,103.3z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-97.04" x2="-97.04" y1="637" y2="831.6">
-<stop offset="0" stop-color="#64646E"/>
-<stop offset="1" stop-color="#282832"/>
+<path d="M108,211.253C51.066,211.253,4.747,164.934,4.747,108C4.747,51.066,51.066,4.747,108,4.747 c56.934,0,103.253,46.319,103.253,103.253C211.253,164.934,164.934,211.253,108,211.253L108,211.253z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-97.0405" x2="-97.0405" y1="636.9922" y2="831.6289">
+<stop offset="0" style="stop-color:#64646E"/>
+<stop offset="1" style="stop-color:#282832"/>
</linearGradient>
-<path d="M108,205.3c-53.66,0-97.32-43.66-97.32-97.32s43.66-97.32,97.32-97.32,97.3,43.66,97.3,97.32-43.6,97.3-97.3,97.3z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-97.04" x2="-97.04" y1="638.2" y2="830.4">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#BEBEC3"/>
+<path d="M108,205.318c-53.662,0-97.319-43.656-97.319-97.318S54.338,10.681,108,10.681 S205.318,54.338,205.318,108S161.662,205.318,108,205.318L108,205.318z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-97.04" x2="-97.04" y1="638.1758" y2="830.4395">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#BEBEC3"/>
</linearGradient>
-<path d="M108,204.1c-53.01,0-96.13-43.12-96.13-96.13s43.12-96.13,96.13-96.13,96.1,43.12,96.1,96.13-43.1,96.1-96.1,96.1z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-97.04" x2="-97.04" y1="648.8" y2="819.7">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M108,204.132c-53.007,0-96.132-43.124-96.132-96.132S54.993,11.868,108,11.868 S204.132,54.992,204.132,108S161.007,204.132,108,204.132L108,204.132z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-97.04" x2="-97.04" y1="648.8262" y2="819.7285">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
-<path d="M108,193.5c-47.12,0-85.45-38.33-85.45-85.45s38.33-85.45,85.45-85.45,85.5,38.33,85.5,85.45-38.4,85.5-85.5,85.5z" fill="url(#SVGID_5_)"/>
-<path d="M108,110.5c-1.378,0-2.5-1.121-2.5-2.5s1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5s-1.1,2.5-2.5,2.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M108,21.36c-47.77,0-86.64,38.86-86.64,86.64,0,47.77,38.87,86.64,86.64,86.64s86.64-38.86,86.64-86.64c0-47.77-38.8-86.64-86.6-86.64zm0,172.1c-47.12,0-85.45-38.33-85.45-85.45s38.33-85.45,85.45-85.45,85.5,38.33,85.5,85.45-38.4,85.5-85.5,85.5z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.5 -0.866 0.866 -0.5 68.4609 406.6086)" width="15.43" x="143.9" y="181.8"/>
-<rect fill="#3C3C3C" height="3.56" transform="matrix(0.5 0.866 -0.866 0.5 60.2984 -39.5302)" width="15.43" x="56.67" y="30.68"/>
-<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.866 -0.5 0.5 -0.866 266.7078 374.6873)" width="15.43" x="175.8" y="149.8"/>
-<rect fill="#3C3C3C" height="3.56" transform="matrix(0.866 0.5 -0.5 0.866 36.5413 -7.6013)" width="15.43" x="24.74" y="62.6"/>
-<rect fill="#3C3C3C" height="3.559" width="15.43" x="187.5" y="106.2"/>
-<rect fill="#3C3C3C" height="3.561" width="15.43" x="13.06" y="106.2"/>
-<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.866 0.5 -0.5 -0.866 374.6927 28.3759)" width="15.43" x="175.8" y="62.61"/>
-<rect fill="#3C3C3C" height="3.559" transform="matrix(0.866 -0.5001 0.5001 0.866 -71.4675 36.5472)" width="15.43" x="24.74" y="149.8"/>
-<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.5 0.866 -0.866 -0.5 255.5207 -82.6233)" width="15.43" x="143.9" y="30.67"/>
-<rect fill="#3C3C3C" height="3.56" transform="matrix(0.5 -0.866 0.866 0.5 -126.7627 147.5275)" width="15.43" x="56.67" y="181.8"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.9945 -0.1045 0.1045 0.9945 -12.172 2.5552)" width="9.494" x="13.55" y="116.8"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9945 0.1045 -0.1045 -0.9945 404.624 175.9475)" width="9.493" x="193" y="97.98"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.9781 -0.2081 0.2081 0.9781 -25.9399 6.8879)" width="9.495" x="15.02" y="126.2"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.9781 0.2081 -0.2081 -0.9781 406.7398 135.6946)" width="9.493" x="191.5" y="88.65"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.951 -0.3091 0.3091 0.951 -40.9071 13.5191)" width="9.495" x="17.47" y="135.3"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.951 0.3091 -0.3091 -0.951 402.8447 96.429)" width="9.493" x="189" y="79.54"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 -0.4069 0.4069 0.9135 -56.6546 22.9349)" width="9.495" x="20.85" y="144.1"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9135 0.4068 -0.4068 -0.9135 393.347 59.0183)" width="9.493" x="185.7" y="70.73"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.809 -0.5878 0.5878 0.809 -87.9595 51.3425)" width="9.496" x="30.28" y="160.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.809 0.5879 -0.5879 -0.809 359.6953 -6.954)" width="9.493" x="176.2" y="54.37"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.7431 -0.6692 0.6692 0.7431 -102.1394 70.6601)" width="9.496" x="36.21" y="167.8"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.7431 0.6692 -0.6692 -0.7431 336.9637 -34.0923)" width="9.494" x="170.3" y="47.04"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.6693 -0.743 0.743 0.6693 -114.2852 93.2842)" width="9.495" x="42.9" y="174.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.6691 0.7431 -0.7431 -0.6691 311.4429 -56.7351)" width="9.492" x="163.6" y="40.37"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.5879 -0.8089 0.8089 0.5879 -123.7347 119.0488)" width="9.496" x="50.23" y="180.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.19" stroke-opacity="0.4" transform="matrix(-0.5877 0.8091 -0.8091 -0.5877 283.9651 -74.6803)" width="9.494" x="156.3" y="34.42"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.4068 -0.9135 0.9135 0.4068 -131.6361 178.0922)" width="9.495" x="66.57" y="189.8"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.4068 0.9135 -0.9135 -0.4068 226.9329 -96.1835)" width="9.495" x="139.9" y="25"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.309 -0.9511 0.9511 0.309 -128.9221 210.1123)" width="9.497" x="75.38" y="193.2"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.309 0.9511 -0.9511 -0.309 198.983 -100.1454)" width="9.495" x="131.1" y="21.62"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.2079 -0.9781 0.9781 0.2079 -121.2426 242.7201)" width="9.498" x="84.5" y="195.6"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2078 0.9782 -0.9782 -0.2078 172.4302 -100.1058)" width="9.495" x="122" y="19.18"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.1045 -0.9945 0.9945 0.1045 -108.351 275.0744)" width="9.494" x="93.82" y="197.1"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.1044 0.9945 -0.9945 -0.1044 147.8838 -96.5788)" width="9.493" x="112.7" y="17.7"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.1045 -0.9945 0.9945 -0.1045 -66.9229 335.1464)" width="9.495" x="112.7" y="197.1"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.1048 0.9945 -0.9945 0.1048 106.4455 -81.6544)" width="9.494" x="93.83" y="17.7"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2079 -0.9782 0.9782 -0.2079 -38.8436 360.9971)" width="9.495" x="122" y="195.6"/>
+<path d="M108,193.451c-47.117,0-85.451-38.334-85.451-85.451S60.883,22.549,108,22.549 S193.451,60.883,193.451,108S155.117,193.451,108,193.451L108,193.451z" fill="url(#SVGID_5_)"/>
+<path d="M108,110.5c-1.378,0-2.5-1.121-2.5-2.5s1.122-2.5,2.5-2.5 c1.379,0,2.5,1.121,2.5,2.5S109.379,110.5,108,110.5L108,110.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M108,21.362c-47.771,0-86.637,38.865-86.637,86.638 c0,47.771,38.866,86.637,86.637,86.637c47.771,0,86.637-38.865,86.637-86.637C194.637,60.228,155.771,21.362,108,21.362z M108,193.451c-47.117,0-85.451-38.334-85.451-85.451S60.883,22.549,108,22.549S193.451,60.883,193.451,108 S155.117,193.451,108,193.451z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.5 -0.866 0.866 -0.5 68.4609 406.6086)" width="15.43" x="143.893" y="181.762"/>
+<rect fill="#3C3C3C" height="3.56" transform="matrix(0.5 0.866 -0.866 0.5 60.2984 -39.5302)" width="15.428" x="56.669" y="30.675"/>
+<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.866 -0.5 0.5 -0.866 266.7078 374.6873)" width="15.428" x="175.837" y="149.833"/>
+<rect fill="#3C3C3C" height="3.56" transform="matrix(0.866 0.5 -0.5 0.866 36.5413 -7.6013)" width="15.427" x="24.741" y="62.604"/>
+<rect fill="#3C3C3C" height="3.559" width="15.428" x="187.518" y="106.22"/>
+<rect fill="#3C3C3C" height="3.561" width="15.427" x="13.055" y="106.22"/>
+<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.866 0.5 -0.5 -0.866 374.6927 28.3759)" width="15.43" x="175.83" y="62.611"/>
+<rect fill="#3C3C3C" height="3.559" transform="matrix(0.866 -0.5001 0.5001 0.866 -71.4675 36.5472)" width="15.428" x="24.741" y="149.836"/>
+<rect fill="#3C3C3C" height="3.559" transform="matrix(-0.5 0.866 -0.866 -0.5 255.5207 -82.6233)" width="15.426" x="143.899" y="30.673"/>
+<rect fill="#3C3C3C" height="3.56" transform="matrix(0.5 -0.866 0.866 0.5 -126.7627 147.5275)" width="15.426" x="56.671" y="181.766"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.9945 -0.1045 0.1045 0.9945 -12.172 2.5552)" width="9.494" x="13.55" y="116.835"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9945 0.1045 -0.1045 -0.9945 404.624 175.9475)" width="9.493" x="192.955" y="97.982"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.9781 -0.2081 0.2081 0.9781 -25.9399 6.8879)" width="9.495" x="15.025" y="126.157"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.9781 0.2081 -0.2081 -0.9781 406.7398 135.6946)" width="9.493" x="191.485" y="88.65"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.951 -0.3091 0.3091 0.951 -40.9071 13.5191)" width="9.495" x="17.469" y="135.279"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.951 0.3091 -0.3091 -0.951 402.8447 96.429)" width="9.493" x="189.037" y="79.535"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 -0.4069 0.4069 0.9135 -56.6546 22.9349)" width="9.495" x="20.854" y="144.091"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9135 0.4068 -0.4068 -0.9135 393.347 59.0183)" width="9.493" x="185.653" y="70.728"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.809 -0.5878 0.5878 0.809 -87.9595 51.3425)" width="9.496" x="30.277" y="160.428"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.809 0.5879 -0.5879 -0.809 359.6953 -6.954)" width="9.493" x="176.231" y="54.374"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.7431 -0.6692 0.6692 0.7431 -102.1394 70.6601)" width="9.496" x="36.208" y="167.76"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.7431 0.6692 -0.6692 -0.7431 336.9637 -34.0923)" width="9.494" x="170.279" y="47.045"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.6693 -0.743 0.743 0.6693 -114.2852 93.2842)" width="9.495" x="42.902" y="174.433"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.6691 0.7431 -0.7431 -0.6691 311.4429 -56.7351)" width="9.492" x="163.605" y="40.371"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.5879 -0.8089 0.8089 0.5879 -123.7347 119.0488)" width="9.496" x="50.226" y="180.371"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.19" stroke-opacity="0.4" transform="matrix(-0.5877 0.8091 -0.8091 -0.5877 283.9651 -74.6803)" width="9.494" x="156.265" y="34.423"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.4068 -0.9135 0.9135 0.4068 -131.6361 178.0922)" width="9.495" x="66.567" y="189.813"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.4068 0.9135 -0.9135 -0.4068 226.9329 -96.1835)" width="9.495" x="139.949" y="24.999"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.309 -0.9511 0.9511 0.309 -128.9221 210.1123)" width="9.497" x="75.378" y="193.179"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.309 0.9511 -0.9511 -0.309 198.983 -100.1454)" width="9.495" x="131.126" y="21.624"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.2079 -0.9781 0.9781 0.2079 -121.2426 242.7201)" width="9.498" x="84.496" y="195.628"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2078 0.9782 -0.9782 -0.2078 172.4302 -100.1058)" width="9.495" x="122.006" y="19.181"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.1045 -0.9945 0.9945 0.1045 -108.351 275.0744)" width="9.494" x="93.824" y="197.11"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.1044 0.9945 -0.9945 -0.1044 147.8838 -96.5788)" width="9.493" x="112.68" y="17.703"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.1045 -0.9945 0.9945 -0.1045 -66.9229 335.1464)" width="9.495" x="112.68" y="197.11"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.1048 0.9945 -0.9945 0.1048 106.4455 -81.6544)" width="9.494" x="93.83" y="17.704"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2079 -0.9782 0.9782 -0.2079 -38.8436 360.9971)" width="9.495" x="122.005" y="195.634"/>
<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.208 0.9781 -0.9781 0.208 90.0209 -71.635)" width="9.494" x="84.5" y="19.18"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.3089 -0.9511 0.9511 -0.3089 -6.4807 382.8722)" width="9.496" x="131.1" y="193.2"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.3091 0.951 -0.951 0.3091 76.4876 -60.8538)" width="9.494" x="75.38" y="21.62"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.4066 -0.9136 0.9136 -0.4066 29.5685 400.0058)" width="9.494" x="139.9" y="189.8"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.4068 0.9135 -0.9135 0.4068 65.6878 -49.9597)" width="9.493" x="66.57" y="25.01"/>
-<polygon fill="#50505A" fill-opacity="0.4" points="157.7,177.5,163.3,185.2,164.3,184.5,158.7,176.8" stroke-opacity="0.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.5877 0.8091 -0.8091 0.5877 51.0092 -30.0421)" width="9.493" x="50.24" y="34.44"/>
-<polygon fill="#50505A" fill-opacity="0.4" points="164.7,171.9,171.1,179,172,178.2,165.6,171.1" stroke-opacity="0.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.6691 0.7432 -0.7432 0.6691 46.2126 -21.8499)" width="9.494" x="42.9" y="40.38"/>
-<polygon fill="#50505A" fill-opacity="0.4" points="171.1,165.6,178.2,172,179,171.1,171.9,164.7" stroke-opacity="0.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.7431 0.6692 -0.6692 0.7431 42.4082 -15.1748)" width="9.493" x="36.22" y="47.05"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.809 -0.5878 0.5878 -0.809 232.7322 397.6849)" width="9.496" x="176.2" y="160.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.809 0.5878 -0.5878 0.809 39.0125 -10.0897)" width="9.494" x="30.28" y="54.39"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.9135 -0.4067 0.4067 -0.9135 305.4916 354.3081)" width="9.494" x="185.7" y="144.1"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 0.4068 -0.4068 0.9135 31.2234 -4.2442)" width="9.494" x="20.85" y="70.72"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9511 -0.309 0.309 -0.9511 336.1146 324.9646)" width="9.495" x="189" y="135.3"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.951 0.3091 -0.3091 0.951 25.8537 -2.9432)" width="9.495" x="17.47" y="79.54"/>
-<polygon fill="#50505A" fill-opacity="0.4" points="191.5,126.3,200.7,128.3,201,127.2,191.7,125.2" stroke-opacity="0.4"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9781 0.208 -0.208 0.9781 18.9976 -2.1597)" width="9.495" x="15.02" y="88.65"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9945 -0.1045 0.1045 -0.9945 382.0551 254.872)" width="9.496" x="193" y="116.8"/>
-<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.9945 0.1046 -0.1046 0.9945 10.4121 -1.3735)" width="9.494" x="13.55" y="97.98"/>
-<rect fill="#3C3C3C" height="15.43" width="3.561" x="106.2" y="187.5"/>
-<rect fill="#3C3C3C" height="15.43" width="3.561" x="106.2" y="13.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-62.14" x2="-62.14" y1="729" y2="673.4">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.3089 -0.9511 0.9511 -0.3089 -6.4807 382.8722)" width="9.496" x="131.111" y="193.198"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.3091 0.951 -0.951 0.3091 76.4876 -60.8538)" width="9.494" x="75.38" y="21.623"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.4066 -0.9136 0.9136 -0.4066 29.5685 400.0058)" width="9.494" x="139.941" y="189.807"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.4068 0.9135 -0.9135 0.4068 65.6878 -49.9597)" width="9.493" x="66.567" y="25.006"/>
+<polygon fill="#50505A" fill-opacity="0.4" points="157.745,177.479 163.326,185.161 164.288,184.465 158.707,176.785 " stroke-opacity="0.4"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.5877 0.8091 -0.8091 0.5877 51.0092 -30.0421)" width="9.493" x="50.235" y="34.435"/>
+<polygon fill="#50505A" fill-opacity="0.4" points="164.734,171.898 171.089,178.955 171.973,178.162 165.619,171.107 " stroke-opacity="0.4"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.6691 0.7432 -0.7432 0.6691 46.2126 -21.8499)" width="9.494" x="42.896" y="40.377"/>
+<polygon fill="#50505A" fill-opacity="0.4" points="171.104,165.618 178.16,171.973 178.955,171.091 171.9,164.738 " stroke-opacity="0.4"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.7431 0.6692 -0.6692 0.7431 42.4082 -15.1748)" width="9.493" x="36.221" y="47.052"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.809 -0.5878 0.5878 -0.809 232.7322 397.6849)" width="9.496" x="176.228" y="160.437"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.809 0.5878 -0.5878 0.809 39.0125 -10.0897)" width="9.494" x="30.284" y="54.39"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.9135 -0.4067 0.4067 -0.9135 305.4916 354.3081)" width="9.494" x="185.654" y="144.094"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 0.4068 -0.4068 0.9135 31.2234 -4.2442)" width="9.494" x="20.847" y="70.72"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9511 -0.309 0.309 -0.9511 336.1146 324.9646)" width="9.495" x="189.04" y="135.276"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.951 0.3091 -0.3091 0.951 25.8537 -2.9432)" width="9.495" x="17.469" y="79.535"/>
+<polygon fill="#50505A" fill-opacity="0.4" points="191.458,126.348 200.746,128.32 200.994,127.16 191.709,125.188 " stroke-opacity="0.4"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9781 0.208 -0.208 0.9781 18.9976 -2.1597)" width="9.495" x="15.02" y="88.654"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9945 -0.1045 0.1045 -0.9945 382.0551 254.872)" width="9.496" x="192.955" y="116.836"/>
+<rect fill="#50505A" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.9945 0.1046 -0.1046 0.9945 10.4121 -1.3735)" width="9.494" x="13.553" y="97.979"/>
+<rect fill="#3C3C3C" height="15.428" width="3.561" x="106.22" y="187.518"/>
+<rect fill="#3C3C3C" height="15.429" width="3.561" x="106.22" y="13.055"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-62.1353" x2="-62.1353" y1="729.041" y2="673.397">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
-<path d="M112.5,72.41v21.79s1.226,8.864,8.374,8.864h18.81c6.527,0,9.225-4.021,11.05-6.262,1.561-1.922,4.435-4.383,11.45-4.383,7.84,0,11.57-7.127,10.99-12.4-1.231-11.31-12.54-29.43-34.06-33.14,0,0-9.769-2.158-9.76,9.759,0.004,5.232-2.896,7.687-6.205,7.804-0.724,0.025-0.479,0.022-1.477,0.022-4.3-0.04-9.1,2.02-9.1,7.91z" fill="url(#SVGID_6_)"/>
-<path d="M101.4,35.37h-0.048l-2.712,1.464-0.408-1.608,3.408-1.824h1.8v15.6h-2.04v-13.63z" fill="#505050"/>
-<path d="M109.1,49v-1.296l1.656-1.608c3.984-3.792,5.809-5.809,5.809-8.161,0-1.584-0.744-3.048-3.072-3.048-1.416,0-2.592,0.72-3.313,1.32l-0.672-1.488c1.057-0.888,2.615-1.584,4.393-1.584,3.359,0,4.775,2.304,4.775,4.536,0,2.88-2.088,5.208-5.377,8.377l-1.223,1.152v0.048h6.982v1.75h-10.02z" fill="#505050"/>
-<path d="M36.15,113.6c0.456,0.047,0.984,0,1.704-0.072,1.224-0.168,2.376-0.646,3.264-1.512,1.032-0.938,1.776-2.305,2.064-4.127h-0.072c-0.864,1.055-2.112,1.657-3.696,1.657-2.784,0-4.584-2.113-4.584-4.777,0-2.952,2.136-5.544,5.329-5.544s5.161,2.568,5.161,6.601c0,3.41-1.152,5.809-2.688,7.297-1.2,1.176-2.856,1.896-4.536,2.088-0.768,0.12-1.44,0.146-1.944,0.12v-1.729h-0.002v-0.143zm0.77-9c0,1.944,1.176,3.313,3,3.313,1.416,0,2.52-0.696,3.072-1.632,0.12-0.216,0.192-0.432,0.192-0.792,0-2.665-0.984-4.705-3.216-4.705-1.77,0-3.04,1.6-3.04,3.8z" fill="#505050"/>
-<path d="M111.8,168.9c-0.433-0.025-0.983,0.023-1.584,0.119-3.336,0.527-5.064,2.928-5.425,5.521h0.048c0.744-1.01,2.064-1.824,3.792-1.824,2.76,0,4.705,2.018,4.705,5.04,0,2.881-1.944,5.521-5.208,5.521-3.312,0-5.497-2.593-5.497-6.647,0-3.072,1.08-5.496,2.64-7.032,1.296-1.271,3.024-2.063,4.993-2.307,0.624-0.096,1.152-0.117,1.536-0.117v1.732zm-0.6,9c0-2.23-1.271-3.576-3.214-3.576-1.272,0-2.472,0.77-3.048,1.92-0.12,0.24-0.216,0.527-0.216,0.912,0.024,2.568,1.224,4.488,3.456,4.488,1.7,0.1,2.9-1.4,2.9-3.7z" fill="#505050"/>
-<path d="M171.4,112.6c0.602,0.359,1.969,0.959,3.457,0.959,2.688,0,3.553-1.703,3.528-3.021-0.024-2.185-1.992-3.121-4.032-3.121h-1.176v-1.584h1.176c1.536,0,3.48-0.792,3.48-2.64,0-1.248-0.793-2.352-2.736-2.352-1.248,0-2.449,0.552-3.121,1.032l-0.576-1.536c0.842-0.6,2.426-1.2,4.105-1.2,3.072,0,4.464,1.824,4.464,3.72,0,1.632-0.983,3-2.88,3.696v0.048c1.92,0.36,3.455,1.8,3.48,3.984,0,2.497-1.971,4.684-5.689,4.684-1.752,0-3.287-0.555-4.057-1.059l0.5-1.6z" fill="#505050"/>
-</svg>
\ No newline at end of file
+<path d="M112.538,72.408c0,0,0,17.998,0,21.79s1.226,8.864,8.374,8.864c7.146,0,12.288,0,18.814,0 c6.527,0,9.225-4.021,11.047-6.262c1.561-1.922,4.435-4.383,11.449-4.383c7.84,0,11.566-7.127,10.991-12.402 c-1.231-11.309-12.544-29.426-34.063-33.137c0,0-9.769-2.158-9.76,9.759c0.004,5.232-2.896,7.687-6.205,7.804 c-0.724,0.025-0.479,0.022-1.477,0.022C117.299,64.464,112.538,66.523,112.538,72.408z" fill="url(#SVGID_6_)"/>
+<path d="M101.353,35.367h-0.048l-2.712,1.464l-0.408-1.608l3.408-1.824h1.8V49h-2.04V35.367z" fill="#505050"/>
+<path d="M109.08,49v-1.296l1.656-1.608c3.984-3.792,5.809-5.809,5.809-8.161c0-1.584-0.744-3.048-3.072-3.048 c-1.416,0-2.592,0.72-3.313,1.32l-0.672-1.488c1.057-0.888,2.615-1.584,4.393-1.584c3.359,0,4.775,2.304,4.775,4.536 c0,2.88-2.088,5.208-5.377,8.377l-1.223,1.152v0.048h6.982V49H109.08z" fill="#505050"/>
+<path d="M36.148,113.557c0.456,0.047,0.984,0,1.704-0.072c1.224-0.168,2.376-0.646,3.264-1.512 c1.032-0.938,1.776-2.305,2.064-4.127h-0.072c-0.864,1.055-2.112,1.657-3.696,1.657c-2.784,0-4.584-2.113-4.584-4.777 c0-2.952,2.136-5.544,5.329-5.544c3.193,0,5.161,2.568,5.161,6.601c0,3.41-1.152,5.809-2.688,7.297 c-1.2,1.176-2.856,1.896-4.536,2.088c-0.768,0.12-1.44,0.146-1.944,0.12v-1.729h-0.002V113.557z M36.917,104.603 c0,1.944,1.176,3.313,3,3.313c1.416,0,2.52-0.696,3.072-1.632c0.12-0.216,0.192-0.432,0.192-0.792c0-2.665-0.984-4.705-3.216-4.705 C38.188,100.787,36.917,102.371,36.917,104.603z" fill="#505050"/>
+<path d="M111.829,168.932c-0.433-0.025-0.983,0.023-1.584,0.119c-3.336,0.527-5.064,2.928-5.425,5.521h0.048 c0.744-1.01,2.064-1.824,3.792-1.824c2.76,0,4.705,2.018,4.705,5.04c0,2.881-1.944,5.521-5.208,5.521 c-3.312,0-5.497-2.593-5.497-6.647c0-3.072,1.08-5.496,2.64-7.032c1.296-1.271,3.024-2.063,4.993-2.307 c0.624-0.096,1.152-0.117,1.536-0.117V168.932z M111.229,177.932c0-2.23-1.271-3.576-3.214-3.576c-1.272,0-2.472,0.77-3.048,1.92 c-0.12,0.24-0.216,0.527-0.216,0.912c0.024,2.568,1.224,4.488,3.456,4.488C110.005,181.676,111.229,180.164,111.229,177.932z" fill="#505050"/>
+<path d="M171.428,112.645c0.602,0.359,1.969,0.959,3.457,0.959c2.688,0,3.553-1.703,3.528-3.021 c-0.024-2.185-1.992-3.121-4.032-3.121h-1.176v-1.584h1.176c1.536,0,3.48-0.792,3.48-2.64c0-1.248-0.793-2.352-2.736-2.352 c-1.248,0-2.449,0.552-3.121,1.032l-0.576-1.536c0.842-0.6,2.426-1.2,4.105-1.2c3.072,0,4.464,1.824,4.464,3.72 c0,1.632-0.983,3-2.88,3.696v0.048c1.92,0.36,3.455,1.8,3.48,3.984c0,2.497-1.971,4.684-5.689,4.684 c-1.752,0-3.287-0.555-4.057-1.059L171.428,112.645z" fill="#505050"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_hour.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_hour.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M108,115c-3.859,0-7-3.141-7-7,0-2.064,0.926-4.029,2.5-5.354v-50.6h9v50.65c1.574,1.324,2.5,3.289,2.5,5.354,0,3.9-3.1,7-7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M111.5,103.1v-50.1h-7v50.13c-1.512,1.089-2.5,2.86-2.5,4.866,0,3.313,2.687,6,6,6s6-2.687,6-6c0-2-1-3.8-2.5-4.9z" fill="url(#SVGID_1_)"/>
+<path d="M108,115c-3.859,0-7-3.141-7-7c0-2.064,0.926-4.029,2.5-5.354V52h9v50.646c1.574,1.324,2.5,3.289,2.5,5.354 C115,111.859,111.859,115,108,115L108,115z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M111.5,103.134V53h-7v50.134c-1.512,1.089-2.5,2.86-2.5,4.866c0,3.313,2.687,6,6,6s6-2.687,6-6 C114,105.994,113.012,104.223,111.5,103.134z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="216" width="216"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="108" x2="108" y1="53.58" y2="114">
-<stop offset="0" stop-color="#505050"/>
-<stop offset="1" stop-color="#3C3C3C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="107.9995" x2="107.9995" y1="53.5806" y2="114.0006">
+<stop offset="0" style="stop-color:#505050"/>
+<stop offset="1" style="stop-color:#3C3C3C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_min.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_min.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M108,113c-2.757,0-5-2.243-5-5,0-1.065,0.353-2.107,1-2.973v-76h8v76.03c0.647,0.865,1,1.907,1,2.973,0,2.8-2.2,5-5,5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M111,105.4v-75.4h-6v75.38c-0.615,0.703-1,1.612-1,2.62,0,2.209,1.791,4,4,4s4-1.791,4-4c0-1-0.4-1.9-1-2.6z" fill="url(#SVGID_1_)"/>
+<path d="M108,113c-2.757,0-5-2.243-5-5c0-1.065,0.353-2.107,1-2.973V29h8v76.027c0.647,0.865,1,1.907,1,2.973 C113,110.757,110.757,113,108,113L108,113z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M111,105.38V30h-6v75.38c-0.615,0.703-1,1.612-1,2.62c0,2.209,1.791,4,4,4s4-1.791,4-4 C112,106.992,111.615,106.083,111,105.38z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="216" width="216"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="108" x2="108" y1="30" y2="112">
-<stop offset="0" stop-color="#505050"/>
-<stop offset="1" stop-color="#3C3C3C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="107.9995" x2="107.9995" y1="30" y2="112.0005">
+<stop offset="0" style="stop-color:#505050"/>
+<stop offset="1" style="stop-color:#3C3C3C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_sec.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_day_sec.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -475.6777 -632.6445)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-583.7" x2="-583.7" y1="-659.4" y2="-763.6">
-<stop offset="0" stop-color="#FF0000"/>
-<stop offset="1" stop-color="#A8000B"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -475.6777 -632.6445)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-583.6777" x2="-583.6777" y1="-659.3721" y2="-763.5606">
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#A8000B"/>
</linearGradient>
-<path d="M98.18,108c0.001,3.633,1.978,6.797,4.909,8.494l0.001,9.506c-0.001,2.701,2.207,4.91,4.908,4.91,2.701-0.001,4.909-2.209,4.908-4.908l0.001-9.506c2.933-1.698,4.908-4.863,4.909-8.496-0.001-4.863-3.54-8.889-8.182-9.67v-72.15h-3.273v72.15c-4.6,0.78-8.12,4.77-8.12,9.67z" fill="url(#SVGID_1_)"/>
-<path d="M108,132c-3.309,0-6-2.691-6-6v-8.79c-3.098-2.022-5-5.499-5-9.21,0-4.934,3.318-9.26,8-10.58v-72.42h6v72.42c4.682,1.324,8,5.65,8,10.58,0,3.711-1.902,7.188-5,9.21v8.8c0,3.3-2.7,6-6,6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="108" x2="108" y1="26.55" y2="131">
-<stop offset="0" stop-color="#FF0000"/>
-<stop offset="1" stop-color="#C10007"/>
+<path d="M98.182,108c0.001,3.633,1.978,6.797,4.909,8.494l0.001,9.506c-0.001,2.701,2.207,4.91,4.908,4.91 c2.701-0.001,4.909-2.209,4.908-4.908l0.001-9.506c2.933-1.698,4.908-4.863,4.909-8.496c-0.001-4.863-3.54-8.889-8.182-9.67V26.182 h-3.273V98.33C101.723,99.107,98.183,103.137,98.182,108z" fill="url(#SVGID_1_)"/>
+<path d="M108,132c-3.309,0-6-2.691-6-6v-8.79c-3.098-2.022-5-5.499-5-9.21c0-4.934,3.318-9.26,8-10.584V25h6v72.416 c4.682,1.324,8,5.65,8,10.584c0,3.711-1.902,7.188-5,9.21V126C114,129.309,111.309,132,108,132L108,132z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="108.0005" x2="107.9992" y1="26.5474" y2="131.0065">
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#C10007"/>
</linearGradient>
-<path d="M118,108c0-4.838-3.436-8.873-8-9.799v-72.2h-4v72.2c-4.564,0.926-8,4.961-8,9.799,0,3.699,2.014,6.922,5,8.651v9.3c0,2.762,2.238,5,5,5s5-2.238,5-5v-9.349c3-1.8,5-5,5-8.7z" fill="url(#SVGID_2_)"/>
+<path d="M118,108c0-4.838-3.436-8.873-8-9.799V26h-4v72.201c-4.564,0.926-8,4.961-8,9.799 c0,3.699,2.014,6.922,5,8.651V126c0,2.762,2.238,5,5,5s5-2.238,5-5v-9.349C115.986,114.922,118,111.699,118,108z" fill="url(#SVGID_2_)"/>
<circle cx="108" cy="108" fill="#1E1E28" fill-opacity="0.2" r="6" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="108" x2="108" y1="103.3" y2="113">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="107.9995" x2="107.9995" y1="103.2773" y2="113.0161">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<circle cx="108" cy="108" fill="url(#SVGID_3_)" r="5"/>
<rect fill="none" height="216" width="216"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_bg.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_bg.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,105 +1,107 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.2" stroke-opacity="0.2">
-<path d="M108,216c-59.55,0-108-48.4-108-108,0-59.55,48.45-108,108-108s108,48.45,108,108c0,59.6-48.4,108-108,108z"/>
+<path d="M108,216C48.448,216,0,167.551,0,108C0,48.448,48.448,0,108,0c59.553,0,108,48.448,108,108 C216,167.551,167.553,216,108,216L108,216z"/>
</g>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-97.04" x2="-97.04" y1="627.5" y2="841.1">
-<stop offset="0" stop-color="#7D7D8A"/>
-<stop offset="0.7" stop-color="#51515C"/>
-<stop offset="1" stop-color="#535361"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-97.0405" x2="-97.0405" y1="627.5244" y2="841.1494">
+<stop offset="0" style="stop-color:#7D7D8A"/>
+<stop offset="0.7" style="stop-color:#51515C"/>
+<stop offset="1" style="stop-color:#535361"/>
</linearGradient>
-<path d="M108,214.8c-58.9,0-106.8-47.9-106.8-106.8s47.91-106.8,106.8-106.8c58.9,0,106.8,47.92,106.8,106.8,0,58.9-47.9,106.8-106.8,106.8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-97.04" x2="-97.04" y1="631.1" y2="837.6">
-<stop offset="0" stop-color="#63636D"/>
-<stop offset="1" stop-color="#3C3C46"/>
+<path d="M108,214.813C49.102,214.813,1.187,166.896,1.187,108C1.187,49.103,49.102,1.187,108,1.187 c58.898,0,106.813,47.917,106.813,106.814C214.813,166.896,166.898,214.813,108,214.813L108,214.813z" fill="url(#SVGID_1_)"/>
+</g>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-97.04" x2="-97.04" y1="631.0742" y2="837.5791">
+<stop offset="0" style="stop-color:#63636D"/>
+<stop offset="1" style="stop-color:#3C3C46"/>
</linearGradient>
-<path d="M108,211.3c-56.93,0-103.3-46.4-103.3-103.3,0-56.93,46.32-103.3,103.3-103.3,56.93,0,103.3,46.32,103.3,103.3,0,56.9-46.4,103.3-103.3,103.3z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-97.04" x2="-97.04" y1="637" y2="831.6">
-<stop offset="0" stop-color="#64646E"/>
-<stop offset="1" stop-color="#282832"/>
+<path d="M108,211.252C51.066,211.252,4.747,164.934,4.747,108C4.747,51.066,51.066,4.747,108,4.747 c56.934,0,103.253,46.319,103.253,103.253C211.253,164.934,164.934,211.252,108,211.252L108,211.252z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-97.0405" x2="-97.0405" y1="636.9922" y2="831.6289">
+<stop offset="0" style="stop-color:#64646E"/>
+<stop offset="1" style="stop-color:#282832"/>
</linearGradient>
-<path d="M108,205.3c-53.66,0-97.32-43.66-97.32-97.32s43.66-97.32,97.32-97.32,97.3,43.66,97.3,97.32-43.6,97.3-97.3,97.3z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-97.04" x2="-97.04" y1="638.2" y2="830.4">
-<stop offset="0" stop-color="#8C8C96"/>
-<stop offset="1" stop-color="#464650"/>
+<path d="M108,205.318c-53.662,0-97.319-43.656-97.319-97.318c0-53.663,43.657-97.319,97.319-97.319 S205.318,54.338,205.318,108S161.662,205.318,108,205.318L108,205.318z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-97.04" x2="-97.04" y1="638.1758" y2="830.4375">
+<stop offset="0" style="stop-color:#8C8C96"/>
+<stop offset="1" style="stop-color:#464650"/>
</linearGradient>
-<path d="M108,204.1c-53.01,0-96.13-43.12-96.13-96.13s43.12-96.13,96.13-96.13,96.1,43.12,96.1,96.13c0,53-43.1,96.1-96.1,96.1z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-97.04" x2="-97.04" y1="648.8" y2="819.7">
-<stop offset="0" stop-color="#63636D"/>
-<stop offset="1" stop-color="#3C3C46"/>
+<path d="M108,204.131c-53.007,0-96.132-43.123-96.132-96.13c0-53.008,43.125-96.132,96.132-96.132 S204.132,54.993,204.132,108C204.132,161.008,161.007,204.131,108,204.131L108,204.131z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-97.04" x2="-97.04" y1="648.8271" y2="819.7295">
+<stop offset="0" style="stop-color:#63636D"/>
+<stop offset="1" style="stop-color:#3C3C46"/>
</linearGradient>
-<path d="M108,193.5c-47.12,0-85.45-38.33-85.45-85.45s38.33-85.45,85.45-85.45,85.5,38.33,85.5,85.45c0,47.1-38.4,85.5-85.5,85.5z" fill="url(#SVGID_5_)"/>
-<path d="M108,110.5c-1.379,0-2.5-1.121-2.5-2.5s1.121-2.5,2.5-2.5,2.5,1.122,2.5,2.5c0,1.4-1.1,2.5-2.5,2.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M108,21.36c-47.77,0-86.64,38.86-86.64,86.64,0,47.77,38.87,86.64,86.64,86.64s86.64-38.86,86.64-86.64c0-47.77-38.8-86.64-86.6-86.64zm0,172.1c-47.12,0-85.45-38.33-85.45-85.45s38.33-85.45,85.45-85.45,85.5,38.33,85.5,85.45c0,47.1-38.4,85.5-85.5,85.5z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.56" stroke-opacity="0.8" transform="matrix(-0.5 -0.866 0.866 -0.5 68.4681 406.6088)" width="15.43" x="143.9" y="181.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.56" stroke-opacity="0.8" transform="matrix(0.5 0.866 -0.866 0.5 60.2984 -39.5302)" width="15.43" x="56.67" y="30.68"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(-0.866 -0.5 0.5 -0.866 266.6895 374.6906)" width="15.43" x="175.8" y="149.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.561" stroke-opacity="0.8" transform="matrix(0.866 0.5 -0.5 0.866 36.5441 -7.6019)" width="15.43" x="24.74" y="62.6"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" width="15.43" x="187.5" y="106.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" width="15.43" x="13.06" y="106.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.56" stroke-opacity="0.8" transform="matrix(-0.866 0.5 -0.5 -0.866 374.6954 28.3853)" width="15.43" x="175.8" y="62.61"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(0.866 -0.5001 0.5001 0.866 -71.4675 36.5472)" width="15.43" x="24.74" y="149.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(-0.5 0.866 -0.866 -0.5 255.5207 -82.6233)" width="15.43" x="143.9" y="30.67"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(0.5 -0.866 0.866 0.5 -126.7609 147.5267)" width="15.43" x="56.67" y="181.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.9945 -0.1045 0.1045 0.9945 -12.172 2.5552)" width="9.494" x="13.55" y="116.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9945 0.1046 -0.1046 -0.9945 404.6251 175.9457)" width="9.493" x="193" y="97.99"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.9781 -0.2081 0.2081 0.9781 -25.9399 6.8879)" width="9.495" x="15.02" y="126.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.9781 0.208 -0.208 -0.9781 406.7261 135.7319)" width="9.493" x="191.5" y="88.66"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.951 -0.3093 0.3093 0.951 -40.9299 13.531)" width="9.495" x="17.47" y="135.3"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.951 0.3091 -0.3091 -0.951 402.8447 96.429)" width="9.493" x="189" y="79.54"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 -0.4069 0.4069 0.9135 -56.6546 22.9349)" width="9.495" x="20.85" y="144.1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9135 0.4068 -0.4068 -0.9135 393.347 59.0183)" width="9.493" x="185.7" y="70.73"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.809 -0.5878 0.5878 0.809 -87.9594 51.3471)" width="9.496" x="30.28" y="160.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.809 0.5878 -0.5878 -0.809 359.6845 -6.925)" width="9.495" x="176.2" y="54.38"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.7431 -0.6692 0.6692 0.7431 -102.1351 70.6538)" width="9.495" x="36.21" y="167.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.7431 0.6691 -0.6691 -0.7431 336.9733 -34.0724)" width="9.496" x="170.3" y="47.05"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.6692 -0.7431 0.7431 0.6692 -114.3025 93.2898)" width="9.494" x="42.88" y="174.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.669 0.7432 -0.7432 -0.669 311.4287 -56.7255)" width="9.492" x="163.6" y="40.38"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.588 -0.8089 0.8089 0.588 -123.7234 119.0539)" width="9.495" x="50.25" y="180.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.5878 0.809 -0.809 -0.5878 283.9982 -74.6479)" width="9.495" x="156.3" y="34.44"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.4068 -0.9135 0.9135 0.4068 -131.6285 178.0948)" width="9.495" x="66.57" y="189.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.4068 0.9135 -0.9135 -0.4068 226.9239 -96.162)" width="9.495" x="139.9" y="25"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.309 -0.9511 0.9511 0.309 -128.9304 210.1194)" width="9.497" x="75.38" y="193.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.309 0.9511 -0.9511 -0.309 198.9847 -100.1457)" width="9.495" x="131.1" y="21.62"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.2079 -0.9781 0.9781 0.2079 -121.2481 242.7239)" width="9.495" x="84.5" y="195.6"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2078 0.9782 -0.9782 -0.2078 172.4302 -100.1058)" width="9.495" x="122" y="19.18"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.1045 -0.9945 0.9945 0.1045 -108.3508 275.0743)" width="9.493" x="93.83" y="197.1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.1044 0.9945 -0.9945 -0.1044 147.8838 -96.5788)" width="9.493" x="112.7" y="17.7"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="116.3,193,117.3,202.5,118.5,202.4,117.5,192.9" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.1047 0.9945 -0.9945 0.1047 106.4509 -81.6482)" width="9.494" x="93.82" y="17.7"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2079 -0.9781 0.9781 -0.2079 -38.8295 361.0101)" width="9.497" x="122" y="195.6"/>
+<path d="M108,193.451c-47.117,0-85.451-38.334-85.451-85.451c0-47.118,38.334-85.451,85.451-85.451 S193.451,60.882,193.451,108C193.451,155.117,155.117,193.451,108,193.451L108,193.451z" fill="url(#SVGID_5_)"/>
+<path d="M108,110.5c-1.379,0-2.5-1.121-2.5-2.5s1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5 C110.5,109.379,109.379,110.5,108,110.5L108,110.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M108,21.362c-47.771,0-86.637,38.865-86.637,86.638 c0,47.771,38.866,86.637,86.637,86.637c47.771,0,86.637-38.865,86.637-86.637C194.637,60.228,155.771,21.362,108,21.362z M108,193.451c-47.117,0-85.451-38.334-85.451-85.451c0-47.118,38.334-85.451,85.451-85.451S193.451,60.882,193.451,108 C193.451,155.117,155.117,193.451,108,193.451z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.56" stroke-opacity="0.8" transform="matrix(-0.5 -0.866 0.866 -0.5 68.4681 406.6088)" width="15.431" x="143.892" y="181.76"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.56" stroke-opacity="0.8" transform="matrix(0.5 0.866 -0.866 0.5 60.2984 -39.5302)" width="15.428" x="56.669" y="30.675"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(-0.866 -0.5 0.5 -0.866 266.6895 374.6906)" width="15.43" x="175.83" y="149.836"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.561" stroke-opacity="0.8" transform="matrix(0.866 0.5 -0.5 0.866 36.5441 -7.6019)" width="15.426" x="24.743" y="62.605"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" width="15.428" x="187.518" y="106.22"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" width="15.427" x="13.055" y="106.22"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.56" stroke-opacity="0.8" transform="matrix(-0.866 0.5 -0.5 -0.866 374.6954 28.3853)" width="15.428" x="175.831" y="62.611"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(0.866 -0.5001 0.5001 0.866 -71.4675 36.5472)" width="15.428" x="24.741" y="149.836"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(-0.5 0.866 -0.866 -0.5 255.5207 -82.6233)" width="15.426" x="143.899" y="30.673"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="3.559" stroke-opacity="0.8" transform="matrix(0.5 -0.866 0.866 0.5 -126.7609 147.5267)" width="15.426" x="56.671" y="181.764"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.9945 -0.1045 0.1045 0.9945 -12.172 2.5552)" width="9.494" x="13.55" y="116.835"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9945 0.1046 -0.1046 -0.9945 404.6251 175.9457)" width="9.493" x="192.951" y="97.991"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.9781 -0.2081 0.2081 0.9781 -25.9399 6.8879)" width="9.495" x="15.025" y="126.157"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.9781 0.208 -0.208 -0.9781 406.7261 135.7319)" width="9.493" x="191.48" y="88.658"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.951 -0.3093 0.3093 0.951 -40.9299 13.531)" width="9.495" x="17.467" y="135.275"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.951 0.3091 -0.3091 -0.951 402.8447 96.429)" width="9.493" x="189.037" y="79.535"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 -0.4069 0.4069 0.9135 -56.6546 22.9349)" width="9.495" x="20.854" y="144.091"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9135 0.4068 -0.4068 -0.9135 393.347 59.0183)" width="9.493" x="185.653" y="70.728"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.809 -0.5878 0.5878 0.809 -87.9594 51.3471)" width="9.496" x="30.28" y="160.424"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.809 0.5878 -0.5878 -0.809 359.6845 -6.925)" width="9.495" x="176.22" y="54.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.7431 -0.6692 0.6692 0.7431 -102.1351 70.6538)" width="9.495" x="36.209" y="167.761"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.7431 0.6691 -0.6691 -0.7431 336.9733 -34.0724)" width="9.496" x="170.278" y="47.048"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.6692 -0.7431 0.7431 0.6692 -114.3025 93.2898)" width="9.494" x="42.884" y="174.434"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.669 0.7432 -0.7432 -0.669 311.4287 -56.7255)" width="9.492" x="163.598" y="40.383"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.588 -0.8089 0.8089 0.588 -123.7234 119.0539)" width="9.495" x="50.252" y="180.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.5878 0.809 -0.809 -0.5878 283.9982 -74.6479)" width="9.495" x="156.269" y="34.435"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(0.4068 -0.9135 0.9135 0.4068 -131.6285 178.0948)" width="9.495" x="66.566" y="189.803"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.4068 0.9135 -0.9135 -0.4068 226.9239 -96.162)" width="9.495" x="139.937" y="25.005"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.309 -0.9511 0.9511 0.309 -128.9304 210.1194)" width="9.497" x="75.379" y="193.189"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.309 0.9511 -0.9511 -0.309 198.9847 -100.1457)" width="9.495" x="131.127" y="21.624"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.2079 -0.9781 0.9781 0.2079 -121.2481 242.7239)" width="9.495" x="84.5" y="195.633"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2078 0.9782 -0.9782 -0.2078 172.4302 -100.1058)" width="9.495" x="122.006" y="19.181"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.1045 -0.9945 0.9945 0.1045 -108.3508 275.0743)" width="9.493" x="93.826" y="197.111"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(-0.1044 0.9945 -0.9945 -0.1044 147.8838 -96.5788)" width="9.493" x="112.68" y="17.703"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="116.342,193.043 117.334,202.486 118.516,202.363 117.521,192.924 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.185" stroke-opacity="0.4" transform="matrix(0.1047 0.9945 -0.9945 0.1047 106.4509 -81.6482)" width="9.494" x="93.824" y="17.704"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.2079 -0.9781 0.9781 -0.2079 -38.8295 361.0101)" width="9.497" x="122.005" y="195.634"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.208 0.9781 -0.9781 0.208 90.0204 -71.6354)" width="9.494" x="84.5" y="19.18"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="133.8,189.5,136.8,198.5,137.9,198.1,135,189.1" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.3091 0.951 -0.951 0.3091 76.4874 -60.8562)" width="9.493" x="75.38" y="21.62"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.4066 -0.9136 0.9136 -0.4066 29.5685 400.0058)" width="9.494" x="139.9" y="189.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.4068 0.9135 -0.9135 0.4068 65.6923 -49.9613)" width="9.493" x="66.57" y="25.01"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="157.7,177.5,163.3,185.2,164.3,184.5,158.7,176.8" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.5877 0.8091 -0.8091 0.5877 51.0088 -30.0413)" width="9.493" x="50.23" y="34.44"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="164.7,171.9,171.1,179,172,178.2,165.6,171.1" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.6691 0.7431 -0.7431 0.6691 46.2112 -21.8523)" width="9.494" x="42.9" y="40.38"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="171.1,165.6,178.2,172,179,171.1,171.9,164.7" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.7431 0.6692 -0.6692 0.7431 42.4082 -15.1748)" width="9.493" x="36.22" y="47.05"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.8092 -0.5876 0.5876 -0.8092 232.7833 397.6518)" width="9.493" x="176.2" y="160.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.809 0.5878 -0.5878 0.809 39.0091 -10.0882)" width="9.494" x="30.28" y="54.39"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.9135 -0.4067 0.4067 -0.9135 305.4916 354.3081)" width="9.494" x="185.7" y="144.1"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 0.4068 -0.4068 0.9135 31.2216 -4.2494)" width="9.494" x="20.86" y="70.72"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9511 -0.309 0.309 -0.9511 336.1028 324.9706)" width="9.495" x="189" y="135.3"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9511 0.309 -0.309 0.9511 25.8467 -2.9442)" width="9.495" x="17.47" y="79.53"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="191.5,126.3,200.7,128.3,201,127.2,191.7,125.2" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9781 0.208 -0.208 0.9781 18.9976 -2.1597)" width="9.495" x="15.02" y="88.65"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.9945 -0.1045 0.1045 -0.9945 382.0598 254.8752)" width="9.496" x="193" y="116.8"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9945 0.1046 -0.1046 0.9945 10.4121 -1.3735)" width="9.494" x="13.55" y="97.98"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="15.43" stroke-opacity="0.8" width="3.561" x="106.2" y="187.5"/>
-<rect fill="#FFFFFF" fill-opacity="0.8" height="15.43" stroke-opacity="0.8" width="3.561" x="106.2" y="13.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-62.14" x2="-62.14" y1="729" y2="673.4">
-<stop offset="0" stop-color="#63636D"/>
-<stop offset="1" stop-color="#3C3C46"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="133.841,189.451 136.775,198.48 137.904,198.115 134.971,189.088 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(0.3091 0.951 -0.951 0.3091 76.4874 -60.8562)" width="9.493" x="75.383" y="21.624"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.4066 -0.9136 0.9136 -0.4066 29.5685 400.0058)" width="9.494" x="139.941" y="189.807"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.4068 0.9135 -0.9135 0.4068 65.6923 -49.9613)" width="9.493" x="66.568" y="25.007"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="157.745,177.479 163.326,185.16 164.288,184.465 158.707,176.785 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.5877 0.8091 -0.8091 0.5877 51.0088 -30.0413)" width="9.493" x="50.234" y="34.435"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="164.734,171.898 171.089,178.955 171.973,178.162 165.619,171.107 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.6691 0.7431 -0.7431 0.6691 46.2112 -21.8523)" width="9.494" x="42.899" y="40.376"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="171.104,165.617 178.16,171.971 178.955,171.09 171.9,164.738 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.7431 0.6692 -0.6692 0.7431 42.4082 -15.1748)" width="9.493" x="36.221" y="47.052"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.8092 -0.5876 0.5876 -0.8092 232.7833 397.6518)" width="9.493" x="176.22" y="160.431"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.809 0.5878 -0.5878 0.809 39.0091 -10.0882)" width="9.494" x="30.281" y="54.389"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.186" stroke-opacity="0.4" transform="matrix(-0.9135 -0.4067 0.4067 -0.9135 305.4916 354.3081)" width="9.494" x="185.654" y="144.094"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9135 0.4068 -0.4068 0.9135 31.2216 -4.2494)" width="9.494" x="20.859" y="70.717"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(-0.9511 -0.309 0.309 -0.9511 336.1028 324.9706)" width="9.495" x="189.035" y="135.28"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9511 0.309 -0.309 0.9511 25.8467 -2.9442)" width="9.495" x="17.471" y="79.534"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="191.458,126.348 200.746,128.32 200.994,127.16 191.709,125.188 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9781 0.208 -0.208 0.9781 18.9976 -2.1597)" width="9.495" x="15.02" y="88.654"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.188" stroke-opacity="0.4" transform="matrix(-0.9945 -0.1045 0.1045 -0.9945 382.0598 254.8752)" width="9.496" x="192.957" y="116.837"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.187" stroke-opacity="0.4" transform="matrix(0.9945 0.1046 -0.1046 0.9945 10.4121 -1.3735)" width="9.494" x="13.553" y="97.979"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="15.43" stroke-opacity="0.8" width="3.561" x="106.22" y="187.516"/>
+<rect fill="#FFFFFF" fill-opacity="0.8" height="15.429" stroke-opacity="0.8" width="3.561" x="106.22" y="13.055"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 205.04 -626.0391)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-62.1353" x2="-62.1353" y1="729.0391" y2="673.3951">
+<stop offset="0" style="stop-color:#63636D"/>
+<stop offset="1" style="stop-color:#3C3C46"/>
</linearGradient>
-<path d="M112.5,72.41v21.79s1.226,8.864,8.374,8.864h18.81c6.527,0,9.225-4.02,11.05-6.262,1.561-1.921,4.435-4.382,11.45-4.382,7.84,0,11.57-7.127,10.99-12.4-1.231-11.31-12.54-29.43-34.06-33.14,0,0-9.769-2.158-9.76,9.759,0.004,5.232-2.896,7.687-6.205,7.803-0.724,0.025-0.479,0.023-1.477,0.023-4.3-0.04-9.1,2.02-9.1,7.91z" fill="url(#SVGID_6_)"/>
-<path d="M101.4,35.37h-0.048l-2.712,1.464-0.408-1.608,3.408-1.824h1.8v15.6h-2.04v-13.63z" fill="#FFFFFF"/>
-<path d="M109.1,49v-1.296l1.656-1.608c3.984-3.792,5.809-5.809,5.809-8.161,0-1.584-0.744-3.048-3.072-3.048-1.416,0-2.592,0.72-3.313,1.32l-0.672-1.488c1.057-0.888,2.615-1.584,4.393-1.584,3.359,0,4.775,2.304,4.775,4.536,0,2.88-2.088,5.208-5.377,8.377l-1.223,1.152v0.048h6.982v1.75h-10.02z" fill="#FFFFFF"/>
-<path d="M36.15,113.6c0.456,0.047,0.984,0,1.704-0.072,1.224-0.168,2.376-0.646,3.264-1.512,1.032-0.938,1.776-2.305,2.064-4.127h-0.072c-0.864,1.055-2.112,1.657-3.696,1.657-2.784,0-4.584-2.113-4.584-4.777,0-2.952,2.136-5.544,5.329-5.544s5.161,2.568,5.161,6.601c0,3.41-1.152,5.809-2.688,7.297-1.2,1.176-2.856,1.896-4.536,2.088-0.768,0.12-1.44,0.146-1.944,0.12v-1.729h-0.002v-0.143zm0.77-9c0,1.944,1.176,3.313,3,3.313,1.416,0,2.52-0.696,3.072-1.632,0.12-0.216,0.192-0.432,0.192-0.792,0-2.665-0.984-4.705-3.216-4.705-1.77,0-3.04,1.6-3.04,3.8z" fill="#FFFFFF"/>
-<path d="M111.8,168.9c-0.433-0.025-0.983,0.023-1.584,0.119-3.336,0.527-5.064,2.928-5.425,5.521h0.048c0.744-1.01,2.064-1.824,3.792-1.824,2.76,0,4.705,2.018,4.705,5.04,0,2.881-1.944,5.521-5.208,5.521-3.312,0-5.497-2.593-5.497-6.647,0-3.072,1.08-5.496,2.64-7.032,1.296-1.271,3.024-2.063,4.993-2.307,0.624-0.096,1.152-0.117,1.536-0.117v1.732zm-0.6,9c0-2.23-1.271-3.576-3.214-3.576-1.272,0-2.472,0.77-3.048,1.92-0.12,0.24-0.216,0.527-0.216,0.912,0.024,2.568,1.224,4.488,3.456,4.488,1.7,0.1,2.9-1.4,2.9-3.7z" fill="#FFFFFF"/>
-<path d="M171.4,112.6c0.602,0.359,1.969,0.959,3.457,0.959,2.688,0,3.553-1.703,3.528-3.021-0.024-2.185-1.992-3.121-4.032-3.121h-1.176v-1.584h1.176c1.536,0,3.48-0.792,3.48-2.64,0-1.248-0.793-2.352-2.736-2.352-1.248,0-2.449,0.552-3.121,1.032l-0.576-1.536c0.842-0.6,2.426-1.2,4.105-1.2,3.072,0,4.464,1.824,4.464,3.72,0,1.632-0.983,3-2.88,3.696v0.048c1.92,0.36,3.455,1.8,3.48,3.984,0,2.497-1.971,4.684-5.689,4.684-1.752,0-3.287-0.555-4.057-1.059l0.5-1.6z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M112.538,72.409c0,0,0,17.998,0,21.79s1.226,8.864,8.374,8.864c7.146,0,12.288,0,18.814,0 c6.527,0,9.225-4.02,11.047-6.262c1.561-1.921,4.435-4.382,11.449-4.382c7.84,0,11.566-7.127,10.991-12.403 c-1.231-11.308-12.544-29.426-34.063-33.137c0,0-9.769-2.158-9.76,9.759c0.004,5.232-2.896,7.687-6.205,7.803 c-0.724,0.025-0.479,0.023-1.477,0.023C117.299,64.464,112.538,66.524,112.538,72.409z" fill="url(#SVGID_6_)"/>
+<path d="M101.353,35.367h-0.048l-2.712,1.464l-0.408-1.608l3.408-1.824h1.8V49h-2.04V35.367z" fill="#FFFFFF"/>
+<path d="M109.08,49v-1.296l1.656-1.608c3.984-3.792,5.809-5.809,5.809-8.161c0-1.584-0.744-3.048-3.072-3.048 c-1.416,0-2.592,0.72-3.313,1.32l-0.672-1.488c1.057-0.888,2.615-1.584,4.393-1.584c3.359,0,4.775,2.304,4.775,4.536 c0,2.88-2.088,5.208-5.377,8.377l-1.223,1.152v0.048h6.982V49H109.08z" fill="#FFFFFF"/>
+<path d="M36.148,113.557c0.456,0.047,0.984,0,1.704-0.072c1.224-0.168,2.376-0.646,3.264-1.512 c1.032-0.938,1.776-2.305,2.064-4.127h-0.072c-0.864,1.055-2.112,1.657-3.696,1.657c-2.784,0-4.584-2.113-4.584-4.777 c0-2.952,2.136-5.544,5.329-5.544c3.193,0,5.161,2.568,5.161,6.601c0,3.41-1.152,5.809-2.688,7.297 c-1.2,1.176-2.856,1.896-4.536,2.088c-0.768,0.12-1.44,0.146-1.944,0.12v-1.729h-0.002V113.557z M36.917,104.603 c0,1.944,1.176,3.313,3,3.313c1.416,0,2.52-0.696,3.072-1.632c0.12-0.216,0.192-0.432,0.192-0.792c0-2.665-0.984-4.705-3.216-4.705 C38.188,100.787,36.917,102.371,36.917,104.603z" fill="#FFFFFF"/>
+<path d="M111.829,168.932c-0.433-0.025-0.983,0.023-1.584,0.119c-3.336,0.527-5.064,2.928-5.425,5.521h0.048 c0.744-1.01,2.064-1.824,3.792-1.824c2.76,0,4.705,2.018,4.705,5.04c0,2.881-1.944,5.521-5.208,5.521 c-3.312,0-5.497-2.593-5.497-6.647c0-3.072,1.08-5.496,2.64-7.032c1.296-1.271,3.024-2.063,4.993-2.307 c0.624-0.096,1.152-0.117,1.536-0.117V168.932z M111.229,177.932c0-2.23-1.271-3.576-3.214-3.576c-1.272,0-2.472,0.77-3.048,1.92 c-0.12,0.24-0.216,0.527-0.216,0.912c0.024,2.568,1.224,4.488,3.456,4.488C110.005,181.676,111.229,180.164,111.229,177.932z" fill="#FFFFFF"/>
+<path d="M171.428,112.645c0.602,0.359,1.969,0.959,3.457,0.959c2.688,0,3.553-1.703,3.528-3.021 c-0.024-2.185-1.992-3.121-4.032-3.121h-1.176v-1.584h1.176c1.536,0,3.48-0.792,3.48-2.64c0-1.248-0.793-2.352-2.736-2.352 c-1.248,0-2.449,0.552-3.121,1.032l-0.576-1.536c0.842-0.6,2.426-1.2,4.105-1.2c3.072,0,4.464,1.824,4.464,3.72 c0,1.632-0.983,3-2.88,3.696v0.048c1.92,0.36,3.455,1.8,3.48,3.984c0,2.497-1.971,4.684-5.689,4.684 c-1.752,0-3.287-0.555-4.057-1.059L171.428,112.645z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_hour.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_hour.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M108,115c-3.859,0-7-3.141-7-7,0-2.064,0.926-4.029,2.5-5.354v-50.6h9v50.65c1.574,1.325,2.5,3.29,2.5,5.354,0,3.9-3.1,7-7,7z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M111.5,103.1v-50.1h-7v50.13c-1.512,1.089-2.5,2.86-2.5,4.866,0,3.313,2.687,6,6,6s6-2.687,6-6c0-2-1-3.8-2.5-4.9z" fill="url(#SVGID_1_)"/>
+<path d="M108,115c-3.859,0-7-3.141-7-7c0-2.064,0.926-4.029,2.5-5.354V52h9v50.646c1.574,1.325,2.5,3.29,2.5,5.354 C115,111.859,111.859,115,108,115L108,115z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M111.5,103.134V53h-7v50.134c-1.512,1.089-2.5,2.86-2.5,4.866c0,3.313,2.687,6,6,6s6-2.687,6-6 C114,105.994,113.012,104.223,111.5,103.134z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="216" width="216"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="108" x2="108" y1="53.58" y2="114">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="107.9995" x2="107.9995" y1="53.5806" y2="114.0006">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_min.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_min.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M108,113c-2.757,0-5-2.243-5-5,0-1.065,0.353-2.107,1-2.973v-76h8v76.03c0.647,0.865,1,1.907,1,2.973,0,2.8-2.2,5-5,5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M111,105.4v-75.4h-6v75.38c-0.615,0.703-1,1.613-1,2.62,0,2.209,1.791,4,4,4s4-1.791,4-4c0-1-0.4-1.9-1-2.6z" fill="url(#SVGID_1_)"/>
+<path d="M108,113c-2.757,0-5-2.243-5-5c0-1.065,0.353-2.107,1-2.973V29h8v76.027c0.647,0.865,1,1.907,1,2.973 C113,110.757,110.757,113,108,113L108,113z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M111,105.38V30h-6v75.38c-0.615,0.703-1,1.613-1,2.62c0,2.209,1.791,4,4,4s4-1.791,4-4 C112,106.993,111.615,106.083,111,105.38z" fill="url(#SVGID_1_)"/>
<rect fill="none" height="216" width="216"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="108" x2="108" y1="30" y2="110.1">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="107.9985" x2="107.9995" y1="30" y2="110.0819">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_sec.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_clock_night_sec.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="216px" version="1.1" viewBox="0 0 216 216" width="216px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -475.6777 -632.6445)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-583.7" x2="-583.7" y1="-659.4" y2="-763.6">
-<stop offset="0" stop-color="#FF0000"/>
-<stop offset="1" stop-color="#A8000B"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -475.6777 -632.6445)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-583.6777" x2="-583.6777" y1="-659.3726" y2="-763.5606">
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#A8000B"/>
</linearGradient>
-<path d="M98.18,108c0.001,3.632,1.978,6.796,4.909,8.494l0.001,9.506c-0.001,2.701,2.207,4.91,4.908,4.91,2.701-0.001,4.909-2.209,4.908-4.908l0.001-9.506c2.933-1.698,4.908-4.863,4.909-8.496-0.001-4.864-3.54-8.89-8.182-9.671v-72.15h-3.273v72.15c-4.6,0.78-8.12,4.77-8.12,9.67z" fill="url(#SVGID_1_)"/>
-<path d="M108,132c-3.309,0-6-2.691-6-6v-8.79c-3.098-2.022-5-5.499-5-9.21,0-4.934,3.318-9.26,8-10.58v-72.42h6v72.42c4.682,1.324,8,5.651,8,10.58,0,3.711-1.902,7.188-5,9.21v8.8c0,3.3-2.7,6-6,6z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="108" x2="108" y1="26.55" y2="131">
-<stop offset="0" stop-color="#FF0000"/>
-<stop offset="1" stop-color="#C10007"/>
+<path d="M98.182,108c0.001,3.632,1.978,6.796,4.909,8.494l0.001,9.506c-0.001,2.701,2.207,4.91,4.908,4.91 c2.701-0.001,4.909-2.209,4.908-4.908l0.001-9.506c2.933-1.698,4.908-4.863,4.909-8.496c-0.001-4.864-3.54-8.89-8.182-9.671V26.182 h-3.273V98.33C101.723,99.108,98.183,103.136,98.182,108z" fill="url(#SVGID_1_)"/>
+<path d="M108,132c-3.309,0-6-2.691-6-6v-8.79c-3.098-2.022-5-5.499-5-9.21c0-4.934,3.318-9.26,8-10.584V25h6v72.416 c4.682,1.324,8,5.651,8,10.584c0,3.711-1.902,7.188-5,9.21V126C114,129.309,111.309,132,108,132L108,132z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="108.0005" x2="107.9992" y1="26.5474" y2="131.0065">
+<stop offset="0" style="stop-color:#FF0000"/>
+<stop offset="1" style="stop-color:#C10007"/>
</linearGradient>
-<path d="M118,108c0-4.838-3.436-8.873-8-9.799v-72.2h-4v72.2c-4.564,0.926-8,4.961-8,9.799,0,3.699,2.014,6.922,5,8.651v9.3c0,2.762,2.239,5,5,5,2.762,0,5-2.238,5-5v-9.349c3-1.8,5-5,5-8.7z" fill="url(#SVGID_2_)"/>
+<path d="M118,108c0-4.838-3.436-8.873-8-9.799V26h-4v72.201c-4.564,0.926-8,4.961-8,9.799 c0,3.699,2.014,6.922,5,8.651V126c0,2.762,2.239,5,5,5c2.762,0,5-2.238,5-5v-9.349C115.986,114.922,118,111.699,118,108z" fill="url(#SVGID_2_)"/>
<circle cx="108" cy="108" fill="#1E1E28" fill-opacity="0.2" r="6" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="108" x2="108" y1="103.3" y2="113">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="107.9995" x2="107.9995" y1="103.2773" y2="113.0161">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<circle cx="108" cy="108" fill="url(#SVGID_3_)" r="5"/>
<rect fill="none" height="216" width="216"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_colorpicker_empty.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_colorpicker_empty.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M25,1h-20c-2.209,0-4,1.791-4,4v20c0,2.209,1.791,4,4,4h20c2.209,0,4-1.791,4-4v-20c0-2.209-1.79-4-4-4zm-23,4.001c0-1.654,1.346-3.001,2.999-3.001h20c0.461,0,0.893,0.113,1.283,0.3l-23.98,23.98c-0.187-0.391-0.3-0.822-0.3-1.283v-20zm26,20c0,1.653-1.345,2.999-2.998,2.999h-20c-0.462,0-0.895-0.113-1.286-0.301l23.99-23.98c0.188,0.392,0.301,0.824,0.301,1.286v20z"/>
-</svg>
\ No newline at end of file
+<path d="M25,1H5C2.791,1,1,2.791,1,5v20c0,2.209,1.791,4,4,4h20c2.209,0,4-1.791,4-4V5C29,2.791,27.209,1,25,1z M2.001,5.001 C2.001,3.347,3.347,2,5,2h20c0.461,0,0.893,0.113,1.283,0.3L2.301,26.284c-0.187-0.391-0.3-0.822-0.3-1.283V5.001z M27.999,25.001 c0,1.653-1.345,2.999-2.998,2.999H5c-0.462,0-0.895-0.113-1.286-0.301L27.698,3.715c0.188,0.392,0.301,0.824,0.301,1.286V25.001z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_colorpicker_filled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_colorpicker_filled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M29,25c0,2.209-1.791,4-4,4h-20c-2.209,0-4-1.791-4-4v-20c0-2.209,1.791-4,4-4h20c2.209,0,4,1.791,4,4v20z"/>
+<path d="M29,25c0,2.209-1.791,4-4,4H5c-2.209,0-4-1.791-4-4V5c0-2.209,1.791-4,4-4h20c2.209,0,4,1.791,4,4V25z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_colorpicker_mask.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_colorpicker_mask.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M25,28h-20c-1.654,0-2.999-1.346-2.999-2.999v-20c0-1.653,1.346-3,2.999-3h20c1.652,0,2.998,1.347,2.998,3.001v20c0,1.65-1.35,3-3,3z"/>
-</svg>
\ No newline at end of file
+<path d="M25.001,28H5c-1.654,0-2.999-1.346-2.999-2.999v-20C2.001,3.347,3.347,2,5,2h20c1.652,0,2.998,1.347,2.998,3.001v20 C27.999,26.654,26.654,28,25.001,28L25.001,28z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M34,0h-34v38h34c2.201,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19,27c-0.412,0-0.795-0.217-0.996-0.576l-8.844-11.55c-0.209-0.361-0.207-0.799,0-1.154,0.203-0.355,0.586-0.576,0.996-0.576h17.69c0.412,0,0.795,0.223,0.998,0.576,0.209,0.355,0.209,0.793,0,1.154l-8.848,11.55c-0.2,0.36-0.58,0.58-0.99,0.58z" fill="#787878" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M34,0h-34v1h34c1.654,0,3,1.346,3,3v30c0,1.654-1.346,3-3,3h-34v1h34c2.201,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M34,0H0v38h34c2.201,0,4-1.8,4-4V4C38,1.8,36.201,0,34,0z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19,27c-0.412,0-0.795-0.217-0.996-0.576L9.156,14.871c-0.209-0.361-0.207-0.799,0-1.154 c0.203-0.355,0.586-0.576,0.996-0.576h17.693c0.412,0,0.795,0.223,0.998,0.576c0.209,0.355,0.209,0.793,0,1.154l-8.848,11.553 C19.787,26.783,19.41,27,19,27z" fill="#787878" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M34,0H0v1h34c1.654,0,3,1.346,3,3v30c0,1.654-1.346,3-3,3H0v1h34c2.201,0,4-1.8,4-4V4C38,1.8,36.201,0,34,0z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M34,0h-34v38h34c2.201,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill="url(#SVGID_1_)"/>
-<path d="M19,27c-0.411,0-0.795-0.217-0.996-0.576l-8.844-11.55c-0.209-0.361-0.207-0.799,0-1.154,0.203-0.355,0.586-0.576,0.997-0.576h17.69c0.412,0,0.795,0.223,0.999,0.576,0.208,0.355,0.208,0.793,0,1.154l-8.848,11.55c-0.2,0.36-0.58,0.58-0.99,0.58z" fill="#FFFFFF"/>
-<path d="M34,0h-34v38h34c2.201,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4zm3,34c0,1.654-1.346,3-3,3h-33v-36h33c1.654,0,3,1.346,3,3v30z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M34,0H0v38h34c2.201,0,4-1.8,4-4V4C38,1.8,36.201,0,34,0z" fill="url(#SVGID_1_)"/>
+<path d="M19,27c-0.411,0-0.795-0.217-0.996-0.576L9.156,14.871c-0.209-0.361-0.207-0.799,0-1.154 c0.203-0.355,0.586-0.576,0.997-0.576h17.692c0.412,0,0.795,0.223,0.999,0.576c0.208,0.355,0.208,0.793,0,1.154l-8.848,11.553 C19.787,26.783,19.41,27,19,27z" fill="#FFFFFF"/>
+<path d="M34,0H0v38h34c2.201,0,4-1.8,4-4V4C38,1.8,36.201,0,34,0z M37,34c0,1.654-1.346,3-3,3H1V1h33 c1.654,0,3,1.346,3,3V34z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38.53">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.5298">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_latched.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_latched.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M34,0h-34v38h34c2.2,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill="url(#SVGID_1_)"/>
-<path d="M19,27c-0.412,0-0.795-0.217-0.997-0.576l-8.845-11.55c-0.208-0.361-0.206-0.799,0-1.154,0.204-0.355,0.586-0.576,0.997-0.576h17.69c0.411,0,0.795,0.223,0.998,0.576,0.209,0.355,0.209,0.793,0,1.154l-8.848,11.55c-0.2,0.36-0.58,0.58-0.99,0.58z" fill="#FFFFFF"/>
-<path d="M34,0h-34v38h34c2.2,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4zm3,34c0,1.654-1.346,3-3,3h-33v-36h33c1.654,0,3,1.346,3,3v30z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M34,0H0v38h34c2.2,0,4-1.8,4-4V4C38,1.8,36.2,0,34,0z" fill="url(#SVGID_1_)"/>
+<g>
+<g>
+<path d="M19,27c-0.412,0-0.795-0.217-0.997-0.576L9.155,14.871c-0.208-0.361-0.206-0.799,0-1.154 c0.204-0.355,0.586-0.576,0.997-0.576h17.693c0.411,0,0.795,0.223,0.998,0.576c0.209,0.355,0.209,0.793,0,1.154l-8.848,11.553 C19.787,26.783,19.41,27,19,27z" fill="#FFFFFF"/>
+</g>
+</g>
+<path d="M34,0H0v38h34c2.2,0,4-1.8,4-4V4C38,1.8,36.2,0,34,0z M37,34c0,1.654-1.346,3-3,3H1V1h33c1.654,0,3,1.346,3,3 V34z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#919196"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#919196"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M34,0h-34v38h34c2.2,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill="url(#SVGID_1_)"/>
-<path d="M34,0h-34v1h34c1.654,0,3,1.346,3,3v30c0,1.654-1.346,3-3,3h-34v1h34c2.2,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill="#BEBEC8"/>
-<path d="M19,27c-0.412,0-0.795-0.217-0.997-0.576l-8.845-11.55c-0.208-0.361-0.206-0.799,0-1.154,0.204-0.355,0.586-0.576,0.997-0.576h17.69c0.411,0,0.795,0.223,0.998,0.576,0.209,0.355,0.209,0.793,0,1.154l-8.848,11.55c-0.2,0.36-0.58,0.58-0.99,0.58z" fill="#3C3C3C"/>
+<path d="M34,0H0v38h34c2.2,0,4-1.8,4-4V4C38,1.8,36.2,0,34,0z" fill="url(#SVGID_1_)"/>
+<path d="M34,0H0v1h34c1.654,0,3,1.346,3,3v30c0,1.654-1.346,3-3,3H0v1h34c2.2,0,4-1.8,4-4V4C38,1.8,36.2,0,34,0z" fill="#BEBEC8"/>
+<g>
+<g>
+<path d="M19,27c-0.412,0-0.795-0.217-0.997-0.576L9.155,14.871c-0.208-0.361-0.206-0.799,0-1.154 c0.204-0.355,0.586-0.576,0.997-0.576h17.693c0.411,0,0.795,0.223,0.998,0.576c0.209,0.355,0.209,0.793,0,1.154l-8.848,11.553 C19.787,26.783,19.41,27,19,27z" fill="#3C3C3C"/>
+</g>
+</g>
<rect fill-opacity="0.2" height="36" stroke-opacity="0.2" width="1" y="1"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y2="38">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="0" y2="38.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_combobox_button_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="38px" version="1.1" viewBox="0 0 38 38" width="38px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="38" width="38"/>
-<path d="M34,0h-34v38h34c2.201,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4z" fill="url(#SVGID_1_)"/>
-<path d="M34,1h-33v36h33c1.654,0,3-1.346,3-3v-30c0-1.654-1.35-3-3-3zm2,33c0,1.103-0.896,2-2,2h-32v-34h32c1.104,0,2,0.897,2,2v30z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M19,27c-0.411,0-0.795-0.217-0.996-0.576l-8.844-11.55c-0.209-0.361-0.207-0.799,0-1.154,0.203-0.355,0.586-0.576,0.997-0.576h17.69c0.412,0,0.795,0.223,0.999,0.576,0.208,0.355,0.208,0.793,0,1.154l-8.848,11.55c-0.2,0.36-0.58,0.58-0.99,0.58z" fill="#FFFFFF"/>
-<path d="M34,0h-34v38h34c2.201,0,4-1.8,4-4v-30c0-2.2-1.8-4-4-4zm3,34c0,1.654-1.346,3-3,3h-33v-36h33c1.654,0,3,1.346,3,3v30z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M34,0H0v38h34c2.201,0,4-1.8,4-4V4C38,1.8,36.201,0,34,0z" fill="url(#SVGID_1_)"/>
+<path d="M34,1H1v36h33c1.654,0,3-1.346,3-3V4C37,2.346,35.654,1,34,1z M36,34c0,1.103-0.896,2-2,2H2V2 h32c1.104,0,2,0.897,2,2V34z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<g>
+<path d="M19,27c-0.411,0-0.795-0.217-0.996-0.576L9.156,14.871c-0.209-0.361-0.207-0.799,0-1.154 c0.203-0.355,0.586-0.576,0.997-0.576h17.692c0.412,0,0.795,0.223,0.999,0.576c0.208,0.355,0.208,0.793,0,1.154l-8.848,11.553 C19.787,26.783,19.41,27,19,27z" fill="#FFFFFF"/>
+</g>
+</g>
+<path d="M34,0H0v38h34c2.201,0,4-1.8,4-4V4C38,1.8,36.201,0,34,0z M37,34c0,1.654-1.346,3-3,3H1V1h33 c1.654,0,3,1.346,3,3V34z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19" x2="19" y1="38" y2="0.1907">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_dimming_image.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_dimming_image.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="640px" version="1.1" viewBox="0 0 360 640" width="360px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#00000A" fill-opacity="0.6" height="640" stroke-opacity="0.6" width="360"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_divider_h_thin.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_divider_h_thin.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="2px" version="1.1" viewBox="0 0 100 2" width="100px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#DCDCDC" height="1" width="100" y="1"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="100"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_divider_v_thin.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_divider_v_thin.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="100px" version="1.1" viewBox="0 0 2 100" width="2px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#DCDCDC" height="100" width="1" x="1"/>
<rect fill-opacity="0.2" height="100" stroke-opacity="0.2" width="1"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_capital.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_capital.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M40,16c0,2.209-1.791,4-4,4h-32c-2.209,0-4-1.791-4-4v-12c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4v12z" fill="#828282"/>
-<path d="M13.32,16.89l-0.756-2.883h-3.955l-0.773,2.883h-2.198l3.78-13.11h2.848l3.621,13.1h-2.555zm-1.11-4.36l-1.61-6.516-1.652,6.513h3.26z" fill="#FFFFFF"/>
-<path d="M21.35,16.89h-4.07v-13.11h4.376c1.254,0,2.195,0.265,2.822,0.795s0.939,1.323,0.939,2.377c0,1.5-0.727,2.508-2.18,3.023,1.67,0.381,2.506,1.454,2.506,3.217,0,1.23-0.367,2.152-1.1,2.768s-1.84,0.93-3.3,0.93zm-1.65-7.545h1.186c0.721,0,1.25-0.173,1.588-0.519,0.336-0.346,0.504-0.894,0.504-1.644,0-0.639-0.152-1.119-0.461-1.441-0.307-0.322-0.766-0.483-1.375-0.483h-1.442v4.087zm0,6.065h1.327c0.779,0,1.344-0.181,1.693-0.541,0.348-0.36,0.521-0.953,0.521-1.779,0-0.773-0.18-1.346-0.539-1.715-0.361-0.369-0.926-0.553-1.693-0.553h-1.309v4.58z" fill="#FFFFFF"/>
-<path d="M32.23,17.03c-1.67,0-2.926-0.532-3.766-1.596-0.842-1.063-1.262-2.811-1.262-5.243,0-2.18,0.424-3.816,1.27-4.909,0.848-1.093,2.117-1.639,3.811-1.639,0.691,0,1.385,0.094,2.082,0.281v1.537c-0.691-0.205-1.309-0.308-1.854-0.308-0.932,0-1.629,0.415-2.092,1.244s-0.695,2.07-0.695,3.722c0,1.922,0.24,3.301,0.717,4.139,0.479,0.838,1.193,1.258,2.148,1.258,0.557,0,1.148-0.088,1.775-0.264v1.494c-0.69,0.18-1.4,0.28-2.13,0.28z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M40,16c0,2.209-1.791,4-4,4H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4V16z" fill="#828282"/>
+<path d="M13.325,16.887l-0.756-2.883H8.605l-0.773,2.883H5.634L9.414,3.782h2.848l3.621,13.105H13.325z M12.208,12.527L10.6,6.014l-1.652,6.513H12.208z" fill="#FFFFFF"/>
+<path d="M21.35,16.887h-4.07V3.782h4.376c1.254,0,2.195,0.265,2.822,0.795s0.939,1.323,0.939,2.377 c0,1.5-0.727,2.508-2.18,3.023c1.67,0.381,2.506,1.454,2.506,3.217c0,1.23-0.367,2.152-1.1,2.768S22.814,16.887,21.35,16.887z M19.697,9.345h1.186c0.721,0,1.25-0.173,1.588-0.519c0.336-0.346,0.504-0.894,0.504-1.644c0-0.639-0.152-1.119-0.461-1.441 c-0.307-0.322-0.766-0.483-1.375-0.483h-1.442V9.345z M19.697,15.41h1.327c0.779,0,1.344-0.181,1.693-0.541 c0.348-0.36,0.521-0.953,0.521-1.779c0-0.773-0.18-1.346-0.539-1.715c-0.361-0.369-0.926-0.553-1.693-0.553h-1.309V15.41z" fill="#FFFFFF"/>
+<path d="M32.23,17.027c-1.67,0-2.926-0.532-3.766-1.596c-0.842-1.063-1.262-2.811-1.262-5.243 c0-2.18,0.424-3.816,1.27-4.909c0.848-1.093,2.117-1.639,3.811-1.639c0.691,0,1.385,0.094,2.082,0.281V5.46 c-0.691-0.205-1.309-0.308-1.854-0.308c-0.932,0-1.629,0.415-2.092,1.244s-0.695,2.07-0.695,3.722c0,1.922,0.24,3.301,0.717,4.139 c0.479,0.838,1.193,1.258,2.148,1.258c0.557,0,1.148-0.088,1.775-0.264v1.494C33.668,16.934,32.957,17.027,32.23,17.027z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_numeric.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_numeric.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M40,16c0,2.209-1.791,4-4,4h-32c-2.209,0-4-1.791-4-4v-12c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4v12z" fill="#828282"/>
-<path d="M14.04,15.48v1.406h-7.76v-1.41h2.76v-9.809l-2.76,0.633v-1.406l3.876-1.222h1.274v11.8h2.611z" fill="#FFFFFF"/>
-<path d="M23.83,15.36v1.529h-7.84v-0.959c0-0.914,0.158-1.725,0.475-2.434s0.706-1.314,1.169-1.815,1.049-1.05,1.758-1.648c0.851-0.715,1.386-1.269,1.608-1.661s0.334-0.782,0.334-1.169c0-0.68-0.18-1.191-0.541-1.534-0.359-0.343-0.9-0.514-1.621-0.514-0.762,0-1.685,0.196-2.769,0.589h-0.018v-1.564c1.137-0.357,2.244-0.536,3.322-0.536,1.331,0,2.341,0.292,3.032,0.875s1.037,1.443,1.037,2.58c0,0.639-0.154,1.267-0.465,1.885s-1.043,1.411-2.197,2.377c-0.645,0.545-1.149,1-1.513,1.363s-0.669,0.763-0.918,1.199-0.385,0.916-0.409,1.438h5.572z" fill="#FFFFFF"/>
-<path d="M27.22,9.222c1.723,0,2.799-0.176,3.227-0.527s0.641-0.891,0.641-1.617c0-0.639-0.172-1.119-0.514-1.441-0.344-0.322-0.854-0.483-1.533-0.483-0.598,0-1.439,0.149-2.523,0.448h-0.018v-1.548c1.102-0.275,2.098-0.413,2.988-0.413,1.342,0,2.35,0.27,3.023,0.809s1.012,1.348,1.012,2.426c0,0.744-0.203,1.384-0.607,1.92s-0.984,0.916-1.74,1.138c0.82,0.146,1.449,0.491,1.885,1.033,0.438,0.542,0.656,1.221,0.656,2.035,0,1.342-0.393,2.348-1.174,3.019-0.783,0.671-1.955,1.007-3.52,1.007-0.938,0-1.898-0.139-2.883-0.414v-1.529h0.018c1.148,0.287,2.053,0.432,2.715,0.432,0.797,0,1.396-0.201,1.797-0.603,0.402-0.401,0.604-1.003,0.604-1.806,0-0.861-0.24-1.48-0.721-1.855-0.48-0.375-1.592-0.562-3.332-0.562v-1.478z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M40,16c0,2.209-1.791,4-4,4H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4V16z" fill="#828282"/>
+<path d="M14.041,15.48v1.406H6.28V15.48h2.76V5.671L6.28,6.304V4.898l3.876-1.222h1.274V15.48H14.041z" fill="#FFFFFF"/>
+<path d="M23.832,15.357v1.529h-7.84v-0.959c0-0.914,0.158-1.725,0.475-2.434s0.706-1.314,1.169-1.815 s1.049-1.05,1.758-1.648c0.851-0.715,1.386-1.269,1.608-1.661s0.334-0.782,0.334-1.169c0-0.68-0.18-1.191-0.541-1.534 c-0.359-0.343-0.9-0.514-1.621-0.514c-0.762,0-1.685,0.196-2.769,0.589h-0.018V4.177c1.137-0.357,2.244-0.536,3.322-0.536 c1.331,0,2.341,0.292,3.032,0.875s1.037,1.443,1.037,2.58c0,0.639-0.154,1.267-0.465,1.885s-1.043,1.411-2.197,2.377 c-0.645,0.545-1.149,1-1.513,1.363s-0.669,0.763-0.918,1.199s-0.385,0.916-0.409,1.438H23.832z" fill="#FFFFFF"/>
+<path d="M27.225,9.222c1.723,0,2.799-0.176,3.227-0.527s0.641-0.891,0.641-1.617c0-0.639-0.172-1.119-0.514-1.441 c-0.344-0.322-0.854-0.483-1.533-0.483c-0.598,0-1.439,0.149-2.523,0.448h-0.018V4.054c1.102-0.275,2.098-0.413,2.988-0.413 c1.342,0,2.35,0.27,3.023,0.809s1.012,1.348,1.012,2.426c0,0.744-0.203,1.384-0.607,1.92s-0.984,0.916-1.74,1.138 c0.82,0.146,1.449,0.491,1.885,1.033c0.438,0.542,0.656,1.221,0.656,2.035c0,1.342-0.393,2.348-1.174,3.019 c-0.783,0.671-1.955,1.007-3.52,1.007c-0.938,0-1.898-0.139-2.883-0.414v-1.529h0.018c1.148,0.287,2.053,0.432,2.715,0.432 c0.797,0,1.396-0.201,1.797-0.603c0.402-0.401,0.604-1.003,0.604-1.806c0-0.861-0.24-1.48-0.721-1.855 c-0.48-0.375-1.592-0.562-3.332-0.562V9.222z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_small.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_small.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M40,16c0,2.209-1.791,4-4,4h-32c-2.209,0-4-1.791-4-4v-12c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4v12z" fill="#828282"/>
-<path d="M12.7,15.41c-0.703,1.078-1.717,1.617-3.041,1.617-0.973,0-1.729-0.266-2.268-0.795-0.539-0.531-0.809-1.273-0.809-2.229,0-0.75,0.168-1.367,0.505-1.85,0.337-0.484,0.875-0.846,1.613-1.086s1.866-0.367,3.384-0.379v-1.002c0-0.58-0.16-1.017-0.479-1.31s-0.795-0.439-1.428-0.439c-0.732,0-1.632,0.167-2.698,0.501v-1.529c1.113-0.299,2.2-0.448,3.261-0.448,1.219,0,2.147,0.28,2.786,0.84s0.958,1.384,0.958,2.474v7.111h-1.389l-0.39-1.48zm-0.61-3.44h-0.844c-0.768,0-1.343,0.168-1.727,0.502s-0.576,0.832-0.576,1.494c0,0.527,0.114,0.922,0.343,1.186s0.571,0.396,1.028,0.396c0.574,0,1.014-0.184,1.318-0.549,0.305-0.367,0.457-0.885,0.457-1.553v-1.477z" fill="#FFFFFF"/>
-<path d="M19.23,7.491c0.65-0.686,1.494-1.028,2.531-1.028,1.166,0,2.041,0.424,2.623,1.271,0.584,0.847,0.875,2.116,0.875,3.81,0,1.717-0.41,3.055-1.23,4.012-0.82,0.959-1.982,1.438-3.488,1.438-1.278,0-2.509-0.076-3.692-0.229v-13.79h2.382v4.518zm0,4.139v3.832c0.311,0.047,0.729,0.07,1.258,0.07,0.785,0,1.367-0.305,1.748-0.914s0.572-1.646,0.572-3.111c0-1.189-0.146-2.082-0.439-2.676s-0.73-0.893-1.311-0.893c-0.592,0-1.045,0.234-1.358,0.703-0.32,0.467-0.47,1.466-0.47,2.986z" fill="#FFFFFF"/>
-<path d="M31.2,17.03c-1.465,0-2.563-0.449-3.295-1.35-0.732-0.898-1.1-2.248-1.1-4.047,0-1.67,0.396-2.949,1.188-3.836s1.947-1.332,3.471-1.332c0.604,0,1.223,0.073,1.855,0.22v1.459c-0.445-0.146-1.002-0.22-1.67-0.22-0.791,0-1.385,0.311-1.781,0.932-0.395,0.621-0.592,1.553-0.592,2.795,0,1.307,0.197,2.287,0.592,2.939,0.396,0.654,0.99,0.98,1.781,0.98,0.703,0,1.291-0.064,1.766-0.193v1.389c-0.67,0.17-1.41,0.26-2.22,0.26z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M40,16c0,2.209-1.791,4-4,4H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4V16z" fill="#828282"/>
+<path d="M12.705,15.41c-0.703,1.078-1.717,1.617-3.041,1.617c-0.973,0-1.729-0.266-2.268-0.795 c-0.539-0.531-0.809-1.273-0.809-2.229c0-0.75,0.168-1.367,0.505-1.85c0.337-0.484,0.875-0.846,1.613-1.086s1.866-0.367,3.384-0.379 V9.688c0-0.58-0.16-1.017-0.479-1.31s-0.795-0.439-1.428-0.439c-0.732,0-1.632,0.167-2.698,0.501V6.911 c1.113-0.299,2.2-0.448,3.261-0.448c1.219,0,2.147,0.28,2.786,0.84s0.958,1.384,0.958,2.474v7.111h-1.389L12.705,15.41z M12.09,11.973h-0.844c-0.768,0-1.343,0.168-1.727,0.502s-0.576,0.832-0.576,1.494c0,0.527,0.114,0.922,0.343,1.186 s0.571,0.396,1.028,0.396c0.574,0,1.014-0.184,1.318-0.549c0.305-0.367,0.457-0.885,0.457-1.553V11.973z" fill="#FFFFFF"/>
+<path d="M19.227,7.491c0.65-0.686,1.494-1.028,2.531-1.028c1.166,0,2.041,0.424,2.623,1.271 c0.584,0.847,0.875,2.116,0.875,3.81c0,1.717-0.41,3.055-1.23,4.012c-0.82,0.959-1.982,1.438-3.488,1.438 c-1.278,0-2.509-0.076-3.692-0.229V2.973h2.382V7.491z M19.227,11.631v3.832c0.311,0.047,0.729,0.07,1.258,0.07 c0.785,0,1.367-0.305,1.748-0.914s0.572-1.646,0.572-3.111c0-1.189-0.146-2.082-0.439-2.676s-0.73-0.893-1.311-0.893 c-0.592,0-1.045,0.234-1.358,0.703C19.383,9.111,19.227,10.107,19.227,11.631z" fill="#FFFFFF"/>
+<path d="M31.197,17.027c-1.465,0-2.563-0.449-3.295-1.35c-0.732-0.898-1.1-2.248-1.1-4.047 c0-1.67,0.396-2.949,1.188-3.836s1.947-1.332,3.471-1.332c0.604,0,1.223,0.073,1.855,0.22v1.459c-0.445-0.146-1.002-0.22-1.67-0.22 c-0.791,0-1.385,0.311-1.781,0.932c-0.395,0.621-0.592,1.553-0.592,2.795c0,1.307,0.197,2.287,0.592,2.939 c0.396,0.654,0.99,0.98,1.781,0.98c0.703,0,1.291-0.064,1.766-0.193v1.389C32.75,16.939,32.012,17.027,31.197,17.027z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_text.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_case_text.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M40,16c0,2.209-1.791,4-4,4h-32c-2.209,0-4-1.791-4-4v-12c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4v12z" fill="#828282"/>
-<path d="M13.63,16.89l-0.756-2.883h-3.962l-0.773,2.883h-2.197l3.779-13.11h2.848l3.621,13.1h-2.552zm-1.12-4.36l-1.608-6.513-1.652,6.513h3.264z" fill="#FFFFFF"/>
-<path d="M19.88,7.491c0.65-0.686,1.494-1.028,2.531-1.028,1.166,0,2.041,0.423,2.623,1.27,0.584,0.847,0.875,2.117,0.875,3.811,0,1.717-0.41,3.054-1.23,4.012s-1.982,1.438-3.488,1.438c-1.278,0-2.509-0.076-3.692-0.229v-13.79h2.382v4.518zm0,4.139v3.832c0.311,0.047,0.73,0.07,1.258,0.07,0.785,0,1.367-0.305,1.748-0.914s0.572-1.646,0.572-3.111c0-1.19-0.146-2.082-0.439-2.677s-0.73-0.892-1.311-0.892c-0.592,0-1.045,0.234-1.357,0.703-0.32,0.467-0.47,1.466-0.47,2.986z" fill="#FFFFFF"/>
-<path d="M31.85,17.03c-1.465,0-2.563-0.45-3.295-1.35s-1.1-2.248-1.1-4.047c0-1.67,0.396-2.949,1.188-3.837s1.947-1.332,3.471-1.332c0.604,0,1.223,0.073,1.855,0.22v1.459c-0.445-0.146-1.002-0.22-1.67-0.22-0.791,0-1.385,0.311-1.781,0.932-0.395,0.621-0.592,1.553-0.592,2.795,0,1.307,0.197,2.286,0.592,2.939,0.396,0.653,0.99,0.98,1.781,0.98,0.703,0,1.291-0.064,1.766-0.193v1.389c-0.68,0.17-1.42,0.26-2.23,0.26z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M40,16c0,2.209-1.791,4-4,4H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h32c2.209,0,4,1.791,4,4V16z" fill="#828282"/>
+<path d="M13.628,16.887l-0.756-2.883H8.908l-0.773,2.883H5.938L9.717,3.782h2.848l3.621,13.105H13.628z M12.512,12.527l-1.608-6.513l-1.652,6.513H12.512z" fill="#FFFFFF"/>
+<path d="M19.877,7.491c0.65-0.686,1.494-1.028,2.531-1.028c1.166,0,2.041,0.423,2.623,1.27 c0.584,0.847,0.875,2.117,0.875,3.811c0,1.717-0.41,3.054-1.23,4.012s-1.982,1.438-3.488,1.438c-1.278,0-2.509-0.076-3.692-0.229 V2.973h2.382V7.491z M19.877,11.631v3.832c0.311,0.047,0.73,0.07,1.258,0.07c0.785,0,1.367-0.305,1.748-0.914 s0.572-1.646,0.572-3.111c0-1.19-0.146-2.082-0.439-2.677s-0.73-0.892-1.311-0.892c-0.592,0-1.045,0.234-1.357,0.703 C20.033,9.111,19.877,10.107,19.877,11.631z" fill="#FFFFFF"/>
+<path d="M31.848,17.027c-1.465,0-2.563-0.45-3.295-1.35s-1.1-2.248-1.1-4.047c0-1.67,0.396-2.949,1.188-3.837 s1.947-1.332,3.471-1.332c0.604,0,1.223,0.073,1.855,0.22v1.459c-0.445-0.146-1.002-0.22-1.67-0.22 c-0.791,0-1.385,0.311-1.781,0.932c-0.395,0.621-0.592,1.553-0.592,2.795c0,1.307,0.197,2.286,0.592,2.939 c0.396,0.653,0.99,0.98,1.781,0.98c0.703,0,1.291-0.064,1.766-0.193v1.389C33.4,16.939,32.662,17.027,31.848,17.027z" fill="#FFFFFF"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_handle_begin.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_handle_begin.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="8" cy="8" fill-opacity="0.1" r="8" stroke-opacity="0.1"/>
-<path d="M8,15c-3.86,0-7-3.141-7-7,0-3.86,3.14-7,7-7,3.859,0,7,3.14,7,7s-3.14,7-7,7z" fill="url(#SVGID_1_)"/>
-<path d="M8,2c-3.309,0-6,2.691-6,6s2.691,6,6,6,6-2.691,6-6-2.69-6-6-6zm0,11c-2.757,0-5-2.244-5-5,0-2.757,2.243-5,5-5s5,2.243,5,5c0,2.76-2.24,5-5,5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,1c-3.86,0-7,3.14-7,7,0,3.859,3.14,7,7,7,3.859,0,7-3.141,7-7,0-3.86-3.14-7-7-7zm0,13c-3.309,0-6-2.691-6-6s2.691-6,6-6,6,2.691,6,6-2.69,6-6,6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,15c-3.86,0-7-3.141-7-7c0-3.86,3.14-7,7-7c3.859,0,7,3.14,7,7C15,11.859,11.859,15,8,15L8,15z" fill="url(#SVGID_1_)"/>
+<path d="M8,2C4.691,2,2,4.691,2,8s2.691,6,6,6s6-2.691,6-6S11.309,2,8,2z M8,13c-2.757,0-5-2.244-5-5 c0-2.757,2.243-5,5-5s5,2.243,5,5C13,10.756,10.757,13,8,13z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,1C4.14,1,1,4.14,1,8c0,3.859,3.14,7,7,7c3.859,0,7-3.141,7-7C15,4.14,11.859,1,8,1z M8,14 c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S11.309,14,8,14z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="8" y1="1" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.9995" x2="7.9995" y1="1" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_handle_end.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_editor_handle_end.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="8" cy="8" fill-opacity="0.1" r="8" stroke-opacity="0.1"/>
-<path d="M8,15c-3.86,0-7-3.141-7-7,0-3.86,3.14-7,7-7,3.859,0,7,3.14,7,7s-3.14,7-7,7z" fill="url(#SVGID_1_)"/>
-<path d="M8,2c-3.309,0-6,2.691-6,6s2.691,6,6,6,6-2.691,6-6-2.69-6-6-6zm0,11c-2.757,0-5-2.244-5-5,0-2.757,2.243-5,5-5s5,2.243,5,5c0,2.76-2.24,5-5,5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8,1c-3.86,0-7,3.14-7,7,0,3.859,3.14,7,7,7,3.859,0,7-3.141,7-7,0-3.86-3.14-7-7-7zm0,13c-3.309,0-6-2.691-6-6s2.691-6,6-6,6,2.691,6,6-2.69,6-6,6z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,15c-3.86,0-7-3.141-7-7c0-3.86,3.14-7,7-7c3.859,0,7,3.14,7,7C15,11.859,11.859,15,8,15L8,15z" fill="url(#SVGID_1_)"/>
+<path d="M8,2C4.691,2,2,4.691,2,8s2.691,6,6,6s6-2.691,6-6S11.309,2,8,2z M8,13c-2.757,0-5-2.244-5-5 c0-2.757,2.243-5,5-5s5,2.243,5,5C13,10.756,10.757,13,8,13z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,1C4.14,1,1,4.14,1,8c0,3.859,3.14,7,7,7c3.859,0,7-3.141,7-7C15,4.14,11.859,1,8,1z M8,14 c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S11.309,14,8,14z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="8" y1="1" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.9995" x2="7.9995" y1="1" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_delete_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_delete_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="84px" version="1.1" viewBox="0 0 84 84" width="84px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="42" x2="42" y1="7.042" y2="80.78">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="41.9995" x2="41.9995" y1="7.0425" y2="80.7841">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M16.44,18.82l17.1-3.017-0.98-5.552,16.05-2.831,0.979,5.553,16.8-2.963,1.171,6.634-49.96,8.811-1.16-6.63zm19.97-3.52l10.32-1.819-0.473-2.682-10.32,1.819,0.47,2.68z" fill="url(#SVGID_1_)"/>
-<path d="M48.21,8l0.98,5.553,16.8-2.963,0.997,5.649-48.98,8.64-0.997-5.65,17.1-3.017-0.98-5.552,15.08-2.66m-12.21,7.88l11.3-1.993-0.646-3.666-11.3,1.993,0.65,3.67m13.02-9.038l-0.984,0.174-15.08,2.657-0.98,0.173,0.174,0.985,0.807,4.566-16.12,2.84-0.985,0.173,0.174,0.985,0.997,5.65,0.174,0.984,0.985-0.174,48.98-8.637,0.984-0.173-0.174-0.985-0.997-5.649-0.17-0.978-0.984,0.174-15.82,2.789-0.807-4.568-0.17-0.99zm-12.51,6.178l9.332-1.646,0.299,1.696-9.332,1.646-0.3-1.7z" fill="#FFFFFF"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.32" x2="43.32" y1="6.716" y2="77.16">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M16.435,18.82l17.105-3.017l-0.98-5.552l16.053-2.831l0.979,5.553l16.803-2.963l1.171,6.634 l-49.961,8.811L16.435,18.82z M36.408,15.299l10.315-1.819l-0.473-2.682l-10.315,1.819L36.408,15.299z" fill="url(#SVGID_1_)"/>
+<path d="M48.207,8l0.98,5.553l16.802-2.963l0.997,5.649L18.01,24.876l-0.997-5.65l17.105-3.017l-0.98-5.552 L48.207,8 M36.002,15.878l11.301-1.993l-0.646-3.666l-11.3,1.993L36.002,15.878 M49.018,6.842l-0.984,0.174L32.965,9.673 L31.98,9.846l0.174,0.985l0.807,4.566L16.84,18.241l-0.985,0.173l0.174,0.985l0.997,5.65l0.174,0.984l0.985-0.174l48.976-8.637 l0.984-0.173l-0.174-0.985l-0.997-5.649L66.8,9.432l-0.984,0.174l-15.817,2.789l-0.807-4.568L49.018,6.842L49.018,6.842z M36.514,13.023l9.332-1.646l0.299,1.696l-9.332,1.646L36.514,13.023L36.514,13.023z" fill="#FFFFFF"/>
+</g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.3232" x2="43.3232" y1="6.7163" y2="77.1645">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
-<path d="M19.87,76.5v-48.82h46.9v48.82h-46.91zm37.3-6.74v-37.25h-4.74v37.25h4.739zm-11.48,0v-37.25h-4.739v37.25h4.74zm-11.47,0v-37.25h-4.738v37.25h4.735z" fill="url(#SVGID_2_)"/>
-<path d="M66.28,28.18v47.82h-45.91v-47.82h45.9m-14.34,42.08h5.74v-38.25h-5.74v38.25m-11.48,0h5.739v-38.25h-5.739v38.25m-11.47,0h5.738v-38.25h-5.738v38.25m38.3-43.08h-47.91v49.82h47.9v-49.82-0.004zm-14.35,5.83h3.74v36.25h-3.74v-36.25,0.001zm-11.48,0h3.739v36.25h-3.739v-36.25,0.001zm-11.47,0h3.738v36.25h-3.738v-36.25,0.001z" fill="#FFFFFF"/>
+<path d="M19.87,76.5V27.684h46.905V76.5H19.87z M57.169,69.76V32.509h-4.74V69.76H57.169z M45.69,69.76 V32.509h-4.739V69.76H45.69z M34.215,69.76V32.509h-4.738V69.76H34.215z" fill="url(#SVGID_2_)"/>
+<path d="M66.275,28.184V76H20.37V28.184H66.275 M51.929,70.26h5.74V32.009h-5.74V70.26 M40.452,70.26h5.739V32.009 h-5.739V70.26 M28.977,70.26h5.738V32.009h-5.738V70.26 M67.275,27.184h-1H20.37h-1v1V76v1h1h45.905h1v-1V28.184V27.184 L67.275,27.184z M52.929,33.009h3.74V69.26h-3.74V33.009L52.929,33.009z M41.452,33.009h3.739V69.26h-3.739V33.009L41.452,33.009z M29.977,33.009h3.738V69.26h-3.738V33.009L29.977,33.009z" fill="#FFFFFF"/>
+</g>
<rect fill="none" height="84" width="84"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_delete_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_delete_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="84px" version="1.1" viewBox="0 0 84 84" width="84px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.04,21.19v-7.106h18.48v-5.995h17.28v6.001h18.16v7.106h-53.92zm32.73-7.1v-2.962h-11.21v2.962h11.21z" fill="#3C3C3C"/>
-<path d="M50.31,8.585v6.001h18.16v6.106h-52.93v-6.106h18.48v-6.005h16.29m-14.25,6.005h12.21v-3.962h-12.21v3.956m15.25-7.001h-18.29v6.001h-18.48v8.106h54.93v-8.106h-18.16v-6.005h0.004zm-14.25,4.035h10.21v1.962h-10.21v-1.956l0.004-0.004z" fill="#FFFFFF"/>
-<path d="M17.07,75.92v-51.9h49.86v51.89h-49.86zm39.7-7.11v-39.72h-5.109v39.71h5.109zm-12.22,0v-39.72h-5.107v39.71h5.112zm-12.21,0v-39.72h-5.107v39.71h5.109z" fill="#3C3C3C"/>
-<path d="M66.43,24.52v50.89h-48.86v-50.89h48.86m-15.27,44.79h6.109v-40.72h-6.109v40.71m-12.22,0.004h6.107v-40.72h-6.107v40.71m-12.21,0.004h6.107v-40.72h-6.107v40.71m40.7-45.79h-50.86v52.89h50.86v-52.89-0.003zm-15.27,6.08h4.109v38.71h-4.109v-38.72,0.005zm-12.22,0h4.107v38.71h-4.107v-38.72,0.005zm-12.21,0h4.107v38.71h-4.107v-38.72,0.005z" fill="#FFFFFF"/>
+<g>
+<path d="M15.036,21.192v-7.106h18.484V8.085h17.285v6.001h18.158v7.106H15.036z M47.769,14.086v-2.962H36.556v2.962 H47.769z" fill="#3C3C3C"/>
+<path d="M50.306,8.585v6.001h18.158v6.106H15.536v-6.106h18.484V8.585H50.306 M36.056,14.586h12.213v-3.962H36.056 V14.586 M51.306,7.585h-1H34.021h-1v1v5.001H15.536h-1v1v6.106v1h1h52.928h1v-1v-6.106v-1h-1H51.306V8.585V7.585L51.306,7.585z M37.056,11.624h10.213v1.962H37.056V11.624L37.056,11.624z" fill="#FFFFFF"/>
+</g>
+<g>
+<path d="M17.071,75.915V24.023h49.857v51.892H17.071z M56.769,68.806V29.095h-5.109v39.711H56.769z M44.552,68.806 V29.095h-5.107v39.711H44.552z M32.339,68.806V29.095h-5.107v39.711H32.339z" fill="#3C3C3C"/>
+<path d="M66.429,24.523v50.892H17.571V24.523H66.429 M51.159,69.306h6.109V28.595h-6.109V69.306 M38.944,69.306 h6.107V28.595h-6.107V69.306 M26.731,69.306h6.107V28.595h-6.107V69.306 M67.429,23.523h-1H17.571h-1v1v50.892v1h1h48.857h1v-1 V24.523V23.523L67.429,23.523z M52.159,29.595h4.109v38.711h-4.109V29.595L52.159,29.595z M39.944,29.595h4.107v38.711h-4.107 V29.595L39.944,29.595z M27.731,29.595h4.107v38.711h-4.107V29.595L27.731,29.595z" fill="#FFFFFF"/>
+</g>
<rect fill="none" height="84" width="84"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_dialer_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_dialer_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="82px" version="1.1" viewBox="0 0 82 82" width="82px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M7,82c-3.86,0-7-3.141-7-7v-68c0-3.86,3.14-7,7-7h68c3.859,0,7,3.14,7,7v68c0,3.859-3.141,7-7,7h-68z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M81,75c0,3.3-2.7,6-6,6h-68c-3.3,0-6-2.7-6-6v-67c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6v67z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M81,74c0,3.3-2.7,6-6,6h-68c-3.3,0-6-2.7-6-6v-67c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6v67z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<path d="M75,1h-68c-3.3,0-6,2.7-6,6v67c0,3.3,2.7,6,6,6h68c3.3,0,6-2.7,6-6v-67c0-3.3-2.7-6-6-6zm5,73c0,2.757-2.243,5-5,5h-68c-2.757,0-5-2.243-5-5v-67c0-2.757,2.243-5,5-5h68c2.757,0,5,2.243,5,5v67z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M29.05,20.7c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.83c0-1.814,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.47,3.284,3.284v3.832z" fill="#3C3C3C"/>
-<path d="M47.84,20.7c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.83c0-1.814,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.47,3.285,3.284v3.832z" fill="#3C3C3C"/>
-<path d="M66.64,20.7c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.83c0-1.814,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.47,3.284,3.284v3.832z" fill="#3C3C3C"/>
-<path d="M29.05,35.76c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284v3.825z" fill="#3C3C3C"/>
-<path d="M47.84,35.76c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284v3.825z" fill="#3C3C3C"/>
-<path d="M66.64,35.76c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284v3.825z" fill="#3C3C3C"/>
-<path d="M29.05,50.53c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284v3.834z" fill="#3C3C3C"/>
-<path d="M47.84,50.53c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284v3.834z" fill="#3C3C3C"/>
-<path d="M47.84,65.13c0,1.815-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.469-3.284-3.284v-3.831c0-1.813,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.471,3.285,3.284v3.83z" fill="#3C3C3C"/>
-<path d="M66.64,50.53c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284v3.834z" fill="#3C3C3C"/>
+<path d="M7,82c-3.86,0-7-3.141-7-7V7c0-3.86,3.14-7,7-7h68c3.859,0,7,3.14,7,7v68c0,3.859-3.141,7-7,7 H7z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M81,75c0,3.3-2.7,6-6,6H7c-3.3,0-6-2.7-6-6V8c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6V75z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M81,74c0,3.3-2.7,6-6,6H7c-3.3,0-6-2.7-6-6V7c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6V74z" fill="url(#SVGID_1_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<path d="M75,1H7C3.7,1,1,3.7,1,7v67c0,3.3,2.7,6,6,6h68c3.3,0,6-2.7,6-6V7C81,3.7,78.3,1,75,1z M80,74 c0,2.757-2.243,5-5,5H7c-2.757,0-5-2.243-5-5V7c0-2.757,2.243-5,5-5h68c2.757,0,5,2.243,5,5V74z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<g>
+<path d="M29.049,20.702c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284V16.87 c0-1.814,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.47,3.284,3.284V20.702z" fill="#3C3C3C"/>
+<path d="M47.844,20.702c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284V16.87 c0-1.814,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.47,3.285,3.284V20.702z" fill="#3C3C3C"/>
+<path d="M66.636,20.702c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284V16.87 c0-1.814,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.47,3.284,3.284V20.702z" fill="#3C3C3C"/>
+<path d="M29.049,35.755c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284V35.755z" fill="#3C3C3C"/>
+<path d="M47.844,35.755c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284V35.755z" fill="#3C3C3C"/>
+<path d="M66.636,35.755c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284V35.755z" fill="#3C3C3C"/>
+<path d="M29.049,50.534c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284V50.534z" fill="#3C3C3C"/>
+<path d="M47.844,50.534c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284V50.534z" fill="#3C3C3C"/>
+<path d="M47.844,65.13c0,1.815-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.469-3.284-3.284v-3.831 c0-1.813,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.471,3.285,3.284V65.13z" fill="#3C3C3C"/>
+<path d="M66.636,50.534c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284V50.534z" fill="#3C3C3C"/>
+</g>
+</g>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="41" x2="41" y1="1" y2="80">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0" stop-color="#FDFDFE"/>
-<stop offset="0.9" stop-color="#E6E6F0"/>
-<stop offset="1" stop-color="#DCDCE6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="40.9995" x2="40.9995" y1="1" y2="80.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0" style="stop-color:#FDFDFE"/>
+<stop offset="0.9" style="stop-color:#E6E6F0"/>
+<stop offset="1" style="stop-color:#DCDCE6"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_dialer_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hs_dialer_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,25 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="82px" version="1.1" viewBox="0 0 82 82" width="82px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M7,82c-3.859,0-7-3.141-7-7v-68c0-3.86,3.141-7,7-7h68c3.859,0,7,3.14,7,7v68c0,3.859-3.141,7-7,7h-68z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M81,75c0,3.3-2.7,6-6,6h-68c-3.3,0-6-2.7-6-6v-67c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6v67z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M81,74c0,3.3-2.7,6-6,6h-68c-3.3,0-6-2.7-6-6v-67c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6v67z" fill="url(#SVGID_1_)"/>
-<path d="M75,2h-68c-2.757,0-5,2.243-5,5v67c0,2.757,2.243,5,5,5h68c2.757,0,5-2.243,5-5v-67c0-2.757-2.24-5-5-5zm4,72c0,2.205-1.794,4-4,4h-68c-2.206,0-4-1.795-4-4v-67c0-2.206,1.794-4,4-4h68c2.206,0,4,1.794,4,4v67z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M75,1h-68c-3.3,0-6,2.7-6,6v67c0,3.3,2.7,6,6,6h68c3.3,0,6-2.7,6-6v-67c0-3.3-2.7-6-6-6zm5,73c0,2.757-2.243,5-5,5h-68c-2.757,0-5-2.243-5-5v-67c0-2.757,2.243-5,5-5h68c2.757,0,5,2.243,5,5v67z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M29.05,20.7c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.83c0-1.814,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.47,3.284,3.284v3.832z" fill="#FFFFFF"/>
-<path d="M47.84,20.7c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.83c0-1.814,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.47,3.285,3.284v3.832z" fill="#FFFFFF"/>
-<path d="M66.64,20.7c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.83c0-1.814,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.47,3.284,3.284v3.832z" fill="#FFFFFF"/>
-<path d="M29.05,35.76c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284v3.825z" fill="#FFFFFF"/>
-<path d="M47.84,35.76c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284v3.825z" fill="#FFFFFF"/>
-<path d="M66.64,35.76c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284v3.825z" fill="#FFFFFF"/>
-<path d="M29.05,50.53c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284v3.834z" fill="#FFFFFF"/>
-<path d="M47.84,50.53c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284v3.834z" fill="#FFFFFF"/>
-<path d="M47.84,65.13c0,1.815-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.469-3.284-3.284v-3.831c0-1.813,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.471,3.285,3.284v3.83z" fill="#FFFFFF"/>
-<path d="M66.64,50.53c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284v3.834z" fill="#FFFFFF"/>
+<path d="M7,82c-3.859,0-7-3.141-7-7V7c0-3.86,3.141-7,7-7h68c3.859,0,7,3.14,7,7v68 c0,3.859-3.141,7-7,7H7z" fill="#14141E" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M81,75c0,3.3-2.7,6-6,6H7c-3.3,0-6-2.7-6-6V8c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6V75z" fill="#14141E" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M81,74c0,3.3-2.7,6-6,6H7c-3.3,0-6-2.7-6-6V7c0-3.3,2.7-6,6-6h68c3.3,0,6,2.7,6,6V74z" fill="url(#SVGID_1_)"/>
+<path d="M75,2H7C4.243,2,2,4.243,2,7v67c0,2.757,2.243,5,5,5h68c2.757,0,5-2.243,5-5V7 C80,4.243,77.757,2,75,2z M79,74c0,2.205-1.794,4-4,4H7c-2.206,0-4-1.795-4-4V7c0-2.206,1.794-4,4-4h68c2.206,0,4,1.794,4,4V74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M75,1H7C3.7,1,1,3.7,1,7v67c0,3.3,2.7,6,6,6h68c3.3,0,6-2.7,6-6V7C81,3.7,78.3,1,75,1z M80,74 c0,2.757-2.243,5-5,5H7c-2.757,0-5-2.243-5-5V7c0-2.757,2.243-5,5-5h68c2.757,0,5,2.243,5,5V74z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<g>
+<g>
+<path d="M29.049,20.702c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284V16.87 c0-1.814,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.47,3.284,3.284V20.702z" fill="#FFFFFF"/>
+<path d="M47.844,20.702c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284V16.87 c0-1.814,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.47,3.285,3.284V20.702z" fill="#FFFFFF"/>
+<path d="M66.636,20.702c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284V16.87 c0-1.814,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.47,3.284,3.284V20.702z" fill="#FFFFFF"/>
+<path d="M29.049,35.755c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284V35.755z" fill="#FFFFFF"/>
+<path d="M47.844,35.755c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284V35.755z" fill="#FFFFFF"/>
+<path d="M66.636,35.755c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284V35.755z" fill="#FFFFFF"/>
+<path d="M29.049,50.534c0,1.813-1.472,3.284-3.284,3.284h-7.116c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.116c1.813,0,3.284,1.469,3.284,3.284V50.534z" fill="#FFFFFF"/>
+<path d="M47.844,50.534c0,1.813-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.469,3.285,3.284V50.534z" fill="#FFFFFF"/>
+<path d="M47.844,65.13c0,1.815-1.472,3.284-3.285,3.284h-7.115c-1.815,0-3.284-1.469-3.284-3.284v-3.831 c0-1.813,1.469-3.284,3.284-3.284h7.115c1.813,0,3.285,1.471,3.285,3.284V65.13z" fill="#FFFFFF"/>
+<path d="M66.636,50.534c0,1.813-1.471,3.284-3.284,3.284h-7.115c-1.813,0-3.284-1.471-3.284-3.284v-3.831 c0-1.815,1.471-3.284,3.284-3.284h7.115c1.813,0,3.284,1.469,3.284,3.284V50.534z" fill="#FFFFFF"/>
+</g>
+</g>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="41" x2="41" y1="80" y2="1">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="41.0005" x2="41.0005" y1="80" y2="1.0005">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hspage_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hspage_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<path d="M8,14c-3.309,0-6-2.691-6-6s2.691-6,6-6,6,2.691,6,6-2.69,6-6,6z" fill="url(#SVGID_1_)"/>
-<path d="M8,2c-3.309,0-6,2.691-6,6s2.691,6,6,6,6-2.691,6-6-2.69-6-6-6zm0,11c-2.757,0-5-2.243-5-5s2.243-5,5-5,5,2.243,5,5-2.24,5-5,5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8,14c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S11.309,14,8,14L8,14z" fill="url(#SVGID_1_)"/>
+<path d="M8,2C4.691,2,2,4.691,2,8s2.691,6,6,6s6-2.691,6-6S11.309,2,8,2z M8,13c-2.757,0-5-2.243-5-5s2.243-5,5-5 s5,2.243,5,5S10.757,13,8,13z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="8" y1="2" y2="14">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.9995" x2="7.9995" y1="2" y2="14.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hspage_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hspage_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="8" y1="2" y2="14">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.9995" x2="7.9995" y1="2" y2="14.0005">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
-<path d="M8,14c-3.309,0-6-2.691-6-6s2.691-6,6-6,6,2.691,6,6-2.69,6-6,6z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8" x2="8" y1="2" y2="14">
-<stop offset="0" stop-color="#9696A0"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<path d="M8,14c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S11.309,14,8,14L8,14z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.9995" x2="7.9995" y1="2" y2="14.0005">
+<stop offset="0" style="stop-color:#9696A0"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
-<path d="M8,2c-3.309,0-6,2.691-6,6s2.691,6,6,6,6-2.691,6-6-2.69-6-6-6zm0,11c-2.757,0-5-2.243-5-5s2.243-5,5-5,5,2.243,5,5-2.24,5-5,5z" fill="url(#SVGID_2_)"/>
-</svg>
\ No newline at end of file
+<path d="M8,2C4.691,2,2,4.691,2,8s2.691,6,6,6s6-2.691,6-6S11.309,2,8,2z M8,13c-2.757,0-5-2.243-5-5 s2.243-5,5-5s5,2.243,5,5S10.757,13,8,13z" fill="url(#SVGID_2_)"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hsradio_bg.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hsradio_bg.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="178px" version="1.1" viewBox="0 0 248 178" width="248px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="178" width="248"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240" x2="240" y1="81.5" y2="49.5">
-<stop offset="0" stop-color="#282828"/>
-<stop offset="0.0043" stop-color="#282828"/>
-<stop offset="0.65" stop-color="#828282"/>
-<stop offset="1" stop-color="#505050"/>
+<stop offset="0" style="stop-color:#282828"/>
+<stop offset="0.0043" style="stop-color:#282828"/>
+<stop offset="0.65" style="stop-color:#828282"/>
+<stop offset="1" style="stop-color:#505050"/>
</linearGradient>
-<path d="M247,78.5c0,1.65-1.35,3-3,3h-8c-1.65,0-3-1.35-3-3v-26c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3v26z" fill="url(#SVGID_1_)"/>
+<path d="M247,78.5c0,1.65-1.35,3-3,3h-8c-1.65,0-3-1.35-3-3v-26c0-1.65,1.35-3,3-3h8c1.65,0,3,1.35,3,3V78.5z " fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="240" x2="240" y1="80.5" y2="50.5">
-<stop offset="0" stop-color="#3C3C3C"/>
-<stop offset="0.0043" stop-color="#3C3C3C"/>
-<stop offset="0.65" stop-color="#969696"/>
-<stop offset="1" stop-color="#646464"/>
+<stop offset="0" style="stop-color:#3C3C3C"/>
+<stop offset="0.0043" style="stop-color:#3C3C3C"/>
+<stop offset="0.65" style="stop-color:#969696"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<path d="M236,80.5c-1.103,0-2-0.897-2-2v-26c0-1.103,0.897-2,2-2h8c1.103,0,2,0.897,2,2v26c0,1.103-0.897,2-2,2h-8z" fill="url(#SVGID_2_)"/>
+<path d="M236,80.5c-1.103,0-2-0.897-2-2v-26c0-1.103,0.897-2,2-2h8c1.103,0,2,0.897,2,2v26 c0,1.103-0.897,2-2,2H236z" fill="url(#SVGID_2_)"/>
<rect fill-opacity="0.2" height="1" width="6" x="240" y="53"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" width="6" x="240" y="54"/>
<rect fill-opacity="0.2" height="1" width="6" x="240" y="57"/>
@@ -30,56 +30,56 @@
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" width="6" x="240" y="74"/>
<rect fill-opacity="0.2" height="1" width="6" x="240" y="77"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" width="6" x="240" y="78"/>
-<path d="M230,26h-6v-11c0-2.206-1.794-4-4-4h-4c-2.206,0-4,1.794-4,4v0.734l-102.7-7.176-0.07,0.997-77.77-5.442,0.14-1.994-6.983-0.489-0.698,9.976,6.983,0.489,0.14-1.996,77.81,5.441-0.069,0.997,103.3,7.22v2.25h-194c-6.065,0-11,4.935-11,11v126c0,6.065,4.935,11,11,11h212c6.065,0,11-4.935,11-11v-126c0-6.06-4.9-11-11-11z" fill-opacity="0.15"/>
-<linearGradient gradientTransform="matrix(0.9976 0.0698 -0.0698 0.9976 414.4381 -95.1283)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-243.1" x2="-243.1" y1="125.7" y2="131.7">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="0.0567" stop-color="#D5D5D8"/>
-<stop offset="0.1295" stop-color="#ECECEE"/>
-<stop offset="0.1981" stop-color="#FAFAFB"/>
-<stop offset="0.2576" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6E6E73"/>
-<stop offset="1" stop-color="#AAAAAF"/>
+<path d="M230,26h-6V15c0-2.206-1.794-4-4-4h-4c-2.206,0-4,1.794-4,4v0.734L109.307,8.554l-0.07,0.997 L31.428,4.109l0.14-1.994l-6.983-0.489l-0.698,9.976l6.983,0.489l0.14-1.996l77.81,5.441l-0.069,0.997L212,23.754V26H18 c-6.065,0-11,4.935-11,11v126c0,6.065,4.935,11,11,11h212c6.065,0,11-4.935,11-11V37C241,30.935,236.065,26,230,26z" fill-opacity="0.15"/>
+<linearGradient gradientTransform="matrix(0.9976 0.0698 -0.0698 0.9976 414.4381 -95.1283)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-243.1411" x2="-243.1411" y1="125.7158" y2="131.7197">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="0.0567" style="stop-color:#D5D5D8"/>
+<stop offset="0.1295" style="stop-color:#ECECEE"/>
+<stop offset="0.1981" style="stop-color:#FAFAFB"/>
+<stop offset="0.2576" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6E6E73"/>
+<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="109.8,15.6,215.6,23,216,17.02,110.2,9.621"/>
-<linearGradient gradientTransform="matrix(0.9976 0.0698 -0.0698 0.9976 414.4381 -95.1283)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-336.1" x2="-336.1" y1="126.7" y2="130.7">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="0.0567" stop-color="#D5D5D8"/>
-<stop offset="0.1295" stop-color="#ECECEE"/>
-<stop offset="0.1981" stop-color="#FAFAFB"/>
-<stop offset="0.2576" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6E6E73"/>
-<stop offset="1" stop-color="#AAAAAF"/>
+<polygon fill="url(#SVGID_3_)" points="109.816,15.605 215.559,23 215.977,17.015 110.234,9.621 "/>
+<linearGradient gradientTransform="matrix(0.9976 0.0698 -0.0698 0.9976 414.4381 -95.1283)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-336.1372" x2="-336.1372" y1="126.7207" y2="130.7227">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="0.0567" style="stop-color:#D5D5D8"/>
+<stop offset="0.1295" style="stop-color:#ECECEE"/>
+<stop offset="0.1981" style="stop-color:#FAFAFB"/>
+<stop offset="0.2576" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6E6E73"/>
+<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="30.08,9.027,109.9,14.61,110.2,10.62,30.36,5.037"/>
-<linearGradient gradientTransform="matrix(0.9976 0.0698 -0.0698 0.9976 414.4381 -95.1283)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-378.6" x2="-378.6" y1="124.7" y2="132.7">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="0.0567" stop-color="#D5D5D8"/>
-<stop offset="0.1295" stop-color="#ECECEE"/>
-<stop offset="0.1981" stop-color="#FAFAFB"/>
-<stop offset="0.2576" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6E6E73"/>
-<stop offset="1" stop-color="#AAAAAF"/>
+<polygon fill="url(#SVGID_4_)" points="30.081,9.027 109.887,14.608 110.165,10.618 30.36,5.037 "/>
+<linearGradient gradientTransform="matrix(0.9976 0.0698 -0.0698 0.9976 414.4381 -95.1283)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-378.6362" x2="-378.6362" y1="124.7236" y2="132.7236">
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="0.0567" style="stop-color:#D5D5D8"/>
+<stop offset="0.1295" style="stop-color:#ECECEE"/>
+<stop offset="0.1981" style="stop-color:#FAFAFB"/>
+<stop offset="0.2576" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6E6E73"/>
+<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="24.95,10.67,29.94,11.02,30.5,3.043,25.51,2.693"/>
-<rect fill-opacity="0.2" height="4" transform="matrix(-0.9976 -0.0693 0.0693 -0.9976 217.9186 32.7177)" width="1" x="109" y="10.58"/>
-<rect fill-opacity="0.2" height="4" transform="matrix(0.9975 0.0703 -0.0703 0.9975 0.5732 -2.1434)" width="1" x="30.22" y="5.067"/>
+<polygon fill="url(#SVGID_5_)" points="24.953,10.674 29.941,11.023 30.5,3.043 25.512,2.693 "/>
+<rect fill-opacity="0.2" height="4" transform="matrix(-0.9976 -0.0693 0.0693 -0.9976 217.9186 32.7177)" width="1" x="109.027" y="10.579"/>
+<rect fill-opacity="0.2" height="4" transform="matrix(0.9975 0.0703 -0.0703 0.9975 0.5732 -2.1434)" width="1" x="30.219" y="5.067"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="213" x2="223" y1="22.5" y2="22.5">
-<stop offset="0" stop-color="#BEBEC3"/>
-<stop offset="0.0567" stop-color="#D5D5D8"/>
-<stop offset="0.1295" stop-color="#ECECEE"/>
-<stop offset="0.1981" stop-color="#FAFAFB"/>
-<stop offset="0.2576" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6E6E73"/>
-<stop offset="1" stop-color="#AAAAAF"/>
+<stop offset="0" style="stop-color:#BEBEC3"/>
+<stop offset="0.0567" style="stop-color:#D5D5D8"/>
+<stop offset="0.1295" style="stop-color:#ECECEE"/>
+<stop offset="0.1981" style="stop-color:#FAFAFB"/>
+<stop offset="0.2576" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6E6E73"/>
+<stop offset="1" style="stop-color:#AAAAAF"/>
</linearGradient>
-<path d="M223,30c0,1.65-1.35,3-3,3h-4c-1.65,0-3-1.35-3-3v-15c0-1.65,1.35-3,3-3h4c1.65,0,3,1.35,3,3v15z" fill="url(#SVGID_6_)"/>
-<polygon fill-opacity="0.2" points="212,22.75,213,22.82,213,16.81,212,16.74"/>
-<path d="M240,163c0,5.5-4.5,10-10,10h-212c-5.5,0-10-4.5-10-10v-125c0-5.5,4.5-10,10-10h212c5.5,0,10,4.5,10,10v125z" fill-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="124" x2="124" y1="27" y2="172">
-<stop offset="0" stop-color="#C8C8CD"/>
-<stop offset="1" stop-color="#78787D"/>
+<path d="M223,30c0,1.65-1.35,3-3,3h-4c-1.65,0-3-1.35-3-3V15c0-1.65,1.35-3,3-3h4c1.65,0,3,1.35,3,3V30z" fill="url(#SVGID_6_)"/>
+<polygon fill-opacity="0.2" points="212,22.751 213,22.821 213,16.807 212,16.736 "/>
+<path d="M240,163c0,5.5-4.5,10-10,10H18c-5.5,0-10-4.5-10-10V38c0-5.5,4.5-10,10-10h212c5.5,0,10,4.5,10,10V163z " fill-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="123.9995" x2="123.9995" y1="27" y2="172.0005">
+<stop offset="0" style="stop-color:#C8C8CD"/>
+<stop offset="1" style="stop-color:#78787D"/>
</linearGradient>
-<path d="M240,162c0,5.5-4.5,10-10,10h-212c-5.5,0-10-4.5-10-10v-125c0-5.5,4.5-10,10-10h212c5.5,0,10,4.5,10,10v125z" fill="url(#SVGID_7_)"/>
-<path d="M230,28h-212c-4.963,0-9,4.037-9,9v125c0,4.963,4.037,9,9,9h212c4.963,0,9-4.037,9-9v-125c0-4.96-4-9-9-9zm8,134c0,4.411-3.589,8-8,8h-212c-4.411,0-8-3.589-8-8v-125c0-4.411,3.589-8,8-8h212c4.411,0,8,3.589,8,8v125z" fill="#FFFFFF" fill-opacity="0.2"/>
-<path d="M230,27h-212c-5.5,0-10,4.5-10,10v125c0,5.5,4.5,10,10,10h212c5.5,0,10-4.5,10-10v-125c0-5.5-4.5-10-10-10zm9,135c0,4.963-4.037,9-9,9h-212c-4.963,0-9-4.037-9-9v-125c0-4.963,4.037-9,9-9h212c4.963,0,9,4.037,9,9v125z" fill-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M240,162c0,5.5-4.5,10-10,10H18c-5.5,0-10-4.5-10-10V37c0-5.5,4.5-10,10-10h212c5.5,0,10,4.5,10,10 V162z" fill="url(#SVGID_7_)"/>
+<path d="M230,28H18c-4.963,0-9,4.037-9,9v125c0,4.963,4.037,9,9,9h212c4.963,0,9-4.037,9-9V37 C239,32.037,234.963,28,230,28z M238,162c0,4.411-3.589,8-8,8H18c-4.411,0-8-3.589-8-8V37c0-4.411,3.589-8,8-8h212 c4.411,0,8,3.589,8,8V162z" fill="#FFFFFF" fill-opacity="0.2"/>
+<path d="M230,27H18c-5.5,0-10,4.5-10,10v125c0,5.5,4.5,10,10,10h212c5.5,0,10-4.5,10-10V37 C240,31.5,235.5,27,230,27z M239,162c0,4.963-4.037,9-9,9H18c-4.963,0-9-4.037-9-9V37c0-4.963,4.037-9,9-9h212c4.963,0,9,4.037,9,9 V162z" fill-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hsscreen_bg_lsc.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hsscreen_bg_lsc.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="360px" version="1.1" viewBox="0 0 640 360" width="640px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="360" width="640"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="320" x2="320" y2="360">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="319.9995" x2="319.9995" y1="0" y2="360.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hsscreen_bg_prt.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_hsscreen_bg_prt.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="640px" version="1.1" viewBox="0 0 360 640" width="360px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="640" width="360"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="180" x2="180" y2="640">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="179.9995" x2="179.9995" y1="0" y2="640.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_input_h_swipe.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_input_h_swipe.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,118 +1,118 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="126px" version="1.1" viewBox="0 0 15 126" width="15px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3708" x2="-3708" y1="-1235" y2="-1249">
-<stop offset="0" stop-color="#F5F5FA"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-3707.98" x2="-3707.98" y1="-1234.5195" y2="-1249.0195">
+<stop offset="0" style="stop-color:#F5F5FA"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
-<path d="M0,126h9c3.3,0,6-2.7,6-6v-114c0-3.3-2.7-6-6-6h-9v126z" fill="url(#SVGID_1_)"/>
-<path d="M0,1h9c2.757,0,5,2.243,5,5v114c0,2.757-2.243,5-5,5h-9v1h9c3.3,0,6-2.7,6-6v-114c0-3.3-2.7-6-6-6h-9v1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3736" x2="-3736" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M0,126h9c3.3,0,6-2.7,6-6V6c0-3.3-2.7-6-6-6H0V126z" fill="url(#SVGID_1_)"/>
+<path d="M0,1h9c2.757,0,5,2.243,5,5v114c0,2.757-2.243,5-5,5H0v1h9 c3.3,0,6-2.7,6-6V6c0-3.3-2.7-6-6-6H0V1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3735.981" x2="-3735.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="91" fill="url(#SVGID_2_)" r="2"/>
-<path d="M3,91c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3736" x2="-3736" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,91c0-0.932,0.639-1.706,1.5-1.93C4.34,89.028,4.174,89,4,89 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,92.706,3,91.931,3,91z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3735.981" x2="-3735.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="91" fill="url(#SVGID_3_)" r="2"/>
-<path d="M9,91c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-3729" x2="-3729" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,91c0-0.932,0.639-1.706,1.5-1.93 C10.34,89.028,10.174,89,10,89c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,92.706,9,91.931,9,91z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-3728.981" x2="-3728.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="84" fill="url(#SVGID_4_)" r="2"/>
-<path d="M3,84c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-3729" x2="-3729" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,84c0-0.932,0.639-1.706,1.5-1.93C4.34,82.028,4.174,82,4,82 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,85.706,3,84.931,3,84z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-3728.981" x2="-3728.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="84" fill="url(#SVGID_5_)" r="2"/>
-<path d="M9,84c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-3722" x2="-3722" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,84c0-0.932,0.639-1.706,1.5-1.93 C10.34,82.028,10.174,82,10,82c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,85.706,9,84.931,9,84z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-3721.981" x2="-3721.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="77" fill="url(#SVGID_6_)" r="2"/>
-<path d="M3,77c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-3722" x2="-3722" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,77c0-0.932,0.639-1.706,1.5-1.93C4.34,75.028,4.174,75,4,75 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,78.706,3,77.931,3,77z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-3721.981" x2="-3721.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="77" fill="url(#SVGID_7_)" r="2"/>
-<path d="M9,77c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-3715" x2="-3715" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,77c0-0.932,0.639-1.706,1.5-1.93 C10.34,75.028,10.174,75,10,75c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,78.706,9,77.931,9,77z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-3714.981" x2="-3714.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="70" fill="url(#SVGID_8_)" r="2"/>
-<path d="M3,70c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-3715" x2="-3715" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,70c0-0.932,0.639-1.706,1.5-1.93C4.34,68.028,4.174,68,4,68 c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,71.706,3,70.931,3,70z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-3714.981" x2="-3714.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="70" fill="url(#SVGID_9_)" r="2"/>
-<path d="M9,70c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-3708" x2="-3708" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,70c0-0.932,0.639-1.706,1.5-1.93 C10.34,68.028,10.174,68,10,68c-1.104,0-2,0.896-2,2c0,1.104,0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,71.706,9,70.931,9,70z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-3707.981" x2="-3707.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="63" fill="url(#SVGID_10_)" r="2"/>
-<path d="M3,63c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-3708" x2="-3708" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,63c0-0.932,0.639-1.706,1.5-1.93C4.34,61.029,4.174,61,4,61 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,64.706,3,63.931,3,63z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-3707.981" x2="-3707.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="63" fill="url(#SVGID_11_)" r="2"/>
-<path d="M9,63c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-3701" x2="-3701" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,63c0-0.932,0.639-1.706,1.5-1.93 C10.34,61.029,10.174,61,10,61c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.639,64.706,9,63.932,9,63z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-3700.981" x2="-3700.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="56" fill="url(#SVGID_12_)" r="2"/>
-<path d="M3,56c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3701" x2="-3701" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,56c0-0.932,0.639-1.706,1.5-1.93C4.34,54.029,4.174,54,4,54 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,57.706,3,56.932,3,56z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3700.981" x2="-3700.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="56" fill="url(#SVGID_13_)" r="2"/>
-<path d="M9,56c0-0.932,0.64-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.86-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3694" x2="-3694" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,56c0-0.932,0.64-1.706,1.5-1.93C10.34,54.029,10.174,54,10,54 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,57.706,9,56.932,9,56z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3693.981" x2="-3693.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="49" fill="url(#SVGID_14_)" r="2"/>
-<path d="M3,49c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-3694" x2="-3694" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,49c0-0.932,0.639-1.706,1.5-1.93C4.34,47.029,4.174,47,4,47 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,50.706,3,49.932,3,49z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-3693.981" x2="-3693.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="49" fill="url(#SVGID_15_)" r="2"/>
-<path d="M9,49c0-0.932,0.64-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.86-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-3687" x2="-3687" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,49c0-0.932,0.64-1.706,1.5-1.93C10.34,47.029,10.174,47,10,47 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,50.706,9,49.932,9,49z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-3686.981" x2="-3686.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="42" fill="url(#SVGID_16_)" r="2"/>
-<path d="M3,42c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-3687" x2="-3687" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,42c0-0.932,0.639-1.706,1.5-1.93C4.34,40.029,4.174,40,4,40 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,43.706,3,42.932,3,42z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-3686.981" x2="-3686.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="42" fill="url(#SVGID_17_)" r="2"/>
-<path d="M9,42c0-0.932,0.64-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.86-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-3680" x2="-3680" y1="-1241" y2="-1237">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M9,42c0-0.932,0.64-1.706,1.5-1.93C10.34,40.029,10.174,40,10,40 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,43.706,9,42.932,9,42z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-3679.981" x2="-3679.981" y1="-1240.5195" y2="-1236.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="4" cy="35" fill="url(#SVGID_18_)" r="2"/>
-<path d="M3,35c0-0.932,0.639-1.706,1.5-1.93-0.16-0.04-0.326-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.861-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-3680" x2="-3680" y1="-1247" y2="-1243">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M3,35c0-0.932,0.639-1.706,1.5-1.93C4.34,33.029,4.174,33,4,33 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C3.639,36.706,3,35.932,3,35z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0 -1 -1 0 -1234.5195 -3644.9805)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-3679.981" x2="-3679.981" y1="-1246.5195" y2="-1242.6528">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="10" cy="35" fill="url(#SVGID_19_)" r="2"/>
-<path d="M9,35c0-0.932,0.64-1.706,1.5-1.93-0.16-0.04-0.33-0.07-0.5-0.07-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07-0.86-0.22-1.5-1-1.5-1.93z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M9,35c0-0.932,0.64-1.706,1.5-1.93C10.34,33.029,10.174,33,10,33 c-1.104,0-2,0.896-2,2s0.896,2,2,2c0.174,0,0.34-0.029,0.5-0.07C9.64,36.706,9,35.932,9,35z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_input_v_swipe.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_input_v_swipe.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,118 +1,118 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 126 15" width="126px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="63" x2="63" y2="14.5">
-<stop offset="0" stop-color="#F5F5FA"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="62.9995" x2="62.9995" y1="0" y2="14.5005">
+<stop offset="0" style="stop-color:#F5F5FA"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
-<path d="M0,0v9c0,3.3,2.7,6,6,6h114c3.3,0,6-2.7,6-6v-9h-126z" fill="url(#SVGID_1_)"/>
-<path d="M125,0v9c0,2.757-2.243,5-5,5h-114c-2.757,0-5-2.243-5-5v-9h-1v9c0,3.3,2.7,6,6,6h114c3.3,0,6-2.7,6-6v-9h-1z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="35" x2="35" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M0,0v9c0,3.3,2.7,6,6,6h114c3.3,0,6-2.7,6-6V0H0z" fill="url(#SVGID_1_)"/>
+<path d="M125,0v9c0,2.757-2.243,5-5,5H6c-2.757,0-5-2.243-5-5V0H0v9c0,3.3,2.7,6,6,6h114 c3.3,0,6-2.7,6-6V0H125z" fill="#14141E" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="35" x2="35" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="35" cy="4" fill="url(#SVGID_2_)" r="2"/>
-<path d="M35,3c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="35" x2="35" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M35,3c0.931,0,1.706,0.639,1.929,1.5C36.971,4.34,37,4.174,37,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C33.294,3.639,34.069,3,35,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="35" x2="35" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="35" cy="10" fill="url(#SVGID_3_)" r="2"/>
-<path d="M35,9c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="42" x2="42" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M35,9c0.931,0,1.706,0.639,1.929,1.5C36.971,10.34,37,10.174,37,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C33.294,9.639,34.069,9,35,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="42" x2="42" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="42" cy="4" fill="url(#SVGID_4_)" r="2"/>
-<path d="M42,3c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42" x2="42" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M42,3c0.931,0,1.706,0.639,1.929,1.5C43.971,4.34,44,4.174,44,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C40.294,3.639,41.069,3,42,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42" x2="42" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="42" cy="10" fill="url(#SVGID_5_)" r="2"/>
-<path d="M42,9c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="49" x2="49" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M42,9c0.931,0,1.706,0.639,1.929,1.5C43.971,10.34,44,10.174,44,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C40.294,9.639,41.069,9,42,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="49" x2="49" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="49" cy="4" fill="url(#SVGID_6_)" r="2"/>
-<path d="M49,3c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="49" x2="49" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M49,3c0.931,0,1.706,0.639,1.929,1.5C50.971,4.34,51,4.174,51,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C47.294,3.639,48.069,3,49,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="49" x2="49" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="49" cy="10" fill="url(#SVGID_7_)" r="2"/>
-<path d="M49,9c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="56" x2="56" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M49,9c0.931,0,1.706,0.639,1.929,1.5C50.971,10.34,51,10.174,51,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C47.294,9.639,48.069,9,49,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="56" x2="56" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="56" cy="4" fill="url(#SVGID_8_)" r="2"/>
-<path d="M56,3c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="56" x2="56" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M56,3c0.931,0,1.706,0.639,1.929,1.5C57.971,4.34,58,4.174,58,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C54.294,3.639,55.069,3,56,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="56" x2="56" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="56" cy="10" fill="url(#SVGID_9_)" r="2"/>
-<path d="M56,9c0.931,0,1.706,0.639,1.929,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="63" x2="63" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M56,9c0.931,0,1.706,0.639,1.929,1.5C57.971,10.34,58,10.174,58,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C54.294,9.639,55.069,9,56,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="63.0005" x2="63.0005" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="63" cy="4" fill="url(#SVGID_10_)" r="2"/>
-<path d="M63,3c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="63" x2="63" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M63,3c0.931,0,1.706,0.639,1.93,1.5C64.971,4.34,65,4.174,65,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C61.294,3.639,62.069,3,63,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="63.0005" x2="63.0005" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="63" cy="10" fill="url(#SVGID_11_)" r="2"/>
-<path d="M63,9c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="70" x2="70" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M63,9c0.931,0,1.706,0.639,1.93,1.5C64.971,10.34,65,10.174,65,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.071,0.5C61.294,9.639,62.069,9,63,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="70" x2="70" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="70" cy="4" fill="url(#SVGID_12_)" r="2"/>
-<path d="M70,3c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="70" x2="70" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M70,3c0.931,0,1.706,0.639,1.93,1.5C71.971,4.34,72,4.174,72,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C68.294,3.639,69.069,3,70,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="70" x2="70" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="70" cy="10" fill="url(#SVGID_13_)" r="2"/>
-<path d="M70,9c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="77" x2="77" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M70,9c0.931,0,1.706,0.639,1.93,1.5C71.971,10.34,72,10.174,72,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C68.294,9.639,69.069,9,70,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="77" x2="77" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="77" cy="4" fill="url(#SVGID_14_)" r="2"/>
-<path d="M77,3c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="77" x2="77" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M77,3c0.931,0,1.706,0.639,1.93,1.5C78.971,4.34,79,4.174,79,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C75.294,3.639,76.069,3,77,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="77" x2="77" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="77" cy="10" fill="url(#SVGID_15_)" r="2"/>
-<path d="M77,9c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="84" x2="84" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M77,9c0.931,0,1.706,0.639,1.93,1.5C78.971,10.34,79,10.174,79,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C75.294,9.639,76.069,9,77,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="84" x2="84" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="84" cy="4" fill="url(#SVGID_16_)" r="2"/>
-<path d="M84,3c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="84" x2="84" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M84,3c0.931,0,1.706,0.639,1.93,1.5C85.971,4.34,86,4.174,86,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C82.294,3.639,83.069,3,84,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="84" x2="84" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="84" cy="10" fill="url(#SVGID_17_)" r="2"/>
-<path d="M84,9c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="91" x2="91" y1="6" y2="2.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M84,9c0.931,0,1.706,0.639,1.93,1.5C85.971,10.34,86,10.174,86,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C82.294,9.639,83.069,9,84,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="91" x2="91" y1="6" y2="2.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="91" cy="4" fill="url(#SVGID_18_)" r="2"/>
-<path d="M91,3c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.326,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="91" x2="91" y1="12" y2="8.133">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D2D2D7"/>
+<path d="M91,3c0.931,0,1.706,0.639,1.93,1.5C92.971,4.34,93,4.174,93,4c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C89.294,3.639,90.069,3,91,3z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="91" x2="91" y1="12" y2="8.1333">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D2D2D7"/>
</linearGradient>
<circle cx="91" cy="10" fill="url(#SVGID_19_)" r="2"/>
-<path d="M91,9c0.931,0,1.706,0.639,1.93,1.5,0.04-0.16,0.07-0.33,0.07-0.5,0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5,0.22-0.861,1-1.5,1.93-1.5z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M91,9c0.931,0,1.706,0.639,1.93,1.5C92.971,10.34,93,10.174,93,10c0-1.104-0.896-2-2-2 s-2,0.896-2,2c0,0.174,0.029,0.34,0.07,0.5C89.294,9.639,90.069,9,91,9z" fill="#141419" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progbar_h_wait.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progbar_h_wait.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="5" y2="15">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="20" y="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.47" x2="11.47" y1="5" y2="15">
-<stop offset="0" stop-color="#80E6FF"/>
-<stop offset="1" stop-color="#479BBF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4707" x2="11.4707" y1="5" y2="15.0005">
+<stop offset="0" style="stop-color:#80E6FF"/>
+<stop offset="1" style="stop-color:#479BBF"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.9" points="2.94,15,10,15,20,5,12.94,5" stroke-opacity="0.9"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.9" points="2.94,15 10,15 20,5 12.939,5 " stroke-opacity="0.9"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progbar_v_wait.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progbar_v_wait.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 20 20" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="20"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -450.9985 1321.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1311" x2="-1311" y1="-466" y2="-456">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -450.9985 1321.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1311.001" x2="-1311.001" y1="-465.9976" y2="-455.998">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="10" x="5"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -450.9985 1321.0005)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1310" x2="-1310" y1="-466" y2="-456">
-<stop offset="0" stop-color="#80E6FF"/>
-<stop offset="1" stop-color="#479BBF"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -450.9985 1321.0005)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1309.5313" x2="-1309.5313" y1="-465.9976" y2="-455.998">
+<stop offset="0" style="stop-color:#80E6FF"/>
+<stop offset="1" style="stop-color:#479BBF"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.9" points="5,2.939,5,10,15,20,15,12.94" stroke-opacity="0.9"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.9" points="5,2.939 5,10 15,20 15,12.939 " stroke-opacity="0.9"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
-<circle cx="20" cy="20" fill="#969696" fill-opacity="0.8" r="20" stroke-opacity="0.8"/>
-<path d="M20,0.999c-10.48,0-19,8.523-19,19s8.522,19,19,19,19-8.522,19-19-8.52-19-19-19zm0,36.27c-9.523,0-17.27-7.75-17.27-17.27,0-9.524,7.751-17.27,17.27-17.27,9.523,0,17.27,7.75,17.27,17.27s-7.75,17.27-17.27,17.27z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20,0c-11.05,0-20,8.953-20,20s8.954,20,20,20c11.04,0,20-8.953,20-20s-8.96-20-20-20zm0,39c-10.48,0-19-8.52-19-19s8.522-19,19-19,19,8.522,19,19-8.52,19-19,19z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<circle cx="20" cy="20" fill="#969696" fill-opacity="0.8" r="19.999" stroke-opacity="0.8"/>
+<path d="M20,0.999C9.522,0.999,0.999,9.522,0.999,20 c0,10.477,8.522,18.999,19.001,18.999c10.479,0,18.999-8.522,18.999-18.999C38.999,9.522,30.479,0.999,20,0.999z M20,37.273 c-9.523,0-17.274-7.75-17.274-17.273c0-9.524,7.751-17.274,17.274-17.274c9.523,0,17.273,7.75,17.273,17.274 C37.273,29.523,29.523,37.273,20,37.273z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20,0C8.954,0,0,8.953,0,20s8.954,20,20,20c11.043,0,20-8.953,20-20 S31.043,0,20,0z M20,38.999C9.522,38.999,0.999,30.477,0.999,20C0.999,9.522,9.521,0.999,20,0.999 c10.479,0,18.999,8.522,18.999,19.001C38.999,30.477,30.479,38.999,20,38.999z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
-<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="20"/>
-<path d="M20,0.999c-10.48,0-19,8.523-19,19s8.522,19,19,19,19-8.52,19-19c0-10.48-8.52-19-19-19zm0,36.27c-9.523,0-17.27-7.751-17.27-17.27,0-9.524,7.751-17.27,17.27-17.27,9.523,0,17.27,7.75,17.27,17.27s-7.75,17.27-17.27,17.27z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20,0c-11.05,0-20,8.953-20,20s8.954,20,20,20c11.04,0,20-8.953,20-20s-8.96-20-20-20zm0,39c-10.48,0-19-8.52-19-19s8.522-19,19-19,19,8.522,19,19c0,10.48-8.52,19-19,19z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="19.999"/>
+<path d="M20,0.999C9.522,0.999,0.999,9.522,0.999,20 c0,10.476,8.522,18.999,19.001,18.999S38.999,30.476,38.999,20C38.999,9.522,30.479,0.999,20,0.999z M20,37.274 c-9.523,0-17.274-7.751-17.274-17.274c0-9.524,7.751-17.274,17.274-17.274c9.523,0,17.273,7.75,17.273,17.274 C37.273,29.523,29.523,37.274,20,37.274z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20,0C8.954,0,0,8.953,0,20s8.954,20,20,20c11.043,0,20-8.953,20-20 S31.043,0,20,0z M20,38.999C9.522,38.999,0.999,30.476,0.999,20C0.999,9.522,9.521,0.999,20,0.999S38.999,9.521,38.999,20 C38.999,30.476,30.479,38.999,20,38.999z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -996 -1652)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1016" x2="1016" y1="1652" y2="1692">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -996 -1652)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="1016.001" x2="1016.001" y1="1652" y2="1691.998">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_progslider_handle_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 40 40" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="40"/>
-<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="20"/>
-<path d="M20,0.999c-10.48,0-19,8.523-19,19s8.522,19,19,19,19-8.522,19-19-8.52-19-19-19zm0,36.27c-9.523,0-17.27-7.75-17.27-17.27,0-9.524,7.751-17.27,17.27-17.27,9.523,0,17.27,7.75,17.27,17.27s-7.75,17.27-17.27,17.27z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M20,0c-11.05,0-20,8.953-20,20s8.954,20,20,20c11.04,0,20-8.953,20-20s-8.96-20-20-20zm0,39c-10.48,0-19-8.52-19-19s8.522-19,19-19,19,8.522,19,19-8.52,19-19,19z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="20" cy="20" fill="url(#SVGID_1_)" r="19.999"/>
+<path d="M20,0.999C9.522,0.999,0.999,9.522,0.999,20 c0,10.477,8.522,18.999,19.001,18.999c10.479,0,18.999-8.522,18.999-18.999C38.999,9.522,30.479,0.999,20,0.999z M20,37.273 c-9.523,0-17.274-7.75-17.274-17.273c0-9.524,7.751-17.274,17.274-17.274c9.523,0,17.273,7.75,17.273,17.274 C37.273,29.523,29.523,37.273,20,37.273z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20,0C8.954,0,0,8.953,0,20s8.954,20,20,20c11.043,0,20-8.953,20-20 S31.043,0,20,0z M20,38.999C9.522,38.999,0.999,30.477,0.999,20C0.999,9.522,9.521,0.999,20,0.999 c10.479,0,18.999,8.522,18.999,19.001C38.999,30.477,30.479,38.999,20,38.999z" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20" x2="20" y1="-0.0493" y2="39.95">
-<stop offset="0" stop-color="#B4B4BE"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="19.9995" x2="19.9995" y1="-0.0493" y2="39.9492">
+<stop offset="0" style="stop-color:#B4B4BE"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.31,9.813l-2.8-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.408-5.367h-9.138z" fill="url(#SVGID_1_)"/>
-<path d="M24.46,9.813h-9.144l-2.81-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.42-5.367zm-6.48,11.43l-5.472-4-5.477,3.994,2.111-6.431-5.505-3.984h6.782l2.085-6.436,2.081,6.436h6.787l-5.5,3.984,2.11,6.44z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15.313,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367l-2.852,8.69l7.396-5.396l7.386,5.396l-2.845-8.688 l7.408-5.368L15.313,9.813L15.313,9.813z" fill="#EC7D42"/>
<rect fill="none" height="25" width="25"/>
-<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="1.13" y2="23.87">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
-</linearGradient>
-</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.31,9.813l-2.8-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.408-5.367h-9.137z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M24.46,9.813h-9.143l-2.81-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.42-5.367zm-6.48,11.43l-5.471-4-5.477,3.994,2.111-6.431-5.506-3.984h6.783l2.084-6.436,2.082,6.436h6.787l-5.5,3.984,2.11,6.44z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15.313,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396 l7.385,5.396l-2.844-8.689l7.408-5.367H15.313z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M24.455,9.813h-9.143L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689L24.455,9.813z M17.977,21.235l-5.471-4l-5.477,3.994l2.111-6.431l-5.506-3.984h6.783l2.084-6.436l2.082,6.436h6.787 l-5.5,3.984L17.977,21.235z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="25" width="25"/>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M15.312,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689l7.408-5.367H15.312z" fill="url(#SVGID_1_)"/>
+<path d="M24.455,9.813h-9.144L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396 l7.385,5.396l-2.844-8.689L24.455,9.813z M17.977,21.235l-5.472-4l-5.477,3.994l2.111-6.431l-5.505-3.984h6.782l2.085-6.436 l2.081,6.436h6.787l-5.5,3.984L17.977,21.235z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" height="25" width="25"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.4995" x2="12.4995" y1="1.1299" y2="23.8706">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
+</linearGradient>
+</defs>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_rated_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.31,9.813l-2.8-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.408-5.367h-9.137z" fill="url(#SVGID_1_)"/>
-<path d="M24.46,9.813h-9.143l-2.81-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.42-5.367zm-6.48,11.43l-5.471-4-5.477,3.994,2.111-6.431-5.506-3.984h6.783l2.084-6.436,2.082,6.436h6.787l-5.5,3.984,2.11,6.44z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15.313,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689l7.408-5.367H15.313z" fill="url(#SVGID_1_)"/>
+<path d="M24.455,9.813h-9.143L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689L24.455,9.813z M17.977,21.235l-5.471-4l-5.477,3.994l2.111-6.431l-5.506-3.984h6.783l2.084-6.436l2.082,6.436h6.787 l-5.5,3.984L17.977,21.235z" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="25" width="25"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="23.87" y2="1.13">
-<stop offset="0" stop-color="#F0A25D"/>
-<stop offset="1" stop-color="#E85826"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5005" x2="12.5005" y1="23.8701" y2="1.1304">
+<stop offset="0" style="stop-color:#F0A25D"/>
+<stop offset="1" style="stop-color:#E85826"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.31,9.813l-2.8-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.408-5.367h-9.138z" fill="url(#SVGID_1_)"/>
-<path d="M24.46,9.813h-9.144l-2.81-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.42-5.367zm-6.48,11.43l-5.472-4-5.477,3.994,2.111-6.431-4.124-2.985h6.128l1.358-4.189,1.354,4.189h6.136l-4.121,2.985,2.1,6.44z" fill-opacity="0.1"/>
+<path d="M15.313,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367l-2.852,8.69l7.396-5.396l7.386,5.396l-2.845-8.688 l7.408-5.368L15.313,9.813L15.313,9.813z" fill="#DCDCDC"/>
<rect fill="none" height="25" width="25"/>
-<polygon fill-opacity="0.3" points="10.42,10.81,12.5,4.379,14.58,10.81,23.07,10.81,24.46,9.813,15.31,9.813,12.51,1.13,9.689,9.813,0.545,9.813,1.928,10.81"/>
-<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="23.87" y2="1.13">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#DCDCDC"/>
-</linearGradient>
-</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.31,9.813l-2.8-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.408-5.367h-9.138z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M24.46,9.813h-9.144l-2.81-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.42-5.367zm-6.48,11.43l-5.472-4-5.477,3.994,2.111-6.431-4.124-2.985h6.128l1.358-4.189,1.354,4.189h6.136l-4.121,2.985,2.1,6.44z" fill-opacity="0.1"/>
+<path d="M15.312,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396 l7.385,5.396l-2.844-8.689l7.408-5.367H15.312z" fill="#AAAAAA" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M24.455,9.813h-9.144L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689L24.455,9.813z M17.977,21.235l-5.472-4l-5.477,3.994l2.111-6.431l-4.124-2.985h6.128l1.358-4.189l1.354,4.189h6.136 l-4.121,2.985L17.977,21.235z" fill-opacity="0.1"/>
<rect fill="none" height="25" width="25"/>
-<polygon fill-opacity="0.2" points="10.42,10.81,12.5,4.379,14.58,10.81,23.07,10.81,24.46,9.813,15.31,9.813,12.51,1.13,9.689,9.813,0.545,9.813,1.928,10.81"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="10.417,10.814 12.502,4.379 14.583,10.814 23.073,10.814 24.455,9.813 15.312,9.813 12.506,1.13 9.689,9.813 0.545,9.813 1.928,10.814 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M15.312,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689l7.408-5.367H15.312z" fill="url(#SVGID_1_)"/>
+<path d="M24.455,9.813h-9.144L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689L24.455,9.813z M17.977,21.235l-5.472-4l-5.477,3.994l2.111-6.431l-4.124-2.985h6.128l1.358-4.189l1.354,4.189h6.136 l-4.121,2.985L17.977,21.235z" fill-opacity="0.1"/>
+<rect fill="none" height="25" width="25"/>
+<polygon fill-opacity="0.3" points="10.417,10.814 12.502,4.379 14.583,10.814 23.073,10.814 24.455,9.813 15.312,9.813 12.506,1.13 9.689,9.813 0.545,9.813 1.928,10.814 "/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5005" x2="12.5005" y1="23.8701" y2="1.1304">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#DCDCDC"/>
+</linearGradient>
+</defs>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_ratingslider_unrated_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="25px" version="1.1" viewBox="0 0 25 25" width="25px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.31,9.813l-2.8-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.408-5.367h-9.138z" fill="url(#SVGID_1_)"/>
-<path d="M24.46,9.813h-9.144l-2.81-8.683-2.821,8.683h-9.144l7.416,5.367-2.852,8.69,7.396-5.396,7.385,5.396-2.844-8.689,7.42-5.367zm-6.48,11.43l-5.472-4-5.477,3.994,2.111-6.431-4.124-2.985h6.128l1.358-4.189,1.354,4.189h6.136l-4.121,2.985,2.1,6.44z" fill-opacity="0.1"/>
+<path d="M15.312,9.813L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689l7.408-5.367H15.312z" fill="url(#SVGID_1_)"/>
+<path d="M24.455,9.813h-9.144L12.506,1.13L9.689,9.813H0.545l7.416,5.367L5.109,23.87l7.396-5.396l7.385,5.396 l-2.844-8.689L24.455,9.813z M17.977,21.235l-5.472-4l-5.477,3.994l2.111-6.431l-4.124-2.985h6.128l1.358-4.189l1.354,4.189h6.136 l-4.121,2.985L17.977,21.235z" fill-opacity="0.1"/>
<rect fill="none" height="25" width="25"/>
-<polygon fill-opacity="0.3" points="10.42,10.81,12.5,4.379,14.58,10.81,23.07,10.81,24.46,9.813,15.31,9.813,12.51,1.13,9.689,9.813,0.545,9.813,1.928,10.81"/>
+<polygon fill-opacity="0.3" points="10.417,10.814 12.502,4.379 14.583,10.814 23.073,10.814 24.455,9.813 15.312,9.813 12.506,1.13 9.689,9.813 0.545,9.813 1.928,10.814 "/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5" x2="12.5" y1="23.87" y2="1.13">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#999999"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.5005" x2="12.5005" y1="23.8701" y2="1.1304">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#999999"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_screen_bg_lsc.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_screen_bg_lsc.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="360px" version="1.1" viewBox="0 0 640 360" width="640px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="360" width="640"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="320" x2="320" y2="360">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="319.9995" x2="319.9995" y1="0" y2="360.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_screen_bg_prt.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_screen_bg_prt.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="640px" version="1.1" viewBox="0 0 360 640" width="360px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="640" width="360"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="180" x2="180" y2="640">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#E6E6F0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="179.9995" x2="179.9995" y1="0" y2="640.0005">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#E6E6F0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_b.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_b.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientTransform="matrix(-1.192488e-008 1 -1 -1.192488e-008 9.9999 -9.727478e-005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="10" y1="5" y2="5">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0"/>
+<linearGradient gradientTransform="matrix(-1.192488e-008 1 -1 -1.192488e-008 9.9999 -9.727478e-005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="10" y1="5" y2="5">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_l.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_l.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 10 9.999)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="10" y1="5" y2="5">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 10 9.999)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="10" y1="4.9995" y2="4.9995">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_r.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_r.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="10" y1="5" y2="5">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="10" y1="5" y2="5">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_t.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_scrollarea_mask_t.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="10" width="10"/>
<defs>
-<linearGradient gradientTransform="matrix(1.192488e-008 -1 1 1.192488e-008 9.727478e-005 10.0001)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x2="10" y1="5" y2="5">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000" stop-opacity="0"/>
+<linearGradient gradientTransform="matrix(1.192488e-008 -1 1 1.192488e-008 9.727478e-005 10.0001)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="0" x2="10" y1="5" y2="5">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000;stop-opacity:0"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_bg.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_bg.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#BEBEBE" height="3" width="4" x="1" y="6"/>
<rect fill="#BEBEBE" height="6" width="4" x="7" y="4.5"/>
@@ -7,4 +7,4 @@
<rect fill="#BEBEBE" height="12" width="4" x="19" y="1.5"/>
<rect fill="#BEBEBE" height="15" width="4" x="25"/>
<rect fill="none" height="15" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_full.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_full.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="3" width="4" x="1" y="6"/>
<rect fill="url(#SVGID_1_)" height="6" width="4" x="7" y="4.5"/>
@@ -8,9 +8,9 @@
<rect fill="url(#SVGID_1_)" height="15" width="4" x="25"/>
<rect fill="none" height="15" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1287.5 291.5005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-284" x2="-284" y1="-1316" y2="-1289">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1287.5 291.5005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-284.001" x2="-284.001" y1="-1316.4995" y2="-1288.578">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_low.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_low.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="3" width="4" x="1" y="6"/>
<rect fill="url(#SVGID_1_)" height="6" width="4" x="7" y="4.5"/>
@@ -8,9 +8,9 @@
<rect fill="url(#SVGID_1_)" height="15" width="4" x="25"/>
<rect fill="none" height="15" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 253 659.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-651.5" x2="-651.5" y1="223.8" y2="251.8">
-<stop offset="0" stop-color="#FA772B"/>
-<stop offset="1" stop-color="#CC2500"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 253 659.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-651.501" x2="-651.501" y1="223.834" y2="251.8419">
+<stop offset="0" style="stop-color:#FA772B"/>
+<stop offset="1" style="stop-color:#CC2500"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_medium.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_signal_medium.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="15px" version="1.1" viewBox="0 0 30 15" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="url(#SVGID_1_)" height="3" width="4" x="1" y="6"/>
<rect fill="url(#SVGID_1_)" height="6" width="4" x="7" y="4.5"/>
@@ -8,9 +8,9 @@
<rect fill="url(#SVGID_1_)" height="15" width="4" x="25"/>
<rect fill="none" height="15" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 28 886.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-878.5" x2="-878.5" y1="-1.082" y2="26.92">
-<stop offset="0" stop-color="#FAD347"/>
-<stop offset="1" stop-color="#FA9600"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 28 886.0005)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-878.501" x2="-878.501" y1="-1.0825" y2="26.9175">
+<stop offset="0" style="stop-color:#FAD347"/>
+<stop offset="1" style="stop-color:#FA9600"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 20 40" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,20c0-5.513,4.485-10,10-10,5.514,0,10,4.487,10,10,0,5.516-4.486,10-10,10-5.516,0-10-4.48-10-10z" fill="#E4E4E4"/>
+<path d="M0,20c0-5.513,4.485-10,10-10c5.514,0,10,4.487,10,10c0,5.516-4.486,10-10,10 C4.484,30,0,25.516,0,20L0,20z" fill="#E4E4E4"/>
<rect fill="none" height="40" width="20"/>
-<circle cx="10" cy="20" fill="#969696" r="9.23"/>
-<path d="M19.23,20c0-5.098-4.133-9.231-9.231-9.231s-9.229,4.134-9.229,9.231c0,5.098,4.13,9.229,9.228,9.229,5.102,0,9.232-4.13,9.232-9.23zm-17.69,0c0-4.665,3.799-8.462,8.463-8.462,4.665,0,8.462,3.797,8.462,8.462,0,4.664-3.797,8.463-8.462,8.463-4.662,0-8.461-3.8-8.461-8.46z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<circle cx="10.002" cy="20" fill="#969696" r="9.23"/>
+<path d="M19.232,20c0-5.098-4.133-9.231-9.231-9.231c-5.098,0-9.229,4.134-9.229,9.231 c0,5.098,4.13,9.229,9.228,9.229C15.1,29.229,19.232,25.098,19.232,20z M1.537,20c0-4.665,3.799-8.462,8.463-8.462 c4.665,0,8.462,3.797,8.462,8.462c0,4.664-3.797,8.463-8.462,8.463C5.336,28.463,1.537,24.664,1.537,20z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 20 40" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="20"/>
-<path d="M10,30c-5.513,0-10-4.48-10-10,0-5.513,4.487-10,10-10,5.516,0,10,4.487,10,10,0,5.52-4.48,10-10,10z" fill="#E4E4E4"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="580" x2="580" y1="796.8" y2="815.3">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<path d="M10,30C4.487,30,0,25.516,0,20c0-5.513,4.487-10,10-10c5.516,0,10,4.487,10,10 C20,25.516,15.516,30,10,30L10,30z" fill="#E4E4E4"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="579.9609" x2="579.9609" y1="796.8086" y2="815.2676">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
-<circle cx="10" cy="20" fill="url(#SVGID_1_)" r="9.23"/>
-<path d="M10,11.54c-4.665,0-8.462,3.797-8.462,8.462,0,4.664,3.797,8.463,8.462,8.463,4.664,0,8.463-3.799,8.463-8.463,0-4.66-3.8-8.46-8.46-8.46zm0,16.15c-4.243,0-7.691-3.449-7.691-7.691,0-4.243,3.449-7.691,7.691-7.691s7.691,3.449,7.691,7.691-3.45,7.69-7.69,7.69z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<circle cx="10" cy="20" fill="#FFFFFF" fill-opacity="0.5" r="4.616" stroke-opacity="0.5"/>
-<path d="M10,10.77c-5.098,0-9.231,4.133-9.231,9.231s4.133,9.229,9.231,9.229,9.229-4.129,9.229-9.229-4.13-9.23-9.23-9.23zm0,17.69c-4.665,0-8.462-3.799-8.462-8.463,0-4.665,3.797-8.462,8.462-8.462,4.664,0,8.463,3.797,8.463,8.462,0,4.66-3.8,8.46-8.46,8.46z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="580" x2="580" y1="809.9" y2="802.2">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<circle cx="10" cy="19.999" fill="url(#SVGID_1_)" r="9.23"/>
+<path d="M10,11.538c-4.665,0-8.462,3.797-8.462,8.462 c0,4.664,3.797,8.463,8.462,8.463c4.664,0,8.463-3.799,8.463-8.463C18.463,15.335,14.664,11.538,10,11.538z M10,27.691 c-4.243,0-7.691-3.449-7.691-7.691c0-4.243,3.449-7.691,7.691-7.691s7.691,3.449,7.691,7.691S14.242,27.691,10,27.691z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="10" cy="20.001" fill="#FFFFFF" fill-opacity="0.5" r="4.616" stroke-opacity="0.5"/>
+<path d="M10,10.769c-5.098,0-9.231,4.133-9.231,9.231c0,5.098,4.133,9.229,9.231,9.229 c5.098,0,9.229-4.129,9.229-9.229C19.229,14.901,15.098,10.769,10,10.769z M10,28.463c-4.665,0-8.462-3.799-8.462-8.463 c0-4.665,3.797-8.462,8.462-8.462c4.664,0,8.463,3.797,8.463,8.462C18.463,24.664,14.664,28.463,10,28.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="579.96" x2="579.96" y1="809.8857" y2="802.1934">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="10" cy="20" fill="url(#SVGID_2_)" r="3.846"/>
-<path d="M10,16.15c-2.124,0-3.846,1.722-3.846,3.846,0,2.123,1.722,3.846,3.846,3.846,2.123,0,3.846-1.723,3.846-3.846,0-2.12-1.73-3.85-3.85-3.85zm0,6.93c-1.696,0-3.077-1.381-3.077-3.076,0-1.696,1.381-3.077,3.077-3.077,1.695,0,3.076,1.381,3.076,3.077,0,1.7-1.38,3.08-3.08,3.08z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M10,16.154c-2.124,0-3.846,1.722-3.846,3.846c0,2.123,1.722,3.846,3.846,3.846 c2.123,0,3.846-1.723,3.846-3.846C13.846,17.876,12.123,16.154,10,16.154z M10,23.076c-1.696,0-3.077-1.381-3.077-3.076 c0-1.696,1.381-3.077,3.077-3.077c1.695,0,3.076,1.381,3.076,3.077C13.076,21.695,11.695,23.076,10,23.076z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_handle_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 20 40" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="40" width="20"/>
-<path d="M10,30c-5.513,0-10-4.48-10-10,0-5.513,4.487-10,10-10,5.516,0,10,4.487,10,10,0,5.52-4.48,10-10,10z" fill="#E4E4E4"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="590" x2="590" y1="796.8" y2="815.3">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#F0F0FA"/>
+<path d="M10,30C4.487,30,0,25.516,0,20c0-5.513,4.487-10,10-10c5.516,0,10,4.487,10,10 C20,25.516,15.516,30,10,30L10,30z" fill="#E4E4E4"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="589.9609" x2="589.9609" y1="796.8086" y2="815.2676">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#F0F0FA"/>
</linearGradient>
-<circle cx="10" cy="20" fill="url(#SVGID_1_)" r="9.23"/>
-<path d="M10,11.54c-4.665,0-8.462,3.797-8.462,8.462,0,4.664,3.797,8.463,8.462,8.463,4.664,0,8.463-3.799,8.463-8.463,0-4.66-3.8-8.46-8.46-8.46zm0,16.15c-4.243,0-7.691-3.449-7.691-7.691,0-4.243,3.449-7.691,7.691-7.691s7.691,3.449,7.691,7.691-3.45,7.69-7.69,7.69z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<circle cx="10" cy="20" fill="#FFFFFF" fill-opacity="0.2" r="4.616" stroke-opacity="0.2"/>
-<path d="M10,10.77c-5.098,0-9.231,4.133-9.231,9.231s4.133,9.229,9.231,9.229,9.229-4.129,9.229-9.229-4.13-9.23-9.23-9.23zm0,17.69c-4.665,0-8.462-3.799-8.462-8.463,0-4.665,3.797-8.462,8.462-8.462,4.664,0,8.463,3.797,8.463,8.462,0,4.66-3.8,8.46-8.46,8.46z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="590" x2="590" y1="802.2" y2="809.9">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<circle cx="10" cy="19.999" fill="url(#SVGID_1_)" r="9.23"/>
+<path d="M10,11.538c-4.665,0-8.462,3.797-8.462,8.462 c0,4.664,3.797,8.463,8.462,8.463c4.664,0,8.463-3.799,8.463-8.463C18.463,15.335,14.664,11.538,10,11.538z M10,27.691 c-4.243,0-7.691-3.449-7.691-7.691c0-4.243,3.449-7.691,7.691-7.691s7.691,3.449,7.691,7.691S14.242,27.691,10,27.691z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="10" cy="20.001" fill="#FFFFFF" fill-opacity="0.2" r="4.616" stroke-opacity="0.2"/>
+<path d="M10,10.769c-5.098,0-9.231,4.133-9.231,9.231c0,5.098,4.133,9.229,9.231,9.229 c5.098,0,9.229-4.129,9.229-9.229C19.229,14.901,15.098,10.769,10,10.769z M10,28.463c-4.665,0-8.462-3.799-8.462-8.463 c0-4.665,3.797-8.462,8.462-8.462c4.664,0,8.463,3.797,8.463,8.462C18.463,24.664,14.664,28.463,10,28.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="589.9609" x2="589.9609" y1="802.1934" y2="809.8848">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="10" cy="20" fill="url(#SVGID_2_)" r="3.846"/>
-<path d="M10,16.15c-2.124,0-3.846,1.722-3.846,3.846,0,2.123,1.722,3.846,3.846,3.846,2.123,0,3.846-1.723,3.846-3.846,0-2.12-1.73-3.85-3.85-3.85zm0,6.93c-1.695,0-3.077-1.381-3.077-3.076,0-1.696,1.382-3.077,3.077-3.077s3.076,1.381,3.076,3.077c0,1.7-1.38,3.08-3.08,3.08z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M10,16.154c-2.124,0-3.846,1.722-3.846,3.846c0,2.123,1.722,3.846,3.846,3.846 c2.123,0,3.846-1.723,3.846-3.846C13.846,17.876,12.123,16.154,10,16.154z M10,23.076c-1.695,0-3.077-1.381-3.077-3.076 c0-1.696,1.382-3.077,3.077-3.077c1.695,0,3.076,1.381,3.076,3.077C13.076,21.695,11.695,23.076,10,23.076z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_tick_major.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_tick_major.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="6px" version="1.1" viewBox="0 0 3 6" width="3px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M3,4.5c0,0.828-0.672,1.5-1.5,1.5s-1.5-0.672-1.5-1.5v-3c0-0.828,0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5v3z" fill="#B2B2B2"/>
-</svg>
\ No newline at end of file
+<path d="M3,4.5C3,5.328,2.328,6,1.5,6l0,0C0.672,6,0,5.328,0,4.5v-3C0,0.672,0.672,0,1.5,0l0,0 C2.328,0,3,0.672,3,1.5V4.5z" fill="#B2B2B2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_tick_minor.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_h_tick_minor.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="3px" version="1.1" viewBox="0 0 3 3" width="3px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="1.5" cy="1.5" fill="#B2B2B2" r="1.5"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M20,20c-5.513,0-10-4.484-10-10,0-5.513,4.487-10,10-10,5.516,0,10,4.487,10,10,0,5.52-4.48,10-10,10z" fill="#E4E4E4"/>
+<path d="M20,20c-5.513,0-10-4.484-10-10c0-5.513,4.487-10,10-10c5.516,0,10,4.487,10,10 C30,15.516,25.516,20,20,20L20,20z" fill="#E4E4E4"/>
<rect fill="none" height="20" width="40"/>
<circle cx="20" cy="9.999" fill="#969696" r="9.23"/>
-<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231s4.134,9.229,9.231,9.229c5.098,0,9.229-4.131,9.229-9.229,0-5.099-4.13-9.231-9.23-9.231zm0,17.69c-4.665,0-8.462-3.799-8.462-8.463s3.8-8.459,8.46-8.459c4.664,0,8.463,3.797,8.463,8.462s-3.8,8.46-8.46,8.46z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231c0,5.098,4.134,9.229,9.231,9.229 c5.098,0,9.229-4.131,9.229-9.229C29.229,4.901,25.098,0.769,20,0.769z M20,18.463c-4.665,0-8.462-3.799-8.462-8.463 S15.335,1.538,20,1.538c4.664,0,8.463,3.797,8.463,8.462S24.664,18.463,20,18.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="40"/>
-<path d="M20,20c-5.513,0-10-4.484-10-10,0-5.513,4.487-10,10-10,5.516,0,10,4.487,10,10,0,5.52-4.48,10-10,10z" fill="#E4E4E4"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="590" x2="590" y1="806.8" y2="825.3">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF5"/>
+<path d="M20,20c-5.513,0-10-4.484-10-10c0-5.513,4.487-10,10-10c5.516,0,10,4.487,10,10 C30,15.516,25.516,20,20,20L20,20z" fill="#E4E4E4"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="589.9609" x2="589.9609" y1="806.8086" y2="825.2676">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
</linearGradient>
<circle cx="20" cy="9.999" fill="url(#SVGID_1_)" r="9.23"/>
-<path d="M20,1.538c-4.665,0-8.462,3.797-8.462,8.462,0,4.664,3.797,8.463,8.462,8.463,4.664,0,8.463-3.799,8.463-8.463,0-4.662-3.8-8.459-8.46-8.459zm0,16.15c-4.243,0-7.691-3.449-7.691-7.691,0-4.243,3.449-7.691,7.691-7.691s7.69,3.45,7.69,7.692-3.45,7.69-7.69,7.69z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<circle cx="20" cy="10" fill="#FFFFFF" fill-opacity="0.5" r="4.616" stroke-opacity="0.5"/>
-<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231s4.134,9.229,9.231,9.229c5.098,0,9.229-4.129,9.229-9.229,0-5.099-4.13-9.231-9.23-9.231zm0,17.69c-4.665,0-8.462-3.799-8.462-8.463,0-4.665,3.797-8.462,8.462-8.462,4.664,0,8.463,3.797,8.463,8.462,0,4.663-3.8,8.463-8.46,8.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="590" x2="590" y1="819.9" y2="812.2">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M20,1.538c-4.665,0-8.462,3.797-8.462,8.462 c0,4.664,3.797,8.463,8.462,8.463c4.664,0,8.463-3.799,8.463-8.463C28.463,5.335,24.664,1.538,20,1.538z M20,17.691 c-4.243,0-7.691-3.449-7.691-7.691c0-4.243,3.449-7.691,7.691-7.691S27.691,5.758,27.691,10S24.242,17.691,20,17.691z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="20" cy="10.001" fill="#FFFFFF" fill-opacity="0.5" r="4.616" stroke-opacity="0.5"/>
+<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231c0,5.098,4.134,9.229,9.231,9.229 c5.098,0,9.229-4.129,9.229-9.229C29.229,4.901,25.098,0.769,20,0.769z M20,18.463c-4.665,0-8.462-3.799-8.462-8.463 c0-4.665,3.797-8.462,8.462-8.462c4.664,0,8.463,3.797,8.463,8.462C28.463,14.664,24.664,18.463,20,18.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -569.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="589.96" x2="589.96" y1="819.8857" y2="812.1934">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="20" cy="10" fill="url(#SVGID_2_)" r="3.846"/>
-<path d="M20,6.154c-2.124,0-3.846,1.722-3.846,3.846,0,2.123,1.722,3.846,3.846,3.846,2.123,0,3.846-1.723,3.846-3.846,0-2.124-1.73-3.846-3.85-3.846zm0,6.926c-1.696,0-3.077-1.381-3.077-3.076,0-1.696,1.381-3.077,3.077-3.077,1.695,0,3.076,1.381,3.076,3.077,0,1.7-1.38,3.08-3.08,3.08z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M20,6.154c-2.124,0-3.846,1.722-3.846,3.846c0,2.123,1.722,3.846,3.846,3.846 c2.123,0,3.846-1.723,3.846-3.846C23.846,7.876,22.123,6.154,20,6.154z M20,13.076c-1.696,0-3.077-1.381-3.077-3.076 c0-1.696,1.381-3.077,3.077-3.077c1.695,0,3.076,1.381,3.076,3.077C23.076,11.695,21.695,13.076,20,13.076z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_handle_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="20px" version="1.1" viewBox="0 0 40 20" width="40px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="20" width="40"/>
-<path d="M20,20c-5.513,0-10-4.484-10-10,0-5.513,4.487-10,10-10,5.516,0,10,4.487,10,10,0,5.52-4.48,10-10,10z" fill="#E4E4E4"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="600" x2="600" y1="806.8" y2="825.3">
-<stop offset="0" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#F0F0FA"/>
+<path d="M20,20c-5.513,0-10-4.484-10-10c0-5.513,4.487-10,10-10c5.516,0,10,4.487,10,10 C30,15.516,25.516,20,20,20L20,20z" fill="#E4E4E4"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="599.9609" x2="599.9609" y1="806.8086" y2="825.2676">
+<stop offset="0" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#F0F0FA"/>
</linearGradient>
<circle cx="20" cy="9.999" fill="url(#SVGID_1_)" r="9.23"/>
-<path d="M20,1.538c-4.665,0-8.462,3.797-8.462,8.462,0,4.664,3.797,8.463,8.462,8.463,4.664,0,8.463-3.799,8.463-8.463,0-4.662-3.8-8.459-8.46-8.459zm0,16.15c-4.243,0-7.691-3.449-7.691-7.691,0-4.243,3.449-7.691,7.691-7.691s7.69,3.45,7.69,7.692-3.45,7.69-7.69,7.69z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<circle cx="20" cy="10" fill="#FFFFFF" fill-opacity="0.2" r="4.616" stroke-opacity="0.2"/>
-<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231s4.134,9.229,9.231,9.229c5.098,0,9.229-4.129,9.229-9.229,0-5.099-4.13-9.231-9.23-9.231zm0,17.69c-4.665,0-8.462-3.799-8.462-8.463,0-4.665,3.797-8.462,8.462-8.462,4.664,0,8.463,3.797,8.463,8.462,0,4.663-3.8,8.463-8.46,8.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="600" x2="600" y1="812.2" y2="819.9">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<path d="M20,1.538c-4.665,0-8.462,3.797-8.462,8.462 c0,4.664,3.797,8.463,8.462,8.463c4.664,0,8.463-3.799,8.463-8.463C28.463,5.335,24.664,1.538,20,1.538z M20,17.691 c-4.243,0-7.691-3.449-7.691-7.691c0-4.243,3.449-7.691,7.691-7.691S27.691,5.758,27.691,10S24.242,17.691,20,17.691z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="20" cy="10.001" fill="#FFFFFF" fill-opacity="0.2" r="4.616" stroke-opacity="0.2"/>
+<path d="M20,0.769c-5.098,0-9.231,4.133-9.231,9.231c0,5.098,4.134,9.229,9.231,9.229 c5.098,0,9.229-4.129,9.229-9.229C29.229,4.901,25.098,0.769,20,0.769z M20,18.463c-4.665,0-8.462-3.799-8.462-8.463 c0-4.665,3.797-8.462,8.462-8.462c4.664,0,8.463,3.797,8.463,8.462C28.463,14.664,24.664,18.463,20,18.463z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -579.9609 -806.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="599.9609" x2="599.9609" y1="812.1934" y2="819.8848">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="20" cy="10" fill="url(#SVGID_2_)" r="3.846"/>
-<path d="M20,6.154c-2.124,0-3.846,1.722-3.846,3.846,0,2.123,1.722,3.846,3.846,3.846,2.123,0,3.846-1.723,3.846-3.846,0-2.124-1.73-3.846-3.85-3.846zm0,6.926c-1.695,0-3.077-1.381-3.077-3.076,0-1.696,1.382-3.077,3.077-3.077s3.076,1.381,3.076,3.077c0,1.7-1.38,3.08-3.08,3.08z" fill-opacity="0.1" stroke-opacity="0.1"/>
-</svg>
\ No newline at end of file
+<path d="M20,6.154c-2.124,0-3.846,1.722-3.846,3.846c0,2.123,1.722,3.846,3.846,3.846 c2.123,0,3.846-1.723,3.846-3.846C23.846,7.876,22.123,6.154,20,6.154z M20,13.076c-1.695,0-3.077-1.381-3.077-3.076 c0-1.696,1.382-3.077,3.077-3.077c1.695,0,3.076,1.381,3.076,3.077C23.076,11.695,21.695,13.076,20,13.076z" fill-opacity="0.1" stroke-opacity="0.1"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_tick_major.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_tick_major.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="3px" version="1.1" viewBox="0 0 6 3" width="6px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M4.5,0c0.828,0,1.5,0.672,1.5,1.5s-0.672,1.5-1.5,1.5h-3c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5h3z" fill="#B2B2B2"/>
-</svg>
\ No newline at end of file
+<path d="M4.5,0C5.328,0,6,0.672,6,1.5l0,0C6,2.328,5.328,3,4.5,3h-3C0.672,3,0,2.328,0,1.5l0,0 C0,0.672,0.672,0,1.5,0H4.5z" fill="#B2B2B2"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_tick_minor.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_slider_v_tick_minor.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="3px" version="1.1" viewBox="0 0 3 3" width="3px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="1.5" cy="1.5" fill="#B2B2B2" r="1.5"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_taskswitcher_camcorder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_taskswitcher_camcorder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="194.3px" version="1.1" viewBox="0 0 194.3 194.3" width="194.3px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#231F20" height="194.5" width="194.5" x="-0.079" y="-0.079"/>
-<polygon fill="#FFFFFF" points="143.4,67.9,119.1,67.9,119.1,69.83,143.4,69.83,143.4,94.12,145.3,94.12,145.3,69.83,145.3,67.9"/>
-<polygon fill="#FFFFFF" points="145.3,136.5,145.3,112.2,143.4,112.2,143.4,136.5,119.1,136.5,119.1,138.4,143.4,138.4,145.3,138.4"/>
-<polygon fill="#FFFFFF" points="50.93,138.4,75.22,138.4,75.22,136.5,50.93,136.5,50.93,112.2,49,112.2,49,136.5,49,138.4"/>
-<polygon fill="#FFFFFF" points="49,69.83,49,94.12,50.93,94.12,50.93,69.83,75.22,69.83,75.22,67.9,50.93,67.9,49,67.9"/>
-<rect fill="none" height="38.12" width="38.12" x="9.27" y="6.712"/>
-<polygon fill="#FFFFFF" points="46.11,24.5,41.03,20.69,46.11,16.88"/>
-<path d="M16.93,15.64v18.99h25.38v-18.99h-25.37zm22.87,16.48h-20.37v-13.97h20.36v13.98z" fill="#FFFFFF"/>
-<polygon fill="#FFFFFF" points="15.62,18.15,11.81,15.6,11.81,32.12,15.62,29.58"/>
-<rect fill="#FFFFFF" height="1.271" width="15.25" x="21.97" y="21.96"/>
-</svg>
\ No newline at end of file
+<rect fill="#231F20" height="194.458" width="194.458" x="-0.079" y="-0.079"/>
+<g>
+<g>
+<polygon fill="#FFFFFF" points="143.369,67.896 119.082,67.896 119.082,69.833 143.369,69.833 143.369,94.119 145.305,94.119 145.305,69.833 145.305,67.896 "/>
+<polygon fill="#FFFFFF" points="145.305,136.471 145.305,112.184 143.367,112.184 143.367,136.471 119.082,136.471 119.082,138.406 143.367,138.406 145.305,138.406 "/>
+</g>
+<g>
+<polygon fill="#FFFFFF" points="50.931,138.406 75.218,138.406 75.218,136.469 50.931,136.469 50.931,112.184 48.996,112.184 48.996,136.469 48.996,138.406 "/>
+<polygon fill="#FFFFFF" points="48.996,69.832 48.996,94.119 50.933,94.119 50.933,69.832 75.219,69.832 75.219,67.896 50.933,67.896 48.996,67.896 "/>
+</g>
+</g>
+<rect fill="none" height="38.115" width="38.116" x="9.27" y="6.712"/>
+<g>
+<polygon fill="#FFFFFF" points="46.114,24.499 41.032,20.687 46.114,16.876 "/>
+<path d="M16.927,15.637V34.63h25.375V15.637H16.927z M39.795,32.122H19.434V18.146h20.362V32.122z" fill="#FFFFFF"/>
+<polygon fill="#FFFFFF" points="15.623,18.146 11.811,15.605 11.811,32.122 15.623,29.581 "/>
+<rect fill="#FFFFFF" height="1.271" width="15.246" x="21.974" y="21.958"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_taskswitcher_camera.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_taskswitcher_camera.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="194.3px" version="1.1" viewBox="0 0 194.3 194.3" width="194.3px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<rect fill="#231F20" height="194.5" width="194.5" x="-0.079" y="-0.079"/>
-<polygon fill="#FFFFFF" points="143.4,67.9,119.1,67.9,119.1,69.83,143.4,69.83,143.4,94.12,145.3,94.12,145.3,69.83,145.3,67.9"/>
-<polygon fill="#FFFFFF" points="145.3,136.5,145.3,112.2,143.4,112.2,143.4,136.5,119.1,136.5,119.1,138.4,143.4,138.4,145.3,138.4"/>
-<polygon fill="#FFFFFF" points="50.93,138.4,75.22,138.4,75.22,136.5,50.93,136.5,50.93,112.2,49,112.2,49,136.5,49,138.4"/>
-<polygon fill="#FFFFFF" points="49,69.83,49,94.12,50.93,94.12,50.93,69.83,75.22,69.83,75.22,67.9,50.93,67.9,49,67.9"/>
-<rect fill="#FFFFFF" height="2.42" stroke="#231F20" width="6.05" x="33.68" y="11.04"/>
-<path d="M11.9,14.67v24.2h31.46v-24.2h-31.46zm27.83,20.57h-24.2v-16.94h24.2v16.94z" fill="#FFFFFF" stroke="#231F20"/>
-<path d="M28.23,19.51c-4.01,0-7.26,3.25-7.26,7.26s3.25,7.26,7.26,7.26c4.011,0,7.26-3.25,7.26-7.26s-3.25-7.26-7.26-7.26zm0,10.89c-2.004,0-3.63-1.626-3.63-3.63,0-2.003,1.626-3.63,3.63-3.63s3.63,1.627,3.63,3.63c0,2-1.62,3.63-3.63,3.63z" fill="#FFFFFF" stroke="#231F20"/>
-<circle cx="18.78" cy="21.53" fill="#FFFFFF" r="1.815" stroke="#231F20"/>
-</svg>
\ No newline at end of file
+<rect fill="#231F20" height="194.458" width="194.458" x="-0.079" y="-0.079"/>
+<g>
+<polygon fill="#FFFFFF" points="143.369,67.895 119.082,67.895 119.082,69.833 143.369,69.833 143.369,94.119 145.305,94.119 145.305,69.833 145.305,67.895 "/>
+<polygon fill="#FFFFFF" points="145.305,136.471 145.305,112.184 143.367,112.184 143.367,136.471 119.082,136.471 119.082,138.406 143.367,138.406 145.305,138.406 "/>
+</g>
+<g>
+<polygon fill="#FFFFFF" points="50.931,138.406 75.219,138.406 75.219,136.469 50.931,136.469 50.931,112.184 48.996,112.184 48.996,136.469 48.996,138.406 "/>
+<polygon fill="#FFFFFF" points="48.996,69.832 48.996,94.119 50.933,94.119 50.933,69.832 75.219,69.832 75.219,67.895 50.933,67.895 48.996,67.895 "/>
+</g>
+<g>
+<rect fill="#FFFFFF" height="2.42" stroke="#231F20" width="6.05" x="33.678" y="11.039"/>
+<path d="M11.898,14.669v24.2h31.46v-24.2H11.898z M39.728,35.239h-24.2v-16.94h24.2V35.239z" fill="#FFFFFF" stroke="#231F20"/>
+<path d="M28.233,19.509c-4.01,0-7.26,3.25-7.26,7.26s3.25,7.26,7.26,7.26 c4.011,0,7.26-3.25,7.26-7.26S32.239,19.509,28.233,19.509z M28.233,30.399c-2.004,0-3.63-1.626-3.63-3.63 c0-2.003,1.626-3.63,3.63-3.63s3.63,1.627,3.63,3.63C31.863,28.773,30.242,30.399,28.233,30.399z" fill="#FFFFFF" stroke="#231F20"/>
+<circle cx="18.781" cy="21.53" fill="#FFFFFF" r="1.815" stroke="#231F20"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_theme_preview_lsc.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_theme_preview_lsc.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,32 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="205px" version="1.1" viewBox="0 0 640 205" width="640px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="205" width="640"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="610" x2="610" y1="19.67" y2="59.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="610" x2="610" y1="19.6665" y2="59.8465">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="40" width="60" x="580" y="20"/>
<rect fill="#AAAAAF" height="1" width="60" x="580" y="59"/>
<rect fill="#FFFFFF" fill-opacity="0.6" height="39" width="1" x="580" y="20"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="639,20,639,58,581,58,581,59,640,59,640,20" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.67" y2="59.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="639,20 639,58 581,58 581,59 640,59 640,20 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.6665" y2="59.8465">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="40" width="60" y="20"/>
<rect fill="#AAAAAF" height="1" width="60" y="59"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,58,1,20,0,20,0,59,59,59,59,58" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,58 1,20 0,20 0,59 59,59 59,58 " stroke-opacity="0.4"/>
<rect fill-opacity="0.2" height="39" width="1" x="59" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="320" x2="320" y1="19.67" y2="59.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="319.9995" x2="319.9995" y1="19.6665" y2="59.8465">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="40" width="520" x="60" y="20"/>
<rect fill="#AAAAAF" height="1" width="520" x="60" y="59"/>
@@ -34,431 +34,446 @@
<rect fill-opacity="0.2" height="39" width="1" x="579" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="518" x="61" y="58"/>
<rect height="20" width="640"/>
-<path d="M38,32c1.65,0,2.234,1.112,1.301,2.472l-7.602,11.06c-0.934,1.36-2.465,1.36-3.398,0l-7.602-11.06c-0.93-1.36-0.35-2.47,1.3-2.47h16z" fill="#3C3C3C"/>
-<path d="M568,32c1.65,0,2.234,1.112,1.301,2.472l-7.602,11.06c-0.934,1.36-2.465,1.36-3.398,0l-7.602-11.06c-0.9-1.36-0.3-2.47,1.3-2.47h16z" fill="#3C3C3C"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -197.5 -891.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-894.5" x2="-909.5" y1="801.5" y2="801.5">
-<stop offset="0" stop-color="#92DE2F"/>
-<stop offset="1" stop-color="#19B016"/>
+<g>
+<path d="M38,32c1.65,0,2.234,1.112,1.301,2.472l-7.602,11.056c-0.934,1.36-2.465,1.36-3.398,0l-7.602-11.056 C19.766,33.112,20.35,32,22,32H38z" fill="#3C3C3C"/>
+</g>
+<g>
+<path d="M568,32c1.65,0,2.234,1.112,1.301,2.472l-7.602,11.056c-0.934,1.36-2.465,1.36-3.398,0l-7.602-11.056 C549.766,33.112,550.35,32,552,32H568z" fill="#3C3C3C"/>
+</g>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -197.5 -891.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-894.5" x2="-909.5" y1="801.499" y2="801.499">
+<stop offset="0" style="stop-color:#92DE2F"/>
+<stop offset="1" style="stop-color:#19B016"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="592,7,590,7,590,14,592,14,592,18,618,18,618,3,592,3"/>
+<polygon fill="url(#SVGID_4_)" points="592,7 590,7 590,14 592,14 592,18 618,18 618,3 592,3 "/>
<rect fill-opacity="0.2" height="8" stroke-opacity="0.2" width="2" x="611" y="6.5"/>
-<polygon fill-opacity="0.2" points="598,6.5,598,9.5,595,9.5,595,11.5,598,11.5,598,14.5,600,14.5,600,11.5,603,11.5,603,9.5,600,9.5,600,6.5" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="598,6.5 598,9.5 595,9.5 595,11.5 598,11.5 598,14.5 600,14.5 600,11.5 603,11.5 603,9.5 600,9.5 600,6.5 " stroke-opacity="0.2"/>
<rect fill="none" height="15" width="30" x="589" y="3"/>
<rect fill="url(#SVGID_5_)" height="3" width="4" x="24" y="9"/>
<rect fill="url(#SVGID_5_)" height="6" width="4" x="30" y="7.5"/>
-<rect fill="url(#SVGID_5_)" height="9" width="4" x="36" y="6"/>
+<rect fill="url(#SVGID_7_)" height="9" width="4" x="36" y="6"/>
<rect fill="url(#SVGID_5_)" height="12" width="4" x="42" y="4.5"/>
-<rect fill="url(#SVGID_5_)" height="15" width="4" x="48" y="3"/>
+<rect fill="url(#SVGID_7_)" height="15" width="4" x="48" y="3"/>
<rect fill="none" height="15" width="30" x="23" y="3"/>
-<path d="M13.53,15h1.942v-4.838l3.53-4.25v-0.91h-9v0.91l3.53,4.252v4.84z" fill="#FFFFFF"/>
-<path d="M623,16h7v-10.82h-2.042v-1.176h-2.992v1.176h-2v10.82z" fill="#FFFFFF"/>
-<path d="M610,41.5c0,1.65-1.09,2.204-2.422,1.23l-8.156-5.96c-1.332-0.974-1.332-2.566,0-3.54l8.156-5.96c1.3-0.97,2.4-0.42,2.4,1.23v13z" fill="#3C3C3C"/>
-<path d="M604.5,35h12c3.85,0,7,3.15,7,7s-3.15,7-7,7h-15" fill="none" stroke="#3C3C3C" stroke-linecap="round" stroke-width="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="106.5" x2="106.5" y1="144" y2="204.3">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<path d="M13.53,15h1.942v-4.838L19,5.91V5h-9v0.91l3.53,4.252V15L13.53,15z" fill="#FFFFFF"/>
+<path d="M623,16h7V5.176h-2.042V4h-2.992v1.176H623V16z" fill="#FFFFFF"/>
+<g>
+<path d="M610,41.5c0,1.65-1.09,2.204-2.422,1.23l-8.156-5.96c-1.332-0.974-1.332-2.566,0-3.54l8.156-5.96 C608.91,26.296,610,26.85,610,28.5V41.5z" fill="#3C3C3C"/>
+</g>
+<path d="M604.5,35h12c3.85,0,7,3.15,7,7l0,0 c0,3.85-3.15,7-7,7h-15" fill="none" stroke="#3C3C3C" stroke-linecap="round" stroke-width="5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="106.5" x2="106.5" y1="144" y2="204.27">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="60" width="213" y="144.5"/>
-<path d="M0,144.5v60h213v-60h-213zm212,59h-211v-58h211v58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="320" x2="320" y1="144" y2="204.3">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<path d="M0,144.5v60h213v-60H0z M212,203.5H1v-58h211V203.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="319.9995" x2="319.9995" y1="144" y2="204.27">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="60" width="214" x="213" y="144.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="533.5" x2="533.5" y1="144" y2="204.3">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="533.5" x2="533.5" y1="144" y2="204.27">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="60" width="213" x="427" y="144.5"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="427" x="213" y="203.5"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="427" x="213" y="202.5"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="58" stroke-opacity="0.9" width="1" x="213" y="145.5"/>
<rect fill="none" height="40" width="40" x="86.5" y="154.5"/>
-<path d="M87.88,174.5c0.019,10.27,8.353,18.6,18.62,18.62,10.27-0.019,18.61-8.356,18.62-18.62-0.017-10.27-8.356-18.61-18.62-18.62-10.27,0-18.6,8.3-18.62,18.6zm8.06,3.5l-0.924,1.229s-0.086,2.324-0.092,2.423c-0.076,0.225-0.693,0.148-0.932,0.148-0.807,0.761,0.421,1.424,0.217,1.895-0.197,0.457-0.454,0.971-0.773,1.432-2.256-2.883-4.664-8.228-3.11-14.51,0.196,0.094,0.442,0.332,0.75,0.756,0.337,0.467,0.313,1.104,0.631,1.394,0.378,0.347,0.784,1.573,0.784,1.573l1.043,1.125,2.408,1.56v0.979h-0.011zm22.86,5.5c-0.702,0.229-0.458-0.546-0.458-0.546s0.629-1.391,0.643-1.501c0.033-0.263,0.863-0.524,0.863-0.524l0.553-0.877c0.9-0.2-0.1,2.9-1.6,3.4zm-5.7-24c0.264,0.034,0.184,0.284,0.479,0.284,0.101,0,0.53-0.111,1.054-0.258,4.179,2.173,7.342,6.029,8.584,10.67-0.055-0.003-0.088-0.008-0.088-0.008s-0.1-0.065-0.246-0.16l-0.516-1.021-0.816-0.066-1.664-1.402s0.44,1.131,1.172,1.664c0.476,0.033,0.799-0.031,0.822-0.008,0.521,1.373-0.594,3.061-1.887,3.372-0.162-0.704-0.306-0.979-0.512-1.58l-2.266-3.081-0.131,0.324,1.045,1.591s0.74,1.241,1.047,1.961c0.588,0.522,0.703,0.739,0.763,1.272,0.207,0.066,0.37,0.078,1.022-0.162,0.988-0.363,0.424,1.162,0.262,1.588-0.592,1.445-0.723,1.332-1.655,2.279-1.44,1.019-0.668,2.793-0.731,4.229,0,0-1.455,0.979-1.994,1.192-0.5,0.713-0.01,1.389-0.262,1.406-0.766,0.25-1.925,1.437-2.123,1.6-0.688,0.889-1.113,1.017-1.923,0.945-2.257-0.638-1.577-2.983-1.678-3.244-0.276-0.898-1.153-1.029-0.013-2.746,0.479-0.564,0.045-1.822-0.827-3.043-0.4-0.563,0.28-1.869,0.229-1.877-1.462-0.272-1.765-0.93-1.828-1.096,0,0-2.975,0.594-4.002,0.508-0.787-0.063-2.488-2.101-2.816-2.854-0.327-0.755,0.619-3.301,0.654-3.496,0.033-0.197,2.244-1.732,2.244-1.732l1.504-1.465-0.9-0.443s0.186-1.838,1.014-1.373c0.087,0.05,0.555,0.146,1.082,0.1,0.559-0.352-0.611-0.813-0.484-1.288,0.029-0.112,0.463-0.165,0.026-0.56-0.696-0.631-0.194-1.09,0.239-1.198,0.48,0.177,0.785,0.608,0.785,1.198,0,0.592,1.559-0.27,1.654-0.37-0.695-0.501-1.045-1.294-0.785-1.327,0.268-0.036,1.422-0.335,1.717-0.633,0.3-0.3,2.4,0.3,2.7,0.3zm-9-0.3c0.215-0.104,0.614,0.104,0.89,0.063s0.521,0.063,0.521,0.063-0.491,0.23-0.705,0.271c-0.2,0-0.5-0.2-0.7-0.5zm-2.1-0.8c1.533-0.454,3.158-0.699,4.836-0.699,1.305,0,2.576,0.147,3.796,0.427-1.636,0.352-3.429-0.07-3.429-0.07-0.164,0.263-0.905,0.125-1.101,0.125-0.198,0-1.213,0.838-2.168,0.758-0.459,0.295-0.864,0.623-1.358,0.46-0.492-0.164-1.436,0.653-1.795,0.688-0.49,0.154-0.725,0.118-0.793-0.025,1.19-0.8,1.69-1.3,2.09-1.7zm-3.22,1.3l-0.95,1.119s-0.196,0.588-0.306,0.74c-0.108,0.152-0.653,0.742-0.653,0.742l-0.457-0.195-0.066-0.24s-0.502,0.152-0.502,0.457c0,0.306-1.938,1.574-2.522,2.037,1.46-1.9,3.32-3.5,5.46-4.6z" fill="#FFFFFF"/>
-<path d="M111,161.1c0.171,0.152,0.739,0.465,0.825-0.047,0.085-0.514-0.452-1.293-0.452-1.293s-0.54,0.131-0.403,0.48,0,0.7,0.1,0.8z" fill="#FFFFFF"/>
-<path d="M115.3,164.4s0.515-0.094,1.015,0.1c1.418,0.286,0.977-0.234,0.304-0.6-0.238-0.129-0.583-0.316-0.4-0.559-0.158-0.255-0.5-0.074-0.742,0.191-0.243,0.266-0.771-0.121-0.932,0.37-0.2,0.5,0.6,0.7,0.7,0.5z" fill="#FFFFFF"/>
-<path d="M108.7,163.5c-0.348,0.296-1.313,1.204-1.313,1.204l-1.345,0.479,1.213,0.189,1.244-0.368,1.951,0.129,0.318,0.919s2.137,1.059,2.342,0.844c0.316-0.326,0.486-0.795,0.963-0.469,0.478,0.328,1.252,0.329,1.812,0.329,0.231,0.067,1.053,0.61,1.03-0.739-0.362-0.304-2.353-0.177-2.916-1.48l-0.285,0.041s0.189,0.92-0.041,0.902c-0.536-0.039-1.096-1-1.096-1l-0.104-0.408-1.4-0.793s-0.008,0.233,1.084,1.19c0,0-0.369,0.631-0.857,0.664,0.123-0.164,0.216-0.655,0.216-0.655l-1.345-1.076c0,0.2-1.2,0.1-1.5,0.3z" fill="#FFFFFF"/>
-<path d="M118.6,164.8c0.381,0.356,0.218,0.623,0.471,0.848,0.252,0.225,0.842,0.25,0.463-0.262-0.459-0.616-0.938-1.096-1.045-1.248-0.203-0.283,0.115-0.879-0.42-0.625-0.5,0.6-0.2,0.8,0.4,1.3z" fill="#FFFFFF"/>
-<path d="M336.7,185.9l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705,0-8.369-6.787-15.15-15.15-15.15-8.367,0-15.15,6.783-15.15,15.15,0,8.365,6.783,15.15,15.15,15.15,3.111,0,5.998-0.939,8.404-2.549l5.693,5.693c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588c0.9-1,0.9-2.5,0-3.3zm-18.9-2.2c-6.273,0-11.36-5.088-11.36-11.36s5.088-11.36,11.36-11.36c6.275,0,11.36,5.088,11.36,11.36,0,6.3-5.1,11.4-11.4,11.4zm1.5-17.9h-2.668v5.332h-5.332v2.668h5.332v5.332h2.668v-5.332h5.332v-2.668h-5.332v-5.266z" fill="#3C3C3C"/>
+<g>
+<g>
+<path d="M87.876,174.5c0.019,10.268,8.353,18.605,18.624,18.624c10.268-0.019,18.607-8.356,18.624-18.624 c-0.017-10.268-8.356-18.607-18.624-18.625C96.229,155.893,87.895,164.232,87.876,174.5z M95.939,177.984l-0.924,1.229 c0,0-0.086,2.324-0.092,2.423c-0.076,0.225-0.693,0.148-0.932,0.148c-0.807,0.761,0.421,1.424,0.217,1.895 c-0.197,0.457-0.454,0.971-0.773,1.432c-2.256-2.883-4.664-8.228-3.11-14.514c0.196,0.094,0.442,0.332,0.75,0.756 c0.337,0.467,0.313,1.104,0.631,1.394c0.378,0.347,0.784,1.573,0.784,1.573l1.043,1.125l2.408,1.56v0.979H95.939z M118.841,183.507c-0.702,0.229-0.458-0.546-0.458-0.546s0.629-1.391,0.643-1.501c0.033-0.263,0.863-0.524,0.863-0.524 l0.553-0.877C121.262,179.893,120.305,183.027,118.841,183.507z M113.113,159.548c0.264,0.034,0.184,0.284,0.479,0.284 c0.101,0,0.53-0.111,1.054-0.258c4.179,2.173,7.342,6.029,8.584,10.674c-0.055-0.003-0.088-0.008-0.088-0.008 s-0.1-0.065-0.246-0.16l-0.516-1.021l-0.816-0.066l-1.664-1.402c0,0,0.44,1.131,1.172,1.664c0.476,0.033,0.799-0.031,0.822-0.008 c0.521,1.373-0.594,3.061-1.887,3.372c-0.162-0.704-0.306-0.979-0.512-1.58l-2.266-3.081l-0.131,0.324l1.045,1.591 c0,0,0.74,1.241,1.047,1.961c0.588,0.522,0.703,0.739,0.763,1.272c0.207,0.066,0.37,0.078,1.022-0.162 c0.988-0.363,0.424,1.162,0.262,1.588c-0.592,1.445-0.723,1.332-1.655,2.279c-1.44,1.019-0.668,2.793-0.731,4.229 c0,0-1.455,0.979-1.994,1.192c-0.5,0.713-0.01,1.389-0.262,1.406c-0.766,0.25-1.925,1.437-2.123,1.6 c-0.688,0.889-1.113,1.017-1.923,0.945c-2.257-0.638-1.577-2.983-1.678-3.244c-0.276-0.898-1.153-1.029-0.013-2.746 c0.479-0.564,0.045-1.822-0.827-3.043c-0.4-0.563,0.28-1.869,0.229-1.877c-1.462-0.272-1.765-0.93-1.828-1.096 c0,0-2.975,0.594-4.002,0.508c-0.787-0.063-2.488-2.101-2.816-2.854c-0.327-0.755,0.619-3.301,0.654-3.496 c0.033-0.197,2.244-1.732,2.244-1.732l1.504-1.465l-0.9-0.443c0,0,0.186-1.838,1.014-1.373c0.087,0.05,0.555,0.146,1.082,0.1 c0.559-0.352-0.611-0.813-0.484-1.288c0.029-0.112,0.463-0.165,0.026-0.56c-0.696-0.631-0.194-1.09,0.239-1.198 c0.48,0.177,0.785,0.608,0.785,1.198c0,0.592,1.559-0.27,1.654-0.37c-0.695-0.501-1.045-1.294-0.785-1.327 c0.268-0.036,1.422-0.335,1.717-0.633C110.657,158.949,112.848,159.518,113.113,159.548z M104.124,159.23 c0.215-0.104,0.614,0.104,0.89,0.063c0.276-0.041,0.521,0.063,0.521,0.063s-0.491,0.23-0.705,0.271 C104.615,159.669,104.309,159.459,104.124,159.23z M101.986,158.366c1.533-0.454,3.158-0.699,4.836-0.699 c1.305,0,2.576,0.147,3.796,0.427c-1.636,0.352-3.429-0.07-3.429-0.07c-0.164,0.263-0.905,0.125-1.101,0.125 c-0.198,0-1.213,0.838-2.168,0.758c-0.459,0.295-0.864,0.623-1.358,0.46c-0.492-0.164-1.436,0.653-1.795,0.688 c-0.49,0.154-0.725,0.118-0.793-0.025C101.1,159.341,101.559,158.779,101.986,158.366z M98.775,159.691l-0.95,1.119 c0,0-0.196,0.588-0.306,0.74c-0.108,0.152-0.653,0.742-0.653,0.742l-0.457-0.195l-0.066-0.24c0,0-0.502,0.152-0.502,0.457 c0,0.306-1.938,1.574-2.522,2.037C94.781,162.436,96.643,160.842,98.775,159.691z" fill="#FFFFFF"/>
+<path d="M111.05,161.109c0.171,0.152,0.739,0.465,0.825-0.047c0.085-0.514-0.452-1.293-0.452-1.293 s-0.54,0.131-0.403,0.48S110.881,160.959,111.05,161.109z" fill="#FFFFFF"/>
+<path d="M115.268,164.363c0,0,0.515-0.094,1.015,0.1c1.418,0.286,0.977-0.234,0.304-0.6 c-0.238-0.129-0.583-0.316-0.4-0.559c-0.158-0.255-0.5-0.074-0.742,0.191c-0.243,0.266-0.771-0.121-0.932,0.37 C114.35,164.355,115.152,164.585,115.268,164.363z" fill="#FFFFFF"/>
+<path d="M108.725,163.534c-0.348,0.296-1.313,1.204-1.313,1.204l-1.345,0.479l1.213,0.189l1.244-0.368l1.951,0.129 l0.318,0.919c0,0,2.137,1.059,2.342,0.844c0.316-0.326,0.486-0.795,0.963-0.469c0.478,0.328,1.252,0.329,1.812,0.329 c0.231,0.067,1.053,0.61,1.03-0.739c-0.362-0.304-2.353-0.177-2.916-1.48l-0.285,0.041c0,0,0.189,0.92-0.041,0.902 c-0.536-0.039-1.096-1-1.096-1l-0.104-0.408l-1.4-0.793c0,0-0.008,0.233,1.084,1.19c0,0-0.369,0.631-0.857,0.664 c0.123-0.164,0.216-0.655,0.216-0.655l-1.345-1.076C110.193,163.436,109.02,163.284,108.725,163.534z" fill="#FFFFFF"/>
+<path d="M118.58,164.814c0.381,0.356,0.218,0.623,0.471,0.848c0.252,0.225,0.842,0.25,0.463-0.262 c-0.459-0.616-0.938-1.096-1.045-1.248c-0.203-0.283,0.115-0.879-0.42-0.625C117.734,164.086,118.034,164.307,118.58,164.814z" fill="#FFFFFF"/>
+</g>
+</g>
+<path d="M336.674,185.854l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705c0-8.369-6.787-15.152-15.152-15.152 c-8.367,0-15.15,6.783-15.15,15.15c0,8.365,6.783,15.152,15.15,15.152c3.111,0,5.998-0.939,8.404-2.549l5.693,5.693 c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588C337.553,188.15,337.553,186.73,336.674,185.854z M317.816,183.682 c-6.273,0-11.361-5.088-11.361-11.363s5.088-11.363,11.361-11.363c6.275,0,11.363,5.088,11.363,11.363 C329.182,178.592,324.092,183.682,317.816,183.682z M319.334,165.834h-2.668v5.332h-5.332v2.668h5.332v5.332h2.668v-5.332h5.332 v-2.668h-5.332V165.834z" fill="#3C3C3C"/>
<rect fill="none" height="40" width="40" x="300" y="154.5"/>
-<path d="M550.2,185.9l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705,0-8.369-6.787-15.15-15.15-15.15-8.367,0-15.15,6.783-15.15,15.15,0,8.365,6.783,15.15,15.15,15.15,3.111,0,5.998-0.939,8.404-2.549l5.693,5.693c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588c0.8-1,0.8-2.5-0.1-3.3zm-18.9-2.2c-6.273,0-11.36-5.088-11.36-11.36s5.088-11.36,11.36-11.36c6.275,0,11.36,5.088,11.36,11.36,0,6.3-5.1,11.4-11.4,11.4zm-1.1-12.5h-5.332v2.668h13.33v-2.668h-8.066z" fill="#3C3C3C"/>
+<path d="M550.174,185.854l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705c0-8.369-6.787-15.152-15.152-15.152 c-8.367,0-15.15,6.783-15.15,15.15c0,8.365,6.783,15.152,15.15,15.152c3.111,0,5.998-0.939,8.404-2.549l5.693,5.693 c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588C551.053,188.15,551.053,186.73,550.174,185.854z M531.316,183.682 c-6.273,0-11.361-5.088-11.361-11.363s5.088-11.363,11.361-11.363c6.275,0,11.363,5.088,11.363,11.363 C542.682,178.592,537.592,183.682,531.316,183.682z M530.166,171.166h-5.332v2.668h5.332h2.668h5.332v-2.668h-5.332H530.166z" fill="#3C3C3C"/>
<rect fill="none" height="40" width="40" x="513.5" y="154.5"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="58" stroke-opacity="0.9" width="1" x="427" y="145.5"/>
<rect fill="#9696A0" fill-opacity="0.5" height="58" stroke-opacity="0.5" width="1" x="426" y="145.5"/>
-<path d="M1,145.5v58h211v-58h-211zm210,57h-209v-54h209v54z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="71.71" width="71.63" x="171.2" y="66.64"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-678.8" x2="-678.8" y1="-905.8" y2="-950.8">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M1,145.5v3v55h211v-55v-3H1z M211,202.5H2v-54h209V202.5z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" height="71.71" width="71.63" x="171.249" y="66.645"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-678.8013" x2="-678.8013" y1="-905.832" y2="-950.8316">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M208.5,117.9c0,1.617-1.313,2.928-2.923,2.928h-23.39c-1.612,0-2.923-1.314-2.923-2.928v-39.55c0-1.615,1.313-2.927,2.923-2.927h23.39c1.61,0,2.925,1.313,2.925,2.927v39.55z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-678.8" x2="-678.8" y1="-905.3" y2="-949.6">
-<stop offset="0" stop-color="#D5D7DB"/>
-<stop offset="0.67" stop-color="#85878A"/>
-<stop offset="1" stop-color="#808184"/>
+<path d="M208.521,117.863c0,1.617-1.313,2.928-2.923,2.928H182.21c-1.612,0-2.923-1.314-2.923-2.928V78.348 c0-1.615,1.313-2.927,2.923-2.927h23.39c1.61,0,2.925,1.313,2.925,2.927L208.521,117.863L208.521,117.863z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-678.8022" x2="-678.8022" y1="-905.2769" y2="-949.6078">
+<stop offset="0" style="stop-color:#D5D7DB"/>
+<stop offset="0.67" style="stop-color:#85878A"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
-<path d="M205.6,75.42h-23.39c-1.612,0-2.923,1.315-2.923,2.927v39.52c0,0.775,0.313,1.484,0.811,2.012-0.045-0.176-0.078-0.355-0.078-0.549v-41.01c0-1.21,0.98-2.191,2.19-2.191h23.39c1.209,0,2.188,0.981,2.188,2.191v40.98c0,0.189-0.027,0.373-0.076,0.549,0.498-0.521,0.813-1.232,0.813-2.012v-39.55c0-1.61-1.3-2.93-2.9-2.93z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-678.8" x2="-678.8" y1="-909" y2="-937.5">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M205.596,75.423H182.21c-1.612,0-2.923,1.315-2.923,2.927v39.515c0,0.775,0.313,1.484,0.811,2.012 c-0.045-0.176-0.078-0.355-0.078-0.549v-1.463V79.816V78.35c0-1.21,0.98-2.191,2.19-2.191h23.388c1.209,0,2.188,0.981,2.188,2.191 v1.466v38.049v1.463c0,0.189-0.027,0.373-0.076,0.549c0.498-0.521,0.813-1.232,0.813-2.012V78.35 C208.521,76.735,207.212,75.423,205.596,75.423z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-678.8018" x2="-678.8018" y1="-908.9756" y2="-937.4838">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" fill-opacity="0.6" height="28.54" width="24.85" x="181.5" y="79.08"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-678.8" x2="-678.8" y1="-909.7" y2="-936.7">
-<stop offset="0" stop-color="#3D3D3D"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<rect fill="url(#SVGID_15_)" fill-opacity="0.6" height="28.54" width="24.85" x="181.48" y="79.082"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-678.8022" x2="-678.8022" y1="-909.7046" y2="-936.743">
+<stop offset="0" style="stop-color:#3D3D3D"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" height="27.08" width="23.39" x="182.2" y="79.81"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-678.8" x2="-678.8" y1="-910.4" y2="-936">
-<stop offset="0" stop-color="#3BC8EB"/>
-<stop offset="0.39" stop-color="#2D9BD2"/>
-<stop offset="0.89" stop-color="#1347BA"/>
-<stop offset="1" stop-color="#1347BA"/>
+<rect fill="url(#SVGID_16_)" height="27.075" width="23.39" x="182.21" y="79.812"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-678.8022" x2="-678.8022" y1="-910.436" y2="-936.0117">
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.39" style="stop-color:#2D9BD2"/>
+<stop offset="0.89" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" height="25.61" width="21.92" x="182.9" y="80.55"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-678.8" x2="-678.8" y1="-911" y2="-921.3">
-<stop offset="0" stop-color="#85EFFF"/>
-<stop offset="1" stop-color="#3BA1D9"/>
+<rect fill="url(#SVGID_17_)" height="25.609" width="21.925" x="182.942" y="80.547"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-678.8022" x2="-678.8022" y1="-911.0093" y2="-921.3372">
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
-<polygon fill="url(#SVGID_18_)" points="204.9,89.33,182.9,92.26,182.9,81.28,204.9,81.28"/>
-<rect fill="#9FE4FF" height="0.729" width="21.92" x="182.9" y="80.55"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-678.4" x2="-678.4" y1="-909" y2="-906">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="1" stop-color="#808385"/>
+<polygon fill="url(#SVGID_18_)" points="204.867,89.326 182.942,92.255 182.942,81.277 204.867,81.277 "/>
+<rect fill="#9FE4FF" height="0.729" width="21.925" x="182.942" y="80.547"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-678.4209" x2="-678.4209" y1="-908.9771" y2="-906.0483">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="1" style="stop-color:#808385"/>
</linearGradient>
-<path d="M191.7,79.08c-0.818,0-1.461-0.534-1.461-1.219v-0.486c0-0.687,0.643-1.22,1.461-1.22h5.216c0.815,0,1.462,0.533,1.462,1.22v0.486c0,0.687-0.646,1.223-1.462,1.223h-5.216v0.002z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-678.4" x2="-678.4" y1="-906.4" y2="-908.3">
-<stop offset="0" stop-color="#343838"/>
-<stop offset="1" stop-color="#7D8182"/>
+<path d="M191.678,79.082c-0.818,0-1.461-0.534-1.461-1.219v-0.486c0-0.687,0.643-1.22,1.461-1.22h5.216 c0.815,0,1.462,0.533,1.462,1.22v0.486c0,0.687-0.646,1.223-1.462,1.223h-5.216V79.082z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-678.4209" x2="-678.4209" y1="-906.4424" y2="-908.3323">
+<stop offset="0" style="stop-color:#343838"/>
+<stop offset="1" style="stop-color:#7D8182"/>
</linearGradient>
-<path d="M197.6,77.86c0,0.272-0.322,0.487-0.728,0.487h-5.218c-0.402,0-0.729-0.219-0.729-0.487v-0.486c0-0.271,0.326-0.485,0.729-0.485h5.218c0.399,0,0.728,0.222,0.728,0.485v0.503z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="-678.8" x2="-678.8" y1="-938.2" y2="-948.4">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M197.623,77.863c0,0.272-0.322,0.487-0.728,0.487h-5.218c-0.402,0-0.729-0.219-0.729-0.487v-0.486 c0-0.271,0.326-0.485,0.729-0.485h5.218c0.399,0,0.728,0.222,0.728,0.485V77.863z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="-678.8018" x2="-678.8018" y1="-938.2363" y2="-948.3815">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<path d="M191.6,118.6c-1.564,0-2.84-1.264-2.84-2.814v-4.617c0-1.549,1.271-2.813,2.84-2.813h4.554c1.563,0,2.839,1.264,2.839,2.813v4.617c0,1.553-1.273,2.814-2.841,2.814h-4.571-0.029z" fill="url(#SVGID_21_)" fill-opacity="0.6"/>
-<path d="M191.6,117.9c-1.16,0-2.104-0.939-2.104-2.082v-4.615c0-1.146,0.941-2.08,2.104-2.08h4.562c1.159,0,2.104,0.938,2.104,2.08v4.615c0,1.145-0.941,2.082-2.104,2.082h-4.577-0.023z" fill="#020202" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="-678.8" x2="-678.8" y1="-939.6" y2="-947">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M191.629,118.594c-1.564,0-2.84-1.264-2.84-2.814v-4.617 c0-1.549,1.271-2.813,2.84-2.813h4.554c1.563,0,2.839,1.264,2.839,2.813v4.617c0,1.553-1.273,2.814-2.841,2.814H191.629 L191.629,118.594z" fill="url(#SVGID_21_)" fill-opacity="0.6"/>
+<path d="M191.623,117.863c-1.16,0-2.104-0.939-2.104-2.082v-4.615c0-1.146,0.941-2.08,2.104-2.08 h4.562c1.159,0,2.104,0.938,2.104,2.08v4.615c0,1.145-0.941,2.082-2.104,2.082H191.623L191.623,117.863z" fill="#020202" fill-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="-678.8037" x2="-678.8037" y1="-939.6357" y2="-946.9964">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M197.6,115.8c0,0.744-0.612,1.352-1.366,1.352h-4.571c-0.756,0-1.369-0.607-1.369-1.352v-4.617c0-0.742,0.613-1.35,1.369-1.35h4.571c0.754,0,1.366,0.604,1.366,1.35v4.581z" fill="url(#SVGID_22_)"/>
-<path d="M193.2,115.7c-0.81,0-1.465-0.654-1.465-1.463v-1.465c0-0.811,0.654-1.463,1.465-1.463h1.46c0.807,0,1.463,0.652,1.463,1.463v1.465c0,0.809-0.654,1.463-1.463,1.463h-1.526z" fill="#020202" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-678.8" x2="-678.8" y1="-941.9" y2="-944.8">
-<stop offset="0" stop-color="#A6A8AB"/>
-<stop offset="0.7" stop-color="#58595B"/>
-<stop offset="1" stop-color="#808184"/>
+<path d="M197.557,115.781c0,0.744-0.612,1.352-1.366,1.352h-4.571c-0.756,0-1.369-0.607-1.369-1.352v-4.617 c0-0.742,0.613-1.35,1.369-1.35h4.571c0.754,0,1.366,0.604,1.366,1.35V115.781z" fill="url(#SVGID_22_)"/>
+<path d="M193.174,115.668c-0.81,0-1.465-0.654-1.465-1.463v-1.465 c0-0.811,0.654-1.463,1.465-1.463h1.46c0.807,0,1.463,0.652,1.463,1.463v1.465c0,0.809-0.654,1.463-1.463,1.463H193.174z" fill="#020202" fill-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-678.8042" x2="-678.8042" y1="-941.8574" y2="-944.7953">
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.7" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
-<path d="M193.2,114.9c-0.404,0-0.73-0.326-0.73-0.729v-1.465c0-0.398,0.328-0.729,0.73-0.729h1.46c0.4,0,0.729,0.328,0.729,0.729v1.465c0,0.4-0.328,0.729-0.729,0.729h-1.526z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-688.3" x2="-688.3" y1="-938.9" y2="-947">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M193.174,114.932c-0.404,0-0.73-0.326-0.73-0.729v-1.465c0-0.398,0.328-0.729,0.73-0.729h1.46 c0.4,0,0.729,0.328,0.729,0.729v1.465c0,0.4-0.328,0.729-0.729,0.729H193.174z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-688.3027" x2="-688.3027" y1="-938.9053" y2="-946.9969">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<path d="M184.4,117.1c-1.611,0-2.925-1.264-2.925-2.818v-2.42c0-1.551,1.313-2.814,2.925-2.814,1.61,0,2.923,1.264,2.923,2.814v2.42c0,1.6-1.3,2.8-2.9,2.8z" fill="url(#SVGID_24_)" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-688.3" x2="-688.3" y1="-939.6" y2="-946.3">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M184.405,117.133c-1.611,0-2.925-1.264-2.925-2.818v-2.42 c0-1.551,1.313-2.814,2.925-2.814l0,0c1.61,0,2.923,1.264,2.923,2.814v2.42C187.328,115.869,186.014,117.133,184.405,117.133 L184.405,117.133z" fill="url(#SVGID_24_)" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-688.3008" x2="-688.3008" y1="-939.6338" y2="-946.2672">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M184.4,116.4c-1.193,0-2.162-0.932-2.162-2.082v-2.42c0-1.148,0.969-2.08,2.162-2.08,1.192,0,2.163,0.932,2.163,2.084v2.42c0,1.2-1,2.1-2.2,2.1z" fill="url(#SVGID_25_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="-688.3" x2="-688.3" y1="-940.4" y2="-945.5">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="0.73" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<path d="M184.405,116.396c-1.193,0-2.162-0.932-2.162-2.082v-2.42 c0-1.148,0.969-2.08,2.162-2.08l0,0c1.192,0,2.163,0.932,2.163,2.084v2.42C186.566,115.467,185.598,116.396,184.405,116.396 L184.405,116.396z" fill="url(#SVGID_25_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="-688.3032" x2="-688.3032" y1="-940.3721" y2="-945.5241">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.73" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<path d="M185.8,114.3c0,0.748-0.627,1.354-1.399,1.354-0.775,0-1.402-0.605-1.402-1.354v-2.42c0-0.744,0.627-1.352,1.402-1.352,0.772,0,1.399,0.605,1.399,1.355v2.414z" fill="url(#SVGID_26_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="-669.3" x2="-669.3" y1="-938.9" y2="-947">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M185.805,114.314c0,0.748-0.627,1.354-1.399,1.354l0,0c-0.775,0-1.402-0.605-1.402-1.354v-2.42 c0-0.744,0.627-1.352,1.402-1.352l0,0c0.772,0,1.399,0.605,1.399,1.355V114.314z" fill="url(#SVGID_26_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="-669.3008" x2="-669.3008" y1="-938.9053" y2="-946.9969">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<path d="M203.5,117.1c-1.641,0-2.977-1.264-2.977-2.818v-2.42c0-1.551,1.336-2.814,2.977-2.814h-0.104c1.643,0,2.979,1.264,2.979,2.814v2.42c0,1.555-1.336,2.818-2.977,2.818h0.057,0.043z" fill="url(#SVGID_27_)" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="-669.3" x2="-669.3" y1="-939.6" y2="-946.3">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M203.457,117.133c-1.641,0-2.977-1.264-2.977-2.818v-2.42 c0-1.551,1.336-2.814,2.977-2.814h-0.104c1.643,0,2.979,1.264,2.979,2.814v2.42c0,1.555-1.336,2.818-2.977,2.818H203.457 L203.457,117.133z" fill="url(#SVGID_27_)" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="-669.2998" x2="-669.2998" y1="-939.6338" y2="-946.2672">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M203.5,116.4c-1.215,0-2.199-0.932-2.199-2.082v-2.42c0-1.148,0.984-2.08,2.199-2.08h-0.104c1.217,0,2.203,0.932,2.203,2.08v2.42c0,1.148-0.986,2.082-2.203,2.082h0.057z" fill="url(#SVGID_28_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="-669.3" x2="-669.3" y1="-940.4" y2="-945.5">
-<stop offset="0" stop-color="#FFC142"/>
-<stop offset="0.75" stop-color="#CF4E18"/>
-<stop offset="1" stop-color="#B52100"/>
+<path d="M203.457,116.396c-1.215,0-2.199-0.932-2.199-2.082v-2.42 c0-1.148,0.984-2.08,2.199-2.08h-0.104c1.217,0,2.203,0.932,2.203,2.08v2.42c0,1.148-0.986,2.082-2.203,2.082H203.457z" fill="url(#SVGID_28_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="-669.3018" x2="-669.3018" y1="-940.373" y2="-945.5237">
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.75" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
-<path d="M204.8,114.3c0,0.748-0.641,1.354-1.43,1.354h0.105c-0.789,0-1.428-0.605-1.428-1.354v-2.42c0-0.744,0.639-1.352,1.428-1.352h-0.105c0.789,0,1.43,0.605,1.43,1.352v2.414z" fill="url(#SVGID_29_)"/>
-<rect fill="#020202" fill-opacity="0.2" height="45.36" width="1.46" x="196.8" y="75.42"/>
-<rect fill="#020202" fill-opacity="0.1" height="45.36" width="2.924" x="197.6" y="75.42"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-657.2" x2="-657.2" y1="-905.3" y2="-957.8">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M204.781,114.314c0,0.748-0.641,1.354-1.43,1.354h0.105c-0.789,0-1.428-0.605-1.428-1.354v-2.42 c0-0.744,0.639-1.352,1.428-1.352h-0.105c0.789,0,1.43,0.605,1.43,1.352V114.314z" fill="url(#SVGID_29_)"/>
+<rect fill="#020202" fill-opacity="0.2" height="45.364" width="1.46" x="196.829" y="75.423"/>
+<rect fill="#020202" fill-opacity="0.1" height="45.364" width="2.924" x="197.557" y="75.423"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-657.2446" x2="-657.2446" y1="-905.2808" y2="-957.8218">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M232.6,125.2c0,1.615-1.31,2.928-2.921,2.928h-28.5c-1.611,0-2.924-1.313-2.924-2.928v-46.85c0-1.615,1.313-2.927,2.924-2.927h28.51c1.611,0,2.921,1.315,2.921,2.927v46.84z" fill="url(#SVGID_30_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="-657.2" x2="-657.2" y1="-905.3" y2="-956.9">
-<stop offset="0" stop-color="#E4EBED"/>
-<stop offset="0.07" stop-color="#E4EBED"/>
-<stop offset="0.26" stop-color="#D6DCDE"/>
-<stop offset="0.66" stop-color="#B2BEC2"/>
-<stop offset="1" stop-color="#ADB3B5"/>
+<path d="M232.636,125.182c0,1.615-1.31,2.928-2.921,2.928h-28.504c-1.611,0-2.924-1.313-2.924-2.928V78.354 c0-1.615,1.313-2.927,2.924-2.927h28.506c1.611,0,2.921,1.315,2.921,2.927L232.636,125.182L232.636,125.182z" fill="url(#SVGID_30_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="-657.2446" x2="-657.2446" y1="-905.2769" y2="-956.9106">
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.07" style="stop-color:#E4EBED"/>
+<stop offset="0.26" style="stop-color:#D6DCDE"/>
+<stop offset="0.66" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<path d="M229.7,75.42h-28.5c-1.611,0-2.924,1.315-2.924,2.927v46.83c0,0.777,0.313,1.482,0.813,2.014-0.045-0.178-0.078-0.355-0.078-0.549v-48.31c0-1.21,0.98-2.191,2.189-2.191h28.5c1.209,0,2.188,0.981,2.188,2.191v48.3c0,0.188-0.031,0.373-0.076,0.549,0.498-0.523,0.811-1.23,0.811-2.014v-46.85c0-1.61-1.3-2.93-2.9-2.93z" fill="url(#SVGID_31_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-657.2" x2="-657.2" y1="-909" y2="-944.1">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#F0FBFF"/>
+<path d="M229.715,75.423h-28.504c-1.611,0-2.924,1.315-2.924,2.927v46.828c0,0.777,0.313,1.482,0.813,2.014 c-0.045-0.178-0.078-0.355-0.078-0.549v-1.465V79.816V78.35c0-1.21,0.98-2.191,2.189-2.191h28.504c1.209,0,2.188,0.981,2.188,2.191 v1.466v45.362v1.465c0,0.188-0.031,0.373-0.076,0.549c0.498-0.523,0.811-1.23,0.811-2.014V78.35 C232.636,76.735,231.328,75.423,229.715,75.423z" fill="url(#SVGID_31_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-657.2441" x2="-657.2441" y1="-908.9863" y2="-944.0677">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_32_)" fill-opacity="0.6" height="35.12" width="29.96" x="200.5" y="79.08"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-657.2" x2="-657.2" y1="-909.7" y2="-943.3">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_32_)" fill-opacity="0.6" height="35.124" width="29.965" x="200.48" y="79.082"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-657.2432" x2="-657.2432" y1="-909.7163" y2="-943.3259">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_33_)" height="33.66" width="28.51" x="201.2" y="79.81"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="-657.2" x2="-657.2" y1="-910.4" y2="-942.6">
-<stop offset="0" stop-color="#3BC8EB"/>
-<stop offset="0.39" stop-color="#2D9BD2"/>
-<stop offset="0.89" stop-color="#1347BA"/>
-<stop offset="1" stop-color="#1347BA"/>
+<rect fill="url(#SVGID_33_)" height="33.659" width="28.506" x="201.211" y="79.812"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="-657.2432" x2="-657.2432" y1="-910.4478" y2="-942.5959">
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.39" style="stop-color:#2D9BD2"/>
+<stop offset="0.89" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
-<rect fill="url(#SVGID_34_)" height="32.19" width="27.04" x="201.9" y="80.55"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="-657.2" x2="-657.2" y1="-911" y2="-923.4">
-<stop offset="0" stop-color="#85EFFF"/>
-<stop offset="1" stop-color="#3BA1D9"/>
+<rect fill="url(#SVGID_34_)" height="32.193" width="27.041" x="201.943" y="80.547"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="-657.2432" x2="-657.2432" y1="-910.9858" y2="-923.3784">
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
-<polygon fill="url(#SVGID_35_)" points="229,91.52,201.9,94.45,201.9,81.28,229,81.28"/>
-<rect fill="#9FE4FF" height="0.729" width="27.04" x="201.9" y="80.55"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="-657.4" x2="-657.4" y1="-944.8" y2="-955.7">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_35_)" points="228.984,91.522 201.943,94.449 201.943,81.277 228.984,81.277 "/>
+<rect fill="#9FE4FF" height="0.729" width="27.041" x="201.943" y="80.547"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="-657.3574" x2="-657.3574" y1="-944.8184" y2="-955.6969">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M212.7,125.9c-1.564,0-2.84-1.264-2.84-2.814v-5.352c0-1.553,1.271-2.816,2.84-2.816h5.285c1.563,0,2.839,1.268,2.839,2.816v5.352c0,1.551-1.271,2.814-2.839,2.814h-5.293-0.007z" fill="url(#SVGID_36_)" fill-opacity="0.6"/>
-<path d="M212.7,125.2c-1.162,0-2.104-0.936-2.104-2.08v-5.352c0-1.148,0.941-2.082,2.104-2.082h5.293c1.162,0,2.104,0.938,2.104,2.082v5.352c0,1.146-0.942,2.08-2.104,2.08h-5.295z" fill="#020202" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="-657.4" x2="-657.4" y1="-946.2" y2="-954.3">
-<stop offset="0" stop-color="#A6A8AB"/>
-<stop offset="0.7" stop-color="#58595B"/>
-<stop offset="1" stop-color="#808184"/>
+<path d="M212.707,125.91c-1.564,0-2.84-1.264-2.84-2.814v-5.352 c0-1.553,1.271-2.816,2.84-2.816h5.285c1.563,0,2.839,1.268,2.839,2.816v5.352c0,1.551-1.271,2.814-2.839,2.814H212.707 L212.707,125.91z" fill="url(#SVGID_36_)" fill-opacity="0.6"/>
+<path d="M212.705,125.182c-1.162,0-2.104-0.936-2.104-2.08v-5.352 c0-1.148,0.941-2.082,2.104-2.082h5.293c1.162,0,2.104,0.938,2.104,2.082v5.352c0,1.146-0.942,2.08-2.104,2.08H212.705z" fill="#020202" fill-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="-657.3569" x2="-657.3569" y1="-946.2168" y2="-954.3099">
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.7" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
-<path d="M219.4,123.1c0,0.74-0.61,1.35-1.364,1.35h-5.307c-0.756,0-1.369-0.604-1.369-1.35v-5.352c0-0.746,0.613-1.355,1.369-1.355h5.307c0.754,0,1.364,0.607,1.364,1.355v5.498z" fill="url(#SVGID_37_)"/>
-<path d="M214.3,123c-0.809,0-1.465-0.658-1.465-1.467v-2.193c0-0.811,0.656-1.465,1.465-1.465h2.189c0.811,0,1.463,0.654,1.463,1.465v2.193c0,0.809-0.652,1.467-1.463,1.467h-2.246z" fill="#020202" fill-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="-657.4" x2="-657.4" y1="-948.4" y2="-952.1">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M219.37,123.098c0,0.74-0.61,1.35-1.364,1.35h-5.307c-0.756,0-1.369-0.604-1.369-1.35v-5.352 c0-0.746,0.613-1.355,1.369-1.355h5.307c0.754,0,1.364,0.607,1.364,1.355V123.098z" fill="url(#SVGID_37_)"/>
+<path d="M214.254,122.986c-0.809,0-1.465-0.658-1.465-1.467v-2.193 c0-0.811,0.656-1.465,1.465-1.465h2.189c0.811,0,1.463,0.654,1.463,1.465v2.193c0,0.809-0.652,1.467-1.463,1.467H214.254z" fill="#020202" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="-657.3574" x2="-657.3574" y1="-948.4297" y2="-952.1101">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M214.3,122.3c-0.4,0-0.729-0.328-0.729-0.729v-2.193c0-0.398,0.328-0.73,0.729-0.73h2.189c0.402,0,0.73,0.33,0.73,0.73v2.193c0,0.398-0.328,0.729-0.73,0.729h-2.246z" fill="url(#SVGID_38_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="-669" x2="-669" y1="-945.5" y2="-954.3">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#F0FBFF"/>
+<path d="M214.254,122.252c-0.4,0-0.729-0.328-0.729-0.729v-2.193c0-0.398,0.328-0.73,0.729-0.73h2.189 c0.402,0,0.73,0.33,0.73,0.73v2.193c0,0.398-0.328,0.729-0.73,0.729H214.254z" fill="url(#SVGID_38_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="-668.9922" x2="-668.9922" y1="-945.4766" y2="-954.3237">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M203.3,124.4c-1.549,0-2.813-1.264-2.813-2.814v-3.15c0-1.553,1.262-2.814,2.813-2.814h0.846c1.551,0,2.812,1.264,2.812,2.814v3.15c0,1.555-1.263,2.814-2.812,2.814h-0.807,0.007z" fill="url(#SVGID_39_)" fill-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="-669" x2="-669" y1="-946.2" y2="-953.6">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M203.293,124.445c-1.549,0-2.813-1.264-2.813-2.814v-3.15 c0-1.553,1.262-2.814,2.813-2.814h0.846c1.551,0,2.812,1.264,2.812,2.814v3.15c0,1.555-1.263,2.814-2.812,2.814H203.293 L203.293,124.445z" fill="url(#SVGID_39_)" fill-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="-668.9922" x2="-668.9922" y1="-946.2188" y2="-953.5802">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M203.3,123.7c-1.146,0-2.082-0.934-2.082-2.082v-3.15c0-1.146,0.936-2.082,2.082-2.082h0.846c1.146,0,2.08,0.936,2.08,2.084v3.15c0,1.148-0.936,2.082-2.08,2.082h-0.8z" fill="url(#SVGID_40_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="-669" x2="-669" y1="-947" y2="-952.9">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="0.73" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<path d="M203.293,123.717c-1.146,0-2.082-0.934-2.082-2.082v-3.15 c0-1.146,0.936-2.082,2.082-2.082h0.846c1.146,0,2.08,0.936,2.08,2.084v3.15c0,1.148-0.936,2.082-2.08,2.082L203.293,123.717 L203.293,123.717z" fill="url(#SVGID_40_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="-668.9941" x2="-668.9941" y1="-946.959" y2="-952.8542">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.73" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<path d="M205.5,121.6c0,0.744-0.604,1.355-1.352,1.355h-0.846c-0.74,0-1.35-0.607-1.35-1.355v-3.15c0-0.742,0.605-1.354,1.35-1.354h0.846c0.746,0,1.352,0.604,1.352,1.354v3.235z" fill="url(#SVGID_41_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="-646.1" x2="-646.1" y1="-945.5" y2="-954.3">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#F0FBFF"/>
+<path d="M205.486,121.635c0,0.744-0.604,1.355-1.352,1.355h-0.846c-0.74,0-1.35-0.607-1.35-1.355v-3.15 c0-0.742,0.605-1.354,1.35-1.354h0.846c0.746,0,1.352,0.604,1.352,1.354V121.635z" fill="url(#SVGID_41_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="-646.123" x2="-646.123" y1="-945.4766" y2="-954.3237">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M226.2,124.4c-1.551,0-2.814-1.264-2.814-2.814v-3.15c0-1.553,1.266-2.814,2.814-2.814h0.846c1.549,0,2.813,1.264,2.813,2.814v3.15c0,1.555-1.266,2.814-2.813,2.814h-0.838z" fill="url(#SVGID_42_)" fill-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="-646.1" x2="-646.1" y1="-946.2" y2="-953.6">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M226.162,124.445c-1.551,0-2.814-1.264-2.814-2.814v-3.15 c0-1.553,1.266-2.814,2.814-2.814h0.846c1.549,0,2.813,1.264,2.813,2.814v3.15c0,1.555-1.266,2.814-2.813,2.814H226.162z" fill="url(#SVGID_42_)" fill-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="-646.123" x2="-646.123" y1="-946.2188" y2="-953.5803">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M226.2,123.7c-1.146,0-2.08-0.934-2.08-2.082v-3.15c0-1.146,0.934-2.082,2.08-2.082h0.846c1.146,0,2.078,0.936,2.078,2.082v3.15c0,1.148-0.934,2.082-2.078,2.082h-0.838z" fill="url(#SVGID_43_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="-646.1" x2="-646.1" y1="-947" y2="-952.9">
-<stop offset="0" stop-color="#FFC142"/>
-<stop offset="0.75" stop-color="#CF4E18"/>
-<stop offset="1" stop-color="#B52100"/>
+<path d="M226.162,123.717c-1.146,0-2.08-0.934-2.08-2.082v-3.15 c0-1.146,0.934-2.082,2.08-2.082h0.846c1.146,0,2.078,0.936,2.078,2.082v3.15c0,1.148-0.934,2.082-2.078,2.082H226.162z" fill="url(#SVGID_43_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="-646.124" x2="-646.124" y1="-946.96" y2="-952.855">
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.75" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
-<path d="M228.4,121.6c0,0.744-0.604,1.355-1.35,1.355h-0.846c-0.746,0-1.352-0.607-1.352-1.355v-3.15c0-0.744,0.605-1.354,1.352-1.354h0.846c0.742,0,1.352,0.604,1.352,1.354v3.2z" fill="url(#SVGID_44_)"/>
-<rect fill="none" height="71.71" width="71.62" x="171.2" y="66.64"/>
-<polygon fill-opacity="0.1" points="200.2,109.6,190.5,109.6,190.5,98.29,200.2,98.29,200.2,90.97,213.9,104.3,200.2,116.8"/>
-<polygon fill-opacity="0.2" points="201,108.9,191.2,108.9,191.2,99.02,201,99.02,201,92.7,212.9,104.3,201,115.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="-670.8" x2="-670.8" y1="-923.6" y2="-942.5">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="0.73" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<path d="M228.355,121.635c0,0.744-0.604,1.355-1.35,1.355h-0.846c-0.746,0-1.352-0.607-1.352-1.355v-3.15 c0-0.744,0.605-1.354,1.352-1.354h0.846c0.742,0,1.352,0.604,1.352,1.354L228.355,121.635L228.355,121.635z" fill="url(#SVGID_44_)"/>
+<rect fill="none" height="71.707" width="71.622" x="171.249" y="66.645"/>
+<polygon fill-opacity="0.1" points="200.236,109.592 190.482,109.594 190.486,98.289 200.236,98.289 200.236,90.972 213.938,104.305 200.236,116.773 "/>
+<polygon fill-opacity="0.2" points="200.965,108.861 191.215,108.863 191.217,99.024 200.965,99.022 200.965,92.705 212.887,104.301 200.967,115.053 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="-670.8164" x2="-670.8164" y1="-923.6294" y2="-942.5151">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.73" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<polygon fill="url(#SVGID_45_)" points="201.7,113.3,211.8,103.6,201.7,93.7,201.7,99.02,191.9,99.02,191.9,108.1,201.7,108.1"/>
-<polygon fill="#FFFFFF" points="211.8,103.6,201.7,93.7,201.7,94.44,211.5,103.9"/>
-<polygon fill="#FFFFFF" points="191.9,99.75,201.7,99.75,201.7,99.02,191.9,99.02,191.9,108.1,191.9,108.1"/>
-<rect fill="none" height="71.71" width="71.63" x="284.2" y="66.64"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="-552" x2="-552" y1="-907.2" y2="-955.5">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<polygon fill="url(#SVGID_45_)" points="201.697,113.338 211.834,103.568 201.697,93.702 201.697,99.02 191.948,99.022 191.947,108.133 201.697,108.129 "/>
+<polygon fill="#FFFFFF" points="211.834,103.568 201.697,93.702 201.697,94.435 211.457,103.932 "/>
+<polygon fill="#FFFFFF" points="191.948,99.754 201.697,99.749 201.697,99.02 191.948,99.022 191.947,108.133 191.947,108.133 "/>
+<rect fill="none" height="71.71" width="71.627" x="284.188" y="66.645"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="-551.9785" x2="-551.9785" y1="-907.2324" y2="-955.5307">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M341.9,125.2c0,0.074-0.654,0.729-1.467,0.729h-39.46c-0.811,0-1.461-0.654-1.461-1.465v-46.05c0-0.81,0.65-1.463,1.461-1.463h39.47c0.809,0,1.463,0.651,1.463,2.19v46.11,0.018z" fill="url(#SVGID_46_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="-533.3" x2="-529.5" y1="-919.5" y2="-919.5">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.9" stop-color="#F0F0F0"/>
-<stop offset="0.91" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M341.924,125.182c0,0.074-0.654,0.729-1.467,0.729h-39.463c-0.811,0-1.461-0.654-1.461-1.465V78.348 c0-0.81,0.65-1.463,1.461-1.463h39.467c0.809,0,1.463,0.651,1.463,2.19V125.182L341.924,125.182z" fill="url(#SVGID_46_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="-533.3447" x2="-529.5009" y1="-919.5034" y2="-919.5034">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.9" style="stop-color:#F0F0F0"/>
+<stop offset="0.91" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M342.7,94.65c0.397-0.201,0.646-0.606,0.646-1.054v-8.329c0-0.439-0.248-0.853-0.646-1.054l-3.062-1.067v13.01l3.1-1.51z" fill="url(#SVGID_47_)"/>
-<polygon fill="#231F20" fill-opacity="0.35" points="339.6,93.46,342.6,94.62,340.3,95.75,339.6,95.73"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="-529.6" x2="-533.7" y1="-931.7" y2="-931.7">
-<stop offset="0" stop-color="#AFE865"/>
-<stop offset="0.05" stop-color="#AFE865"/>
-<stop offset="0.06" stop-color="#68B339"/>
-<stop offset="1" stop-color="#136101"/>
+<path d="M342.739,94.648c0.397-0.201,0.646-0.606,0.646-1.054v-8.329c0-0.439-0.248-0.853-0.646-1.054 l-3.062-1.067v13.012L342.739,94.648z" fill="url(#SVGID_47_)"/>
+<polygon fill="#231F20" fill-opacity="0.35" points="339.6,93.456 342.578,94.619 340.268,95.749 339.6,95.729 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="-529.644" x2="-533.6714" y1="-931.7222" y2="-931.7222">
+<stop offset="0" style="stop-color:#AFE865"/>
+<stop offset="0.05" style="stop-color:#AFE865"/>
+<stop offset="0.06" style="stop-color:#68B339"/>
+<stop offset="1" style="stop-color:#136101"/>
</linearGradient>
-<path d="M342.6,107.1c0.395-0.201,0.645-0.609,0.645-1.055v-8.328c0-0.439-0.249-0.854-0.645-1.056l-3.383-1.282v13.01l3.4-1.2z" fill="url(#SVGID_48_)"/>
-<polygon fill="#231F20" fill-opacity="0.35" points="338.6,106.1,342.3,107.4,339.7,108.4,338.6,108.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="-529.7" x2="-533.9" y1="-944.5" y2="-944.5">
-<stop offset="0" stop-color="#B8D6E9"/>
-<stop offset="0.07" stop-color="#5CB2E9"/>
-<stop offset="1" stop-color="#005BCC"/>
+<path d="M342.594,107.084c0.395-0.201,0.645-0.609,0.645-1.055v-8.328c0-0.439-0.249-0.854-0.645-1.056 l-3.383-1.282v13.011L342.594,107.084z" fill="url(#SVGID_48_)"/>
+<polygon fill="#231F20" fill-opacity="0.35" points="338.58,106.084 342.266,107.357 339.652,108.375 338.572,108.348 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="-529.6938" x2="-533.8968" y1="-944.4565" y2="-944.4565">
+<stop offset="0" style="stop-color:#B8D6E9"/>
+<stop offset="0.07" style="stop-color:#5CB2E9"/>
+<stop offset="1" style="stop-color:#005BCC"/>
</linearGradient>
-<path d="M342.7,120.3c0.395-0.197,0.645-0.604,0.645-1.051v-9.205c0-0.438-0.25-0.854-0.645-1.053l-3.758-1.285v13.89l3.8-1.2z" fill="url(#SVGID_49_)"/>
-<rect fill="#404041" fill-opacity="0.2" height="49.02" width="16.81" x="323.6" y="76.89"/>
-<rect fill="#404041" fill-opacity="0.2" height="49.02" width="16.81" x="322.9" y="76.89"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="-554.9" x2="-554.9" y1="-905.9" y2="-955.8">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.53" stop-color="#439020"/>
-<stop offset="1" stop-color="#0D4D07"/>
+<path d="M342.684,120.254c0.395-0.197,0.645-0.604,0.645-1.051v-9.205c0-0.438-0.25-0.854-0.645-1.053 l-3.758-1.285v13.887L342.684,120.254z" fill="url(#SVGID_49_)"/>
+<rect fill="#404041" fill-opacity="0.2" height="49.025" width="16.811" x="323.65" y="76.887"/>
+<rect fill="#404041" fill-opacity="0.2" height="49.025" width="16.811" x="322.92" y="76.887"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="-554.9043" x2="-554.9043" y1="-905.9194" y2="-955.7691">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.53" style="stop-color:#439020"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
-<path d="M339,125.2c0,0.811-0.65,1.467-1.463,1.467h-39.46c-0.807,0-1.461-0.656-1.461-1.467v-47.58c0-0.812,0.654-1.464,1.461-1.464h39.47c0.813,0,1.463,0.652,1.463,1.464v47.58z" fill="url(#SVGID_50_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="-552.3" x2="-552.3" y1="-905.8" y2="-969.5">
-<stop offset="0" stop-color="#CDEDBD"/>
-<stop offset="0.99" stop-color="#139900"/>
-<stop offset="1" stop-color="#139900"/>
+<path d="M338.996,125.182c0,0.811-0.65,1.467-1.463,1.467h-39.465c-0.807,0-1.461-0.656-1.461-1.467V77.621 c0-0.812,0.654-1.464,1.461-1.464h39.467c0.813,0,1.463,0.652,1.463,1.464L338.996,125.182L338.996,125.182z" fill="url(#SVGID_50_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="-552.3457" x2="-552.3457" y1="-905.7646" y2="-969.5499">
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.99" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
-<path d="M337.5,76.89c0.402,0,0.73,0.329,0.73,0.729v47.56c0,0.402-0.328,0.729-0.73,0.729h-35.08v-49.02l35.1,0.007m0-0.73h-35.81v50.49h35.81c0.813,0,1.463-0.654,1.463-1.467v-47.48c0-0.811-0.7-1.461-1.5-1.461z" fill="url(#SVGID_51_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="-573.5" x2="-573.5" y1="-905.8" y2="-957.2">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#A0A0A0"/>
+<path d="M337.533,76.887c0.402,0,0.73,0.329,0.73,0.729v47.561c0,0.402-0.328,0.729-0.73,0.729h-35.078 V76.883L337.533,76.887 M337.533,76.157h-35.807v50.49h35.807c0.813,0,1.463-0.654,1.463-1.467V77.621 C338.996,76.809,338.346,76.157,337.533,76.157L337.533,76.157z" fill="url(#SVGID_51_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="-573.5391" x2="-573.5391" y1="-905.7646" y2="-957.2268">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#A0A0A0"/>
</linearGradient>
-<path d="M298.1,76.16c-0.807,0-1.461,0.652-1.461,1.464v47.56c0,0.811,0.654,1.465,1.461,1.465h3.656v-50.49h-3.73z" fill="url(#SVGID_52_)"/>
-<rect fill="#737373" height="50.49" width="0.729" x="301" y="76.16"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="-572.1" x2="-572.1" y1="-905.8" y2="-957.2">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M298.07,76.157c-0.807,0-1.461,0.652-1.461,1.464v47.561c0,0.811,0.654,1.465,1.461,1.465h3.656 v-50.49H298.07z" fill="url(#SVGID_52_)"/>
+<rect fill="#737373" height="50.49" width="0.729" x="300.996" y="76.157"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="-572.0771" x2="-572.0771" y1="-905.7646" y2="-957.2278">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<rect fill="url(#SVGID_53_)" height="50.49" width="0.729" x="300.3" y="76.16"/>
-<rect fill="none" height="71.71" width="71.62" x="284.2" y="66.64"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="-552" x2="-552" y1="-923.5" y2="-947">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<rect fill="url(#SVGID_53_)" height="50.49" width="0.729" x="300.266" y="76.157"/>
+<rect fill="none" height="71.707" width="71.623" x="284.188" y="66.645"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="-551.9897" x2="-551.9897" y1="-923.4507" y2="-946.9707">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M328.4,107.9c-0.969-0.504-3.568-2.188-3.66-2.287-0.543-0.625-0.521-2-0.25-2.598,0.02-0.042,0.039-0.08,0.063-0.113,0.064-0.105,0.127-0.21,0.189-0.315,0.475-0.77,0.867-1.542,1.189-2.268,0.588,0.203,1.344-0.342,1.719-1.271,0.387-0.956,0.221-1.949-0.375-2.22-0.033-0.018-0.07-0.02-0.105-0.025v-0.002c0.074-0.305,0.107-0.479,0.107-0.479,1.023-4.612-1.209-8.276-6.626-8.452-2.228,0-3.3,1.017-4.124,2.068-1.346,0.209-3.477,1.441-1.973,6.843-0.061,0.014-0.111,0.021-0.168,0.043-0.604,0.257-0.789,1.24-0.422,2.2,0.367,0.962,1.148,1.538,1.752,1.284,0.037-0.018,0.066-0.043,0.104-0.063,0.33,0.743,0.734,1.537,1.229,2.34h-0.002c0.016,0.023,0.031,0.055,0.051,0.08,0.012,0.02,0.02,0.029,0.025,0.05,0,0.002,0,0.002,0.002,0.004,0.035,0.061,0.07,0.117,0.105,0.178,0.309,0.478,0.387,1.875-0.098,2.589-0.111,0.166-2.959,1.82-4.057,2.406-1.256,0.666-3.307,2.201-3.307,5.654h21.93c0.1-3.4-2.2-5.1-3.2-5.6zm-10.8-15.02s-0.018-0.004-0.02-0.004zm0.1,0.02c-0.006-0.002-0.014-0.004-0.018-0.006v0.01zm-0.2,0c-0.006,0.006-0.014,0.008-0.021,0.01v-0.01zm0-0.02l-0.021,0.002zm-0.1,0.06c-0.002,0.006-0.012,0.008-0.016,0.016v-0.02zm-2.8,3.84c0.012-0.014,0.021-0.021,0.035-0.031,0.002,0.008,0.004,0.016,0.006,0.021v0.01z" fill="url(#SVGID_54_)"/>
-<rect fill="#DEFEAC" fill-opacity="0.5" height="0.729" width="21.92" x="309.8" y="113.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="-430.4" x2="-430.4" y1="-912.6" y2="-957.5">
-<stop offset="0" stop-color="#4FB7EB"/>
-<stop offset="1" stop-color="#1755B3"/>
+<path d="M328.385,107.891c-0.969-0.504-3.568-2.188-3.66-2.287l0,0c-0.543-0.625-0.521-2-0.25-2.598l0,0 c0.02-0.042,0.039-0.08,0.063-0.113c0.064-0.105,0.127-0.21,0.189-0.315l0,0c0.475-0.77,0.867-1.542,1.189-2.268 c0.588,0.203,1.344-0.342,1.719-1.271c0.387-0.956,0.221-1.949-0.375-2.22c-0.033-0.018-0.07-0.02-0.105-0.025v-0.002 c0.074-0.305,0.107-0.479,0.107-0.479c1.023-4.612-1.209-8.276-6.626-8.452c-2.228,0-3.3,1.017-4.124,2.068 c-1.346,0.209-3.477,1.441-1.973,6.843c-0.061,0.014-0.111,0.021-0.168,0.043c-0.604,0.257-0.789,1.24-0.422,2.2 c0.367,0.962,1.148,1.538,1.752,1.284c0.037-0.018,0.066-0.043,0.104-0.063c0.33,0.743,0.734,1.537,1.229,2.34h-0.002 c0.016,0.023,0.031,0.055,0.051,0.08c0.012,0.02,0.02,0.029,0.025,0.05c0,0.002,0,0.002,0.002,0.004 c0.035,0.061,0.07,0.117,0.105,0.178c0.309,0.478,0.387,1.875-0.098,2.589c-0.111,0.166-2.959,1.82-4.057,2.406 c-1.256,0.666-3.307,2.201-3.307,5.654h21.927C331.688,110.09,329.352,108.396,328.385,107.891z M317.625,92.878 c0,0-0.018-0.004-0.02-0.004C317.611,92.875,317.617,92.878,317.625,92.878z M317.715,92.898c-0.006-0.002-0.014-0.004-0.018-0.006 C317.701,92.894,317.709,92.896,317.715,92.898z M317.484,92.896c-0.006,0.006-0.014,0.008-0.021,0.01 C317.471,92.9,317.479,92.898,317.484,92.896z M317.547,92.876c0,0-0.016,0-0.021,0.002 C317.531,92.876,317.539,92.876,317.547,92.876z M317.432,92.941c-0.002,0.006-0.012,0.008-0.016,0.016 C317.42,92.949,317.428,92.943,317.432,92.941z M314.555,96.777c0.012-0.014,0.021-0.021,0.035-0.031 c0.002,0.008,0.004,0.016,0.006,0.021C314.578,96.771,314.564,96.777,314.555,96.777z" fill="url(#SVGID_54_)"/>
+<rect fill="#DEFEAC" fill-opacity="0.5" height="0.729" width="21.923" x="309.766" y="113.549"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="-430.3711" x2="-430.3711" y1="-912.6265" y2="-957.54">
+<stop offset="0" style="stop-color:#4FB7EB"/>
+<stop offset="1" style="stop-color:#1755B3"/>
</linearGradient>
-<polygon fill="url(#SVGID_55_)" points="451.8,82.77,459.2,83.8,459.2,125.6,446.1,127.4,432.9,124.7,425.4,126.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_56_" x1="-433.2" x2="-433.2" y1="-925.9" y2="-957.5">
-<stop offset="0" stop-color="#8EFFF5"/>
-<stop offset="1" stop-color="#1D9DD8"/>
+<polygon fill="url(#SVGID_55_)" points="451.775,82.773 459.246,83.795 459.246,125.564 446.09,127.367 432.935,124.748 425.426,126.162 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_56_" x1="-433.1948" x2="-433.1948" y1="-925.855" y2="-957.5087">
+<stop offset="0" style="stop-color:#8EFFF5"/>
+<stop offset="1" style="stop-color:#1D9DD8"/>
</linearGradient>
-<polygon fill="url(#SVGID_56_)" points="446.1,94.92,446.1,127.4,432.9,124.7,432.9,114"/>
-<polygon fill-opacity="0.25" points="452.6,82.9,446.1,96.77,432.9,115.9,426.5,126,423.4,126.6,450.3,82.58"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_57_" x1="-445.4" x2="-445.4" y1="-912.2" y2="-957.2">
-<stop offset="0" stop-color="#FEEFA7"/>
-<stop offset="1" stop-color="#FFC501"/>
+<polygon fill="url(#SVGID_56_)" points="446.09,94.921 446.09,127.367 432.935,124.748 432.935,113.984 "/>
+<polygon fill-opacity="0.25" points="452.648,82.902 446.09,96.773 432.935,115.855 426.492,125.98 423.422,126.551 450.332,82.579 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_57_" x1="-445.3931" x2="-445.3931" y1="-912.2295" y2="-957.2112">
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
-<polygon fill="url(#SVGID_57_)" points="448,84.66,446,95.5,432.9,114.4,425.5,126.2,419,127.4,406.6,125,406.6,82.9,418.7,81.99,432.9,83.97,446.1,81.99"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_58_" x1="-446.7" x2="-446.7" y1="-955.4" y2="-913.4">
-<stop offset="0" stop-color="#E69400"/>
-<stop offset="1" stop-color="#F9DE4F"/>
+<polygon fill="url(#SVGID_57_)" points="448,84.658 445.99,95.495 432.935,114.447 425.473,126.17 419.05,127.367 406.628,125.025 406.628,82.896 418.685,81.993 432.935,83.973 446.09,81.993 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_58_" x1="-446.7148" x2="-446.7148" y1="-955.374" y2="-913.3823">
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
-<polygon fill="url(#SVGID_58_)" points="432.9,83.97,432.9,114.4,425.5,126.2,419,127.4,419,82.04"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_59_" x1="-423.8" x2="-423.8" y1="-924.9" y2="-912.6">
-<stop offset="0" stop-color="#E69400"/>
-<stop offset="1" stop-color="#F9DE4F"/>
+<polygon fill="url(#SVGID_58_)" points="432.935,83.973 432.935,114.447 425.473,126.17 419.05,127.367 419.05,82.045 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_59_" x1="-423.7646" x2="-423.7646" y1="-924.9121" y2="-912.5868">
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
-<polygon fill="url(#SVGID_59_)" points="446.1,81.99,446.1,95.34,451.8,82.77"/>
-<path d="M419.8,127.2l11.18-16.79-4.71-2.346-7.144,9.893-6.978,8.066-2.23-0.412,9.153-10.79,5.374-7.65-5.63-2.773-12.18-2.499v-1.287l12.64,2.616,5.903,2.9,6.655-9.354-12.98-6.485-12.23-2.148v-1.99l12.62,2.115,13.59,6.794,3.896-6.627-3.804-1.338-5.647-3.908,2.691,0.373,2.972,2.173,4.427,1.614,2.615-4.447,2.563-0.364-3.408,5.76,4.86,2.618,2.128-3.374,2.195-5.256,1.232,0.168-3.453,7.467s-8.451,13.12-13.15,20.16l-11.39,16.8-2,0.4zm12-17.7l-4.769-2.428,6.551-9.228,4.387,2.13-6.2,9.5zm2.8-13.52l4.596,2.294,4.099-6.269-4.825-2.6-3.9,6.58z" fill="#FFFFFF" fill-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_60_" x1="-444.7" x2="-444.7" y1="-956.8" y2="-923.9">
-<stop offset="0" stop-color="#FCE28D"/>
-<stop offset="0.8121" stop-color="#FEF7DF"/>
-<stop offset="1" stop-color="#FEF7DF"/>
+<polygon fill="url(#SVGID_59_)" points="446.09,81.993 446.09,95.344 451.795,82.773 "/>
+<path d="M419.78,127.227l11.182-16.789l-4.71-2.346l-7.144,9.893l-6.978,8.066l-2.23-0.412 l9.153-10.789l5.374-7.65l-5.63-2.773l-12.18-2.499v-1.287l12.645,2.616l5.903,2.9l6.655-9.354l-12.977-6.485l-12.229-2.148v-1.99 l12.623,2.115l13.592,6.794l3.896-6.627l-3.804-1.338l-5.647-3.908l2.691,0.373l2.972,2.173l4.427,1.614l2.615-4.447l2.563-0.364 l-3.408,5.76l4.86,2.618l2.128-3.374l2.195-5.256l1.232,0.168l-3.453,7.467c0,0-8.451,13.117-13.153,20.162l-11.388,16.799 L419.78,127.227z M431.802,109.459l-4.769-2.428l6.551-9.228l4.387,2.13L431.802,109.459z M434.633,95.979l4.596,2.294l4.099-6.269 l-4.825-2.6L434.633,95.979L434.633,95.979z" fill="#FFFFFF" fill-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_60_" x1="-444.7378" x2="-444.7378" y1="-956.7871" y2="-923.8752">
+<stop offset="0" style="stop-color:#FCE28D"/>
+<stop offset="0.8121" style="stop-color:#FEF7DF"/>
+<stop offset="1" style="stop-color:#FEF7DF"/>
</linearGradient>
-<path d="M448.5,82.32l-2.408,5.777s-1.302,2.063-2.021,3.193l-5.339-2.875,3.434-5.793-1.74,0.235-2.975,4.868-4.503-1.654-3.323-2.565-2.061-0.281,5.362,3.656,4.149,1.462-4.163,7.088-13.75-6.868-12.56-2.126v1.443l12.28,2.146,13.31,6.653-0.156,0.271-6.79,9.543-6.192-3.025-12.45-2.556,0.004,0.727,12.41,2.585,5.806,2.857-5.767,8.098-8.864,10.52,1.646,0.311,7.218-8.367,7.087-9.898,5.269,2.6-11.27,16.82,1.022-0.191,11.77-17.66,13.18-19.87,3.178-6.996-0.7-0.01zm-15.6,25.58l-1.23,1.898-5.126-2.627,6.429-9.143,0.505-0.667,5,2.496-5.6,8.01zm6.4-9.28l-5.063-2.527,4.145-7.047,5.313,2.858-4.3,6.72z" fill="url(#SVGID_60_)"/>
-<polygon fill="#FFFFFF" points="441,120.4,446.1,109.6,450.7,120.4,446.1,117.6"/>
-<polygon fill-opacity="0.4" points="450.7,120.4,446.1,109.6,446.1,117.6"/>
-<path d="M424.1,80.51c-1.02,0-1.842,0.813-1.842,1.813,0,0.993,0.822,1.809,1.842,1.809,1.016,0,1.84-0.815,1.84-1.809,0-1-0.8-1.81-1.8-1.81z" fill="none"/>
-<rect fill="none" height="71.71" width="71.63" x="397.1" y="66.64"/>
-<path d="M424.2,107.9l5.246-9.09,9.076-5.251-9.076-5.246-2.563-5.179-4.963-0.69-2.962,5.863-9.079,5.246,9.081,5.251,5.4,9.1zm2.4-19.32h2.637v2.635h-2.637v-2.635zm0,7.32h2.637v2.636h-2.637v-2.639zm-7.3-7.32h2.632v2.635h-2.632v-2.635zm0,7.32h2.632v2.636h-2.632v-2.639z" fill-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_61_" x1="-448.5" x2="-448.5" y1="-910.2" y2="-935.7">
-<stop offset="0" stop-color="#DAFF8C"/>
-<stop offset="0.1879" stop-color="#DAFF8C"/>
-<stop offset="1" stop-color="#77C949"/>
+<path d="M448.527,82.323l-2.408,5.777c0,0-1.302,2.063-2.021,3.193l-5.339-2.875l3.434-5.793l-1.74,0.235 l-2.975,4.868l-4.503-1.654l-3.323-2.565l-2.061-0.281l5.362,3.656l4.149,1.462l-4.163,7.088l-13.754-6.868l-12.564-2.126v1.443 l12.277,2.146l13.311,6.653l-0.156,0.271l-6.79,9.543l-6.192-3.025l-12.447-2.556l0.004,0.727l12.41,2.585l5.806,2.857l-5.767,8.098 l-8.864,10.518l1.646,0.311l7.218-8.367l7.087-9.898l5.269,2.6l-11.268,16.82l1.022-0.191l11.767-17.664l13.185-19.873l3.178-6.996 L448.527,82.323z M432.944,107.883l-1.23,1.898l-5.126-2.627l6.429-9.143l0.505-0.667l5,2.496L432.944,107.883z M439.316,98.623 l-5.063-2.527l4.145-7.047l5.313,2.858L439.316,98.623z" fill="url(#SVGID_60_)"/>
+<polygon fill="#FFFFFF" points="440.967,120.436 446.1,109.609 450.711,120.436 446.1,117.641 "/>
+<polygon fill-opacity="0.4" points="450.711,120.436 446.1,109.609 446.1,117.641 "/>
+<path d="M424.105,80.51c-1.02,0-1.842,0.813-1.842,1.813c0,0.993,0.822,1.809,1.842,1.809 c1.016,0,1.84-0.815,1.84-1.809C425.947,81.32,425.121,80.51,424.105,80.51z" fill="none"/>
+<rect fill="none" height="71.71" width="71.628" x="397.123" y="66.645"/>
+<path d="M424.217,107.9l5.246-9.09l9.076-5.251l-9.076-5.246l-2.563-5.179l-4.963-0.69l-2.962,5.863 l-9.079,5.246l9.081,5.251L424.217,107.9z M426.553,88.585h2.637v2.635h-2.637V88.585z M426.553,95.901h2.637v2.636h-2.637V95.901z M419.251,88.585h2.632v2.635h-2.632V88.585z M419.251,95.901h2.632v2.636h-2.632V95.901z" fill-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_61_" x1="-448.4883" x2="-448.4883" y1="-910.2275" y2="-935.7228">
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
-<polygon fill="url(#SVGID_61_)" points="437.1,92.82,429.9,88.69,429.9,91.22,425.8,91.22,425.8,87.12,428.4,87.12,424.2,79.95,420.1,87.12,422.6,87.12,422.6,91.22,418.5,91.22,418.5,88.69,411.4,92.82,418.5,96.97,418.5,94.44,422.6,94.44,422.6,98.53,420.1,98.53,424.2,105.7,428.4,98.53,425.8,98.53,425.8,94.44,429.9,94.44,429.9,96.97"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_62_" x1="-448.5" x2="-448.5" y1="-911.4" y2="-934.4">
-<stop offset="0" stop-color="#AEE737"/>
-<stop offset="0.7273" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<polygon fill="url(#SVGID_61_)" points="437.082,92.824 429.92,88.687 429.92,91.22 425.822,91.22 425.822,87.121 428.354,87.121 424.217,79.952 420.083,87.121 422.611,87.121 422.611,91.22 418.519,91.22 418.519,88.687 411.355,92.824 418.519,96.968 418.519,94.437 422.611,94.437 422.611,98.533 420.083,98.533 424.217,105.705 428.354,98.533 425.822,98.533 425.822,94.437 429.92,94.437 429.92,96.968 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_62_" x1="-448.4883" x2="-448.4883" y1="-911.4136" y2="-934.3834">
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<polygon fill="url(#SVGID_62_)" points="421.3,99.26,423.3,99.26,423.3,93.7,417.8,93.7,417.8,95.7,412.8,92.82,417.8,89.95,417.8,91.95,423.3,91.95,423.3,86.39,421.3,86.39,424.2,81.41,427.1,86.39,425.1,86.39,425.1,91.95,430.6,91.95,430.6,89.95,435.6,92.82,430.6,95.7,430.6,93.7,425.1,93.7,425.1,99.26,427.1,99.26,424.2,104.2"/>
-<path d="M424.2,97.16c-1.979,0-3.597-1.613-3.597-3.605,0-1.984,1.61-3.604,3.597-3.604s3.604,1.615,3.604,3.604c0,1.98-1.6,3.6-3.6,3.6z" fill-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_63_" x1="-448.5" x2="-448.5" y1="-919.9" y2="-925.8">
-<stop offset="0" stop-color="#DAFF8C"/>
-<stop offset="0.1879" stop-color="#DAFF8C"/>
-<stop offset="1" stop-color="#77C949"/>
+<polygon fill="url(#SVGID_62_)" points="421.348,99.264 423.342,99.264 423.342,93.702 417.791,93.702 417.791,95.7 412.818,92.824 417.791,89.954 417.791,91.95 423.342,91.95 423.342,86.391 421.348,86.391 424.217,81.414 427.088,86.391 425.094,86.391 425.094,91.95 430.647,91.95 430.647,89.954 435.619,92.824 430.647,95.7 430.647,93.702 425.094,93.702 425.094,99.264 427.088,99.264 424.217,104.24 "/>
+<path d="M424.217,97.161c-1.979,0-3.597-1.613-3.597-3.605c0-1.984,1.61-3.604,3.597-3.604 s3.604,1.615,3.604,3.604C427.816,95.545,426.203,97.161,424.217,97.161L424.217,97.161z" fill-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_63_" x1="-448.4893" x2="-448.4893" y1="-919.8521" y2="-925.7917">
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
-<circle cx="424.2" cy="92.91" fill="url(#SVGID_63_)" r="2.953"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_64_" x1="-448.5" x2="-448.5" y1="-920.5" y2="-925.1">
-<stop offset="0" stop-color="#AEE737"/>
-<stop offset="0.7273" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<circle cx="424.217" cy="92.911" fill="url(#SVGID_63_)" r="2.953"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -829.8535)" gradientUnits="userSpaceOnUse" id="SVGID_64_" x1="-448.4873" x2="-448.4873" y1="-920.4897" y2="-925.13">
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<path d="M424.2,95.22c-1.27,0-2.299-1.034-2.299-2.308,0-1.272,1.029-2.307,2.299-2.307,1.271,0,2.305,1.032,2.305,2.307,0,1.27-1,2.31-2.3,2.31z" fill="url(#SVGID_64_)"/>
-<rect fill="none" height="35.86" width="35.81" x="432.9" y="102.5"/>
-<rect fill="none" height="35.85" width="35.81" x="432.9" y="102.5"/>
-<path d="M451,115.6c0.584,0,1.055-0.145,1.408-0.434,0.354-0.291,0.529-0.688,0.529-1.197,0-0.49-0.182-0.889-0.547-1.184-0.363-0.295-0.826-0.445-1.391-0.445-0.594,0-1.063,0.146-1.408,0.439-0.344,0.293-0.514,0.689-0.514,1.189,0,0.508,0.176,0.906,0.531,1.197,0.4,0.3,0.8,0.4,1.4,0.4z" fill-opacity="0.1"/>
-<path d="M451,115.3c0.584,0,1.055-0.143,1.408-0.434,0.354-0.289,0.529-0.686,0.529-1.195,0-0.492-0.182-0.887-0.547-1.184-0.363-0.297-0.826-0.445-1.391-0.445-0.594,0-1.063,0.146-1.408,0.438-0.344,0.295-0.514,0.691-0.514,1.191,0,0.508,0.176,0.906,0.531,1.195,0.4,0.2,0.8,0.4,1.4,0.4z" fill-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8069 -704.5683)" gradientUnits="userSpaceOnUse" id="SVGID_65_" x1="338.4" x2="338.4" y1="-109500" y2="-109600">
-<stop offset="0" stop-color="#E5FFB2"/>
-<stop offset="0.39" stop-color="#6AAB18"/>
-<stop offset="0.68" stop-color="#247307"/>
-<stop offset="1" stop-color="#C2FF4A"/>
+<path d="M424.217,95.215c-1.27,0-2.299-1.034-2.299-2.308c0-1.272,1.029-2.307,2.299-2.307 c1.271,0,2.305,1.032,2.305,2.307C426.518,94.181,425.488,95.215,424.217,95.215L424.217,95.215z" fill="url(#SVGID_64_)"/>
+<rect fill="none" height="35.856" width="35.813" x="432.935" y="102.5"/>
+<rect fill="none" height="35.854" width="35.811" x="432.935" y="102.5"/>
+<path d="M451.018,115.621c0.584,0,1.055-0.145,1.408-0.434c0.354-0.291,0.529-0.688,0.529-1.197 c0-0.49-0.182-0.889-0.547-1.184c-0.363-0.295-0.826-0.445-1.391-0.445c-0.594,0-1.063,0.146-1.408,0.439 c-0.344,0.293-0.514,0.689-0.514,1.189c0,0.508,0.176,0.906,0.531,1.197C449.973,115.475,450.439,115.621,451.018,115.621z" fill-opacity="0.1"/>
+<path d="M451.018,115.254c0.584,0,1.055-0.143,1.408-0.434c0.354-0.289,0.529-0.686,0.529-1.195 c0-0.492-0.182-0.887-0.547-1.184c-0.363-0.297-0.826-0.445-1.391-0.445c-0.594,0-1.063,0.146-1.408,0.438 c-0.344,0.295-0.514,0.691-0.514,1.191c0,0.508,0.176,0.906,0.531,1.195C449.973,115.111,450.439,115.254,451.018,115.254z" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8069 -704.5683)" gradientUnits="userSpaceOnUse" id="SVGID_65_" x1="338.4209" x2="338.4209" y1="-109524.8438" y2="-109576">
+<stop offset="0" style="stop-color:#E5FFB2"/>
+<stop offset="0.39" style="stop-color:#6AAB18"/>
+<stop offset="0.68" style="stop-color:#247307"/>
+<stop offset="1" style="stop-color:#C2FF4A"/>
</linearGradient>
-<ellipse cx="450.8" cy="120.4" fill="url(#SVGID_65_)" rx="12.79" ry="12.8"/>
-<radialGradient cx="450.8" cy="120.4" gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8792 -713.227)" gradientUnits="userSpaceOnUse" id="SVGID_66_" r="12.43">
-<stop offset="0" stop-color="#AFED23"/>
-<stop offset="0.81" stop-color="#358C0C"/>
-<stop offset="1" stop-color="#67AD1A"/>
+<ellipse cx="450.84" cy="120.426" fill="url(#SVGID_65_)" rx="12.791" ry="12.805"/>
+<radialGradient cx="450.8408" cy="120.4268" gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8792 -713.227)" gradientUnits="userSpaceOnUse" id="SVGID_66_" r="12.4316">
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.81" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
-<path d="M450.8,132.9c-6.849,0-12.42-5.578-12.42-12.44s5.573-12.44,12.42-12.44,12.43,5.578,12.43,12.44c0.1,6.8-5.5,12.4-12.4,12.4z" fill="url(#SVGID_66_)"/>
-<polygon fill-opacity="0.1" points="448,119.1,449.2,119.1,449.2,129.7,452.8,129.7,452.8,117.1,448,117.1"/>
-<polygon fill-opacity="0.2" points="448,118.8,449.2,118.8,449.2,129.4,452.8,129.4,452.8,116.7,448,116.7"/>
-<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8069 -704.5683)" gradientUnits="userSpaceOnUse" id="SVGID_67_" x1="340.7" x2="340.7" y1="-16410" y2="-16410">
-<stop offset="0" stop-color="#F6FDFF"/>
-<stop offset="1" stop-color="#ADB3B5"/>
+<path d="M450.84,132.865c-6.849,0-12.424-5.578-12.424-12.438s5.573-12.439,12.424-12.439 s12.426,5.578,12.426,12.438C463.264,127.285,457.69,132.865,450.84,132.865L450.84,132.865z" fill="url(#SVGID_66_)"/>
+<polygon fill-opacity="0.1" points="448.006,119.137 449.227,119.137 449.227,129.715 452.781,129.715 452.781,117.113 448.006,117.113 "/>
+<polygon fill-opacity="0.2" points="448.006,118.768 449.227,118.768 449.227,129.35 452.781,129.35 452.781,116.744 448.006,116.744 "/>
+<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8069 -704.5683)" gradientUnits="userSpaceOnUse" id="SVGID_67_" x1="340.6816" x2="340.6816" y1="-16408.0059" y2="-16412.7813">
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_67_)" points="448,118.4,449.2,118.4,449.2,129,452.8,129,452.8,116.4,448,116.4"/>
-<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8069 -704.5683)" gradientUnits="userSpaceOnUse" id="SVGID_68_" x1="331.4" x2="331.4" y1="-16410" y2="-16410">
-<stop offset="0" stop-color="#F6FDFF"/>
-<stop offset="1" stop-color="#ADB3B5"/>
+<polygon fill="url(#SVGID_67_)" points="448.006,118.406 449.227,118.406 449.227,128.984 452.781,128.984 452.781,116.379 448.006,116.379 "/>
+<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -976.8069 -704.5683)" gradientUnits="userSpaceOnUse" id="SVGID_68_" x1="331.4443" x2="331.4443" y1="-16409.0781" y2="-16412.9414">
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<path d="M451,115.1c0.586,0,1.055-0.146,1.408-0.436,0.354-0.291,0.529-0.689,0.529-1.195,0-0.494-0.18-0.889-0.545-1.186-0.363-0.295-0.828-0.443-1.393-0.443-0.592,0-1.061,0.145-1.406,0.438-0.348,0.291-0.52,0.689-0.52,1.191,0,0.506,0.176,0.904,0.529,1.195,0.4,0.2,0.8,0.4,1.4,0.4z" fill="url(#SVGID_68_)"/>
+<path d="M451.004,115.074c0.586,0,1.055-0.146,1.408-0.436c0.354-0.291,0.529-0.689,0.529-1.195 c0-0.494-0.18-0.889-0.545-1.186c-0.363-0.295-0.828-0.443-1.393-0.443c-0.592,0-1.061,0.145-1.406,0.438 c-0.348,0.291-0.52,0.689-0.52,1.191c0,0.506,0.176,0.904,0.529,1.195C449.961,114.928,450.426,115.074,451.004,115.074z" fill="url(#SVGID_68_)"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -887.5 81.5005)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-71" x2="-71" y1="-939.5" y2="-911.6">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -887.5 81.5005)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-71.001" x2="-71.001" y1="-939.4995" y2="-911.578">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
</defs>
-<defs/>
-</svg>
\ No newline at end of file
+<defs>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -887.5 81.5005)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-71.001" x2="-71.001" y1="-939.4995" y2="-911.578">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
+</linearGradient>
+</defs>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_theme_preview_prt.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_theme_preview_prt.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,32 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="486px" version="1.1" viewBox="0 0 360 486" width="360px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="486" width="360"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="330" x2="330" y1="19.67" y2="59.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="330" x2="330" y1="19.6665" y2="59.8465">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="40" width="60" x="300" y="20"/>
<rect fill="#AAAAAF" height="1" width="60" x="300" y="59"/>
<rect fill="#FFFFFF" fill-opacity="0.8" height="39" width="1" x="300" y="20"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="359,20,359,58,301,58,301,59,360,59,360,20" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.67" y2="59.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="359,20 359,58 301,58 301,59 360,59 360,20 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.6665" y2="59.8465">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="40" width="60" y="20"/>
<rect fill="#AAAAAF" height="1" width="60" y="59"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,58,1,20,0,20,0,59,59,59,59,58" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="1,58 1,20 0,20 0,59 59,59 59,58 " stroke-opacity="0.4"/>
<rect fill-opacity="0.2" height="39" width="1" x="59" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="180" x2="180" y1="19.67" y2="59.85">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="179.9995" x2="179.9995" y1="19.6665" y2="59.8465">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="40" width="240" x="60" y="20"/>
<rect fill="#AAAAAF" height="1" width="240" x="60" y="59"/>
@@ -34,505 +34,520 @@
<rect fill-opacity="0.2" height="39" width="1" x="299" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="238" x="61" y="58"/>
<rect height="20" width="360"/>
-<path d="M38,32c1.65,0,2.235,1.112,1.301,2.472l-7.602,11.06c-0.935,1.36-2.464,1.36-3.398,0l-7.602-11.06c-0.94-1.36-0.35-2.47,1.3-2.47h16z" fill="#3C3C3C"/>
-<path d="M288,32c1.65,0,2.234,1.112,1.301,2.472l-7.602,11.06c-0.934,1.36-2.465,1.36-3.398,0l-7.602-11.06c-0.9-1.36-0.3-2.47,1.3-2.47h16z" fill="#3C3C3C"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -478.5 -890.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-893.5" x2="-908.5" y1="802.5" y2="802.5">
-<stop offset="0" stop-color="#92DE2F"/>
-<stop offset="1" stop-color="#19B016"/>
+<g>
+<path d="M38,32c1.65,0,2.235,1.112,1.301,2.472l-7.602,11.056c-0.935,1.36-2.464,1.36-3.398,0l-7.602-11.056 C19.765,33.112,20.35,32,22,32H38z" fill="#3C3C3C"/>
+</g>
+<g>
+<path d="M288,32c1.65,0,2.234,1.112,1.301,2.472l-7.602,11.056c-0.934,1.36-2.465,1.36-3.398,0l-7.602-11.056 C269.766,33.112,270.35,32,272,32H288z" fill="#3C3C3C"/>
+</g>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -478.5 -890.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-893.4995" x2="-908.4995" y1="802.499" y2="802.499">
+<stop offset="0" style="stop-color:#92DE2F"/>
+<stop offset="1" style="stop-color:#19B016"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="312,7,310,7,310,14,312,14,312,18,338,18,338,3,312,3"/>
+<polygon fill="url(#SVGID_4_)" points="312,7 310,7 310,14 312,14 312,18 338,18 338,3 312,3 "/>
<rect fill-opacity="0.2" height="8" stroke-opacity="0.2" width="2" x="331" y="6.5"/>
-<polygon fill-opacity="0.2" points="318,6.5,318,9.5,315,9.5,315,11.5,318,11.5,318,14.5,320,14.5,320,11.5,323,11.5,323,9.5,320,9.5,320,6.5" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="318,6.5 318,9.5 315,9.5 315,11.5 318,11.5 318,14.5 320,14.5 320,11.5 323,11.5 323,9.5 320,9.5 320,6.5 " stroke-opacity="0.2"/>
<rect fill="none" height="15" width="30" x="309" y="3"/>
<rect fill="url(#SVGID_5_)" height="3" width="4" x="24" y="9"/>
<rect fill="url(#SVGID_5_)" height="6" width="4" x="30" y="7.5"/>
-<rect fill="url(#SVGID_5_)" height="9" width="4" x="36" y="6"/>
+<rect fill="url(#SVGID_7_)" height="9" width="4" x="36" y="6"/>
<rect fill="url(#SVGID_5_)" height="12" width="4" x="42" y="4.5"/>
-<rect fill="url(#SVGID_5_)" height="15" width="4" x="48" y="3"/>
+<rect fill="url(#SVGID_7_)" height="15" width="4" x="48" y="3"/>
<rect fill="none" height="15" width="30" x="23" y="3"/>
-<path d="M13.53,15h1.942v-4.838l3.53-4.25v-0.91h-9v0.91l3.53,4.252v4.84z" fill="#FFFFFF"/>
-<path d="M343,16h7v-10.82h-2.042v-1.176h-2.992v1.176h-2v10.82z" fill="#FFFFFF"/>
-<path d="M330,41.5c0,1.65-1.09,2.204-2.422,1.23l-8.156-5.96c-1.332-0.974-1.332-2.566,0-3.54l8.156-5.96c1.3-0.97,2.4-0.42,2.4,1.23v13z" fill="#3C3C3C"/>
-<path d="M324.5,35h12c3.85,0,7,3.15,7,7s-3.15,7-7,7h-15" fill="none" stroke="#3C3C3C" stroke-linecap="round" stroke-width="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="180" x2="180" y1="60" y2="110">
-<stop offset="0" stop-color="#E6E6EB"/>
-<stop offset="1" stop-color="#CDCDD2"/>
+<path d="M13.53,15h1.942v-4.838L19,5.91V5h-9v0.91l3.53,4.252V15L13.53,15z" fill="#FFFFFF"/>
+<path d="M343,16h7V5.176h-2.042V4h-2.992v1.176H343V16z" fill="#FFFFFF"/>
+<g>
+<path d="M330,41.5c0,1.65-1.09,2.204-2.422,1.23l-8.156-5.96c-1.332-0.974-1.332-2.566,0-3.54l8.156-5.96 C328.91,26.296,330,26.85,330,28.5V41.5z" fill="#3C3C3C"/>
+</g>
+<path d="M324.5,35h12c3.85,0,7,3.15,7,7l0,0 c0,3.85-3.15,7-7,7h-15" fill="none" stroke="#3C3C3C" stroke-linecap="round" stroke-width="5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="179.9995" x2="179.9995" y1="60" y2="110">
+<stop offset="0" style="stop-color:#E6E6EB"/>
+<stop offset="1" style="stop-color:#CDCDD2"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="50" width="360" y="60"/>
<rect fill="#B4B4B4" height="1" width="360" y="109"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="1" stroke-opacity="0.9" width="360" y="60"/>
<rect fill-opacity="0.6" height="30" stroke-opacity="0.6" width="30" x="12" y="70"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27" x2="27" y1="71.17" y2="99.17">
-<stop offset="0" stop-color="#4EDEFF"/>
-<stop offset="1" stop-color="#048CC6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27" x2="27" y1="71.1748" y2="99.1748">
+<stop offset="0" style="stop-color:#4EDEFF"/>
+<stop offset="1" style="stop-color:#048CC6"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="28" width="28" x="13" y="71"/>
-<polygon fill-opacity="0.2" points="36,83.88,29.99,83.88,29.99,78,25.99,78,25.99,83.88,20,83.88,20,87.88,25.99,87.88,25.99,94,29.99,94,29.99,87.88,36,87.88" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="36,83.879 29.99,83.879 29.99,78 25.99,78 25.99,83.879 20,83.879 20,87.879 25.99,87.879 25.99,94 29.99,94 29.99,87.879 36,87.879 " stroke-opacity="0.2"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="28" x="13" y="71"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="28" x="13" y="98"/>
-<polygon fill="#FFFFFF" points="35,82.88,28.99,82.88,28.99,77,24.99,77,24.99,82.88,19,82.88,19,86.88,24.99,86.88,24.99,93,28.99,93,28.99,86.88,35,86.88"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="180" x2="180" y1="110" y2="160">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF0"/>
+<polygon fill="#FFFFFF" points="35,82.879 28.99,82.879 28.99,77 24.99,77 24.99,82.879 19,82.879 19,86.879 24.99,86.879 24.99,93 28.99,93 28.99,86.879 35,86.879 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="179.9995" x2="179.9995" y1="110" y2="160">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF0"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="50" width="360" y="110"/>
<rect fill="#DCDCDC" height="1" width="360" y="159"/>
<rect fill="#FFFFFF" height="1" width="360" y="158"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="180" x2="180" y1="160" y2="210">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="0.83" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#EBEBF0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="179.9995" x2="179.9995" y1="160" y2="210">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="0.83" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF0"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="50" width="360" y="160"/>
<rect fill="#DCDCDC" height="1" width="360" y="209"/>
<rect fill="#FFFFFF" height="1" width="360" y="208"/>
-<rect fill-opacity="0.8" height="23.13" width="30.04" x="12" y="121"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-963.3" x2="-963.3" y1="288.9" y2="329.1">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<rect fill-opacity="0.8" height="23.133" width="30.037" x="12" y="121.044"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-963.3193" x2="-963.3193" y1="288.9365" y2="329.0609">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="21.13" width="28.04" x="13" y="122"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1.001" width="28.04" x="13" y="122"/>
-<rect fill-opacity="0.3" height="1.001" width="28.04" x="13" y="142.2"/>
-<rect fill="#FFFFFF" height="16.8" width="23.7" x="15.17" y="124.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-963.3" x2="-963.3" y1="308.4" y2="327.5">
-<stop offset="0" stop-color="#1C1C1C"/>
-<stop offset="0.5" stop-color="#636363"/>
-<stop offset="1" stop-color="#808080"/>
+<rect fill="url(#SVGID_14_)" height="21.131" width="28.037" x="13" y="122.045"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.001" width="28.037" x="13" y="122.045"/>
+<rect fill-opacity="0.3" height="1.001" width="28.037" x="13" y="142.175"/>
+<rect fill="#FFFFFF" height="16.795" width="23.703" x="15.166" y="124.213"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-963.3203" x2="-963.3203" y1="308.4102" y2="327.536">
+<stop offset="0" style="stop-color:#1C1C1C"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="14.79" width="21.7" x="16.17" y="125.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-963.3" x2="-963.3" y1="313.4" y2="325.7">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="1" stop-color="#4B8B00"/>
+<rect fill="url(#SVGID_15_)" height="14.793" width="21.703" x="16.166" y="125.214"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-963.3213" x2="-963.3213" y1="313.3691" y2="325.6874">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="1" style="stop-color:#4B8B00"/>
</linearGradient>
-<path d="M37.87,134.1c-1.313-2.563-3.679-4.275-6.389-4.275-3.396,0-6.262,2.688-7.178,6.362-0.893-1.84-2.446-3.064-4.228-3.064-1.581,0-2.991,0.97-3.911,2.481v4.411h21.7l0.01-5.9z" fill="url(#SVGID_16_)"/>
-<rect fill-opacity="0.8" height="21.02" width="27.87" x="13.08" y="174.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-963.3" x2="-963.3" y1="358.3" y2="379.8">
-<stop offset="0" stop-color="#FEAB0E"/>
-<stop offset="0.3091" stop-color="#FEAB0E"/>
-<stop offset="0.7879" stop-color="#FFDA33"/>
-<stop offset="1" stop-color="#FFE692"/>
+<path d="M37.869,134.086c-1.313-2.563-3.679-4.275-6.389-4.275c-3.396,0-6.262,2.688-7.178,6.362 c-0.893-1.84-2.446-3.064-4.228-3.064c-1.581,0-2.991,0.97-3.911,2.481v4.411h21.703L37.869,134.086L37.869,134.086z" fill="url(#SVGID_16_)"/>
+<rect fill-opacity="0.8" height="21.021" width="27.871" x="13.082" y="174.099"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-963.3203" x2="-963.3203" y1="358.3281" y2="379.7901">
+<stop offset="0" style="stop-color:#FEAB0E"/>
+<stop offset="0.3091" style="stop-color:#FEAB0E"/>
+<stop offset="0.7879" style="stop-color:#FFDA33"/>
+<stop offset="1" style="stop-color:#FFE692"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" height="19.02" width="25.87" x="14.08" y="175.1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="27.02,182.1,14.32,194.1,15.48,194.1,27.02,184.1,38.55,194.1,39.71,194.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-963.3" x2="-963.3" y1="359.8" y2="398.7">
-<stop offset="0" stop-color="#C9700B"/>
-<stop offset="0.1576" stop-color="#C9700B"/>
-<stop offset="0.7333" stop-color="#FFDA33"/>
-<stop offset="1" stop-color="#FFE692"/>
+<rect fill="url(#SVGID_17_)" height="19.02" width="25.871" x="14.082" y="175.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="27.016,182.106 14.32,194.119 15.482,194.119 27.016,184.108 38.551,194.119 39.713,194.119 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-963.3203" x2="-963.3203" y1="359.7939" y2="398.7026">
+<stop offset="0" style="stop-color:#C9700B"/>
+<stop offset="0.1576" style="stop-color:#C9700B"/>
+<stop offset="0.7333" style="stop-color:#FFDA33"/>
+<stop offset="1" style="stop-color:#FFE692"/>
</linearGradient>
-<polygon fill="url(#SVGID_18_)" fill-opacity="0.5" points="39.95,175.1,27.15,176.1,14.08,175.1,14.08,175.3,22.9,185.1,14.08,194.1,14.08,194.2,14.22,194.2,23.36,185.6,27.02,189.2,30.67,185.6,39.81,194.2,39.95,194.2,39.95,194.1,31.16,185.1,39.95,175.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-963.3" x2="-963.3" y1="359" y2="376.1">
-<stop offset="0" stop-color="#FFF273"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_18_)" fill-opacity="0.5" points="39.953,175.1 27.152,176.101 14.082,175.1 14.082,175.27 22.898,185.121 14.082,194.055 14.082,194.223 14.221,194.213 23.361,185.562 27.016,189.217 30.672,185.562 39.813,194.213 39.953,194.223 39.953,194.055 31.158,185.121 39.953,175.27 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 990.3379 -184.3555)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-963.3213" x2="-963.3213" y1="358.9834" y2="376.1277">
+<stop offset="0" style="stop-color:#FFF273"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<polygon fill="url(#SVGID_19_)" points="14.21,175.1,27.02,187.2,39.82,175.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="60" x2="60" y1="425.5" y2="485.8">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="0.9" stop-color="#3F89A9"/>
-<stop offset="0.9" stop-color="#3880A4"/>
-<stop offset="1" stop-color="#3278A0"/>
+<polygon fill="url(#SVGID_19_)" points="14.209,175.1 27.016,187.215 39.824,175.1 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="60" x2="60" y1="425.5" y2="485.77">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="0.9" style="stop-color:#3F89A9"/>
+<stop offset="0.9" style="stop-color:#3880A4"/>
+<stop offset="1" style="stop-color:#3278A0"/>
</linearGradient>
<rect fill="url(#SVGID_20_)" height="60" width="120" y="426"/>
-<path d="M0,426v60h120v-60h-120zm119,59h-118v-58h118v58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="180" x2="180" y1="425.5" y2="485.8">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<path d="M0,426v60h120v-60H0z M119,485H1v-58h118V485z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="179.9995" x2="179.9995" y1="425.5" y2="485.77">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_21_)" height="60" width="120" x="120" y="426"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="300" x2="300" y1="425.5" y2="485.8">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="300" x2="300" y1="425.5" y2="485.77">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_22_)" height="60" width="120" x="240" y="426"/>
<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="240" x="120" y="485"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="240" x="120" y="484"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="58" stroke-opacity="0.9" width="1" x="120" y="427"/>
<rect fill="none" height="40" width="40" x="40" y="436"/>
-<path d="M41.38,456c0.019,10.27,8.353,18.6,18.62,18.62,10.27-0.019,18.61-8.356,18.62-18.62-0.017-10.27-8.356-18.61-18.62-18.62-10.27,0-18.6,8.3-18.62,18.6zm8.06,3.5l-0.924,1.229s-0.086,2.324-0.092,2.423c-0.076,0.225-0.693,0.148-0.932,0.148-0.807,0.761,0.421,1.424,0.217,1.895-0.197,0.457-0.454,0.971-0.773,1.432-2.256-2.883-4.664-8.228-3.11-14.51,0.196,0.094,0.442,0.332,0.75,0.756,0.337,0.467,0.313,1.104,0.631,1.394,0.378,0.347,0.784,1.573,0.784,1.573l1.043,1.125,2.408,1.56v0.979h-0.011zm22.9,5.5c-0.702,0.229-0.458-0.546-0.458-0.546s0.629-1.391,0.643-1.501c0.033-0.263,0.863-0.524,0.863-0.524l0.553-0.877c0.83-0.2-0.13,2.9-1.59,3.4zm-5.73-24c0.264,0.034,0.184,0.284,0.479,0.284,0.101,0,0.53-0.111,1.054-0.258,4.179,2.173,7.342,6.029,8.584,10.67-0.055-0.003-0.088-0.008-0.088-0.008s-0.1-0.065-0.246-0.16l-0.516-1.021-0.816-0.066-1.64-1.3s0.44,1.131,1.172,1.664c0.476,0.033,0.799-0.031,0.822-0.008,0.521,1.373-0.594,3.061-1.887,3.372-0.162-0.704-0.306-0.979-0.512-1.58l-2.266-3.081-0.131,0.324,1.045,1.591s0.74,1.241,1.047,1.961c0.588,0.522,0.703,0.739,0.763,1.272,0.207,0.066,0.37,0.078,1.022-0.162,0.988-0.363,0.424,1.162,0.262,1.588-0.592,1.445-0.723,1.332-1.655,2.279-1.44,1.019-0.668,2.793-0.731,4.229,0,0-1.455,0.979-1.994,1.192-0.5,0.713-0.01,1.389-0.262,1.406-0.766,0.25-1.925,1.437-2.123,1.6-0.688,0.889-1.113,1.017-1.923,0.945-2.257-0.638-1.577-2.983-1.678-3.244-0.276-0.898-1.153-1.029-0.013-2.746,0.479-0.564,0.045-1.822-0.827-3.043-0.4-0.563,0.28-1.869,0.229-1.877-1.462-0.272-1.765-0.93-1.828-1.096,0,0-2.975,0.594-4.002,0.508-0.787-0.063-2.488-2.101-2.816-2.854-0.327-0.755,0.619-3.301,0.654-3.496,0.033-0.197,2.244-1.732,2.244-1.732l1.504-1.465-0.9-0.443s0.186-1.838,1.014-1.373c0.087,0.05,0.555,0.146,1.082,0.1,0.559-0.352-0.611-0.813-0.484-1.288,0.029-0.112,0.463-0.165,0.026-0.56-0.696-0.631-0.194-1.09,0.239-1.198,0.48,0.177,0.785,0.608,0.785,1.198,0,0.592,1.559-0.27,1.654-0.37-0.695-0.501-1.045-1.294-0.785-1.327,0.268-0.036,1.422-0.335,1.717-0.633,0.3-0.4,2.49,0.2,2.75,0.2zm-8.99-0.3c0.215-0.104,0.614,0.104,0.89,0.063s0.521,0.063,0.521,0.063-0.491,0.23-0.705,0.271c-0.2,0-0.51-0.2-0.7-0.5zm-2.13-0.8c1.533-0.454,3.158-0.699,4.836-0.699,1.305,0,2.576,0.147,3.796,0.427-1.636,0.352-3.429-0.07-3.429-0.07-0.164,0.263-0.905,0.125-1.101,0.125-0.198,0-1.213,0.838-2.168,0.758-0.459,0.295-0.864,0.623-1.358,0.46-0.492-0.164-1.436,0.653-1.795,0.688-0.49,0.154-0.725,0.118-0.793-0.025,1.11-0.8,1.57-1.3,2-1.7zm-3.21,1.3l-0.95,1.119s-0.196,0.588-0.306,0.74c-0.108,0.152-0.653,0.742-0.653,0.742l-0.457-0.195-0.066-0.24s-0.502,0.152-0.502,0.457c0,0.306-1.938,1.574-2.522,2.037,1.46-1.9,3.32-3.5,5.46-4.6z" fill="#FFFFFF"/>
-<path d="M64.55,442.6c0.171,0.152,0.739,0.465,0.825-0.047,0.085-0.514-0.452-1.293-0.452-1.293s-0.54,0.131-0.403,0.48-0.15,0.7,0.02,0.8z" fill="#FFFFFF"/>
-<path d="M68.77,445.9s0.515-0.094,1.015,0.1c1.418,0.286,0.977-0.234,0.304-0.6-0.238-0.129-0.583-0.316-0.4-0.559-0.158-0.255-0.5-0.074-0.742,0.191-0.243,0.266-0.771-0.121-0.932,0.37-0.16,0.5,0.64,0.7,0.76,0.5z" fill="#FFFFFF"/>
-<path d="M62.22,445c-0.348,0.296-1.313,1.204-1.313,1.204l-1.345,0.479,1.213,0.189,1.244-0.368,1.951,0.129,0.318,0.919s2.137,1.059,2.342,0.844c0.316-0.326,0.486-0.795,0.963-0.469,0.478,0.328,1.252,0.329,1.812,0.329,0.231,0.067,1.053,0.61,1.03-0.739-0.362-0.304-2.353-0.177-2.916-1.48l-0.285,0.041s0.189,0.92-0.041,0.902c-0.536-0.039-1.096-1-1.096-1l-0.104-0.408-1.4-0.793s-0.008,0.233,1.084,1.19c0,0-0.369,0.631-0.857,0.664,0.123-0.164,0.216-0.655,0.216-0.655l-1.345-1.076c0.01,0.2-1.16,0.1-1.46,0.3z" fill="#FFFFFF"/>
-<path d="M72.08,446.3c0.381,0.356,0.218,0.623,0.471,0.848,0.252,0.225,0.842,0.25,0.463-0.262-0.459-0.616-0.938-1.096-1.045-1.248-0.203-0.283,0.115-0.879-0.42-0.625-0.31,0.6-0.01,0.8,0.54,1.3z" fill="#FFFFFF"/>
-<path d="M196.7,467.4l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705,0-8.369-6.787-15.15-15.15-15.15-8.367,0-15.15,6.783-15.15,15.15,0,8.365,6.783,15.15,15.15,15.15,3.111,0,5.998-0.939,8.404-2.549l5.693,5.693c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588c0.9-1.2,0.9-2.6,0-3.4zm-18.9-2.2c-6.273,0-11.36-5.088-11.36-11.36s5.088-11.36,11.36-11.36c6.275,0,11.36,5.088,11.36,11.36,0,6.3-5.1,11.4-11.4,11.4zm1.5-17.9h-2.668v5.332h-5.332v2.668h5.332v5.332h2.668v-5.332h5.332v-2.668h-5.332v-5.266z" fill="#3C3C3C"/>
+<g>
+<g>
+<path d="M41.376,456c0.019,10.268,8.353,18.605,18.624,18.624c10.268-0.019,18.607-8.356,18.624-18.624 c-0.017-10.268-8.356-18.607-18.624-18.625C49.729,437.393,41.395,445.732,41.376,456z M49.439,459.484l-0.924,1.229 c0,0-0.086,2.324-0.092,2.423c-0.076,0.225-0.693,0.148-0.932,0.148c-0.807,0.761,0.421,1.424,0.217,1.895 c-0.197,0.457-0.454,0.971-0.773,1.432c-2.256-2.883-4.664-8.228-3.11-14.514c0.196,0.094,0.442,0.332,0.75,0.756 c0.337,0.467,0.313,1.104,0.631,1.394c0.378,0.347,0.784,1.573,0.784,1.573l1.043,1.125l2.408,1.56v0.979H49.439z M72.341,465.007 c-0.702,0.229-0.458-0.546-0.458-0.546s0.629-1.391,0.643-1.501c0.033-0.263,0.863-0.524,0.863-0.524l0.553-0.877 C74.762,461.393,73.805,464.527,72.341,465.007z M66.613,441.048c0.264,0.034,0.184,0.284,0.479,0.284 c0.101,0,0.53-0.111,1.054-0.258c4.179,2.173,7.342,6.029,8.584,10.674c-0.055-0.003-0.088-0.008-0.088-0.008 s-0.1-0.065-0.246-0.16l-0.516-1.021l-0.816-0.066L73.4,449.09c0,0,0.44,1.131,1.172,1.664c0.476,0.033,0.799-0.031,0.822-0.008 c0.521,1.373-0.594,3.061-1.887,3.372c-0.162-0.704-0.306-0.979-0.512-1.58l-2.266-3.081l-0.131,0.324l1.045,1.591 c0,0,0.74,1.241,1.047,1.961c0.588,0.522,0.703,0.739,0.763,1.272c0.207,0.066,0.37,0.078,1.022-0.162 c0.988-0.363,0.424,1.162,0.262,1.588c-0.592,1.445-0.723,1.332-1.655,2.279c-1.44,1.019-0.668,2.793-0.731,4.229 c0,0-1.455,0.979-1.994,1.192c-0.5,0.713-0.01,1.389-0.262,1.406c-0.766,0.25-1.925,1.437-2.123,1.6 c-0.688,0.889-1.113,1.017-1.923,0.945c-2.257-0.638-1.577-2.983-1.678-3.244c-0.276-0.898-1.153-1.029-0.013-2.746 c0.479-0.564,0.045-1.822-0.827-3.043c-0.4-0.563,0.28-1.869,0.229-1.877c-1.462-0.272-1.765-0.93-1.828-1.096 c0,0-2.975,0.594-4.002,0.508c-0.787-0.063-2.488-2.101-2.816-2.854c-0.327-0.755,0.619-3.301,0.654-3.496 c0.033-0.197,2.244-1.732,2.244-1.732l1.504-1.465l-0.9-0.443c0,0,0.186-1.838,1.014-1.373c0.087,0.05,0.555,0.146,1.082,0.1 c0.559-0.352-0.611-0.813-0.484-1.288c0.029-0.112,0.463-0.165,0.026-0.56c-0.696-0.631-0.194-1.09,0.239-1.198 c0.48,0.177,0.785,0.608,0.785,1.198c0,0.592,1.559-0.27,1.654-0.37c-0.695-0.501-1.045-1.294-0.785-1.327 c0.268-0.036,1.422-0.335,1.717-0.633C64.157,440.449,66.348,441.018,66.613,441.048z M57.624,440.73 c0.215-0.104,0.614,0.104,0.89,0.063c0.276-0.041,0.521,0.063,0.521,0.063s-0.491,0.23-0.705,0.271 C58.115,441.169,57.809,440.959,57.624,440.73z M55.486,439.866c1.533-0.454,3.158-0.699,4.836-0.699 c1.305,0,2.576,0.147,3.796,0.427c-1.636,0.352-3.429-0.07-3.429-0.07c-0.164,0.263-0.905,0.125-1.101,0.125 c-0.198,0-1.213,0.838-2.168,0.758c-0.459,0.295-0.864,0.623-1.358,0.46c-0.492-0.164-1.436,0.653-1.795,0.688 c-0.49,0.154-0.725,0.118-0.793-0.025C54.6,440.841,55.059,440.279,55.486,439.866z M52.275,441.191l-0.95,1.119 c0,0-0.196,0.588-0.306,0.74c-0.108,0.152-0.653,0.742-0.653,0.742l-0.457-0.195l-0.066-0.24c0,0-0.502,0.152-0.502,0.457 c0,0.306-1.938,1.574-2.522,2.037C48.281,443.936,50.143,442.342,52.275,441.191z" fill="#FFFFFF"/>
+<path d="M64.55,442.609c0.171,0.152,0.739,0.465,0.825-0.047c0.085-0.514-0.452-1.293-0.452-1.293 s-0.54,0.131-0.403,0.48S64.381,442.459,64.55,442.609z" fill="#FFFFFF"/>
+<path d="M68.768,445.863c0,0,0.515-0.094,1.015,0.1c1.418,0.286,0.977-0.234,0.304-0.6 c-0.238-0.129-0.583-0.316-0.4-0.559c-0.158-0.255-0.5-0.074-0.742,0.191c-0.243,0.266-0.771-0.121-0.932,0.37 C67.85,445.855,68.652,446.085,68.768,445.863z" fill="#FFFFFF"/>
+<path d="M62.225,445.034c-0.348,0.296-1.313,1.204-1.313,1.204l-1.345,0.479l1.213,0.189l1.244-0.368l1.951,0.129 l0.318,0.919c0,0,2.137,1.059,2.342,0.844c0.316-0.326,0.486-0.795,0.963-0.469c0.478,0.328,1.252,0.329,1.812,0.329 c0.231,0.067,1.053,0.61,1.03-0.739c-0.362-0.304-2.353-0.177-2.916-1.48l-0.285,0.041c0,0,0.189,0.92-0.041,0.902 c-0.536-0.039-1.096-1-1.096-1l-0.104-0.408l-1.4-0.793c0,0-0.008,0.233,1.084,1.19c0,0-0.369,0.631-0.857,0.664 c0.123-0.164,0.216-0.655,0.216-0.655l-1.345-1.076C63.693,444.936,62.52,444.784,62.225,445.034z" fill="#FFFFFF"/>
+<path d="M72.08,446.314c0.381,0.356,0.218,0.623,0.471,0.848c0.252,0.225,0.842,0.25,0.463-0.262 c-0.459-0.616-0.938-1.096-1.045-1.248c-0.203-0.283,0.115-0.879-0.42-0.625C71.234,445.586,71.534,445.807,72.08,446.314z" fill="#FFFFFF"/>
+</g>
+</g>
+<path d="M196.674,467.354l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705c0-8.369-6.787-15.152-15.152-15.152 c-8.367,0-15.15,6.783-15.15,15.15c0,8.365,6.783,15.152,15.15,15.152c3.111,0,5.998-0.939,8.404-2.549l5.693,5.693 c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588C197.553,469.65,197.553,468.23,196.674,467.354z M177.816,465.182 c-6.273,0-11.361-5.088-11.361-11.363s5.088-11.363,11.361-11.363c6.275,0,11.363,5.088,11.363,11.363 C189.182,460.092,184.092,465.182,177.816,465.182z M179.334,447.334h-2.668v5.332h-5.332v2.668h5.332v5.332h2.668v-5.332h5.332 v-2.668h-5.332V447.334z" fill="#3C3C3C"/>
<rect fill="none" height="40" width="40" x="160" y="436"/>
-<path d="M316.7,467.4l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705,0-8.369-6.787-15.15-15.15-15.15-8.367,0-15.15,6.783-15.15,15.15,0,8.365,6.783,15.15,15.15,15.15,3.111,0,5.998-0.939,8.404-2.549l5.693,5.693c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588c0.9-1.2,0.9-2.6,0-3.4zm-18.9-2.2c-6.273,0-11.36-5.088-11.36-11.36s5.088-11.36,11.36-11.36c6.275,0,11.36,5.088,11.36,11.36,0,6.3-5.1,11.4-11.4,11.4zm-1.1-12.5h-5.332v2.668h13.33v-2.668h-8.066z" fill="#3C3C3C"/>
+<path d="M316.674,467.354l-5.824-5.83c1.336-2.258,2.119-4.891,2.119-7.705c0-8.369-6.787-15.152-15.152-15.152 c-8.367,0-15.15,6.783-15.15,15.15c0,8.365,6.783,15.152,15.15,15.152c3.111,0,5.998-0.939,8.404-2.549l5.693,5.693 c0.875,0.875,2.297,0.875,3.172,0l1.588-1.588C317.553,469.65,317.553,468.23,316.674,467.354z M297.816,465.182 c-6.273,0-11.361-5.088-11.361-11.363s5.088-11.363,11.361-11.363c6.275,0,11.363,5.088,11.363,11.363 C309.182,460.092,304.092,465.182,297.816,465.182z M296.666,452.666h-5.332v2.668h5.332h2.668h5.332v-2.668h-5.332H296.666z" fill="#3C3C3C"/>
<rect fill="none" height="40" width="40" x="280" y="436"/>
<rect fill="#FFFFFF" fill-opacity="0.9" height="58" stroke-opacity="0.9" width="1" x="240" y="427"/>
<rect fill="#9696A0" fill-opacity="0.5" height="58" stroke-opacity="0.5" width="1" x="239" y="427"/>
-<path d="M1,427v58h118v-58h-118zm117,57h-116v-54h116v54z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="none" height="71.71" width="71.63" x="31.25" y="304.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-818.8" x2="-818.8" y1="-861.5" y2="-906.5">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M1,427v3v55h118v-55v-3H1z M118,484H2v-54h116V484z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="none" height="71.71" width="71.63" x="31.249" y="304.29"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-818.8013" x2="-818.8013" y1="-861.4771" y2="-906.4761">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M68.52,355.5c0,1.617-1.313,2.928-2.923,2.928h-23.39c-1.612,0-2.923-1.314-2.923-2.928v-39.52c0-1.615,1.313-2.927,2.923-2.927h23.39c1.61,0,2.925,1.313,2.925,2.927v39.5z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-818.8" x2="-818.8" y1="-860.9" y2="-905.3">
-<stop offset="0" stop-color="#D5D7DB"/>
-<stop offset="0.67" stop-color="#85878A"/>
-<stop offset="1" stop-color="#808184"/>
+<path d="M68.521,355.508c0,1.617-1.313,2.928-2.923,2.928H42.21c-1.612,0-2.923-1.314-2.923-2.928v-39.515 c0-1.615,1.313-2.927,2.923-2.927H65.6c1.61,0,2.925,1.313,2.925,2.927L68.521,355.508L68.521,355.508z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-818.8022" x2="-818.8022" y1="-860.9219" y2="-905.2533">
+<stop offset="0" style="stop-color:#D5D7DB"/>
+<stop offset="0.67" style="stop-color:#85878A"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
-<path d="M65.6,313.1h-23.39c-1.612,0-2.923,1.315-2.923,2.927v39.52c0,0.776,0.313,1.484,0.811,2.013-0.045-0.177-0.078-0.356-0.078-0.55v-40.98c0-1.21,0.98-2.191,2.19-2.191h23.39c1.209,0,2.188,0.981,2.188,2.191v40.98c0,0.189-0.027,0.373-0.076,0.55,0.498-0.522,0.813-1.232,0.813-2.013v-39.52c0-1.7-1.31-3-2.92-3z" fill="url(#SVGID_24_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-818.8" x2="-818.8" y1="-864.6" y2="-893.1">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M65.596,313.068H42.21c-1.612,0-2.923,1.315-2.923,2.927v39.515c0,0.776,0.313,1.484,0.811,2.013 c-0.045-0.177-0.078-0.356-0.078-0.55v-1.463v-38.049v-1.466c0-1.21,0.98-2.191,2.19-2.191h23.388c1.209,0,2.188,0.981,2.188,2.191 v1.466v38.049v1.463c0,0.189-0.027,0.373-0.076,0.55c0.498-0.522,0.813-1.232,0.813-2.013v-39.515 C68.521,314.38,67.212,313.068,65.596,313.068z" fill="url(#SVGID_24_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-818.8018" x2="-818.8018" y1="-864.6211" y2="-893.1293">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<rect fill="url(#SVGID_25_)" fill-opacity="0.6" height="28.54" width="24.85" x="41.48" y="316.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="-818.8" x2="-818.8" y1="-865.3" y2="-892.4">
-<stop offset="0" stop-color="#3D3D3D"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<rect fill="url(#SVGID_25_)" fill-opacity="0.6" height="28.539" width="24.85" x="41.48" y="316.727"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="-818.8022" x2="-818.8022" y1="-865.3496" y2="-892.3885">
+<stop offset="0" style="stop-color:#3D3D3D"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
-<rect fill="url(#SVGID_26_)" height="27.08" width="23.39" x="42.21" y="317.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="-818.8" x2="-818.8" y1="-866.1" y2="-891.7">
-<stop offset="0" stop-color="#3BC8EB"/>
-<stop offset="0.39" stop-color="#2D9BD2"/>
-<stop offset="0.89" stop-color="#1347BA"/>
-<stop offset="1" stop-color="#1347BA"/>
+<rect fill="url(#SVGID_26_)" height="27.075" width="23.39" x="42.21" y="317.457"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="-818.8022" x2="-818.8022" y1="-866.0811" y2="-891.6562">
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.39" style="stop-color:#2D9BD2"/>
+<stop offset="0.89" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
-<rect fill="url(#SVGID_27_)" height="25.61" width="21.92" x="42.94" y="318.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="-818.8" x2="-818.8" y1="-866.7" y2="-877">
-<stop offset="0" stop-color="#85EFFF"/>
-<stop offset="1" stop-color="#3BA1D9"/>
+<rect fill="url(#SVGID_27_)" height="25.608" width="21.925" x="42.942" y="318.192"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="-818.8022" x2="-818.8022" y1="-866.6543" y2="-876.9822">
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
-<polygon fill="url(#SVGID_28_)" points="64.87,327,42.94,329.9,42.94,318.9,64.87,318.9"/>
-<rect fill="#9FE4FF" height="0.729" width="21.92" x="42.94" y="318.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="-818.4" x2="-818.4" y1="-864.6" y2="-861.7">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="1" stop-color="#808385"/>
+<polygon fill="url(#SVGID_28_)" points="64.867,326.971 42.942,329.9 42.942,318.922 64.867,318.922 "/>
+<rect fill="#9FE4FF" height="0.729" width="21.925" x="42.942" y="318.192"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="-818.4209" x2="-818.4209" y1="-864.6221" y2="-861.6934">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="1" style="stop-color:#808385"/>
</linearGradient>
-<path d="M51.68,316.7c-0.818,0-1.461-0.534-1.461-1.219v-0.486c0-0.687,0.643-1.22,1.461-1.22h5.216c0.815,0,1.462,0.533,1.462,1.22v0.486c0,0.687-0.646,1.223-1.462,1.223h-5.216v0.027z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-818.4" x2="-818.4" y1="-862.1" y2="-864">
-<stop offset="0" stop-color="#343838"/>
-<stop offset="1" stop-color="#7D8182"/>
+<path d="M51.678,316.727c-0.818,0-1.461-0.534-1.461-1.219v-0.486c0-0.687,0.643-1.22,1.461-1.22h5.216 c0.815,0,1.462,0.533,1.462,1.22v0.486c0,0.687-0.646,1.223-1.462,1.223h-5.216V316.727z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-818.4209" x2="-818.4209" y1="-862.0874" y2="-863.9773">
+<stop offset="0" style="stop-color:#343838"/>
+<stop offset="1" style="stop-color:#7D8182"/>
</linearGradient>
-<path d="M57.62,315.5c0,0.272-0.322,0.487-0.728,0.487h-5.218c-0.402,0-0.729-0.219-0.729-0.487v-0.486c0-0.271,0.326-0.485,0.729-0.485h5.218c0.399,0,0.728,0.222,0.728,0.485v0.508z" fill="url(#SVGID_30_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="-818.8" x2="-818.8" y1="-893.9" y2="-904">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M57.623,315.508c0,0.272-0.322,0.487-0.728,0.487h-5.218c-0.402,0-0.729-0.219-0.729-0.487v-0.486 c0-0.271,0.326-0.485,0.729-0.485h5.218c0.399,0,0.728,0.222,0.728,0.485V315.508z" fill="url(#SVGID_30_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="-818.8018" x2="-818.8018" y1="-893.8818" y2="-904.027">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<path d="M51.63,356.2c-1.564,0-2.84-1.265-2.84-2.815v-4.616c0-1.55,1.271-2.813,2.84-2.813h4.554c1.563,0,2.839,1.264,2.839,2.813v4.616c0,1.553-1.273,2.815-2.841,2.815h-4.551,0.001z" fill="url(#SVGID_31_)" fill-opacity="0.6"/>
-<path d="M51.62,355.5c-1.16,0-2.104-0.938-2.104-2.082v-4.614c0-1.147,0.941-2.08,2.104-2.08h4.562c1.159,0,2.104,0.937,2.104,2.08v4.614c0,1.146-0.941,2.082-2.104,2.082h-4.557-0.003z" fill="#020202" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-818.8" x2="-818.8" y1="-895.3" y2="-902.6">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M51.629,356.239c-1.564,0-2.84-1.265-2.84-2.815v-4.616 c0-1.55,1.271-2.813,2.84-2.813h4.554c1.563,0,2.839,1.264,2.839,2.813v4.616c0,1.553-1.273,2.815-2.841,2.815H51.629 L51.629,356.239z" fill="url(#SVGID_31_)" fill-opacity="0.6"/>
+<path d="M51.623,355.508c-1.16,0-2.104-0.938-2.104-2.082v-4.614c0-1.147,0.941-2.08,2.104-2.08 h4.562c1.159,0,2.104,0.937,2.104,2.08v4.614c0,1.146-0.941,2.082-2.104,2.082H51.623L51.623,355.508z" fill="#020202" fill-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-818.8037" x2="-818.8037" y1="-895.2803" y2="-902.6409">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M57.56,353.4c0,0.745-0.612,1.352-1.366,1.352h-4.571c-0.756,0-1.369-0.606-1.369-1.352v-4.616c0-0.742,0.613-1.351,1.369-1.351h4.571c0.754,0,1.366,0.604,1.366,1.351v4.626z" fill="url(#SVGID_32_)"/>
-<path d="M53.17,353.3c-0.81,0-1.465-0.653-1.465-1.462v-1.465c0-0.812,0.654-1.464,1.465-1.464h1.46c0.807,0,1.463,0.652,1.463,1.464v1.465c0,0.809-0.654,1.462-1.463,1.462h-1.446z" fill="#020202" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-818.8" x2="-818.8" y1="-897.5" y2="-900.4">
-<stop offset="0" stop-color="#A6A8AB"/>
-<stop offset="0.7" stop-color="#58595B"/>
-<stop offset="1" stop-color="#808184"/>
+<path d="M57.557,353.426c0,0.745-0.612,1.352-1.366,1.352h-4.571c-0.756,0-1.369-0.606-1.369-1.352v-4.616 c0-0.742,0.613-1.351,1.369-1.351h4.571c0.754,0,1.366,0.604,1.366,1.351V353.426z" fill="url(#SVGID_32_)"/>
+<path d="M53.174,353.313c-0.81,0-1.465-0.653-1.465-1.462v-1.465 c0-0.812,0.654-1.464,1.465-1.464h1.46c0.807,0,1.463,0.652,1.463,1.464v1.465c0,0.809-0.654,1.462-1.463,1.462H53.174z" fill="#020202" fill-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-818.8042" x2="-818.8042" y1="-897.502" y2="-900.4408">
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.7" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
-<path d="M53.17,352.6c-0.404,0-0.73-0.326-0.73-0.729v-1.465c0-0.398,0.328-0.729,0.73-0.729h1.46c0.4,0,0.729,0.329,0.729,0.729v1.465c0,0.4-0.328,0.729-0.729,0.729h-1.456z" fill="url(#SVGID_33_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="-828.3" x2="-828.3" y1="-894.6" y2="-902.6">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M53.174,352.577c-0.404,0-0.73-0.326-0.73-0.729v-1.465c0-0.398,0.328-0.729,0.73-0.729h1.46 c0.4,0,0.729,0.329,0.729,0.729v1.465c0,0.4-0.328,0.729-0.729,0.729H53.174z" fill="url(#SVGID_33_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="-828.3027" x2="-828.3027" y1="-894.5508" y2="-902.6424">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<path d="M44.4,354.8c-1.611,0-2.925-1.264-2.925-2.817v-2.421c0-1.55,1.313-2.813,2.925-2.813,1.61,0,2.923,1.264,2.923,2.813v2.421c0.01,1.5-1.31,2.8-2.92,2.8z" fill="url(#SVGID_34_)" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="-828.3" x2="-828.3" y1="-895.3" y2="-901.9">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M44.405,354.777c-1.611,0-2.925-1.264-2.925-2.817v-2.421 c0-1.55,1.313-2.813,2.925-2.813l0,0c1.61,0,2.923,1.264,2.923,2.813v2.421C47.328,353.514,46.014,354.777,44.405,354.777 L44.405,354.777z" fill="url(#SVGID_34_)" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="-828.3008" x2="-828.3008" y1="-895.2793" y2="-901.9127">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M44.4,354c-1.193,0-2.162-0.933-2.162-2.082v-2.421c0-1.147,0.969-2.08,2.162-2.08,1.192,0,2.163,0.933,2.163,2.084v2.421c0.01,1.2-0.96,2.1-2.16,2.1z" fill="url(#SVGID_35_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="-828.3" x2="-828.3" y1="-896" y2="-901.2">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="0.73" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<path d="M44.405,354.042c-1.193,0-2.162-0.933-2.162-2.082v-2.421 c0-1.147,0.969-2.08,2.162-2.08l0,0c1.192,0,2.163,0.933,2.163,2.084v2.421C46.566,353.111,45.598,354.042,44.405,354.042 L44.405,354.042z" fill="url(#SVGID_35_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="-828.3032" x2="-828.3032" y1="-896.0176" y2="-901.1686">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.73" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<path d="M45.8,352c0,0.748-0.627,1.353-1.399,1.353-0.775,0-1.402-0.604-1.402-1.353v-2.421c0-0.743,0.627-1.351,1.402-1.351,0.772,0,1.399,0.605,1.399,1.354v2.36z" fill="url(#SVGID_36_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="-809.3" x2="-809.3" y1="-894.6" y2="-902.6">
-<stop offset="0" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#B1BABD"/>
+<path d="M45.805,351.96c0,0.748-0.627,1.353-1.399,1.353l0,0c-0.775,0-1.402-0.604-1.402-1.353v-2.421 c0-0.743,0.627-1.351,1.402-1.351l0,0c0.772,0,1.399,0.605,1.399,1.354V351.96z" fill="url(#SVGID_36_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="-809.3008" x2="-809.3008" y1="-894.5508" y2="-902.6424">
+<stop offset="0" style="stop-color:#878B8C"/>
+<stop offset="1" style="stop-color:#B1BABD"/>
</linearGradient>
-<path d="M63.46,354.8c-1.641,0-2.977-1.264-2.977-2.817v-2.421c0-1.55,1.336-2.813,2.977-2.813h-0.104c1.643,0,2.979,1.264,2.979,2.813v2.421c0,1.554-1.336,2.817-2.977,2.817h0.097,0.003z" fill="url(#SVGID_37_)" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="-809.3" x2="-809.3" y1="-895.3" y2="-901.9">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M63.457,354.777c-1.641,0-2.977-1.264-2.977-2.817v-2.421 c0-1.55,1.336-2.813,2.977-2.813h-0.104c1.643,0,2.979,1.264,2.979,2.813v2.421c0,1.554-1.336,2.817-2.977,2.817H63.457 L63.457,354.777z" fill="url(#SVGID_37_)" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="-809.2998" x2="-809.2998" y1="-895.2793" y2="-901.9127">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M63.46,354c-1.215,0-2.199-0.933-2.199-2.082v-2.421c0-1.147,0.984-2.08,2.199-2.08h-0.104c1.217,0,2.203,0.933,2.203,2.08v2.421c0,1.147-0.986,2.082-2.203,2.082h0.097z" fill="url(#SVGID_38_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="-809.3" x2="-809.3" y1="-896" y2="-901.2">
-<stop offset="0" stop-color="#FFC142"/>
-<stop offset="0.75" stop-color="#CF4E18"/>
-<stop offset="1" stop-color="#B52100"/>
+<path d="M63.457,354.042c-1.215,0-2.199-0.933-2.199-2.082v-2.421 c0-1.147,0.984-2.08,2.199-2.08h-0.104c1.217,0,2.203,0.933,2.203,2.08v2.421c0,1.147-0.986,2.082-2.203,2.082H63.457z" fill="url(#SVGID_38_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="-809.3018" x2="-809.3018" y1="-896.0186" y2="-901.1683">
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.75" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
-<path d="M64.78,352c0,0.748-0.641,1.353-1.43,1.353h0.105c-0.789,0-1.428-0.604-1.428-1.353v-2.421c0-0.743,0.639-1.351,1.428-1.351h-0.105c0.789,0,1.43,0.605,1.43,1.351v2.36z" fill="url(#SVGID_39_)"/>
-<rect fill="#020202" fill-opacity="0.2" height="45.36" width="1.46" x="56.83" y="313.1"/>
-<rect fill="#020202" fill-opacity="0.1" height="45.36" width="2.924" x="57.56" y="313.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="-797.2" x2="-797.2" y1="-860.9" y2="-913.5">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M64.781,351.96c0,0.748-0.641,1.353-1.43,1.353h0.105c-0.789,0-1.428-0.604-1.428-1.353v-2.421 c0-0.743,0.639-1.351,1.428-1.351h-0.105c0.789,0,1.43,0.605,1.43,1.351V351.96z" fill="url(#SVGID_39_)"/>
+<rect fill="#020202" fill-opacity="0.2" height="45.363" width="1.46" x="56.829" y="313.068"/>
+<rect fill="#020202" fill-opacity="0.1" height="45.363" width="2.924" x="57.557" y="313.068"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="-797.2446" x2="-797.2446" y1="-860.9258" y2="-913.4673">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M92.64,362.8c0,1.615-1.31,2.929-2.921,2.929h-28.51c-1.611,0-2.924-1.313-2.924-2.929v-46.83c0-1.615,1.313-2.927,2.924-2.927h28.51c1.611,0,2.921,1.315,2.921,2.927v46.8z" fill="url(#SVGID_40_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="-797.2" x2="-797.2" y1="-860.9" y2="-912.6">
-<stop offset="0" stop-color="#E4EBED"/>
-<stop offset="0.07" stop-color="#E4EBED"/>
-<stop offset="0.26" stop-color="#D6DCDE"/>
-<stop offset="0.66" stop-color="#B2BEC2"/>
-<stop offset="1" stop-color="#ADB3B5"/>
+<path d="M92.636,362.826c0,1.615-1.31,2.929-2.921,2.929H61.211c-1.611,0-2.924-1.313-2.924-2.929v-46.827 c0-1.615,1.313-2.927,2.924-2.927h28.506c1.611,0,2.921,1.315,2.921,2.927L92.636,362.826L92.636,362.826z" fill="url(#SVGID_40_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="-797.2446" x2="-797.2446" y1="-860.9219" y2="-912.5552">
+<stop offset="0" style="stop-color:#E4EBED"/>
+<stop offset="0.07" style="stop-color:#E4EBED"/>
+<stop offset="0.26" style="stop-color:#D6DCDE"/>
+<stop offset="0.66" style="stop-color:#B2BEC2"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<path d="M89.72,313.1h-28.51c-1.611,0-2.924,1.315-2.924,2.927v46.83c0,0.778,0.313,1.482,0.813,2.014-0.045-0.178-0.078-0.355-0.078-0.549v-48.3c0-1.21,0.98-2.191,2.189-2.191h28.5c1.209,0,2.188,0.981,2.188,2.191v48.3c0,0.188-0.031,0.373-0.076,0.549,0.498-0.523,0.811-1.229,0.811-2.014v-46.83c0.01-1.6-1.3-2.9-2.91-2.9z" fill="url(#SVGID_41_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="-797.2" x2="-797.2" y1="-864.6" y2="-899.7">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#F0FBFF"/>
+<path d="M89.715,313.068H61.211c-1.611,0-2.924,1.315-2.924,2.927v46.827c0,0.778,0.313,1.482,0.813,2.014 c-0.045-0.178-0.078-0.355-0.078-0.549v-1.465v-45.361v-1.466c0-1.21,0.98-2.191,2.189-2.191h28.504 c1.209,0,2.188,0.981,2.188,2.191v1.466v45.361v1.465c0,0.188-0.031,0.373-0.076,0.549c0.498-0.523,0.811-1.229,0.811-2.014v-46.827 C92.636,314.38,91.328,313.068,89.715,313.068z" fill="url(#SVGID_41_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="-797.2441" x2="-797.2441" y1="-864.6318" y2="-899.7132">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<rect fill="url(#SVGID_42_)" fill-opacity="0.6" height="35.12" width="29.96" x="60.48" y="316.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="-797.2" x2="-797.2" y1="-865.4" y2="-899">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_42_)" fill-opacity="0.6" height="35.124" width="29.965" x="60.48" y="316.727"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="-797.2432" x2="-797.2432" y1="-865.3613" y2="-898.9704">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_43_)" height="33.66" width="28.51" x="61.21" y="317.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="-797.2" x2="-797.2" y1="-866.1" y2="-898.2">
-<stop offset="0" stop-color="#3BC8EB"/>
-<stop offset="0.39" stop-color="#2D9BD2"/>
-<stop offset="0.89" stop-color="#1347BA"/>
-<stop offset="1" stop-color="#1347BA"/>
+<rect fill="url(#SVGID_43_)" height="33.658" width="28.506" x="61.211" y="317.457"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="-797.2432" x2="-797.2432" y1="-866.0928" y2="-898.2414">
+<stop offset="0" style="stop-color:#3BC8EB"/>
+<stop offset="0.39" style="stop-color:#2D9BD2"/>
+<stop offset="0.89" style="stop-color:#1347BA"/>
+<stop offset="1" style="stop-color:#1347BA"/>
</linearGradient>
-<rect fill="url(#SVGID_44_)" height="32.19" width="27.04" x="61.94" y="318.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="-797.2" x2="-797.2" y1="-866.6" y2="-879">
-<stop offset="0" stop-color="#85EFFF"/>
-<stop offset="1" stop-color="#3BA1D9"/>
+<rect fill="url(#SVGID_44_)" height="32.193" width="27.041" x="61.943" y="318.192"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="-797.2432" x2="-797.2432" y1="-866.6309" y2="-879.0234">
+<stop offset="0" style="stop-color:#85EFFF"/>
+<stop offset="1" style="stop-color:#3BA1D9"/>
</linearGradient>
-<polygon fill="url(#SVGID_45_)" points="88.98,329.2,61.94,332.1,61.94,318.9,88.98,318.9"/>
-<rect fill="#9FE4FF" height="0.729" width="27.04" x="61.94" y="318.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="-797.4" x2="-797.4" y1="-900.5" y2="-911.3">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_45_)" points="88.984,329.167 61.943,332.094 61.943,318.922 88.984,318.922 "/>
+<rect fill="#9FE4FF" height="0.729" width="27.041" x="61.943" y="318.192"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="-797.3574" x2="-797.3574" y1="-900.4639" y2="-911.3424">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M72.71,363.6c-1.564,0-2.84-1.265-2.84-2.815v-5.352c0-1.552,1.271-2.815,2.84-2.815h5.285c1.563,0,2.839,1.268,2.839,2.815v5.352c0,1.551-1.271,2.815-2.839,2.815h-5.293,0.003z" fill="url(#SVGID_46_)" fill-opacity="0.6"/>
-<path d="M72.7,362.8c-1.162,0-2.104-0.935-2.104-2.08v-5.352c0-1.147,0.941-2.082,2.104-2.082h5.293c1.162,0,2.104,0.938,2.104,2.082v5.352c0,1.147-0.942,2.08-2.104,2.08h-5.285z" fill="#020202" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="-797.4" x2="-797.4" y1="-901.9" y2="-910">
-<stop offset="0" stop-color="#A6A8AB"/>
-<stop offset="0.7" stop-color="#58595B"/>
-<stop offset="1" stop-color="#808184"/>
+<path d="M72.707,363.556c-1.564,0-2.84-1.265-2.84-2.815v-5.352 c0-1.552,1.271-2.815,2.84-2.815h5.285c1.563,0,2.839,1.268,2.839,2.815v5.352c0,1.551-1.271,2.815-2.839,2.815H72.707 L72.707,363.556z" fill="url(#SVGID_46_)" fill-opacity="0.6"/>
+<path d="M72.705,362.826c-1.162,0-2.104-0.935-2.104-2.08v-5.352 c0-1.147,0.941-2.082,2.104-2.082h5.293c1.162,0,2.104,0.938,2.104,2.082v5.352c0,1.147-0.942,2.08-2.104,2.08H72.705z" fill="#020202" fill-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="-797.3569" x2="-797.3569" y1="-901.8623" y2="-909.9554">
+<stop offset="0" style="stop-color:#A6A8AB"/>
+<stop offset="0.7" style="stop-color:#58595B"/>
+<stop offset="1" style="stop-color:#808184"/>
</linearGradient>
-<path d="M79.37,360.7c0,0.741-0.61,1.351-1.364,1.351h-5.307c-0.756,0-1.369-0.604-1.369-1.351v-5.352c0-0.746,0.613-1.354,1.369-1.354h5.307c0.754,0,1.364,0.606,1.364,1.354v5.442z" fill="url(#SVGID_47_)"/>
-<path d="M74.25,360.6c-0.809,0-1.465-0.657-1.465-1.467v-2.193c0-0.81,0.656-1.465,1.465-1.465h2.189c0.811,0,1.463,0.655,1.463,1.465v2.193c0,0.81-0.652,1.467-1.463,1.467h-2.176z" fill="#020202" fill-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="-797.4" x2="-797.4" y1="-904.1" y2="-907.8">
-<stop offset="0" stop-color="#D1D7D9"/>
-<stop offset="0.07" stop-color="#D1D7D9"/>
-<stop offset="0.26" stop-color="#BDC2C4"/>
-<stop offset="0.66" stop-color="#949DA1"/>
-<stop offset="0.96" stop-color="#ADB3B5"/>
-<stop offset="1" stop-color="#595C5E"/>
+<path d="M79.37,360.742c0,0.741-0.61,1.351-1.364,1.351h-5.307c-0.756,0-1.369-0.604-1.369-1.351v-5.352 c0-0.746,0.613-1.354,1.369-1.354h5.307c0.754,0,1.364,0.606,1.364,1.354V360.742z" fill="url(#SVGID_47_)"/>
+<path d="M74.254,360.631c-0.809,0-1.465-0.657-1.465-1.467v-2.193 c0-0.81,0.656-1.465,1.465-1.465h2.189c0.811,0,1.463,0.655,1.463,1.465v2.193c0,0.81-0.652,1.467-1.463,1.467H74.254z" fill="#020202" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="-797.3574" x2="-797.3574" y1="-904.0752" y2="-907.7556">
+<stop offset="0" style="stop-color:#D1D7D9"/>
+<stop offset="0.07" style="stop-color:#D1D7D9"/>
+<stop offset="0.26" style="stop-color:#BDC2C4"/>
+<stop offset="0.66" style="stop-color:#949DA1"/>
+<stop offset="0.96" style="stop-color:#ADB3B5"/>
+<stop offset="1" style="stop-color:#595C5E"/>
</linearGradient>
-<path d="M74.25,359.9c-0.4,0-0.729-0.328-0.729-0.729v-2.193c0-0.398,0.328-0.729,0.729-0.729h2.189c0.402,0,0.73,0.329,0.73,0.729v2.193c0,0.399-0.328,0.729-0.73,0.729h-2.186z" fill="url(#SVGID_48_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="-809" x2="-809" y1="-901.1" y2="-910">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#F0FBFF"/>
+<path d="M74.254,359.897c-0.4,0-0.729-0.328-0.729-0.729v-2.193c0-0.398,0.328-0.729,0.729-0.729h2.189 c0.402,0,0.73,0.329,0.73,0.729v2.193c0,0.399-0.328,0.729-0.73,0.729H74.254z" fill="url(#SVGID_48_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="-808.9922" x2="-808.9922" y1="-901.1221" y2="-909.9692">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M63.29,362.1c-1.549,0-2.813-1.265-2.813-2.815v-3.149c0-1.553,1.262-2.815,2.813-2.815h0.846c1.551,0,2.812,1.265,2.812,2.815v3.149c0,1.555-1.263,2.815-2.812,2.815h-0.847-0.003z" fill="url(#SVGID_49_)" fill-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="-809" x2="-809" y1="-901.9" y2="-909.2">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M63.293,362.091c-1.549,0-2.813-1.265-2.813-2.815v-3.149 c0-1.553,1.262-2.815,2.813-2.815h0.846c1.551,0,2.812,1.265,2.812,2.815v3.149c0,1.555-1.263,2.815-2.812,2.815H63.293 L63.293,362.091z" fill="url(#SVGID_49_)" fill-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="-808.9922" x2="-808.9922" y1="-901.8643" y2="-909.2257">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M63.29,361.4c-1.146,0-2.082-0.935-2.082-2.083v-3.149c0-1.147,0.936-2.082,2.082-2.082h0.846c1.146,0,2.08,0.935,2.08,2.084v3.149c0,1.148-0.936,2.083-2.08,2.083h-0.85z" fill="url(#SVGID_50_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="-809" x2="-809" y1="-902.6" y2="-908.5">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="0.73" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<path d="M63.293,361.362c-1.146,0-2.082-0.935-2.082-2.083v-3.149 c0-1.147,0.936-2.082,2.082-2.082h0.846c1.146,0,2.08,0.935,2.08,2.084v3.149c0,1.148-0.936,2.083-2.08,2.083L63.293,361.362 L63.293,361.362z" fill="url(#SVGID_50_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="-808.9941" x2="-808.9941" y1="-902.6035" y2="-908.4987">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.73" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<path d="M65.49,359.3c0,0.745-0.604,1.355-1.352,1.355h-0.846c-0.74,0-1.35-0.606-1.35-1.355v-3.149c0-0.743,0.605-1.354,1.35-1.354h0.846c0.746,0,1.352,0.604,1.352,1.354v3.079z" fill="url(#SVGID_51_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="-786.1" x2="-786.1" y1="-901.1" y2="-910">
-<stop offset="0" stop-color="#B6BBBD"/>
-<stop offset="1" stop-color="#F0FBFF"/>
+<path d="M65.486,359.279c0,0.745-0.604,1.355-1.352,1.355h-0.846c-0.74,0-1.35-0.606-1.35-1.355v-3.149 c0-0.743,0.605-1.354,1.35-1.354h0.846c0.746,0,1.352,0.604,1.352,1.354V359.279z" fill="url(#SVGID_51_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="-786.123" x2="-786.123" y1="-901.1221" y2="-909.9692">
+<stop offset="0" style="stop-color:#B6BBBD"/>
+<stop offset="1" style="stop-color:#F0FBFF"/>
</linearGradient>
-<path d="M86.16,362.1c-1.551,0-2.814-1.265-2.814-2.815v-3.149c0-1.553,1.266-2.815,2.814-2.815h0.846c1.549,0,2.813,1.265,2.813,2.815v3.149c0,1.555-1.266,2.815-2.813,2.815h-0.848z" fill="url(#SVGID_52_)" fill-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="-786.1" x2="-786.1" y1="-901.9" y2="-909.2">
-<stop offset="0" stop-color="#231F20"/>
-<stop offset="1" stop-color="#6D6E70"/>
+<path d="M86.162,362.091c-1.551,0-2.814-1.265-2.814-2.815v-3.149 c0-1.553,1.266-2.815,2.814-2.815h0.846c1.549,0,2.813,1.265,2.813,2.815v3.149c0,1.555-1.266,2.815-2.813,2.815H86.162z" fill="url(#SVGID_52_)" fill-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="-786.123" x2="-786.123" y1="-901.8643" y2="-909.2258">
+<stop offset="0" style="stop-color:#231F20"/>
+<stop offset="1" style="stop-color:#6D6E70"/>
</linearGradient>
-<path d="M86.16,361.4c-1.146,0-2.08-0.935-2.08-2.083v-3.149c0-1.147,0.934-2.082,2.08-2.082h0.846c1.146,0,2.078,0.935,2.078,2.082v3.149c0,1.148-0.934,2.083-2.078,2.083h-0.848z" fill="url(#SVGID_53_)" fill-opacity="0.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="-786.1" x2="-786.1" y1="-902.6" y2="-908.5">
-<stop offset="0" stop-color="#FFC142"/>
-<stop offset="0.75" stop-color="#CF4E18"/>
-<stop offset="1" stop-color="#B52100"/>
+<path d="M86.162,361.362c-1.146,0-2.08-0.935-2.08-2.083v-3.149 c0-1.147,0.934-2.082,2.08-2.082h0.846c1.146,0,2.078,0.935,2.078,2.082v3.149c0,1.148-0.934,2.083-2.078,2.083H86.162z" fill="url(#SVGID_53_)" fill-opacity="0.7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="-786.124" x2="-786.124" y1="-902.6045" y2="-908.4996">
+<stop offset="0" style="stop-color:#FFC142"/>
+<stop offset="0.75" style="stop-color:#CF4E18"/>
+<stop offset="1" style="stop-color:#B52100"/>
</linearGradient>
-<path d="M88.36,359.3c0,0.745-0.604,1.355-1.35,1.355h-0.85c-0.746,0-1.352-0.606-1.352-1.355v-3.149c0-0.745,0.605-1.354,1.352-1.354h0.846c0.742,0,1.352,0.604,1.352,1.354v3.1z" fill="url(#SVGID_54_)"/>
-<rect fill="none" height="71.71" width="71.62" x="31.25" y="304.3"/>
-<polygon fill-opacity="0.1" points="60.24,347.2,50.48,347.2,50.49,335.9,60.24,335.9,60.24,328.6,73.94,341.9,60.24,354.4"/>
-<polygon fill-opacity="0.2" points="60.96,346.5,51.22,346.5,51.22,336.7,60.96,336.7,60.96,330.4,72.89,341.9,60.97,352.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="-810.8" x2="-810.8" y1="-879.3" y2="-898.2">
-<stop offset="0" stop-color="#C6FF45"/>
-<stop offset="0.73" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<path d="M88.355,359.279c0,0.745-0.604,1.355-1.35,1.355H86.16c-0.746,0-1.352-0.606-1.352-1.355v-3.149 c0-0.745,0.605-1.354,1.352-1.354h0.846c0.742,0,1.352,0.604,1.352,1.354L88.355,359.279L88.355,359.279z" fill="url(#SVGID_54_)"/>
+<rect fill="none" height="71.706" width="71.622" x="31.249" y="304.29"/>
+<polygon fill-opacity="0.1" points="60.236,347.236 50.482,347.238 50.486,335.934 60.236,335.934 60.236,328.617 73.938,341.949 60.236,354.419 "/>
+<polygon fill-opacity="0.2" points="60.965,346.507 51.215,346.509 51.217,336.669 60.965,336.667 60.965,330.35 72.887,341.945 60.967,352.698 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="-810.8164" x2="-810.8164" y1="-879.2744" y2="-898.1596">
+<stop offset="0" style="stop-color:#C6FF45"/>
+<stop offset="0.73" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<polygon fill="url(#SVGID_55_)" points="61.7,351,71.83,341.2,61.7,331.3,61.7,336.7,51.95,336.7,51.95,345.8,61.7,345.8"/>
-<polygon fill="#FFFFFF" points="71.83,341.2,61.7,331.3,61.7,332.1,71.46,341.6"/>
-<polygon fill="#FFFFFF" points="51.95,337.4,61.7,337.4,61.7,336.7,51.95,336.7,51.95,345.8,51.95,345.8"/>
-<rect fill="none" height="71.71" width="71.63" x="144.2" y="304.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_56_" x1="-692" x2="-692" y1="-862.9" y2="-911.2">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<polygon fill="url(#SVGID_55_)" points="61.697,350.982 71.834,341.214 61.697,331.347 61.697,336.665 51.948,336.667 51.947,345.777 61.697,345.773 "/>
+<polygon fill="#FFFFFF" points="71.834,341.214 61.697,331.347 61.697,332.08 71.457,341.576 "/>
+<polygon fill="#FFFFFF" points="51.948,337.399 61.697,337.394 61.697,336.665 51.948,336.667 51.947,345.777 51.947,345.777 "/>
+<rect fill="none" height="71.71" width="71.627" x="144.188" y="304.29"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_56_" x1="-691.9785" x2="-691.9785" y1="-862.8774" y2="-911.1762">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M201.9,362.8c0,0.074-0.654,0.729-1.467,0.729h-39.46c-0.811,0-1.461-0.655-1.461-1.465v-46.1c0-0.81,0.65-1.463,1.461-1.463h39.47c0.809,0,1.463,0.651,1.463,2.19v46.23-0.026z" fill="url(#SVGID_56_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_57_" x1="-673.3" x2="-669.5" y1="-875.1" y2="-875.1">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.9" stop-color="#F0F0F0"/>
-<stop offset="0.91" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M201.924,362.826c0,0.074-0.654,0.729-1.467,0.729h-39.463c-0.811,0-1.461-0.655-1.461-1.465 v-46.098c0-0.81,0.65-1.463,1.461-1.463h39.467c0.809,0,1.463,0.651,1.463,2.19V362.826L201.924,362.826z" fill="url(#SVGID_56_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_57_" x1="-673.3447" x2="-669.5009" y1="-875.1484" y2="-875.1484">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.9" style="stop-color:#F0F0F0"/>
+<stop offset="0.91" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M202.7,332.3c0.397-0.201,0.646-0.606,0.646-1.054v-8.329c0-0.439-0.248-0.853-0.646-1.054l-3.062-1.067v13.01l3.1-1.4z" fill="url(#SVGID_57_)"/>
-<polygon fill="#231F20" fill-opacity="0.35" points="199.6,331.1,202.6,332.3,200.3,333.4,199.6,333.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_58_" x1="-669.6" x2="-673.7" y1="-887.4" y2="-887.4">
-<stop offset="0" stop-color="#AFE865"/>
-<stop offset="0.05" stop-color="#AFE865"/>
-<stop offset="0.06" stop-color="#68B339"/>
-<stop offset="1" stop-color="#136101"/>
+<path d="M202.739,332.293c0.397-0.201,0.646-0.606,0.646-1.054v-8.329c0-0.439-0.248-0.853-0.646-1.054 l-3.062-1.067v13.012L202.739,332.293z" fill="url(#SVGID_57_)"/>
+<polygon fill="#231F20" fill-opacity="0.35" points="199.6,331.101 202.578,332.264 200.268,333.394 199.6,333.374 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_58_" x1="-669.644" x2="-673.6714" y1="-887.3672" y2="-887.3672">
+<stop offset="0" style="stop-color:#AFE865"/>
+<stop offset="0.05" style="stop-color:#AFE865"/>
+<stop offset="0.06" style="stop-color:#68B339"/>
+<stop offset="1" style="stop-color:#136101"/>
</linearGradient>
-<path d="M202.6,344.7c0.395-0.201,0.645-0.61,0.645-1.056v-8.327c0-0.439-0.249-0.854-0.645-1.056l-3.383-1.282v13.01l3.4-1.2z" fill="url(#SVGID_58_)"/>
-<polygon fill="#231F20" fill-opacity="0.35" points="198.6,343.7,202.3,345,199.7,346,198.6,346"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_59_" x1="-669.7" x2="-673.9" y1="-900.1" y2="-900.1">
-<stop offset="0" stop-color="#B8D6E9"/>
-<stop offset="0.07" stop-color="#5CB2E9"/>
-<stop offset="1" stop-color="#005BCC"/>
+<path d="M202.594,344.729c0.395-0.201,0.645-0.61,0.645-1.056v-8.327c0-0.439-0.249-0.854-0.645-1.056 l-3.383-1.282v13.011L202.594,344.729z" fill="url(#SVGID_58_)"/>
+<polygon fill="#231F20" fill-opacity="0.35" points="198.58,343.729 202.266,345.003 199.652,346.02 198.572,345.992 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_59_" x1="-669.6938" x2="-673.8968" y1="-900.1011" y2="-900.1011">
+<stop offset="0" style="stop-color:#B8D6E9"/>
+<stop offset="0.07" style="stop-color:#5CB2E9"/>
+<stop offset="1" style="stop-color:#005BCC"/>
</linearGradient>
-<path d="M202.7,357.9c0.395-0.197,0.645-0.604,0.645-1.052v-9.205c0-0.438-0.25-0.853-0.645-1.052l-3.758-1.286v13.89l3.8-1.2z" fill="url(#SVGID_59_)"/>
-<rect fill="#404041" fill-opacity="0.2" height="49.02" width="16.81" x="183.6" y="314.5"/>
-<rect fill="#404041" fill-opacity="0.2" height="49.02" width="16.81" x="182.9" y="314.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_60_" x1="-694.9" x2="-694.9" y1="-861.6" y2="-911.4">
-<stop offset="0" stop-color="#B2F56E"/>
-<stop offset="0.53" stop-color="#439020"/>
-<stop offset="1" stop-color="#0D4D07"/>
+<path d="M202.684,357.899c0.395-0.197,0.645-0.604,0.645-1.052v-9.205c0-0.438-0.25-0.853-0.645-1.052 l-3.758-1.286v13.887L202.684,357.899z" fill="url(#SVGID_59_)"/>
+<rect fill="#404041" fill-opacity="0.2" height="49.025" width="16.811" x="183.65" y="314.532"/>
+<rect fill="#404041" fill-opacity="0.2" height="49.025" width="16.811" x="182.92" y="314.532"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_60_" x1="-694.9043" x2="-694.9043" y1="-861.5645" y2="-911.4137">
+<stop offset="0" style="stop-color:#B2F56E"/>
+<stop offset="0.53" style="stop-color:#439020"/>
+<stop offset="1" style="stop-color:#0D4D07"/>
</linearGradient>
-<path d="M199,362.8c0,0.812-0.65,1.467-1.463,1.467h-39.46c-0.807,0-1.461-0.655-1.461-1.467v-47.56c0-0.812,0.654-1.464,1.461-1.464h39.47c0.813,0,1.463,0.652,1.463,1.464v47.6z" fill="url(#SVGID_60_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_61_" x1="-692.3" x2="-692.3" y1="-861.4" y2="-925.2">
-<stop offset="0" stop-color="#CDEDBD"/>
-<stop offset="0.99" stop-color="#139900"/>
-<stop offset="1" stop-color="#139900"/>
+<path d="M198.996,362.826c0,0.812-0.65,1.467-1.463,1.467h-39.465c-0.807,0-1.461-0.655-1.461-1.467v-47.561 c0-0.812,0.654-1.464,1.461-1.464h39.467c0.813,0,1.463,0.652,1.463,1.464L198.996,362.826L198.996,362.826z" fill="url(#SVGID_60_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_61_" x1="-692.3457" x2="-692.3457" y1="-861.4097" y2="-925.1943">
+<stop offset="0" style="stop-color:#CDEDBD"/>
+<stop offset="0.99" style="stop-color:#139900"/>
+<stop offset="1" style="stop-color:#139900"/>
</linearGradient>
-<path d="M197.5,314.5c0.402,0,0.73,0.329,0.73,0.729v47.56c0,0.403-0.328,0.729-0.73,0.729h-35.08v-49.02h35.1m0-0.7h-35.81v50.49h35.81c0.813,0,1.463-0.653,1.463-1.467v-47.56c0-0.7-0.7-1.4-1.5-1.4z" fill="url(#SVGID_61_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_62_" x1="-713.5" x2="-713.5" y1="-861.4" y2="-912.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#A0A0A0"/>
+<path d="M197.533,314.532c0.402,0,0.73,0.329,0.73,0.729v47.561c0,0.403-0.328,0.729-0.73,0.729h-35.078 v-49.023L197.533,314.532 M197.533,313.802h-35.807v50.489h35.807c0.813,0,1.463-0.653,1.463-1.467v-47.559 C198.996,314.454,198.346,313.802,197.533,313.802L197.533,313.802z" fill="url(#SVGID_61_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_62_" x1="-713.5391" x2="-713.5391" y1="-861.4097" y2="-912.8713">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#A0A0A0"/>
</linearGradient>
-<path d="M158.1,313.8c-0.807,0-1.461,0.652-1.461,1.464v47.56c0,0.812,0.654,1.465,1.461,1.465h3.656v-50.49h-3.73z" fill="url(#SVGID_62_)"/>
-<rect fill="#737373" height="50.49" width="0.729" x="161" y="313.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_63_" x1="-712.1" x2="-712.1" y1="-861.4" y2="-912.9">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M158.07,313.802c-0.807,0-1.461,0.652-1.461,1.464v47.561c0,0.812,0.654,1.465,1.461,1.465h3.656 v-50.489H158.07z" fill="url(#SVGID_62_)"/>
+<rect fill="#737373" height="50.489" width="0.729" x="160.996" y="313.802"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_63_" x1="-712.0771" x2="-712.0771" y1="-861.4097" y2="-912.8724">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<rect fill="url(#SVGID_63_)" height="50.49" width="0.729" x="160.3" y="313.8"/>
-<rect fill="none" height="71.71" width="71.62" x="144.2" y="304.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_64_" x1="-692" x2="-692" y1="-879.1" y2="-902.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<rect fill="url(#SVGID_63_)" height="50.489" width="0.729" x="160.266" y="313.802"/>
+<rect fill="none" height="71.706" width="71.623" x="144.188" y="304.29"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_64_" x1="-691.9897" x2="-691.9897" y1="-879.0957" y2="-902.6153">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M188.4,345.5c-0.969-0.503-3.568-2.188-3.66-2.287-0.543-0.624-0.521-1.999-0.25-2.597,0.02-0.043,0.039-0.08,0.063-0.113,0.064-0.105,0.127-0.21,0.189-0.315,0.475-0.77,0.867-1.542,1.189-2.268,0.588,0.203,1.344-0.342,1.719-1.271,0.387-0.956,0.221-1.949-0.375-2.22-0.033-0.018-0.07-0.02-0.105-0.025v-0.002c0.074-0.305,0.107-0.479,0.107-0.479,1.023-4.612-1.209-8.276-6.626-8.452-2.228,0-3.3,1.017-4.124,2.068-1.346,0.209-3.477,1.441-1.973,6.843-0.061,0.014-0.111,0.021-0.168,0.043-0.604,0.257-0.789,1.24-0.422,2.2,0.367,0.962,1.148,1.538,1.752,1.284,0.037-0.018,0.066-0.043,0.104-0.063,0.33,0.743,0.734,1.537,1.229,2.34h-0.002c0.016,0.023,0.031,0.055,0.051,0.08,0.012,0.02,0.02,0.029,0.025,0.05,0,0.002,0,0.002,0.002,0.004,0.035,0.061,0.07,0.117,0.105,0.178,0.309,0.479,0.387,1.875-0.098,2.59-0.111,0.165-2.959,1.82-4.057,2.405-1.256,0.667-3.307,2.201-3.307,5.654h21.93c0.1-3.4-2.2-5.1-3.2-5.6zm-10.8-15s-0.018-0.004-0.02-0.004zm0.1,0c-0.006-0.002-0.014-0.004-0.018-0.006zm-0.2,0c-0.006,0.006-0.014,0.008-0.021,0.01zl-0.021,0.002zm-0.1,0.1c-0.002,0.006-0.012,0.008-0.016,0.016zm-2.8,3.8c0.012-0.014,0.021-0.021,0.035-0.031,0.002,0.008,0.004,0.016,0.006,0.021z" fill="url(#SVGID_64_)"/>
-<rect fill="#DEFEAC" fill-opacity="0.5" height="0.729" width="21.92" x="169.8" y="351.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_65_" x1="-570.4" x2="-570.4" y1="-868.3" y2="-913.2">
-<stop offset="0" stop-color="#4FB7EB"/>
-<stop offset="1" stop-color="#1755B3"/>
+<path d="M188.385,345.535c-0.969-0.503-3.568-2.188-3.66-2.287l0,0c-0.543-0.624-0.521-1.999-0.25-2.597l0,0 c0.02-0.043,0.039-0.08,0.063-0.113c0.064-0.105,0.127-0.21,0.189-0.315l0,0c0.475-0.77,0.867-1.542,1.189-2.268 c0.588,0.203,1.344-0.342,1.719-1.271c0.387-0.956,0.221-1.949-0.375-2.22c-0.033-0.018-0.07-0.02-0.105-0.025v-0.002 c0.074-0.305,0.107-0.479,0.107-0.479c1.023-4.612-1.209-8.276-6.626-8.452c-2.228,0-3.3,1.017-4.124,2.068 c-1.346,0.209-3.477,1.441-1.973,6.843c-0.061,0.014-0.111,0.021-0.168,0.043c-0.604,0.257-0.789,1.24-0.422,2.2 c0.367,0.962,1.148,1.538,1.752,1.284c0.037-0.018,0.066-0.043,0.104-0.063c0.33,0.743,0.734,1.537,1.229,2.34h-0.002 c0.016,0.023,0.031,0.055,0.051,0.08c0.012,0.02,0.02,0.029,0.025,0.05c0,0.002,0,0.002,0.002,0.004 c0.035,0.061,0.07,0.117,0.105,0.178c0.309,0.479,0.387,1.875-0.098,2.59c-0.111,0.165-2.959,1.82-4.057,2.405 c-1.256,0.667-3.307,2.201-3.307,5.654h21.927C191.688,347.734,189.352,346.041,188.385,345.535z M177.625,330.523 c0,0-0.018-0.004-0.02-0.004C177.611,330.52,177.617,330.523,177.625,330.523z M177.715,330.543 c-0.006-0.002-0.014-0.004-0.018-0.006C177.701,330.539,177.709,330.541,177.715,330.543z M177.484,330.541 c-0.006,0.006-0.014,0.008-0.021,0.01C177.471,330.545,177.479,330.543,177.484,330.541z M177.547,330.521c0,0-0.016,0-0.021,0.002 C177.531,330.521,177.539,330.521,177.547,330.521z M177.432,330.586c-0.002,0.006-0.012,0.008-0.016,0.016 C177.42,330.594,177.428,330.588,177.432,330.586z M174.555,334.422c0.012-0.014,0.021-0.021,0.035-0.031 c0.002,0.008,0.004,0.016,0.006,0.021C174.578,334.416,174.564,334.422,174.555,334.422z" fill="url(#SVGID_64_)"/>
+<rect fill="#DEFEAC" fill-opacity="0.5" height="0.729" width="21.923" x="169.766" y="351.193"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_65_" x1="-570.3711" x2="-570.3711" y1="-868.2715" y2="-913.1845">
+<stop offset="0" style="stop-color:#4FB7EB"/>
+<stop offset="1" style="stop-color:#1755B3"/>
</linearGradient>
-<polygon fill="url(#SVGID_65_)" points="311.8,320.4,319.2,321.4,319.2,363.2,306.1,365,292.9,362.4,285.4,363.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_66_" x1="-573.2" x2="-573.2" y1="-881.5" y2="-913.2">
-<stop offset="0" stop-color="#8EFFF5"/>
-<stop offset="1" stop-color="#1D9DD8"/>
+<polygon fill="url(#SVGID_65_)" points="311.775,320.418 319.246,321.44 319.246,363.21 306.09,365.012 292.935,362.393 285.426,363.808 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_66_" x1="-573.1948" x2="-573.1948" y1="-881.5" y2="-913.1532">
+<stop offset="0" style="stop-color:#8EFFF5"/>
+<stop offset="1" style="stop-color:#1D9DD8"/>
</linearGradient>
-<polygon fill="url(#SVGID_66_)" points="306.1,332.6,306.1,365,292.9,362.4,292.9,351.6"/>
-<polygon fill-opacity="0.25" points="312.6,320.5,306.1,334.4,292.9,353.5,286.5,363.6,283.4,364.2,310.3,320.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_67_" x1="-585.4" x2="-585.4" y1="-867.9" y2="-912.9">
-<stop offset="0" stop-color="#FEEFA7"/>
-<stop offset="1" stop-color="#FFC501"/>
+<polygon fill="url(#SVGID_66_)" points="306.09,332.566 306.09,365.012 292.935,362.393 292.935,351.629 "/>
+<polygon fill-opacity="0.25" points="312.648,320.547 306.09,334.418 292.935,353.5 286.492,363.626 283.422,364.195 310.332,320.224 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_67_" x1="-585.3931" x2="-585.3931" y1="-867.8745" y2="-912.8557">
+<stop offset="0" style="stop-color:#FEEFA7"/>
+<stop offset="1" style="stop-color:#FFC501"/>
</linearGradient>
-<polygon fill="url(#SVGID_67_)" points="308,322.3,306,333.1,292.9,352.1,285.5,363.8,279,365,266.6,362.7,266.6,320.5,278.7,319.6,292.9,321.6,306.1,319.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_68_" x1="-586.7" x2="-586.7" y1="-911" y2="-869">
-<stop offset="0" stop-color="#E69400"/>
-<stop offset="1" stop-color="#F9DE4F"/>
+<polygon fill="url(#SVGID_67_)" points="308,322.303 305.99,333.14 292.935,352.093 285.473,363.815 279.05,365.012 266.628,362.67 266.628,320.541 278.685,319.638 292.935,321.618 306.09,319.638 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_68_" x1="-586.7148" x2="-586.7148" y1="-911.0186" y2="-869.0273">
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
-<polygon fill="url(#SVGID_68_)" points="292.9,321.6,292.9,352.1,285.5,363.8,279,365,279,319.7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_69_" x1="-563.8" x2="-563.8" y1="-880.6" y2="-868.2">
-<stop offset="0" stop-color="#E69400"/>
-<stop offset="1" stop-color="#F9DE4F"/>
+<polygon fill="url(#SVGID_68_)" points="292.935,321.618 292.935,352.093 285.473,363.815 279.05,365.012 279.05,319.69 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_69_" x1="-563.7646" x2="-563.7646" y1="-880.5571" y2="-868.2318">
+<stop offset="0" style="stop-color:#E69400"/>
+<stop offset="1" style="stop-color:#F9DE4F"/>
</linearGradient>
-<polygon fill="url(#SVGID_69_)" points="306.1,319.6,306.1,333,311.8,320.4"/>
-<path d="M279.8,364.9l11.18-16.79-4.71-2.347-7.144,9.894-6.978,8.066-2.23-0.412,9.153-10.79,5.374-7.65-5.63-2.774-12.18-2.498v-1.287l12.64,2.616,5.903,2.899,6.655-9.354-12.98-6.485-12.23-2.148v-1.99l12.62,2.115,13.59,6.794,3.896-6.627-3.804-1.338-5.647-3.908,2.691,0.373,2.972,2.173,4.427,1.614,2.615-4.447,2.563-0.364-3.408,5.76,4.86,2.618,2.128-3.374,2.195-5.256,1.232,0.168-3.453,7.467s-8.451,13.12-13.15,20.16l-11.39,16.8-2,0.1zm12-17.8l-4.769-2.427,6.551-9.229,4.387,2.13-6.2,9.5zm2.8-13.5l4.596,2.294,4.099-6.269-4.825-2.6-3.9,6.6z" fill="#FFFFFF" fill-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_70_" x1="-584.7" x2="-584.7" y1="-912.4" y2="-879.5">
-<stop offset="0" stop-color="#FCE28D"/>
-<stop offset="0.8121" stop-color="#FEF7DF"/>
-<stop offset="1" stop-color="#FEF7DF"/>
+<polygon fill="url(#SVGID_69_)" points="306.09,319.638 306.09,332.989 311.795,320.418 "/>
+<path d="M279.78,364.871l11.182-16.788l-4.71-2.347l-7.144,9.894l-6.978,8.066l-2.23-0.412 l9.153-10.789l5.374-7.65l-5.63-2.774l-12.18-2.498v-1.287l12.645,2.616l5.903,2.899l6.655-9.354l-12.977-6.485l-12.229-2.148v-1.99 l12.623,2.115l13.592,6.794l3.896-6.627l-3.804-1.338l-5.647-3.908l2.691,0.373l2.972,2.173l4.427,1.614l2.615-4.447l2.563-0.364 l-3.408,5.76l4.86,2.618l2.128-3.374l2.195-5.256l1.232,0.168l-3.453,7.467c0,0-8.451,13.117-13.153,20.161l-11.388,16.799 L279.78,364.871z M291.802,347.104l-4.769-2.427l6.551-9.229l4.387,2.13L291.802,347.104z M294.633,333.624l4.596,2.294l4.099-6.269 l-4.825-2.6L294.633,333.624L294.633,333.624z" fill="#FFFFFF" fill-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_70_" x1="-584.7378" x2="-584.7378" y1="-912.4316" y2="-879.5201">
+<stop offset="0" style="stop-color:#FCE28D"/>
+<stop offset="0.8121" style="stop-color:#FEF7DF"/>
+<stop offset="1" style="stop-color:#FEF7DF"/>
</linearGradient>
-<path d="M308.5,320l-2.408,5.777s-1.302,2.063-2.021,3.193l-5.339-2.875,3.434-5.793-1.74,0.235-2.975,4.868-4.503-1.654-3.323-2.565-2.061-0.281,5.362,3.656,4.149,1.462-4.163,7.088-13.75-6.868-12.56-2.126v1.443l12.28,2.146,13.31,6.653-0.156,0.271-6.79,9.543-6.192-3.024-12.45-2.557,0.004,0.727,12.41,2.585,5.806,2.858-5.767,8.097-8.864,10.52,1.646,0.311,7.218-8.368,7.087-9.898,5.269,2.601-11.27,16.82,1.022-0.191,11.77-17.66,13.18-19.87,3.178-6.996-0.7,0.1zm-15.6,25.5l-1.23,1.898-5.126-2.626,6.429-9.144,0.505-0.667,5,2.496-5.6,8zm6.4-9.2l-5.063-2.527,4.145-7.047,5.313,2.858-4.3,6.6z" fill="url(#SVGID_70_)"/>
-<polygon fill="#FFFFFF" points="301,358.1,306.1,347.3,310.7,358.1,306.1,355.3"/>
-<polygon fill-opacity="0.4" points="310.7,358.1,306.1,347.3,306.1,355.3"/>
-<path d="M284.1,318.2c-1.02,0-1.842,0.813-1.842,1.813,0,0.993,0.822,1.809,1.842,1.809,1.016,0,1.84-0.815,1.84-1.809,0-1-0.8-1.8-1.8-1.8z" fill="none"/>
-<rect fill="none" height="71.71" width="71.63" x="257.1" y="304.3"/>
-<path d="M284.2,345.5l5.246-9.09,9.076-5.251-9.076-5.246-2.563-5.179-4.963-0.69-2.962,5.863-9.079,5.246,9.081,5.251,5.4,9.1zm2.4-19.3h2.637v2.635h-2.637v-2.57zm0,7.3h2.637v2.636h-2.637v-2.554zm-7.3-7.3h2.632v2.635h-2.632v-2.57zm0,7.3h2.632v2.636h-2.632v-2.554z" fill-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_71_" x1="-588.5" x2="-588.5" y1="-865.9" y2="-891.4">
-<stop offset="0" stop-color="#DAFF8C"/>
-<stop offset="0.1879" stop-color="#DAFF8C"/>
-<stop offset="1" stop-color="#77C949"/>
+<path d="M308.527,319.968l-2.408,5.777c0,0-1.302,2.063-2.021,3.193l-5.339-2.875l3.434-5.793l-1.74,0.235 l-2.975,4.868l-4.503-1.654l-3.323-2.565l-2.061-0.281l5.362,3.656l4.149,1.462l-4.163,7.088l-13.754-6.868l-12.564-2.126v1.443 l12.277,2.146l13.311,6.653l-0.156,0.271l-6.79,9.543l-6.192-3.024l-12.447-2.557l0.004,0.727l12.41,2.585l5.806,2.858l-5.767,8.097 l-8.864,10.519l1.646,0.311l7.218-8.368l7.087-9.898l5.269,2.601l-11.268,16.819l1.022-0.191l11.767-17.663l13.185-19.873 l3.178-6.996L308.527,319.968z M292.944,345.527l-1.23,1.898l-5.126-2.626l6.429-9.144l0.505-0.667l5,2.496L292.944,345.527z M299.316,336.268l-5.063-2.527l4.145-7.047l5.313,2.858L299.316,336.268z" fill="url(#SVGID_70_)"/>
+<polygon fill="#FFFFFF" points="300.967,358.081 306.1,347.254 310.711,358.081 306.1,355.285 "/>
+<polygon fill-opacity="0.4" points="310.711,358.081 306.1,347.254 306.1,355.285 "/>
+<path d="M284.105,318.155c-1.02,0-1.842,0.813-1.842,1.813c0,0.993,0.822,1.809,1.842,1.809 c1.016,0,1.84-0.815,1.84-1.809C285.947,318.965,285.121,318.155,284.105,318.155z" fill="none"/>
+<rect fill="none" height="71.71" width="71.628" x="257.123" y="304.29"/>
+<path d="M284.217,345.545l5.246-9.09l9.076-5.251l-9.076-5.246l-2.563-5.179l-4.963-0.69l-2.962,5.863 l-9.079,5.246l9.081,5.251L284.217,345.545z M286.553,326.23h2.637v2.635h-2.637V326.23z M286.553,333.546h2.637v2.636h-2.637 V333.546z M279.251,326.23h2.632v2.635h-2.632V326.23z M279.251,333.546h2.632v2.636h-2.632V333.546z" fill-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_71_" x1="-588.4883" x2="-588.4883" y1="-865.8726" y2="-891.3674">
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
-<polygon fill="url(#SVGID_71_)" points="297.1,330.5,289.9,326.3,289.9,328.9,285.8,328.9,285.8,324.8,288.4,324.8,284.2,317.6,280.1,324.8,282.6,324.8,282.6,328.9,278.5,328.9,278.5,326.3,271.4,330.5,278.5,334.6,278.5,332.1,282.6,332.1,282.6,336.2,280.1,336.2,284.2,343.4,288.4,336.2,285.8,336.2,285.8,332.1,289.9,332.1,289.9,334.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_72_" x1="-588.5" x2="-588.5" y1="-867.1" y2="-890">
-<stop offset="0" stop-color="#AEE737"/>
-<stop offset="0.7273" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<polygon fill="url(#SVGID_71_)" points="297.082,330.469 289.92,326.332 289.92,328.865 285.822,328.865 285.822,324.766 288.354,324.766 284.217,317.597 280.083,324.766 282.611,324.766 282.611,328.865 278.519,328.865 278.519,326.332 271.355,330.469 278.519,334.613 278.519,332.082 282.611,332.082 282.611,336.178 280.083,336.178 284.217,343.35 288.354,336.178 285.822,336.178 285.822,332.082 289.92,332.082 289.92,334.613 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_72_" x1="-588.4883" x2="-588.4883" y1="-867.0586" y2="-890.0279">
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<polygon fill="url(#SVGID_72_)" points="281.3,336.9,283.3,336.9,283.3,331.3,277.8,331.3,277.8,333.3,272.8,330.5,277.8,327.6,277.8,329.6,283.3,329.6,283.3,324,281.3,324,284.2,319.1,287.1,324,285.1,324,285.1,329.6,290.6,329.6,290.6,327.6,295.6,330.5,290.6,333.3,290.6,331.3,285.1,331.3,285.1,336.9,287.1,336.9,284.2,341.9"/>
-<path d="M284.2,334.8c-1.979,0-3.597-1.613-3.597-3.605,0-1.984,1.61-3.604,3.597-3.604s3.604,1.615,3.604,3.604c0,2-1.6,3.6-3.6,3.6z" fill-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_73_" x1="-588.5" x2="-588.5" y1="-875.5" y2="-881.4">
-<stop offset="0" stop-color="#DAFF8C"/>
-<stop offset="0.1879" stop-color="#DAFF8C"/>
-<stop offset="1" stop-color="#77C949"/>
+<polygon fill="url(#SVGID_72_)" points="281.348,336.909 283.342,336.909 283.342,331.347 277.791,331.347 277.791,333.345 272.818,330.469 277.791,327.599 277.791,329.595 283.342,329.595 283.342,324.036 281.348,324.036 284.217,319.059 287.088,324.036 285.094,324.036 285.094,329.595 290.647,329.595 290.647,327.599 295.619,330.469 290.647,333.345 290.647,331.347 285.094,331.347 285.094,336.909 287.088,336.909 284.217,341.885 "/>
+<path d="M284.217,334.806c-1.979,0-3.597-1.613-3.597-3.605c0-1.984,1.61-3.604,3.597-3.604 s3.604,1.615,3.604,3.604C287.816,333.19,286.203,334.806,284.217,334.806L284.217,334.806z" fill-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_73_" x1="-588.4893" x2="-588.4893" y1="-875.4971" y2="-881.4367">
+<stop offset="0" style="stop-color:#DAFF8C"/>
+<stop offset="0.1879" style="stop-color:#DAFF8C"/>
+<stop offset="1" style="stop-color:#77C949"/>
</linearGradient>
-<circle cx="284.2" cy="330.6" fill="url(#SVGID_73_)" r="2.953"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_74_" x1="-588.5" x2="-588.5" y1="-876.1" y2="-880.8">
-<stop offset="0" stop-color="#AEE737"/>
-<stop offset="0.7273" stop-color="#66A00E"/>
-<stop offset="1" stop-color="#387300"/>
+<circle cx="284.217" cy="330.556" fill="url(#SVGID_73_)" r="2.953"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 872.707 -547.8535)" gradientUnits="userSpaceOnUse" id="SVGID_74_" x1="-588.4873" x2="-588.4873" y1="-876.1348" y2="-880.775">
+<stop offset="0" style="stop-color:#AEE737"/>
+<stop offset="0.7273" style="stop-color:#66A00E"/>
+<stop offset="1" style="stop-color:#387300"/>
</linearGradient>
-<path d="M284.2,332.9c-1.27,0-2.299-1.034-2.299-2.308,0-1.272,1.029-2.307,2.299-2.307,1.271,0,2.305,1.032,2.305,2.307,0,1.2-1,2.3-2.3,2.3z" fill="url(#SVGID_74_)"/>
-<rect fill="none" height="35.86" width="35.81" x="292.9" y="340.1"/>
-<rect fill="none" height="35.85" width="35.81" x="292.9" y="340.1"/>
-<path d="M311,353.3c0.584,0,1.055-0.145,1.408-0.434,0.354-0.29,0.529-0.687,0.529-1.197,0-0.49-0.182-0.888-0.547-1.183-0.363-0.295-0.826-0.445-1.391-0.445-0.594,0-1.063,0.146-1.408,0.439-0.344,0.293-0.514,0.688-0.514,1.188,0,0.509,0.176,0.907,0.531,1.197,0.4,0.2,0.8,0.4,1.4,0.4z" fill-opacity="0.1"/>
-<path d="M311,352.9c0.584,0,1.055-0.143,1.408-0.433,0.354-0.289,0.529-0.686,0.529-1.196,0-0.491-0.182-0.886-0.547-1.183-0.363-0.298-0.826-0.446-1.391-0.446-0.594,0-1.063,0.146-1.408,0.438-0.344,0.295-0.514,0.691-0.514,1.19,0,0.509,0.176,0.907,0.531,1.196,0.4,0.3,0.8,0.4,1.4,0.4z" fill-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7148 -562.4685)" gradientUnits="userSpaceOnUse" id="SVGID_75_" x1="295.1" x2="295.1" y1="-109400" y2="-109400">
-<stop offset="0" stop-color="#E5FFB2"/>
-<stop offset="0.39" stop-color="#6AAB18"/>
-<stop offset="0.68" stop-color="#247307"/>
-<stop offset="1" stop-color="#C2FF4A"/>
+<path d="M284.217,332.86c-1.27,0-2.299-1.034-2.299-2.308c0-1.272,1.029-2.307,2.299-2.307 c1.271,0,2.305,1.032,2.305,2.307C286.518,331.826,285.488,332.86,284.217,332.86L284.217,332.86z" fill="url(#SVGID_74_)"/>
+<rect fill="none" height="35.855" width="35.813" x="292.935" y="340.145"/>
+<rect fill="none" height="35.854" width="35.811" x="292.935" y="340.145"/>
+<path d="M311.018,353.266c0.584,0,1.055-0.145,1.408-0.434c0.354-0.29,0.529-0.687,0.529-1.197 c0-0.49-0.182-0.888-0.547-1.183c-0.363-0.295-0.826-0.445-1.391-0.445c-0.594,0-1.063,0.146-1.408,0.439 c-0.344,0.293-0.514,0.688-0.514,1.188c0,0.509,0.176,0.907,0.531,1.197C309.973,353.119,310.439,353.266,311.018,353.266z" fill-opacity="0.1"/>
+<path d="M311.018,352.898c0.584,0,1.055-0.143,1.408-0.433c0.354-0.289,0.529-0.686,0.529-1.196 c0-0.491-0.182-0.886-0.547-1.183c-0.363-0.298-0.826-0.446-1.391-0.446c-0.594,0-1.063,0.146-1.408,0.438 c-0.344,0.295-0.514,0.691-0.514,1.19c0,0.509,0.176,0.907,0.531,1.196C309.973,352.756,310.439,352.898,311.018,352.898z" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7148 -562.4685)" gradientUnits="userSpaceOnUse" id="SVGID_75_" x1="295.0654" x2="295.0654" y1="-109383.8438" y2="-109435">
+<stop offset="0" style="stop-color:#E5FFB2"/>
+<stop offset="0.39" style="stop-color:#6AAB18"/>
+<stop offset="0.68" style="stop-color:#247307"/>
+<stop offset="1" style="stop-color:#C2FF4A"/>
</linearGradient>
-<ellipse cx="310.8" cy="358.1" fill="url(#SVGID_75_)" rx="12.79" ry="12.8"/>
-<radialGradient cx="310.8" cy="358.1" gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7871 -571.1272)" gradientUnits="userSpaceOnUse" id="SVGID_76_" r="12.43">
-<stop offset="0" stop-color="#AFED23"/>
-<stop offset="0.81" stop-color="#358C0C"/>
-<stop offset="1" stop-color="#67AD1A"/>
+<ellipse cx="310.84" cy="358.071" fill="url(#SVGID_75_)" rx="12.791" ry="12.805"/>
+<radialGradient cx="310.8408" cy="358.0713" gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7871 -571.1272)" gradientUnits="userSpaceOnUse" id="SVGID_76_" r="12.4316">
+<stop offset="0" style="stop-color:#AFED23"/>
+<stop offset="0.81" style="stop-color:#358C0C"/>
+<stop offset="1" style="stop-color:#67AD1A"/>
</radialGradient>
-<path d="M310.8,370.5c-6.849,0-12.42-5.578-12.42-12.44,0-6.86,5.573-12.44,12.42-12.44s12.43,5.578,12.43,12.44c0.1,6.8-5.5,12.4-12.4,12.4z" fill="url(#SVGID_76_)"/>
-<polygon fill-opacity="0.1" points="308,356.8,309.2,356.8,309.2,367.4,312.8,367.4,312.8,354.8,308,354.8"/>
-<polygon fill-opacity="0.2" points="308,356.4,309.2,356.4,309.2,367,312.8,367,312.8,354.4,308,354.4"/>
-<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7148 -562.4685)" gradientUnits="userSpaceOnUse" id="SVGID_77_" x1="297.3" x2="297.3" y1="-16270" y2="-16270">
-<stop offset="0" stop-color="#F6FDFF"/>
-<stop offset="1" stop-color="#ADB3B5"/>
+<path d="M310.84,370.51c-6.849,0-12.424-5.578-12.424-12.437c0-6.86,5.573-12.44,12.424-12.44 s12.426,5.578,12.426,12.438C323.264,364.93,317.69,370.51,310.84,370.51L310.84,370.51z" fill="url(#SVGID_76_)"/>
+<polygon fill-opacity="0.1" points="308.006,356.781 309.227,356.781 309.227,367.36 312.781,367.36 312.781,354.758 308.006,354.758 "/>
+<polygon fill-opacity="0.2" points="308.006,356.413 309.227,356.413 309.227,366.995 312.781,366.995 312.781,354.39 308.006,354.39 "/>
+<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7148 -562.4685)" gradientUnits="userSpaceOnUse" id="SVGID_77_" x1="297.3262" x2="297.3262" y1="-16267.0059" y2="-16271.7813">
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_77_)" points="308,356.1,309.2,356.1,309.2,366.6,312.8,366.6,312.8,354,308,354"/>
-<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7148 -562.4685)" gradientUnits="userSpaceOnUse" id="SVGID_78_" x1="288.1" x2="288.1" y1="-16270" y2="-16270">
-<stop offset="0" stop-color="#F6FDFF"/>
-<stop offset="1" stop-color="#ADB3B5"/>
+<polygon fill="url(#SVGID_77_)" points="308.006,356.052 309.227,356.052 309.227,366.629 312.781,366.629 312.781,354.024 308.006,354.024 "/>
+<linearGradient gradientTransform="matrix(0.0078 0 0 -0.0078 -1115.7148 -562.4685)" gradientUnits="userSpaceOnUse" id="SVGID_78_" x1="288.0889" x2="288.0889" y1="-16268.0781" y2="-16271.9414">
+<stop offset="0" style="stop-color:#F6FDFF"/>
+<stop offset="1" style="stop-color:#ADB3B5"/>
</linearGradient>
-<path d="M311,352.7c0.586,0,1.055-0.146,1.408-0.435,0.354-0.291,0.529-0.69,0.529-1.196,0-0.493-0.18-0.888-0.545-1.185-0.363-0.296-0.828-0.444-1.393-0.444-0.592,0-1.061,0.145-1.406,0.438-0.348,0.291-0.52,0.689-0.52,1.19,0,0.506,0.176,0.905,0.529,1.196,0.4,0.3,0.8,0.4,1.4,0.4z" fill="url(#SVGID_78_)"/>
+<path d="M311.004,352.719c0.586,0,1.055-0.146,1.408-0.435c0.354-0.291,0.529-0.69,0.529-1.196 c0-0.493-0.18-0.888-0.545-1.185c-0.363-0.296-0.828-0.444-1.393-0.444c-0.592,0-1.061,0.145-1.406,0.438 c-0.348,0.291-0.52,0.689-0.52,1.19c0,0.506,0.176,0.905,0.529,1.196C309.961,352.573,310.426,352.719,311.004,352.719z" fill="url(#SVGID_78_)"/>
<defs>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -886.5 362.5005)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-352" x2="-352" y1="-938.5" y2="-910.6">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -886.5 362.5005)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-352.001" x2="-352.001" y1="-938.4995" y2="-910.578">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
</defs>
-<defs/>
-</svg>
\ No newline at end of file
+<defs>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -886.5 362.5005)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-352.001" x2="-352.001" y1="-938.4995" y2="-910.578">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
+</linearGradient>
+</defs>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_theme_preview_thumbnail.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_theme_preview_thumbnail.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,116 +1,116 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 60 60" width="60px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="#FFFFFF" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="55" x2="55" y1="3.278" y2="9.974">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="55" x2="55" y1="3.2778" y2="9.9743">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="6.667" width="10" x="50" y="3.333"/>
<rect fill="#AAAAAF" height="0.167" width="10" x="50" y="9.833"/>
<rect fill="#FFFFFF" fill-opacity="0.8" height="6.5" width="0.166" x="50" y="3.333"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="59.83,3.333,59.83,9.667,50.17,9.667,50.17,9.833,60,9.833,60,3.333" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="3.278" y2="9.974">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="59.834,3.333 59.834,9.667 50.166,9.667 50.166,9.833 60,9.833 60,3.333 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="3.2778" y2="9.9743">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="6.667" width="10" y="3.333"/>
<rect fill="#AAAAAF" height="0.167" width="10" y="9.833"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="0.166,9.667,0.166,3.333,0,3.333,0,9.833,9.834,9.833,9.834,9.667" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="0.166,9.667 0.166,3.333 0,3.333 0,9.833 9.834,9.833 9.834,9.667 " stroke-opacity="0.4"/>
<rect fill-opacity="0.2" height="6.5" width="0.166" x="9.834" y="3.333"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.278" y2="9.974">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="3.2778" y2="9.9743">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="6.667" width="40" x="10" y="3.333"/>
<rect fill="#AAAAAF" height="0.167" width="40" x="10" y="9.833"/>
<rect fill="#FFFFFF" fill-opacity="0.8" height="6.5" width="0.166" x="10" y="3.333"/>
-<rect fill-opacity="0.2" height="6.5" width="0.166" x="49.83" y="3.333"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="0.167" stroke-opacity="0.4" width="39.67" x="10.17" y="9.667"/>
+<rect fill-opacity="0.2" height="6.5" width="0.166" x="49.834" y="3.333"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.167" stroke-opacity="0.4" width="39.668" x="10.166" y="9.667"/>
<rect height="3.333" width="60"/>
-<path d="M6.334,5.333c0.274,0,0.372,0.186,0.217,0.412l-1.268,1.843c-0.156,0.227-0.41,0.227-0.566,0l-1.268-1.842c-0.155-0.227-0.057-0.413,0.217-0.413h2.668z" fill="#3C3C3C"/>
-<path d="M48,5.333c0.275,0,0.373,0.186,0.217,0.412l-1.268,1.842c-0.154,0.227-0.41,0.227-0.566,0l-1.266-1.842c-0.156-0.227-0.059-0.412,0.217-0.412h2.67z" fill="#3C3C3C"/>
-<linearGradient gradientTransform="matrix(0 -1 1 0 -415.5 -1253.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1254" x2="-1256" y1="469.5" y2="469.5">
-<stop offset="0" stop-color="#92DE2F"/>
-<stop offset="1" stop-color="#19B016"/>
+<path d="M6.334,5.333c0.274,0,0.372,0.186,0.217,0.412L5.283,7.588c-0.156,0.227-0.41,0.227-0.566,0L3.449,5.746 C3.294,5.519,3.392,5.333,3.666,5.333H6.334z" fill="#3C3C3C"/>
+<path d="M48,5.333c0.275,0,0.373,0.186,0.217,0.412l-1.268,1.842c-0.154,0.227-0.41,0.227-0.566,0l-1.266-1.842 c-0.156-0.227-0.059-0.412,0.217-0.412H48z" fill="#3C3C3C"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 -415.5 -1253.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1253.9995" x2="-1256.4995" y1="469.499" y2="469.499">
+<stop offset="0" style="stop-color:#92DE2F"/>
+<stop offset="1" style="stop-color:#19B016"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="52,1.167,51.67,1.167,51.67,2.333,52,2.333,52,3,56.33,3,56.33,0.5,52,0.5"/>
-<rect fill-opacity="0.2" height="1.333" stroke-opacity="0.2" width="0.334" x="55.17" y="1.083"/>
-<polygon fill-opacity="0.2" points="53,1.083,53,1.583,52.5,1.583,52.5,1.917,53,1.917,53,2.417,53.33,2.417,53.33,1.917,53.83,1.917,53.83,1.583,53.33,1.583,53.33,1.083" stroke-opacity="0.2"/>
+<polygon fill="url(#SVGID_4_)" points="52,1.167 51.666,1.167 51.666,2.333 52,2.333 52,3 56.334,3 56.334,0.5 52,0.5 "/>
+<rect fill-opacity="0.2" height="1.333" stroke-opacity="0.2" width="0.334" x="55.166" y="1.083"/>
+<polygon fill-opacity="0.2" points="53,1.083 53,1.583 52.5,1.583 52.5,1.917 53,1.917 53,2.417 53.334,2.417 53.334,1.917 53.834,1.917 53.834,1.583 53.334,1.583 53.334,1.083 " stroke-opacity="0.2"/>
<rect fill="none" height="2.5" width="5" x="51.5" y="0.5"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-297.8" x2="-297.8" y1="-1258" y2="-1254">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-297.751" x2="-297.751" y1="-1258.1616" y2="-1253.5126">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="0.5" width="0.666" x="4" y="1.5"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-297.8" x2="-297.8" y1="-1258" y2="-1254">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-297.751" x2="-297.751" y1="-1258.1626" y2="-1253.5135">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="1" width="0.666" x="5" y="1.25"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-297.8" x2="-297.8" y1="-1258" y2="-1254">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-297.751" x2="-297.751" y1="-1258.1636" y2="-1253.5145">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="1.5" width="0.666" x="6" y="1"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-297.8" x2="-297.8" y1="-1258" y2="-1254">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-297.751" x2="-297.751" y1="-1258.1646" y2="-1253.5155">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="2" width="0.666" x="7" y="0.75"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-297.8" x2="-297.8" y1="-1258" y2="-1254">
-<stop offset="0" stop-color="#47DAFA"/>
-<stop offset="1" stop-color="#0070FA"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -1249.5 299.5005)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-297.751" x2="-297.751" y1="-1258.1655" y2="-1253.5165">
+<stop offset="0" style="stop-color:#47DAFA"/>
+<stop offset="1" style="stop-color:#0070FA"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="2.5" width="0.666" x="8" y="0.5"/>
<rect fill="none" height="2.5" width="5" x="3.834" y="0.5"/>
-<path d="M2.255,2.5h0.323v-0.806l0.588-0.708v-0.153h-1.5v0.152l0.589,0.708v0.807z" fill="#FFFFFF"/>
-<path d="M57.17,2.667h1.168v-1.804h-0.341v-0.196h-0.499v0.196h-0.328v1.804z" fill="#FFFFFF"/>
-<path d="M56.08,5.417h-1.08v-0.667c0-0.275-0.182-0.367-0.404-0.205l-1.359,0.994c-0.221,0.162-0.221,0.428,0,0.59l1.359,0.993c0.22,0.162,0.4,0.07,0.4-0.205v-0.667h1.084c0.413,0,0.75,0.336,0.75,0.75s-0.337,0.75-0.75,0.75h-2.5c-0.23,0-0.418,0.187-0.418,0.417s0.188,0.417,0.418,0.417h2.5c0.873,0,1.582-0.71,1.582-1.583s-0.7-1.584-1.58-1.584z" fill="#3C3C3C"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="22.5" x2="22.5" y1="49.92" y2="59.96">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<path d="M2.255,2.5h0.323V1.694l0.588-0.708V0.833h-1.5v0.152l0.589,0.708V2.5L2.255,2.5z" fill="#FFFFFF"/>
+<path d="M57.166,2.667h1.168V0.863h-0.341V0.667h-0.499v0.196h-0.328V2.667z" fill="#FFFFFF"/>
+<path d="M56.084,5.417H55V4.75c0-0.275-0.182-0.367-0.404-0.205l-1.359,0.994c-0.221,0.162-0.221,0.428,0,0.59 l1.359,0.993C54.818,7.284,55,7.192,55,6.917V6.25h1.084c0.413,0,0.75,0.336,0.75,0.75s-0.337,0.75-0.75,0.75h-2.5 c-0.23,0-0.418,0.187-0.418,0.417c0,0.23,0.188,0.417,0.418,0.417h2.5c0.873,0,1.582-0.71,1.582-1.583S56.957,5.417,56.084,5.417z" fill="#3C3C3C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="22.5" x2="22.5" y1="49.917" y2="59.962">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="10" width="15" x="15" y="50"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="9.667" stroke-opacity="0.9" width="0.166" x="15" y="50.17"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="9.667" stroke-opacity="0.5" width="0.166" x="29.83" y="50.17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.5" x2="37.5" y1="49.92" y2="59.96">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" height="9.667" stroke-opacity="0.9" width="0.166" x="15" y="50.167"/>
+<rect fill="#9696A0" fill-opacity="0.5" height="9.667" stroke-opacity="0.5" width="0.166" x="29.834" y="50.167"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.5" x2="37.5" y1="49.917" y2="59.962">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="10" width="15" x="30" y="50"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="9.667" stroke-opacity="0.9" width="0.166" x="30" y="50.17"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="9.667" stroke-opacity="0.5" width="0.166" x="44.83" y="50.17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="52.5" x2="52.5" y1="49.92" y2="59.96">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" height="9.667" stroke-opacity="0.9" width="0.166" x="30" y="50.167"/>
+<rect fill="#9696A0" fill-opacity="0.5" height="9.667" stroke-opacity="0.5" width="0.166" x="44.834" y="50.167"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="52.5" x2="52.5" y1="49.917" y2="59.962">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="10" width="15" x="45" y="50"/>
-<rect fill="#FFFFFF" fill-opacity="0.9" height="9.667" stroke-opacity="0.9" width="0.166" x="45" y="50.17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="7.5" x2="7.5" y1="49.92" y2="59.96">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D7D7DC"/>
-<stop offset="0.9" stop-color="#CDCDD2"/>
-<stop offset="1" stop-color="#C3C3C8"/>
+<rect fill="#FFFFFF" fill-opacity="0.9" height="9.667" stroke-opacity="0.9" width="0.166" x="45" y="50.167"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="7.5" x2="7.5" y1="49.917" y2="59.962">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D7D7DC"/>
+<stop offset="0.9" style="stop-color:#CDCDD2"/>
+<stop offset="1" style="stop-color:#C3C3C8"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="10" width="15" y="50"/>
-<rect fill-opacity="0.1" height="0.166" stroke-opacity="0.1" width="60" y="59.83"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="0.167" stroke-opacity="0.4" width="60" y="59.67"/>
-<rect fill="#9696A0" fill-opacity="0.5" height="9.667" stroke-opacity="0.5" width="0.166" x="14.83" y="50.17"/>
+<rect fill-opacity="0.1" height="0.166" stroke-opacity="0.1" width="60" y="59.834"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.167" stroke-opacity="0.4" width="60" y="59.667"/>
+<rect fill="#9696A0" fill-opacity="0.5" height="9.667" stroke-opacity="0.5" width="0.166" x="14.834" y="50.167"/>
<circle cx="7.354" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
-<circle cx="22.54" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
-<circle cx="37.6" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
-<circle cx="52.64" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
-</svg>
\ No newline at end of file
+<circle cx="22.544" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
+<circle cx="37.595" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
+<circle cx="52.645" cy="55" fill="none" r="2.928" stroke="#505050" stroke-width="0.9352"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_titlebar_handle_normal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_titlebar_handle_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 20 60" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M20,60h-16c-2.209,0-4-1.791-4-4v-52c0-2.209,1.791-4,4-4h16v60z" fill="url(#SVGID_1_)"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3v52c0,1.654,1.346,3,3,3h15v-58h-15zm14,57h-14c-1.103,0-2-0.897-2-2v-52c0-1.103,0.897-2,2-2h14v56z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M4,0c-2.209,0-4,1.791-4,4v52c0,2.209,1.791,4,4,4h16v-60h-16zm15,59h-15c-1.652,0-2.998-1.346-2.998-3.001v-52c0-1.654,1.346-3,2.998-3h15v58z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<rect fill="#FFFFFF" fill-opacity="0.7" height="1" stroke-opacity="0.7" width="8" x="6" y="21"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="20"/>
-<rect fill="#FFFFFF" fill-opacity="0.7" height="1" stroke-opacity="0.7" width="8" x="6" y="31"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="30"/>
-<rect fill="#FFFFFF" fill-opacity="0.7" height="1" stroke-opacity="0.7" width="8" x="6" y="41"/>
-<rect fill-opacity="0.1" height="1" stroke-opacity="0.1" width="8" x="6" y="40"/>
+<path d="M20,60H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h16V60z" fill="url(#SVGID_1_)"/>
+<path d="M4,1C2.346,1,1,2.346,1,4v52c0,1.654,1.346,3,3,3h15V1H4z M18,58H4c-1.103,0-2-0.897-2-2V4 c0-1.103,0.897-2,2-2h14V58z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M4,0C1.791,0,0,1.791,0,4v52c0,2.209,1.791,4,4,4h16V0H4z M19,59H4c-1.652,0-2.998-1.346-2.998-3.001V4 c0-1.654,1.346-3,2.998-3h15V59z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<rect fill="#FFFFFF" fill-opacity="0.7" fill-rule="evenodd" height="1" stroke-opacity="0.7" width="8" x="6" y="21"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="20"/>
+<rect fill="#FFFFFF" fill-opacity="0.7" fill-rule="evenodd" height="1" stroke-opacity="0.7" width="8" x="6" y="31"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="30"/>
+<rect fill="#FFFFFF" fill-opacity="0.7" fill-rule="evenodd" height="1" stroke-opacity="0.7" width="8" x="6" y="41"/>
+<rect fill-opacity="0.1" fill-rule="evenodd" height="1" stroke-opacity="0.1" width="8" x="6" y="40"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y2="59.33">
-<stop offset="0" stop-color="#FAFAFF"/>
-<stop offset="0.9" stop-color="#D2D2DC"/>
-<stop offset="0.9" stop-color="#C8C8D2"/>
-<stop offset="1" stop-color="#BEBEC8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="0" y2="59.3335">
+<stop offset="0" style="stop-color:#FAFAFF"/>
+<stop offset="0.9" style="stop-color:#D2D2DC"/>
+<stop offset="0.9" style="stop-color:#C8C8D2"/>
+<stop offset="1" style="stop-color:#BEBEC8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_titlebar_handle_pressed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_titlebar_handle_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60px" version="1.1" viewBox="0 0 20 60" width="20px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M20,60h-16c-2.209,0-4-1.791-4-4v-52c0-2.209,1.791-4,4-4h16v60z" fill="url(#SVGID_1_)"/>
-<path d="M4,1c-1.654,0-3,1.346-3,3v52c0,1.654,1.346,3,3,3h15v-58h-15zm14,57h-14c-1.104,0-2-0.897-2-2v-52c0-1.103,0.896-2,2-2h14v56z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M4,0c-2.209,0-4,1.791-4,4v52c0,2.209,1.791,4,4,4h16v-60h-16zm15,59h-15c-1.652,0-2.998-1.346-2.998-3.001v-52c0-1.654,1.346-3,2.998-3h15v58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="8" x="6" y="21"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="8" x="6" y="20"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="8" x="6" y="31"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="8" x="6" y="30"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="8" x="6" y="41"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="8" x="6" y="40"/>
+<path d="M20,60H4c-2.209,0-4-1.791-4-4V4c0-2.209,1.791-4,4-4h16V60z" fill="url(#SVGID_1_)"/>
+<path d="M4,1C2.346,1,1,2.346,1,4v52c0,1.654,1.346,3,3,3h15V1H4z M18,58H4c-1.104,0-2-0.897-2-2V4 c0-1.103,0.896-2,2-2h14V58z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M4,0C1.791,0,0,1.791,0,4v52c0,2.209,1.791,4,4,4h16V0H4z M19,59H4c-1.652,0-2.998-1.346-2.998-3.001V4 c0-1.654,1.346-3,2.998-3h15V59z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="8" x="6" y="21"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="8" x="6" y="20"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="8" x="6" y="31"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="8" x="6" y="30"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" fill-rule="evenodd" height="1" stroke-opacity="0.4" width="8" x="6" y="41"/>
+<rect fill-opacity="0.2" fill-rule="evenodd" height="1" stroke-opacity="0.2" width="8" x="6" y="40"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="60" y2="0.3326">
-<stop offset="0" stop-color="#65B8CC"/>
-<stop offset="1" stop-color="#306D8C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.0005" x2="10.0005" y1="60" y2="0.3326">
+<stop offset="0" style="stop-color:#65B8CC"/>
+<stop offset="1" style="stop-color:#306D8C"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_titlebar_minimize.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_titlebar_minimize.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="40px" version="1.1" viewBox="0 0 10 40" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="8" y2="12">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.9995" x2="4.9995" y1="8" y2="12">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="5" cy="10" fill="url(#SVGID_1_)" r="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="28" y2="32">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.9995" x2="4.9995" y1="28" y2="32">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="5" cy="30" fill="url(#SVGID_2_)" r="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5" x2="5" y1="18" y2="22">
-<stop offset="0" stop-color="#66B8CC"/>
-<stop offset="1" stop-color="#3F89A9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="4.9995" x2="4.9995" y1="18" y2="22.0005">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
</linearGradient>
<circle cx="5" cy="20" fill="url(#SVGID_3_)" r="2"/>
<rect fill="none" height="40" width="10"/>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_trim_end_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M18.014,4.052V1.014C18.014,0.453,17.561,0,17,0 s-1.014,0.453-1.014,1.014v3.038C16.323,4.028,16.658,4,17,4S17.677,4.028,18.014,4.052z" fill="#FFFFFF" fill-rule="evenodd"/>
+<rect fill="none" height="34" width="34"/>
+<path d="M17,34C8.73,34,2,27.271,2,19c0-8.27,6.73-15,15-15s15,6.729,15,15C32,27.271,25.27,34,17,34L17,34z" fill="#969696"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="16.9995" x2="16.9995" y1="5" y2="33">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
+</linearGradient>
+<circle cx="17" cy="19" fill="url(#SVGID_1_)" r="14"/>
+<path d="M17,5C9.268,5,3,11.268,3,19c0,7.732,6.268,14,14,14s14-6.268,14-14C31,11.268,24.732,5,17,5z M17,32c-7.18,0-13-5.82-13-13C4,11.82,9.82,6,17,6s13,5.82,13,13C30,26.179,24.18,32,17,32z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16.9995" x2="16.9995" y1="13" y2="25">
+<stop offset="0" style="stop-color:#66B8CC"/>
+<stop offset="1" style="stop-color:#3F89A9"/>
+</linearGradient>
+<path d="M17,13c-3.314,0-6,2.687-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6C23,15.687,20.314,13,17,13z" fill="url(#SVGID_2_)"/>
+<path d="M17,13c-3.314,0-6,2.687-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6C23,15.687,20.314,13,17,13z M17,23.5 c-2.482,0-4.5-2.018-4.5-4.5c0-2.482,2.018-4.5,4.5-4.5s4.5,2.018,4.5,4.5C21.5,21.482,19.482,23.5,17,23.5z" fill-opacity="0.2"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_trim_end_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M18.014,4.052V1.014C18.014,0.453,17.561,0,17,0 s-1.014,0.453-1.014,1.014v3.038C16.323,4.028,16.658,4,17,4S17.677,4.028,18.014,4.052z" fill="#FFFFFF" fill-rule="evenodd"/>
+<rect fill="none" height="34" width="34"/>
+<path d="M17,34C8.73,34,2,27.271,2,19c0-8.27,6.73-15,15-15c8.27,0,15,6.729,15,15C32,27.271,25.27,34,17,34 L17,34z" fill="url(#SVGID_1_)"/>
+<path d="M17,8c7.59,0,13.868,5.674,14.85,13c0.088-0.656,0.15-1.32,0.15-2c0-8.27-6.73-15-15-15 C8.73,4,2,10.729,2,19c0,0.68,0.062,1.344,0.149,2C3.133,13.674,9.41,8,17,8z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M17,7c7.764,0,14.168,5.932,14.924,13.5C31.973,20.007,32,19.505,32,19c0-8.27-6.73-15-15-15 C8.73,4,2,10.729,2,19c0,0.506,0.027,1.008,0.076,1.5C2.831,12.932,9.236,7,17,7z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M17,6c7.932,0,14.43,6.196,14.95,14C31.971,19.667,32,19.337,32,19c0-8.27-6.73-15-15-15 C8.73,4,2,10.729,2,19c0,0.338,0.028,0.668,0.051,1C2.569,12.196,9.068,6,17,6z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M17,4C8.73,4,2,10.729,2,19c0,8.271,6.73,15,15,15c8.27,0,15-6.729,15-15C32,10.729,25.27,4,17,4z M17,33 C9.28,33,3,26.72,3,19C3,11.28,9.28,5,17,5c7.719,0,14,6.28,14,14C31,26.72,24.719,33,17,33z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.0005" x2="17.0005" y1="33.9995" y2="4.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#B4B4B4"/>
+</linearGradient>
+</defs>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_trim_start_normal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M18.014,4.052V1.014C18.014,0.453,17.561,0,17,0 s-1.014,0.453-1.014,1.014v3.038C16.323,4.028,16.658,4,17,4S17.677,4.028,18.014,4.052z" fill="#FFFFFF" fill-rule="evenodd"/>
+<rect fill="none" height="34" width="34"/>
+<path d="M17,34C8.73,34,2,27.271,2,19c0-8.27,6.73-15,15-15s15,6.729,15,15C32,27.271,25.27,34,17,34L17,34z" fill="#969696"/>
+<circle cx="17" cy="19" fill="url(#SVGID_1_)" r="14"/>
+<path d="M17,5C9.268,5,3,11.268,3,19c0,7.732,6.268,14,14,14s14-6.268,14-14C31,11.268,24.732,5,17,5z M17,32c-7.18,0-13-5.82-13-13C4,11.82,9.82,6,17,6s13,5.82,13,13C30,26.179,24.18,32,17,32z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M17,13c-3.314,0-6,2.687-6,6c0,3.314,2.686,6,6,6s6-2.686,6-6C23,15.687,20.314,13,17,13z M17,23.5 c-2.482,0-4.5-2.018-4.5-4.5c0-2.482,2.018-4.5,4.5-4.5s4.5,2.018,4.5,4.5C21.5,21.482,19.482,23.5,17,23.5z" fill-opacity="0.2"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="16.9995" x2="16.9995" y1="5" y2="33">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#EBEBF5"/>
+</linearGradient>
+</defs>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_trim_start_pressed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="34px" version="1.1" viewBox="0 0 34 34" width="34px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M18.014,4.052V1.014C18.014,0.453,17.561,0,17,0 s-1.014,0.453-1.014,1.014v3.038C16.323,4.028,16.658,4,17,4S17.677,4.028,18.014,4.052z" fill="#FFFFFF" fill-rule="evenodd"/>
+<rect fill="none" height="34" width="34"/>
+<path d="M17,34C8.73,34,2,27.271,2,19c0-8.27,6.73-15,15-15c8.27,0,15,6.729,15,15C32,27.271,25.27,34,17,34 L17,34z" fill="url(#SVGID_1_)"/>
+<path d="M17,8c7.59,0,13.868,5.674,14.85,13c0.088-0.656,0.15-1.32,0.15-2c0-8.27-6.73-15-15-15 C8.73,4,2,10.729,2,19c0,0.68,0.062,1.344,0.149,2C3.133,13.674,9.41,8,17,8z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M17,7c7.764,0,14.168,5.932,14.924,13.5C31.973,20.007,32,19.505,32,19c0-8.27-6.73-15-15-15 C8.73,4,2,10.729,2,19c0,0.506,0.027,1.008,0.076,1.5C2.831,12.932,9.236,7,17,7z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M17,6c7.932,0,14.43,6.196,14.95,14C31.971,19.667,32,19.337,32,19c0-8.27-6.73-15-15-15 C8.73,4,2,10.729,2,19c0,0.338,0.028,0.668,0.051,1C2.569,12.196,9.068,6,17,6z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M17,4C8.73,4,2,10.729,2,19c0,8.271,6.73,15,15,15c8.27,0,15-6.729,15-15C32,10.729,25.27,4,17,4z M17,33 C9.28,33,3,26.72,3,19C3,11.28,9.28,5,17,5c7.719,0,14,6.28,14,14C31,26.72,24.719,33,17,33z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<defs>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.0005" x2="17.0005" y1="33.9995" y2="4.0005">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#B4B4B4"/>
+</linearGradient>
+</defs>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_tumbler_divider.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_tumbler_divider.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="70px" version="1.1" viewBox="0 0 3 70" width="3px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill-opacity="0.2" height="70" stroke-opacity="0.2" width="2"/>
<rect fill-opacity="0.2" height="70" stroke-opacity="0.2" width="1" x="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="70" stroke-opacity="0.4" width="1" x="2"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_tuner_selected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_tuner_selected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="5" cy="5" fill-opacity="0.5" r="5" stroke-opacity="0.5"/>
<circle cx="5" cy="5" fill="#FFFF00" r="4"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_tuner_unselected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_graf_tuner_unselected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="10px" version="1.1" viewBox="0 0 10 10" width="10px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M5,0c-2.761,0-5,2.239-5,5,0,2.762,2.239,5,5,5,2.762,0,5-2.238,5-5,0-2.761-2.238-5-5-5zm0,6.5c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5,1.5,0.672,1.5,1.5-0.672,1.5-1.5,1.5z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M5,1c-2.209,0-4,1.791-4,4s1.791,4,4,4,4-1.791,4-4-1.791-4-4-4zm0,6.5c-1.381,0-2.5-1.12-2.5-2.5,0-1.381,1.119-2.5,2.5-2.5,1.38,0,2.5,1.119,2.5,2.5,0,1.38-1.12,2.5-2.5,2.5z" fill="#FFFF00"/>
-</svg>
\ No newline at end of file
+<path d="M5,0C2.239,0,0,2.239,0,5c0,2.762,2.239,5,5,5c2.762,0,5-2.238,5-5C10,2.239,7.762,0,5,0z M5,6.5 C4.172,6.5,3.5,5.828,3.5,5c0-0.828,0.672-1.5,1.5-1.5c0.828,0,1.5,0.672,1.5,1.5C6.5,5.828,5.828,6.5,5,6.5z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M5,1C2.791,1,1,2.791,1,5s1.791,4,4,4s4-1.791,4-4S7.209,1,5,1z M5,7.5C3.619,7.5,2.5,6.38,2.5,5 c0-1.381,1.119-2.5,2.5-2.5c1.38,0,2.5,1.119,2.5,2.5C7.5,6.38,6.38,7.5,5,7.5z" fill="#FFFF00"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_about.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_about.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,135 +1,137 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
+</linearGradient>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
-</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15,0-8.271,6.729-15,15-15s15,6.729,15,15c0,8.27-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M15.16,10.7c0.525,0,0.947-0.13,1.264-0.39,0.316-0.259,0.474-0.615,0.474-1.07,0-0.44-0.164-0.795-0.49-1.061-0.326-0.264-0.741-0.398-1.248-0.398-0.531,0-0.951,0.132-1.261,0.395-0.311,0.262-0.465,0.617-0.465,1.064,0,0.455,0.159,0.812,0.474,1.07,0.33,0.26,0.75,0.39,1.27,0.39z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M15.16,10.37c0.525,0,0.947-0.129,1.264-0.389,0.316-0.26,0.474-0.615,0.474-1.07,0-0.441-0.164-0.795-0.49-1.061s-0.741-0.398-1.248-0.398c-0.531,0-0.951,0.13-1.261,0.394-0.311,0.263-0.465,0.616-0.465,1.064,0,0.455,0.159,0.812,0.474,1.07,0.33,0.26,0.75,0.39,1.27,0.39z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="-2179" cy="3345" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="-2178.8628" cy="3345.4287" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</radialGradient>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1__)"/>
-<polygon fill-opacity="0.1" points="12.46,13.85,13.56,13.85,13.56,23.32,16.74,23.32,16.74,12.03,12.46,12.03" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.2" points="12.46,13.52,13.56,13.52,13.56,22.99,16.74,22.99,16.74,11.7,12.46,11.7" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179" x2="-2179" y1="3340" y2="3325">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1c7.721,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill="url(#SVGID_1__)"/>
+<polygon fill-opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 " stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.3994" x2="-2179.3994" y1="3340.2148" y2="3324.8184">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="12.46,13.19,13.56,13.19,13.56,22.66,16.74,22.66,16.74,11.38,12.46,11.38"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2179" x2="-2179" y1="3340" y2="3325">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<polygon fill="url(#SVGID_2__)" points="12.46,13.191 13.555,13.191 13.555,22.663 16.741,22.663 16.741,11.377 12.46,11.377 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2178.8477" x2="-2178.8477" y1="3340.2158" y2="3324.8235">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M15.15,10.2c0.524,0,0.945-0.129,1.262-0.389,0.316-0.259,0.475-0.615,0.475-1.07,0-0.441-0.163-0.795-0.489-1.061-0.327-0.264-0.743-0.397-1.248-0.397-0.531,0-0.952,0.131-1.262,0.394-0.312,0.262-0.466,0.617-0.466,1.064,0,0.455,0.159,0.812,0.477,1.07,0.32,0.269,0.74,0.389,1.26,0.389z" fill="url(#SVGID_3__)"/>
+<path d="M15.148,10.205c0.524,0,0.945-0.129,1.262-0.389c0.316-0.259,0.475-0.615,0.475-1.07 c0-0.441-0.163-0.795-0.489-1.061c-0.327-0.264-0.743-0.397-1.248-0.397c-0.531,0-0.952,0.131-1.262,0.394 c-0.312,0.262-0.466,0.617-0.466,1.064c0,0.455,0.159,0.812,0.477,1.07C14.212,10.076,14.63,10.205,15.148,10.205z" fill="url(#SVGID_3__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_accessibility.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_accessibility.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,35 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="605" x2="605" y1="788.3" y2="844.3">
-<stop offset="0" stop-color="#BDE3D5"/>
-<stop offset="0.3879" stop-color="#6598B3"/>
-<stop offset="0.6788" stop-color="#40568A"/>
-<stop offset="1" stop-color="#72B9C3"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="604.9609" x2="604.9609" y1="788.3066" y2="844.3066">
+<stop offset="0" style="stop-color:#BDE3D5"/>
+<stop offset="0.3879" style="stop-color:#6598B3"/>
+<stop offset="0.6788" style="stop-color:#40568A"/>
+<stop offset="1" style="stop-color:#72B9C3"/>
</linearGradient>
<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
-<radialGradient cx="605.2" cy="791.2" gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.47">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<radialGradient cx="605.2275" cy="791.2412" gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.4678">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</radialGradient>
-<path d="M30,57.2c-15,0-27.2-12.2-27.2-27.2s12.2-27.2,27.2-27.2,27.2,12.2,27.2,27.2-12.2,27.2-27.2,27.2z" fill="url(#SVGID_2_)"/>
-<circle cx="30" cy="18.35" r="6.724"/>
-<path d="M49.47,24.18c-0.694-1.098-2.146-1.425-3.243-0.728-18.28,11.58-30.24,0.748-30.74,0.275-0.941-0.89-2.426-0.848-3.317,0.091-0.896,0.943-0.859,2.431,0.084,3.327,0.079,0.073,4.402,4.061,11.7,5.644v17.15h12.1v-17.15c3.881-0.814,8.131-2.466,12.69-5.348,1.1-0.69,1.43-2.15,0.73-3.25z"/>
-<circle cx="30" cy="19.02" r="6.722"/>
-<path d="M49.47,24.86c-0.694-1.098-2.146-1.425-3.243-0.73-18.28,11.57-30.24,0.75-30.74,0.275-0.941-0.887-2.426-0.848-3.317,0.094-0.896,0.941-0.859,2.432,0.084,3.325,0.079,0.075,4.402,4.064,11.7,5.646v17.15h12.1v-17.17c3.881-0.814,8.131-2.465,12.69-5.346,1.1-0.69,1.43-2.14,0.73-3.24z"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="605" x2="605" y1="797" y2="836">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5273" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDD1CF"/>
+<path d="M30.001,57.197c-15,0-27.2-12.199-27.2-27.197c0-15,12.2-27.2,27.2-27.2C45,2.8,57.201,15,57.201,30 C57.201,44.998,45,57.197,30.001,57.197L30.001,57.197z" fill="url(#SVGID_2_)"/>
+<circle cx="30.001" cy="18.348" r="6.724"/>
+<path d="M49.466,24.184c-0.694-1.098-2.146-1.425-3.243-0.728c-18.279,11.575-30.235,0.748-30.744,0.275 c-0.941-0.89-2.426-0.848-3.317,0.091c-0.896,0.943-0.859,2.431,0.084,3.327c0.079,0.073,4.402,4.061,11.705,5.644v17.15h12.104 V32.779c3.881-0.814,8.131-2.466,12.688-5.348C49.837,26.737,50.166,25.282,49.466,24.184z"/>
+<circle cx="30.001" cy="19.02" r="6.722"/>
+<path d="M49.466,24.857c-0.694-1.098-2.146-1.425-3.243-0.73c-18.279,11.574-30.235,0.75-30.744,0.275 c-0.941-0.887-2.426-0.848-3.317,0.094c-0.896,0.941-0.859,2.432,0.084,3.325c0.079,0.075,4.402,4.064,11.705,5.646v17.149h12.104 V33.451c3.881-0.814,8.131-2.465,12.688-5.346C49.837,27.408,50.166,25.955,49.466,24.857z"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="604.9609" x2="604.9609" y1="796.9902" y2="835.9901">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDD1CF"/>
</linearGradient>
-<circle cx="30" cy="17.68" fill="url(#SVGID_3_)" r="6.724"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="605.6" x2="605.6" y1="797" y2="836">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5273" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDD1CF"/>
+<circle cx="30.001" cy="17.675" fill="url(#SVGID_3_)" r="6.724"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -574.9609 -786.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="605.6348" x2="605.6348" y1="796.9932" y2="835.9828">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDD1CF"/>
</linearGradient>
-<path d="M49.47,23.51c-0.694-1.098-2.146-1.425-3.243-0.729-18.28,11.58-30.24,0.748-30.74,0.275-0.941-0.887-2.426-0.848-3.317,0.094-0.896,0.941-0.859,2.429,0.084,3.324,0.079,0.075,4.402,4.065,11.7,5.646v17.15h12.1v-17.16c3.881-0.815,8.131-2.465,12.69-5.35,1.1-0.7,1.43-2.15,0.73-3.25z" fill="url(#SVGID_4_)"/>
+<path d="M49.466,23.513c-0.694-1.098-2.146-1.425-3.243-0.729c-18.279,11.575-30.235,0.748-30.744,0.275 c-0.941-0.887-2.426-0.848-3.317,0.094c-0.896,0.941-0.859,2.429,0.084,3.324c0.079,0.075,4.402,4.065,11.705,5.646V49.27h12.104 V32.107c3.881-0.815,8.131-2.465,12.688-5.35C49.837,26.064,50.166,24.611,49.466,23.513z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_account_setup.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_account_setup.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,97 +1,99 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M6.917,52.78v-1.5c0-4.818,2.172-8.519,6.283-10.7,1.059-0.564,3.787-1.602,6.194-2.518,0.87-0.33,1.66-0.631,2.299-0.881l0.986-0.43c0.268-0.776,0.156-2.01-0.009-2.316l-0.609-0.99,0.006-0.005c-0.477-0.811-0.928-1.653-1.347-2.516-1.481-0.104-2.916-1.358-3.614-3.185-0.731-1.911-0.45-3.901,0.643-4.98-0.984-4.118-0.784-7.288,0.595-9.426,0.821-1.273,2.087-2.172,3.585-2.55,1.423-1.708,3.591-3.575,7.675-3.575,4.679,0.156,8.319,1.761,10.55,4.641,2.173,2.806,2.864,6.706,1.954,11,1.044,1.116,1.256,3.072,0.488,4.962-0.677,1.671-1.935,2.824-3.292,3.062-0.272,0.561-0.566,1.127-0.875,1.689-0.381,0.694-0.74,1.304-1.099,1.863-0.177,0.303-0.299,1.717,0.037,2.46l1.25,0.499,1.473,0.547c2.69,0.999,5.678,2.108,6.696,2.639,1.05,0.547,6.29,3.635,6.289,10.71v1.5h-46.15z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M7.667,52.03v-0.75c0-4.523,2.035-7.994,5.884-10.04,1.021-0.544,3.739-1.577,6.136-2.489,0.844-0.32,1.638-0.622,2.279-0.873l1.283-0.559c0.522-1,0.371-2.794,0.048-3.299l-0.151-0.245-0.104-0.169s-1.311-2.285-1.853-3.443c-0.088,0.012-0.178,0.017-0.268,0.017-1.243,0-2.495-1.089-3.115-2.71-0.702-1.834-0.35-3.688,0.783-4.433-1.058-4.136-0.93-7.262,0.384-9.298,0.764-1.185,1.954-1.988,3.373-2.283,1.427-1.767,3.432-3.499,7.257-3.499,4.433,0.148,7.868,1.652,9.958,4.351,2.067,2.669,2.696,6.425,1.771,10.58,0,0-0.016,0.081-0.049,0.229,1.057,0.794,1.344,2.627,0.617,4.417-0.635,1.568-1.874,2.625-3.092,2.64-0.316,0.673-0.664,1.354-1.037,2.032-0.373,0.68-0.724,1.274-1.073,1.82-0.352,0.6-0.471,2.557,0.146,3.464l1.495,0.596,1.488,0.554c2.507,0.931,5.627,2.088,6.611,2.601s5.887,3.408,5.886,10.04v0.75h-44.68z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<g>
+<path d="M6.917,52.783v-1.5c0-4.818,2.172-8.519,6.283-10.699 c1.059-0.564,3.787-1.602,6.194-2.518c0.87-0.33,1.66-0.631,2.299-0.881l0.986-0.43c0.268-0.776,0.156-2.01-0.009-2.316l-0.609-0.99 l0.006-0.005c-0.477-0.811-0.928-1.653-1.347-2.516c-1.481-0.104-2.916-1.358-3.614-3.185c-0.731-1.911-0.45-3.901,0.643-4.98 c-0.984-4.118-0.784-7.288,0.595-9.426c0.821-1.273,2.087-2.172,3.585-2.55c1.423-1.708,3.591-3.575,7.675-3.575 c4.679,0.156,8.319,1.761,10.55,4.641c2.173,2.806,2.864,6.706,1.954,11.001c1.044,1.116,1.256,3.072,0.488,4.962 c-0.677,1.671-1.935,2.824-3.292,3.062c-0.272,0.561-0.566,1.127-0.875,1.689c-0.381,0.694-0.74,1.304-1.099,1.863 c-0.177,0.303-0.299,1.717,0.037,2.46l1.25,0.499l1.473,0.547c2.69,0.999,5.678,2.108,6.696,2.639 c1.05,0.547,6.29,3.635,6.289,10.707v1.5H6.917z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M7.667,52.033v-0.75c0-4.523,2.035-7.994,5.884-10.037 c1.021-0.544,3.739-1.577,6.136-2.489c0.844-0.32,1.638-0.622,2.279-0.873l1.283-0.559c0.522-1,0.371-2.794,0.048-3.299 l-0.151-0.245l-0.104-0.169c0,0-1.311-2.285-1.853-3.443c-0.088,0.012-0.178,0.017-0.268,0.017c-1.243,0-2.495-1.089-3.115-2.71 c-0.702-1.834-0.35-3.688,0.783-4.433c-1.058-4.136-0.93-7.262,0.384-9.298c0.764-1.185,1.954-1.988,3.373-2.283 c1.427-1.767,3.432-3.499,7.257-3.499c4.433,0.148,7.868,1.652,9.958,4.351c2.067,2.669,2.696,6.425,1.771,10.577 c0,0-0.016,0.081-0.049,0.229c1.057,0.794,1.344,2.627,0.617,4.417c-0.635,1.568-1.874,2.625-3.092,2.64 c-0.316,0.673-0.664,1.354-1.037,2.032c-0.373,0.68-0.724,1.274-1.073,1.82c-0.352,0.6-0.471,2.557,0.146,3.464l1.495,0.596 l1.488,0.554c2.507,0.931,5.627,2.088,6.611,2.601s5.887,3.408,5.886,10.042v0.75H7.667z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
<rect fill="none" height="60" width="60"/>
-<path d="M34.99,27.07c0.014-0.011,0.029-0.026,0.041-0.038,0.002,0.009,0.005,0.016,0.008,0.026-0.02,0-0.03,0.01-0.05,0.01zm3.53-4.41c-0.018-0.003-0.041-0.014-0.061-0.015,0.02,0.01,0.04,0.02,0.06,0.02z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<radialGradient cx="297.8" cy="-375.7" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.23">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.96" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M34.994,27.07c0.014-0.011,0.029-0.026,0.041-0.038 c0.002,0.009,0.005,0.016,0.008,0.026C35.025,27.061,35.012,27.068,34.994,27.07z M38.518,22.661L38.518,22.661 c-0.018-0.003-0.041-0.014-0.061-0.015C38.477,22.646,38.499,22.657,38.518,22.661z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<radialGradient cx="297.79" cy="-375.7397" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.2293">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.96" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M36.91,38.52c-1.525-0.664-1.477-3.914-0.848-4.897,0.108-0.171,0.209-0.345,0.314-0.515h-12.76c0.105,0.17,0.204,0.344,0.314,0.515,0.63,0.983,0.679,4.233-0.848,4.897-1.527,0.662,7.098,6.437,7.098,6.437s8.26-5.78,6.73-6.44z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.5" x2="297.5" y1="-367.9" y2="-381.3">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.39" stop-color="#5F8BA1"/>
-<stop offset="0.89" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M36.914,38.52c-1.525-0.664-1.477-3.914-0.848-4.897c0.108-0.171,0.209-0.345,0.314-0.515H23.614 c0.105,0.17,0.204,0.344,0.314,0.515c0.63,0.983,0.679,4.233-0.848,4.897c-1.527,0.662,7.098,6.437,7.098,6.437 S38.441,39.182,36.914,38.52z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4756" x2="297.4756" y1="-367.9355" y2="-381.3027">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.39" style="stop-color:#5F8BA1"/>
+<stop offset="0.89" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M46.09,41.91c-1.605-0.834-9.564-3.621-9.715-3.795l-6.08,5.04-6.531-5.247c-0.18,0.27-8.046,3.023-9.866,3.992-2.083,1.105-5.486,3.646-5.486,9.375h43.16c0.01-5.72-3.87-8.54-5.48-9.37z" fill="url(#SVGID_2_)"/>
-<polygon fill="#020202" fill-opacity="0.3" points="22.28,38.56,30.3,44.96,37.83,38.7,36.38,38.11,30.3,43.16,23.77,37.92" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.572" x2="22.66" y1="45.08" y2="45.08">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M46.094,41.906c-1.605-0.834-9.564-3.621-9.715-3.795L30.3,43.163l-6.531-5.247 c-0.18,0.27-8.046,3.023-9.866,3.992c-2.083,1.105-5.486,3.646-5.486,9.375h43.158C51.576,45.555,47.695,42.742,46.094,41.906z" fill="url(#SVGID_2_)"/>
+<polygon fill="#020202" fill-opacity="0.3" points="22.282,38.564 30.3,44.955 37.832,38.695 36.379,38.111 30.3,43.163 23.77,37.916 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.5718" x2="22.6592" y1="45.0781" y2="45.0781">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M22.66,39.58s-11.44,2.987-11.44,11c0,0-1.635,0.001-1.647,0-0.001-4.93,3.847-8.76,13.09-11z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="37.19" x2="50.27" y1="44.89" y2="44.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M22.659,39.577c0,0-11.44,2.987-11.44,11.002c0,0-1.635,0.001-1.647,0 C9.572,45.65,13.418,41.818,22.659,39.577z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="37.1855" x2="50.2734" y1="44.8936" y2="44.8936">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M37.19,39.39s11.44,2.986,11.44,11h1.646c-0.01-4.93-3.85-8.76-13.09-11z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5" x2="297.5" y1="-375.6" y2="-368.2">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M37.186,39.393c0,0,11.441,2.986,11.441,11.002c0,0,1.637,0,1.646,0 C50.273,45.465,46.428,41.633,37.186,39.393z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5371" x2="297.5371" y1="-375.5508" y2="-368.1697">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="30.3,44.96,22.28,38.56,21.82,38.77,30.3,45.53,38.3,38.88,37.83,38.69"/>
-<radialGradient cx="298.6" cy="-345.8" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.78">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.51" stop-color="#E8D9CA"/>
-<stop offset="0.76" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_5_)" points="30.3,44.955 22.281,38.564 21.815,38.77 30.3,45.531 38.3,38.879 37.834,38.691 "/>
+<radialGradient cx="298.5801" cy="-345.8398" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.7801">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.51" style="stop-color:#E8D9CA"/>
+<stop offset="0.76" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M40.58,23.57c-0.055-0.026-0.113-0.03-0.17-0.046v-0.002c-0.012-0.002-0.021-0.004-0.033-0.007-0.084-0.021-0.168-0.041-0.256-0.045-10.66-1.854-15.55-7.759-15.92-6.195-0.294,1.244-3.281,3.935-4.847,5.276,0.013,0.06,0.02,0.114,0.034,0.174,0,0,0.056,0.275,0.174,0.744-0.125,0.013-0.246,0.039-0.365,0.089-0.995,0.42-1.308,2.053-0.698,3.647s1.913,2.548,2.909,2.13c0.061-0.027,0.113-0.071,0.169-0.107,0.579,1.301,1.289,2.697,2.159,4.094,1.458,1.731,3.691,3.766,6.157,3.766,2.983,0,4.808-1.633,6.063-3.278,0.031-0.068,0.063-0.133,0.103-0.189,0.931-1.453,1.684-2.911,2.293-4.268,0.975,0.337,2.226-0.569,2.846-2.102,0.67-1.56,0.39-3.21-0.6-3.66z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="293.6" x2="302.8" y1="-368.1" y2="-359">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M40.584,23.573c-0.055-0.026-0.113-0.03-0.17-0.046c0-0.001,0-0.002,0-0.002 c-0.012-0.002-0.021-0.004-0.033-0.007c-0.084-0.021-0.168-0.041-0.256-0.045c-10.658-1.854-15.548-7.759-15.916-6.195 c-0.294,1.244-3.281,3.935-4.847,5.276c0.013,0.06,0.02,0.114,0.034,0.174c0,0,0.056,0.275,0.174,0.744 c-0.125,0.013-0.246,0.039-0.365,0.089c-0.995,0.42-1.308,2.053-0.698,3.647c0.61,1.594,1.913,2.548,2.909,2.13 c0.061-0.027,0.113-0.071,0.169-0.107c0.579,1.301,1.289,2.697,2.159,4.094c1.458,1.731,3.691,3.766,6.157,3.766 c2.983,0,4.808-1.633,6.063-3.278c0.031-0.068,0.063-0.133,0.103-0.189c0.931-1.453,1.684-2.911,2.293-4.268 c0.975,0.337,2.226-0.569,2.846-2.102C41.85,25.666,41.57,24.017,40.584,23.573z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="293.6279" x2="302.8386" y1="-368.1089" y2="-358.9682">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M29.46,36.25c-1.816,0-3.646-0.846-4.993-2.121,1.425,1.498,3.343,2.957,5.432,2.957,2.982,0,4.809-1.633,6.064-3.279,0.031-0.067,0.063-0.133,0.101-0.188,0.932-1.453,1.684-2.911,2.295-4.268-3.39,5.93-5.91,6.9-8.9,6.9z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.3" x2="297.3" y1="-338.9" y2="-352.5">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.38" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.463,36.254c-1.816,0-3.646-0.846-4.993-2.121c1.425,1.498,3.343,2.957,5.432,2.957 c2.982,0,4.809-1.633,6.064-3.279c0.031-0.067,0.063-0.133,0.101-0.188c0.932-1.453,1.684-2.911,2.295-4.268 C34.967,35.283,32.447,36.254,29.463,36.254z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.2969" x2="297.2969" y1="-338.9307" y2="-352.4902">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.38" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M29.6,8.713c-3.695,0-5.473,1.68-6.845,3.436-2.23,0.345-5.768,2.39-3.27,11.35,1.565-1.341,4.427-4.978,4.722-6.222,0.371-1.577,5.343,4.451,16.2,6.248,0.127-0.501,0.185-0.797,0.185-0.797,1.7-7.65-2.01-13.72-11-14.02z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="301.9" x2="289.7" y1="-351.9" y2="-344.6">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.36" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.603,8.713c-3.695,0-5.473,1.68-6.845,3.436c-2.23,0.345-5.768,2.39-3.27,11.35 c1.565-1.341,4.427-4.978,4.722-6.222c0.371-1.577,5.343,4.451,16.205,6.248c0.127-0.501,0.185-0.797,0.185-0.797 C42.305,15.077,38.594,9.014,29.603,8.713z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="301.9326" x2="289.6528" y1="-351.9048" y2="-344.6049">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.36" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M24.22,16.54s5.316,6.983,16.12,6.971c0,0-5.09-0.79-16.12-6.97z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5" x2="288.6" y1="-343.2" y2="-351">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.38" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M24.221,16.543c0,0,5.316,6.983,16.117,6.971C40.338,23.514,35.251,22.716,24.221,16.543z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5391" x2="288.6491" y1="-343.1895" y2="-350.9899">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.38" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M22.94,12.67s-5.204,0.312-3.273,9.132c0,0-0.64-6.04,3.27-9.13z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="299" x2="298.6" y1="-340.1" y2="-343.6">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M22.943,12.668c0,0-5.204,0.312-3.273,9.132C19.67,21.8,19.034,15.76,22.943,12.668z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="299.0225" x2="298.6326" y1="-340.0913" y2="-343.6304">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M32.13,13.89c-2.423-0.346-6.521-2.493-8.129-1.726,0,0,5.26-6,14.54,0.831,0,0.01-2.21,1.5-6.41,0.9z" fill="url(#SVGID_11_)"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M32.126,13.891c-2.423-0.346-6.521-2.493-8.129-1.726c0,0,5.26-6,14.538,0.831 C38.535,12.997,36.326,14.489,32.126,13.891z" fill="url(#SVGID_11_)"/>
+<rect fill="none" height="59.996" width="59.996"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M15,29.5c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854l-0.37-0.49,0.616-1.23c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157l-0.557-1.35c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434-0.083-0.594c-0.096-0.68-0.144-1.36-0.144-2.03s0.048-1.34,0.144-2.02l0.083-0.594,1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224l-0.48-0.485c-0.385-0.386-0.857-1.041-1.098-1.524l-0.615-1.229,0.361-0.479c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362,1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017,0.064-0.014,1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16v-0.676c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304,0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143,0.662,0,1.342,0.048,2.02,0.143l0.595,0.083,0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551,0.098,0.031c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613,0.476,0.36c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479-0.66,1.346c-0.253,0.506-0.391,0.758-1.04,1.407l-0.49,0.487c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156h0.678c0.544,0,1.343,0.13,1.854,0.302l1.303,0.433,0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021,0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593-1.303,0.434c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226-0.36,0.479c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017-0.066,0.015-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306-0.595,0.082c-0.68,0.11-1.36,0.15-2.02,0.15zm0-18.29c-2.094,0-3.798,1.704-3.798,3.798s1.704,3.798,3.798,3.798,3.797-1.704,3.797-3.798c0-2.1-1.71-3.8-3.8-3.8z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.5" x2="282.5" y1="-361.5" y2="-388.4">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1" stop-color="#FFFFFF"/>
-<stop offset="0.74" stop-color="#939595"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.4795" x2="282.4795" y1="-361.4912" y2="-388.438">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1" style="stop-color:#FFFFFF"/>
+<stop offset="0.74" style="stop-color:#939595"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<path d="M26.12,12.62h-0.69c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486c-0.31,0.309-0.882,0.401-1.271,0.203l-1.29-0.525c-0.417-0.137-0.755-0.608-0.755-1.044v-0.687c0-0.437-0.113-1.134-0.251-1.548l-0.246-0.735c-0.61-0.087-1.24-0.134-1.88-0.134-0.641,0-1.27,0.047-1.886,0.133l-0.24,0.735c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53c-0.39,0.199-0.96,0.107-1.269-0.201l-0.487-0.486c-0.309-0.309-0.882-0.721-1.271-0.917l-0.695-0.348c-1.007,0.761-1.905,1.659-2.666,2.667l0.347,0.694c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286c-0.136,0.415-0.605,0.754-1.042,0.754h-0.687c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886,0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271l-0.347,0.68c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134,0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885,0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245c-0.41-0.14-1.11-0.26-1.54-0.26zm-11.12,7.15c-2.632,0-4.765-2.133-4.765-4.765,0-2.631,2.132-4.765,4.765-4.765,2.63,0,4.764,2.134,4.764,4.765,0,2.64-2.13,4.77-4.76,4.77z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.7" x2="287.3" y1="-377.2" y2="-377.2">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M26.116,12.624H25.43c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285 c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695 c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486 c-0.31,0.309-0.882,0.401-1.271,0.203L18.138,5.62c-0.417-0.137-0.755-0.608-0.755-1.044V3.889c0-0.437-0.113-1.134-0.251-1.548 l-0.246-0.735C16.269,1.519,15.641,1.472,15,1.472c-0.641,0-1.27,0.047-1.886,0.133L12.869,2.34 c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53C10.19,6.346,9.62,6.254,9.311,5.946 L8.824,5.46C8.515,5.151,7.942,4.739,7.553,4.543L6.858,4.195C5.851,4.956,4.953,5.854,4.192,6.862l0.347,0.694 c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286 c-0.136,0.415-0.605,0.754-1.042,0.754H3.884c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886 c0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284 c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271L4.19,23.146 c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485 c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549 l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134c0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549 v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485 c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693 c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284 c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885 c0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245C27.249,12.736,26.553,12.624,26.116,12.624z M15,19.771 c-2.632,0-4.765-2.133-4.765-4.765c0-2.631,2.132-4.765,4.765-4.765c2.63,0,4.764,2.134,4.764,4.765 C19.764,17.638,17.63,19.771,15,19.771z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.6816" x2="287.2746" y1="-377.2241" y2="-377.2241">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M15,19.77c2.63,0,4.764-2.133,4.764-4.765,0-0.125-0.01-0.246-0.018-0.367-0.188,2.459-2.239,4.398-4.746,4.398-2.508,0-4.558-1.939-4.746-4.398-0.01,0.122-0.019,0.243-0.019,0.367,0.02,2.64,2.15,4.77,4.78,4.77z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.5" x2="282.5" y1="-383.1" y2="-366.8">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.52" stop-color="#C8C8C8"/>
-<stop offset="1" stop-color="#939595"/>
+<path d="M15,19.771c2.63,0,4.764-2.133,4.764-4.765c0-0.125-0.01-0.246-0.018-0.367 c-0.188,2.459-2.239,4.398-4.746,4.398c-2.508,0-4.558-1.939-4.746-4.398c-0.01,0.122-0.019,0.243-0.019,0.367 C10.235,17.638,12.367,19.771,15,19.771z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.4805" x2="282.4805" y1="-383.0635" y2="-366.7921">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.52" style="stop-color:#C8C8C8"/>
+<stop offset="1" style="stop-color:#939595"/>
</linearGradient>
-<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486,8.487-3.799,8.487-8.486-3.8-8.49-8.49-8.49zm0,15.04c-3.621,0-6.559-2.935-6.559-6.557s2.937-6.558,6.559-6.558c3.62,0,6.557,2.936,6.557,6.558,0,3.63-2.94,6.56-6.56,6.56z" fill="url(#SVGID_3__)"/>
+<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486s8.487-3.799,8.487-8.486 S19.687,6.52,15,6.52z M15,21.563c-3.621,0-6.559-2.935-6.559-6.557c0-3.622,2.937-6.558,6.559-6.558 c3.62,0,6.557,2.936,6.557,6.558C21.557,18.629,18.619,21.563,15,21.563z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,31 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_mode.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_active_mode.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,143 +1,145 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
+</linearGradient>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
-</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.75,15h-19.48c-0.555,0-0.998,0.273-1.186,0.73-0.186,0.459-0.059,0.966,0.34,1.355l10.52,10.31c0.339,0.335,0.687,0.404,0.918,0.404,0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051c0-0.83-0.69-1.52-1.53-1.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M29.58,12.91l-10.52-10.31c-0.339-0.333-0.685-0.402-0.916-0.402-0.564,0-1.165,0.449-1.165,1.281v4.399h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.48c0.555,0,0.998-0.273,1.186-0.73,0.18-0.46,0.06-0.97-0.34-1.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.14" x2="11.14" y1="16.1" y2="27">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M21.28,20.59c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861c0,0.295-0.172,0.37-0.38,0.165l-10.52-10.33c-0.211-0.205-0.144-0.372,0.145-0.372h19.48c0.289,0,0.527,0.241,0.527,0.537v4.049z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.78" x2="11.78" y1="17.07" y2="24.88">
-<stop offset="0" stop-color="#88A372"/>
-<stop offset="0.2545" stop-color="#426E4B"/>
-<stop offset="0.5091" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
+<stop offset="0" style="stop-color:#88A372"/>
+<stop offset="0.2545" style="stop-color:#426E4B"/>
+<stop offset="0.5091" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M3.336,17.06h16.88v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878l-7.634-7.49z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.86" x2="18.86" y1="3.223" y2="14.16">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.4909" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.4909" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538v-4.861c0-0.297,0.172-0.37,0.381-0.165l10.52,10.32c0.211,0.205,0.144,0.372-0.145,0.372h-19.49c-0.289,0-0.525-0.241-0.525-0.535v-4.049z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.23" x2="18.23" y1="5.429" y2="12.97">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.703" stop-color="#426E4B"/>
-<stop offset="0.9879" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.703" style="stop-color:#426E4B"/>
+<stop offset="0.9879" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M9.785,12.94v-3.007h7.673c0.872,0,1.583-0.718,1.583-1.597v-2.878l7.627,7.48h-16.88z" fill="url(#SVGID_4__)"/>
+<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4__)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_add_contact_picture.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_add_contact_picture.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,107 +1,111 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="#E6E6E6" height="60" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="238.8" x2="238.8" y1="-245.2" y2="-289.7">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="238.8494" x2="238.8494" y1="-245.1958" y2="-289.6997">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<path d="M48.38,43.6c-1.834-0.954-10.92-4.137-11.09-4.333-1.027-1.18-0.987-3.782-0.47-4.912,0.037-0.079,0.073-0.155,0.112-0.218,0.128-0.196,0.241-0.391,0.363-0.588h-0.006c0.897-1.463,1.649-2.92,2.263-4.286,1.113,0.385,2.54-0.648,3.25-2.4,0.736-1.81,0.418-3.693-0.71-4.202-0.064-0.029-0.132-0.031-0.194-0.052v-0.001c0.145-0.574,0.21-0.909,0.21-0.909,1.948-8.736-2.291-15.66-12.56-16-4.219,0-6.25,1.917-7.816,3.924-2.548,0.393-6.585,2.727-3.737,12.95-0.108,0.015-0.216,0.033-0.32,0.075-1.137,0.481-1.494,2.344-0.795,4.167,0.695,1.82,2.183,2.909,3.322,2.432,0.068-0.029,0.13-0.079,0.192-0.123,0.626,1.41,1.395,2.913,2.321,4.427h-0.004c0.034,0.053,0.063,0.105,0.097,0.157,0.019,0.031,0.037,0.059,0.054,0.09,0.002,0.004,0.004,0.007,0.004,0.007,0.069,0.11,0.134,0.224,0.207,0.334,0.584,0.917,0.728,3.554-0.184,4.907-0.239,0.314-9.191,3.456-11.27,4.556-2.377,1.263-6.261,4.165-6.261,10.71h49.29c0.02-6.56-4.41-9.77-6.24-10.72zm-30.37-21.03c0.022-0.021,0.046-0.044,0.069-0.065,0.003,0.018,0.005,0.027,0.012,0.044-0.03,0.01-0.05,0.02-0.08,0.03z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="238.8" x2="238.8" y1="-246.1" y2="-293">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7515" stop-color="#0A0A0A"/>
-<stop offset="1" stop-color="#5F5F5F"/>
+<path d="M48.378,43.6c-1.834-0.954-10.918-4.137-11.093-4.333l0,0c-1.027-1.18-0.987-3.782-0.47-4.912l0,0 c0.037-0.079,0.073-0.155,0.112-0.218c0.128-0.196,0.241-0.391,0.363-0.588h-0.006c0.897-1.463,1.649-2.92,2.263-4.286 c1.113,0.385,2.54-0.648,3.25-2.4c0.736-1.81,0.418-3.693-0.71-4.202c-0.064-0.029-0.132-0.031-0.194-0.052v-0.001 c0.145-0.574,0.21-0.909,0.21-0.909c1.948-8.736-2.291-15.664-12.558-16.005c-4.219,0-6.25,1.917-7.816,3.924 c-2.548,0.393-6.585,2.727-3.737,12.954c-0.108,0.015-0.216,0.033-0.32,0.075c-1.137,0.481-1.494,2.344-0.795,4.167 c0.695,1.82,2.183,2.909,3.322,2.432c0.068-0.029,0.13-0.079,0.192-0.123c0.626,1.41,1.395,2.913,2.321,4.427h-0.004 c0.034,0.053,0.063,0.105,0.097,0.157c0.019,0.031,0.037,0.059,0.054,0.09c0.002,0.004,0.004,0.007,0.004,0.007 c0.069,0.11,0.134,0.224,0.207,0.334c0.584,0.917,0.728,3.554-0.184,4.907c-0.239,0.314-9.191,3.456-11.268,4.556 c-2.377,1.263-6.261,4.165-6.261,10.706h49.286C54.642,47.765,50.211,44.552,48.378,43.6z M18.012,22.567 c0.022-0.021,0.046-0.044,0.069-0.065c0.003,0.018,0.005,0.027,0.012,0.044C18.063,22.55,18.038,22.561,18.012,22.567z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="238.8494" x2="238.8494" y1="-246.0537" y2="-292.9995">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
</linearGradient>
-<path d="M6.048,54.31c0.185-4.285,2.164-7.46,5.89-9.436,1.086-0.577,4.294-1.795,6.87-2.776,4.27-1.624,4.425-1.712,4.618-1.972,1.005-1.481,0.94-3.926,0.436-5.226l-0.573-1.025c-0.835-1.366-1.601-2.829-2.277-4.349l-0.322-0.718-0.662,0.424-0.079,0.057c-0.105,0.05-0.205,0.071-0.312,0.071-0.642,0-1.602-0.74-2.126-2.111-0.608-1.585-0.261-3.012,0.429-3.302,0.027-0.013,0.105-0.025,0.161-0.034l0.208-0.033,0.624-0.059-0.448-1.833s-1.57-6.312,0.211-9.042c0.896-1.373,2.197-1.84,3.14-1.986l0.263-0.042,0.166-0.207c1.385-1.774,3.204-3.667,7.284-3.667,4.541,0.153,8.063,1.664,10.16,4.374,2.076,2.684,2.693,6.519,1.736,10.81-0.004,0.024-0.226,1.554-0.226,1.554l0.477,0.149c0.041,0.015,0.085,0.022,0.129,0.031,0.672,0.301,0.989,1.745,0.346,3.326-0.546,1.354-1.491,2.06-2.139,2.06-0.092,0-0.18-0.015-0.264-0.044l-0.582-0.201-0.253,0.562c-0.656,1.456-1.404,2.876-2.224,4.21l-0.573,1.025c-0.533,1.364-0.558,4.115,0.641,5.487,0,0,2.002,0.885,3.896,1.588,2.681,0.996,6.352,2.358,7.393,2.898,0.952,0.496,5.571,3.217,5.885,9.436h-47.93v-0.014z" fill="url(#SVGID_2_)"/>
+<path d="M6.048,54.306c0.185-4.285,2.164-7.46,5.89-9.436c1.086-0.577,4.294-1.795,6.87-2.776 c4.27-1.624,4.425-1.712,4.618-1.972c1.005-1.481,0.94-3.926,0.436-5.226l-0.573-1.025c-0.835-1.366-1.601-2.829-2.277-4.349 l-0.322-0.718l-0.662,0.424l-0.079,0.057c-0.105,0.05-0.205,0.071-0.312,0.071c-0.642,0-1.602-0.74-2.126-2.111 c-0.608-1.585-0.261-3.012,0.429-3.302c0.027-0.013,0.105-0.025,0.161-0.034l0.208-0.033l0.624-0.059l-0.448-1.833 c0,0-1.57-6.312,0.211-9.042c0.896-1.373,2.197-1.84,3.14-1.986l0.263-0.042l0.166-0.207c1.385-1.774,3.204-3.667,7.284-3.667 c4.541,0.153,8.063,1.664,10.162,4.374c2.076,2.684,2.693,6.519,1.736,10.809c-0.004,0.024-0.226,1.554-0.226,1.554l0.477,0.149 c0.041,0.015,0.085,0.022,0.129,0.031c0.672,0.301,0.989,1.745,0.346,3.326c-0.546,1.354-1.491,2.06-2.139,2.06 c-0.092,0-0.18-0.015-0.264-0.044l-0.582-0.201l-0.253,0.562c-0.656,1.456-1.404,2.876-2.224,4.21l-0.573,1.025 c-0.533,1.364-0.558,4.115,0.641,5.487c0,0,2.002,0.885,3.896,1.588c2.681,0.996,6.352,2.358,7.393,2.898 c0.952,0.496,5.571,3.217,5.885,9.436H6.048V54.306z" fill="url(#SVGID_2_)"/>
+</g>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,7.489,0,24.51,0,30,30,30,30,24.51,30,5.713,30,0"/>
-<path d="M1.777,26.31c-0.98,0-1.777-0.81-1.777-1.8v-17.02c0-0.988,0.797-1.792,1.777-1.792h0.125v-0.202c0-1.01,0.771-1.801,1.754-1.801h3.548c0.657,0,1.22,0.354,1.521,0.892,0.326-0.405,0.824-0.665,1.381-0.665h18.12c0.98,0,1.778,0.804,1.778,1.792v18.8c0,0.988-0.798,1.792-1.778,1.792h-26.45z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="2.879" x2="7.922" y1="6.067" y2="6.067">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="0.4788" stop-color="#7E8182"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<polygon fill="none" points="0,7.489 0,24.514 0,30 30,30 30,24.514 30,5.713 30,0 0,0 "/>
+<path d="M1.777,26.306C0.797,26.306,0,25.502,0,24.514V7.489c0-0.988,0.797-1.792,1.777-1.792h0.125V5.495 c0-1.01,0.771-1.801,1.754-1.801h3.548c0.657,0,1.22,0.354,1.521,0.892c0.326-0.405,0.824-0.665,1.381-0.665h18.116 c0.98,0,1.778,0.804,1.778,1.792v18.801c0,0.988-0.798,1.792-1.778,1.792H1.777z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="2.8789" x2="7.9217" y1="6.0669" y2="6.0669">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="0.4788" style="stop-color:#7E8182"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M7.957,7.439v-1.944c0-0.458-0.339-0.801-0.753-0.801h-3.548c-0.414,0-0.754,0.342-0.754,0.801v1.944h5.055z" fill="url(#SVGID_1__)"/>
-<radialGradient cx="5.43" cy="19.58" gradientTransform="matrix(1 0 0 1.008 0 -14.4484)" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="1.835">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<path d="M7.957,7.439V5.495c0-0.458-0.339-0.801-0.753-0.801H3.656c-0.414,0-0.754,0.342-0.754,0.801v1.944 H7.957z" fill="url(#SVGID_1__)"/>
+<radialGradient cx="5.4297" cy="19.583" gradientTransform="matrix(1 0 0 1.008 0 -14.4484)" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="1.8354">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</radialGradient>
-<path d="M7.204,4.694h-3.548c-0.414,0-0.754,0.342-0.754,0.801v0.393c0-0.459,0.34-0.801,0.754-0.801h3.548c0.414,0,0.753,0.342,0.753,0.801v-0.393c0-0.458-0.339-0.801-0.753-0.801z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="4.892" y2="25.34">
-<stop offset="0" stop-color="#D2D3D2"/>
-<stop offset="0.1212" stop-color="#D2D3D2"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9697" stop-color="#AFB3B2"/>
-<stop offset="0.9697" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M7.204,4.694H3.656c-0.414,0-0.754,0.342-0.754,0.801v0.393c0-0.459,0.34-0.801,0.754-0.801h3.548 c0.414,0,0.753,0.342,0.753,0.801V5.495C7.957,5.037,7.618,4.694,7.204,4.694z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="4.8916" y2="25.3392">
+<stop offset="0" style="stop-color:#D2D3D2"/>
+<stop offset="0.1212" style="stop-color:#D2D3D2"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9697" style="stop-color:#AFB3B2"/>
+<stop offset="0.9697" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.22,4.921h-18.12c-0.428,0-0.777,0.355-0.777,0.792v0.984h-7.551c-0.427,0-0.777,0.356-0.777,0.792v17.02c0,0.436,0.35,0.792,0.777,0.792h26.44c0.427,0,0.778-0.356,0.778-0.792v-18.8c0-0.437-0.35-0.792-0.78-0.792z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="24.8" x2="24.8" y1="6.2" y2="9.553">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M28.222,4.921H10.105c-0.428,0-0.777,0.355-0.777,0.792v0.984H1.777C1.35,6.697,1,7.053,1,7.489 v17.024c0,0.436,0.35,0.792,0.777,0.792h26.444c0.427,0,0.778-0.356,0.778-0.792V5.713C29,5.276,28.648,4.921,28.222,4.921z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="24.7998" x2="24.7998" y1="6.1997" y2="9.553">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="3.366" width="5.244" x="22.18" y="6.185"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.8" x2="24.8" y1="9.249" y2="6.475">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_4_)" height="3.366" width="5.244" x="22.179" y="6.185"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.8008" x2="24.8008" y1="9.249" y2="6.4746">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="2.801" width="4.583" x="22.51" y="6.468"/>
-<path d="M23.17,15.99c-0.002,4.312-3.498,8.564-7.811,8.563-4.311-0.002-7.806-4.257-7.806-8.568,0.003-4.312,3.499-7.806,7.812-7.804s7.8,3.504,7.8,7.814z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.37" x2="15.37" y1="7.844" y2="23.49">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<rect fill="url(#SVGID_5_)" height="2.801" width="4.583" x="22.509" y="6.468"/>
+<path d="M23.174,15.992c-0.002,4.312-3.498,8.564-7.811,8.563c-4.311-0.002-7.806-4.257-7.806-8.568 c0.003-4.312,3.499-7.806,7.812-7.804S23.174,11.681,23.174,15.992z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.3652" x2="15.3652" y1="7.8438" y2="23.4871">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<circle cx="15.37" cy="15.67" fill="url(#SVGID_6_)" r="7.778"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.37" x2="15.37" y1="8.182" y2="22.99">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<circle cx="15.366" cy="15.674" fill="url(#SVGID_6_)" r="7.778"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.3652" x2="15.3652" y1="8.1816" y2="22.9943">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<circle cx="15.37" cy="15.68" fill="url(#SVGID_7_)" r="7.388"/>
-<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.8701)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="11.91" x2="20.43" y1="12.28" y2="20.8">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<circle cx="15.366" cy="15.675" fill="url(#SVGID_7_)" r="7.388"/>
+<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.8701)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="11.9092" x2="20.4338" y1="12.2778" y2="20.8025">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<circle cx="15.37" cy="15.67" fill="url(#SVGID_8_)" r="6.028"/>
-<radialGradient cx="13.75" cy="1.954" gradientTransform="matrix(0.991 3.000000e-004 -3.000000e-004 0.991 2.3474 14.2158)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="6.531">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<circle cx="15.366" cy="15.674" fill="url(#SVGID_8_)" r="6.028"/>
+<radialGradient cx="13.751" cy="1.9536" gradientTransform="matrix(0.991 3.000000e-004 -3.000000e-004 0.991 2.3474 14.2158)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="6.5314">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<circle cx="15.36" cy="15.67" fill="url(#SVGID_9_)" r="5.639"/>
-<radialGradient cx="8.036" cy="-26.85" gradientTransform="matrix(0.9785 3.000000e-004 -3.000000e-004 0.9786 6.3194 35.8131)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.41">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<circle cx="15.365" cy="15.674" fill="url(#SVGID_9_)" r="5.639"/>
+<radialGradient cx="8.0361" cy="-26.853" gradientTransform="matrix(0.9785 3.000000e-004 -3.000000e-004 0.9786 6.3194 35.8131)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.413">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M19.45,15.67c-0.001,2.256-1.83,4.084-4.086,4.084-2.252-0.002-4.081-1.831-4.081-4.086,0.002-2.256,1.831-4.082,4.083-4.082,2.26,0.01,4.09,1.84,4.09,4.09z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="5.574" x2="5.574" y1="11.82" y2="9.385">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<path d="M19.449,15.674c-0.001,2.256-1.83,4.084-4.086,4.084c-2.252-0.002-4.081-1.831-4.081-4.086 c0.002-2.256,1.831-4.082,4.083-4.082C17.623,11.592,19.449,13.42,19.449,15.674z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="5.5742" x2="5.5742" y1="11.8188" y2="9.3852">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<circle cx="5.575" cy="10.56" fill="url(#SVGID_11_)" r="1.167"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.35" x2="15.35" y1="10.65" y2="15.64">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<circle cx="5.575" cy="10.556" fill="url(#SVGID_11_)" r="1.167"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.3457" x2="15.3457" y1="10.6523" y2="15.6356">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M15.35,15.61c1.81,0,3.515-0.274,5.02-0.758-0.428-2.386-2.51-4.201-5.02-4.201s-4.592,1.814-5.02,4.201c1.5,0.49,3.21,0.76,5.02,0.76z" fill="url(#SVGID_12_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="4.854" y2="25.29">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M15.346,15.611c1.81,0,3.515-0.274,5.02-0.758c-0.428-2.386-2.51-4.201-5.02-4.201 s-4.592,1.814-5.02,4.201C11.83,15.337,13.536,15.611,15.346,15.611z" fill="url(#SVGID_12_)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="4.8535" y2="25.2888">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M28.22,4.921h-18.12c-0.428,0-0.777,0.355-0.777,0.792v0.984h-7.551c-0.427,0-0.777,0.356-0.777,0.792v17.02c0,0.436,0.35,0.792,0.777,0.792,0,0-0.389-0.214-0.389-0.792v-17.02c0-0.222,0.175-0.401,0.389-0.401h7.94v-1.375c0-0.221,0.174-0.399,0.389-0.399h18.12c0.215,0,0.39,0.179,0.39,0.399v18.8c0,0.626-0.39,0.792-0.39,0.792,0.427,0,0.778-0.356,0.778-0.792v-18.8c-0.01-0.437-0.36-0.792-0.79-0.792z" fill="url(#SVGID_13_)"/>
+<path d="M28.222,4.921H10.105c-0.428,0-0.777,0.355-0.777,0.792v0.984H1.777C1.35,6.697,1,7.053,1,7.489 v17.024c0,0.436,0.35,0.792,0.777,0.792c0,0-0.389-0.214-0.389-0.792V7.489c0-0.222,0.175-0.401,0.389-0.401h7.551h0.389V6.697 V5.713c0-0.221,0.174-0.399,0.389-0.399h18.116c0.215,0,0.39,0.179,0.39,0.399v18.801c0,0.626-0.39,0.792-0.39,0.792 c0.427,0,0.778-0.356,0.778-0.792V5.713C29,5.276,28.648,4.921,28.222,4.921z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_add_group_picture.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_add_group_picture.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,120 +1,126 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="#E6E6E6" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-76.53" x2="-76.53" y1="220.3" y2="193.7">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7515" stop-color="#0A0A0A"/>
-<stop offset="1" stop-color="#5F5F5F"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-76.5259" x2="-76.5259" y1="220.3242" y2="193.6569">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
</linearGradient>
-<path d="M42.22,23.02c0.973,1.231,1.162,3.183,0.377,5.11-0.633,1.563-1.771,2.703-3.057,3.128,0,0-0.023,0.037-0.057,0.093,0.096,0.735,0.008,1.653-0.414,2.273-0.086,0.116-0.176,0.178-1.381,0.645-0.066,0.109-0.111,0.183-0.119,0.195-0.143,0.364-0.152,1.213-0.025,1.696,0.555,0.215,1.473,0.555,2.309,0.866,3.098,1.148,5.539,2.066,6.479,2.555,0.436,0.227,1.594,0.898,2.801,2.102h7.281c-0.18-3.533-2.803-5.078-3.344-5.359-0.594-0.307-2.678-1.081-4.199-1.646-1.076-0.398-2.213-0.902-2.213-0.902-0.682-0.779-0.666-2.342-0.363-3.116l0.326-0.581c0.465-0.76,0.889-1.564,1.262-2.393l0.145-0.32,0.33,0.113c0.047,0.018,0.098,0.025,0.15,0.025,0.369,0,0.904-0.399,1.215-1.17,0.365-0.896,0.186-1.717-0.195-1.89-0.025-0.004-0.051-0.009-0.074-0.019l-0.271-0.084s0.127-0.868,0.129-0.883c0.543-2.437,0.191-4.615-0.986-6.14-1.191-1.54-3.191-2.397-5.771-2.483-0.33,0-0.629,0.025-0.91,0.066,0.93,2.35,1.15,5.13,0.56,8.11z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-110.3" x2="-110.3" y1="220.3" y2="193.7">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7515" stop-color="#0A0A0A"/>
-<stop offset="1" stop-color="#5F5F5F"/>
+<path d="M42.225,23.022c0.973,1.231,1.162,3.183,0.377,5.11c-0.633,1.563-1.771,2.703-3.057,3.128 c0,0-0.023,0.037-0.057,0.093c0.096,0.735,0.008,1.653-0.414,2.273c-0.086,0.116-0.176,0.178-1.381,0.645 c-0.066,0.109-0.111,0.183-0.119,0.195c-0.143,0.364-0.152,1.213-0.025,1.696c0.555,0.215,1.473,0.555,2.309,0.866 c3.098,1.148,5.539,2.066,6.479,2.555c0.436,0.227,1.594,0.898,2.801,2.102h7.281c-0.18-3.533-2.803-5.078-3.344-5.359 c-0.594-0.307-2.678-1.081-4.199-1.646c-1.076-0.398-2.213-0.902-2.213-0.902c-0.682-0.779-0.666-2.342-0.363-3.116l0.326-0.581 c0.465-0.76,0.889-1.564,1.262-2.393l0.145-0.32l0.33,0.113c0.047,0.018,0.098,0.025,0.15,0.025c0.369,0,0.904-0.399,1.215-1.17 c0.365-0.896,0.186-1.717-0.195-1.89c-0.025-0.004-0.051-0.009-0.074-0.019l-0.271-0.084c0,0,0.127-0.868,0.129-0.883 c0.543-2.437,0.191-4.615-0.986-6.14c-1.191-1.54-3.191-2.397-5.771-2.483c-0.33,0-0.629,0.025-0.91,0.066 C42.594,17.258,42.809,20.041,42.225,23.022z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-110.3408" x2="-110.3408" y1="220.3242" y2="193.6579">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
+</linearGradient>
+<path d="M13.772,39.593c0.975-0.517,3.113-1.341,6.028-2.45c0.978-0.371,2.132-0.811,2.797-1.08 c0.105-0.496,0.089-1.242-0.04-1.574c-0.013-0.021-0.038-0.061-0.063-0.1c-0.794-0.316-1.46-0.611-1.46-0.611 c-0.52-0.596-0.633-1.645-0.523-2.452c-1.403-0.372-2.633-1.579-3.279-3.272c-0.751-1.959-0.505-3.918,0.519-5.125 c-0.748-3.305-0.69-5.982,0.148-8.016c-0.313-0.035-0.637-0.062-0.971-0.072c-2.318,0-3.351,1.072-4.137,2.082l-0.096,0.117 l-0.148,0.023c-0.536,0.084-1.275,0.35-1.783,1.128c-1.012,1.552-0.121,5.138-0.121,5.138l0.255,1.041L10.546,24.4l-0.119,0.02 c-0.032,0.004-0.075,0.013-0.091,0.02c-0.394,0.165-0.59,0.977-0.244,1.876c0.298,0.778,0.844,1.199,1.208,1.199 c0.061,0,0.117-0.013,0.177-0.04l0.045-0.032l0.375-0.241l0.184,0.407c0.385,0.863,0.818,1.694,1.294,2.472l0.326,0.581 c0.286,0.737,0.322,2.127-0.248,2.968c-0.11,0.146-0.197,0.197-2.623,1.121c-1.463,0.557-3.286,1.248-3.903,1.577 c-2.116,1.122-3.24,2.925-3.345,5.358h7.308C11.71,40.886,12.666,40.18,13.772,39.593z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-93.4043" x2="-93.4043" y1="225.0117" y2="187.8389">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<path d="M13.77,39.59c0.975-0.517,3.113-1.341,6.028-2.45,0.978-0.371,2.132-0.811,2.797-1.08,0.105-0.496,0.089-1.242-0.04-1.574-0.013-0.021-0.038-0.061-0.063-0.1-0.794-0.316-1.46-0.611-1.46-0.611-0.52-0.596-0.633-1.645-0.523-2.452-1.403-0.372-2.633-1.579-3.279-3.272-0.751-1.959-0.505-3.918,0.519-5.125-0.748-3.305-0.69-5.982,0.148-8.016-0.313-0.035-0.637-0.062-0.971-0.072-2.318,0-3.351,1.072-4.137,2.082l-0.096,0.117-0.148,0.023c-0.536,0.084-1.275,0.35-1.783,1.128-1.012,1.552-0.121,5.138-0.121,5.138l0.255,1.041-0.35,0.02-0.119,0.02c-0.032,0.004-0.075,0.013-0.091,0.02-0.394,0.165-0.59,0.977-0.244,1.876,0.298,0.778,0.844,1.199,1.208,1.199,0.061,0,0.117-0.013,0.177-0.04l0.045-0.032,0.375-0.241,0.184,0.407c0.385,0.863,0.818,1.694,1.294,2.472l0.326,0.581c0.286,0.737,0.322,2.127-0.248,2.968-0.11,0.146-0.197,0.197-2.623,1.121-1.463,0.557-3.286,1.248-3.903,1.577-2.116,1.122-3.24,2.925-3.345,5.358h7.308c0.8-0.81,1.76-1.52,2.86-2.11z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-93.4" x2="-93.4" y1="225" y2="187.8">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<path d="M45.412,41.359c-1.531-0.797-9.119-3.455-9.266-3.62l0,0c-0.857-0.983-0.824-3.158-0.395-4.103l0,0 c0.031-0.066,0.063-0.13,0.096-0.183c0.105-0.164,0.201-0.326,0.301-0.49h-0.002c0.748-1.223,1.377-2.438,1.891-3.579 c0.93,0.32,2.121-0.543,2.715-2.006c0.615-1.512,0.35-3.084-0.594-3.51c-0.055-0.023-0.109-0.025-0.162-0.043v-0.002 c0.121-0.479,0.178-0.759,0.178-0.759c1.627-7.298-1.914-13.083-10.49-13.368c-3.522,0-5.22,1.602-6.527,3.277 c-2.129,0.328-5.5,2.277-3.122,10.818c-0.091,0.014-0.181,0.028-0.268,0.063c-0.95,0.401-1.248,1.957-0.665,3.479 c0.581,1.521,1.823,2.43,2.774,2.031c0.058-0.025,0.107-0.066,0.161-0.104c0.521,1.179,1.165,2.433,1.938,3.698h-0.003 c0.027,0.043,0.052,0.087,0.08,0.131c0.016,0.026,0.031,0.049,0.045,0.075c0.002,0.003,0.003,0.005,0.003,0.005 c0.059,0.094,0.112,0.188,0.173,0.279c0.488,0.766,0.608,2.969-0.152,4.1c-0.199,0.262-7.677,2.887-9.41,3.805 c-1.987,1.055-5.231,3.479-5.231,8.942h41.164C50.643,44.838,46.941,42.154,45.412,41.359z M20.047,23.793 c0.018-0.019,0.039-0.037,0.059-0.056c0.002,0.015,0.004,0.022,0.01,0.037C20.091,23.777,20.069,23.787,20.047,23.793z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-93.4043" x2="-93.4043" y1="224.2959" y2="185.0837">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
</linearGradient>
-<path d="M45.41,41.36c-1.531-0.797-9.119-3.455-9.266-3.62-0.857-0.983-0.824-3.158-0.395-4.103,0.031-0.066,0.063-0.13,0.096-0.183,0.105-0.164,0.201-0.326,0.301-0.49h-0.002c0.748-1.223,1.377-2.438,1.891-3.579,0.93,0.32,2.121-0.543,2.715-2.006,0.615-1.512,0.35-3.084-0.594-3.51-0.055-0.023-0.109-0.025-0.162-0.043v-0.002c0.121-0.479,0.178-0.759,0.178-0.759,1.627-7.298-1.914-13.08-10.49-13.37-3.522,0-5.22,1.602-6.527,3.277-2.129,0.328-5.5,2.277-3.122,10.82-0.091,0.014-0.181,0.028-0.268,0.063-0.95,0.401-1.248,1.957-0.665,3.479,0.581,1.521,1.823,2.43,2.774,2.031,0.058-0.025,0.107-0.066,0.161-0.104,0.521,1.179,1.165,2.433,1.938,3.698h-0.003c0.027,0.043,0.052,0.087,0.08,0.131,0.016,0.026,0.031,0.049,0.045,0.075,0.002,0.003,0.003,0.005,0.003,0.005,0.059,0.094,0.112,0.188,0.173,0.279,0.488,0.766,0.608,2.969-0.152,4.1-0.199,0.262-7.677,2.887-9.41,3.805-1.987,1.055-5.231,3.479-5.231,8.942h41.16c0-5.46-3.7-8.15-5.23-8.94zm-25.36-17.57c0.018-0.019,0.039-0.037,0.059-0.056,0.002,0.015,0.004,0.022,0.01,0.037-0.03,0.01-0.05,0.02-0.07,0.02z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 235.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-93.4" x2="-93.4" y1="224.3" y2="185.1">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7515" stop-color="#0A0A0A"/>
-<stop offset="1" stop-color="#5F5F5F"/>
-</linearGradient>
-<path d="M10.06,50.3c0.155-3.579,1.808-6.231,4.92-7.881,0.907-0.481,3.585-1.5,5.737-2.319,3.566-1.355,3.695-1.431,3.856-1.646,0.84-1.237,0.785-3.278,0.363-4.364l-0.479-0.856c-0.698-1.142-1.337-2.362-1.902-3.631l-0.269-0.6-0.554,0.354-0.065,0.049c-0.087,0.041-0.171,0.059-0.261,0.059-0.535,0-1.338-0.618-1.775-1.764-0.509-1.322-0.219-2.516,0.357-2.759,0.022-0.011,0.088-0.021,0.136-0.026l0.175-0.028,0.521-0.05-0.374-1.53s-1.311-5.271,0.178-7.554c0.748-1.146,1.835-1.535,2.623-1.657l0.219-0.036,0.138-0.173c1.157-1.481,2.676-3.063,6.084-3.063,3.792,0.127,6.733,1.391,8.487,3.653,1.734,2.239,2.25,5.444,1.451,9.026-0.004,0.021-0.189,1.299-0.189,1.299l0.398,0.125c0.035,0.012,0.072,0.02,0.109,0.025,0.561,0.252,0.824,1.457,0.287,2.777-0.455,1.131-1.244,1.721-1.785,1.721-0.078,0-0.15-0.014-0.221-0.037l-0.486-0.168-0.211,0.471c-0.549,1.217-1.174,2.4-1.857,3.516l-0.48,0.856c-0.443,1.14-0.465,3.437,0.535,4.583,0,0,1.674,0.739,3.256,1.327,2.238,0.832,5.307,1.97,6.174,2.421,0.797,0.414,4.652,2.686,4.916,7.881l-40.05,0.01z" fill="url(#SVGID_4_)"/>
+<path d="M10.055,50.302c0.155-3.579,1.808-6.231,4.92-7.881c0.907-0.481,3.585-1.5,5.737-2.319 c3.566-1.355,3.695-1.431,3.856-1.646c0.84-1.237,0.785-3.278,0.363-4.364l-0.479-0.856c-0.698-1.142-1.337-2.362-1.902-3.631 l-0.269-0.6l-0.554,0.354l-0.065,0.049c-0.087,0.041-0.171,0.059-0.261,0.059c-0.535,0-1.338-0.618-1.775-1.764 c-0.509-1.322-0.219-2.516,0.357-2.759c0.022-0.011,0.088-0.021,0.136-0.026l0.175-0.028l0.521-0.05l-0.374-1.53 c0,0-1.311-5.271,0.178-7.554c0.748-1.146,1.835-1.535,2.623-1.657l0.219-0.036l0.138-0.173c1.157-1.481,2.676-3.063,6.084-3.063 c3.792,0.127,6.733,1.391,8.487,3.653c1.734,2.239,2.25,5.444,1.451,9.026c-0.004,0.021-0.189,1.299-0.189,1.299l0.398,0.125 c0.035,0.012,0.072,0.02,0.109,0.025c0.561,0.252,0.824,1.457,0.287,2.777c-0.455,1.131-1.244,1.721-1.785,1.721 c-0.078,0-0.15-0.014-0.221-0.037l-0.486-0.168l-0.211,0.471c-0.549,1.217-1.174,2.4-1.857,3.516l-0.48,0.856 c-0.443,1.14-0.465,3.437,0.535,4.583c0,0,1.674,0.739,3.256,1.327c2.238,0.832,5.307,1.97,6.174,2.421 c0.797,0.414,4.652,2.686,4.916,7.881L10.055,50.302L10.055,50.302z" fill="url(#SVGID_4_)"/>
+</g>
+</g>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,7.489,0,24.51,0,30,30,30,30,24.51,30,5.713,30,0"/>
-<path d="M1.777,26.31c-0.98,0-1.777-0.81-1.777-1.8v-17.02c0-0.988,0.797-1.792,1.777-1.792h0.125v-0.202c0-1.01,0.771-1.801,1.754-1.801h3.548c0.657,0,1.22,0.354,1.521,0.892,0.326-0.405,0.824-0.665,1.381-0.665h18.12c0.98,0,1.778,0.804,1.778,1.792v18.8c0,0.988-0.798,1.792-1.778,1.792h-26.45z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="2.879" x2="7.922" y1="6.067" y2="6.067">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="0.4788" stop-color="#7E8182"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<polygon fill="none" points="0,7.489 0,24.514 0,30 30,30 30,24.514 30,5.713 30,0 0,0 "/>
+<path d="M1.777,26.306C0.797,26.306,0,25.502,0,24.514V7.489c0-0.988,0.797-1.792,1.777-1.792h0.125V5.495 c0-1.01,0.771-1.801,1.754-1.801h3.548c0.657,0,1.22,0.354,1.521,0.892c0.326-0.405,0.824-0.665,1.381-0.665h18.116 c0.98,0,1.778,0.804,1.778,1.792v18.801c0,0.988-0.798,1.792-1.778,1.792H1.777z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="2.8789" x2="7.9217" y1="6.0669" y2="6.0669">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="0.4788" style="stop-color:#7E8182"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M7.957,7.439v-1.944c0-0.458-0.339-0.801-0.753-0.801h-3.548c-0.414,0-0.754,0.342-0.754,0.801v1.944h5.055z" fill="url(#SVGID_1__)"/>
-<radialGradient cx="5.43" cy="19.58" gradientTransform="matrix(1 0 0 1.008 0 -14.4484)" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="1.835">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<path d="M7.957,7.439V5.495c0-0.458-0.339-0.801-0.753-0.801H3.656c-0.414,0-0.754,0.342-0.754,0.801v1.944 H7.957z" fill="url(#SVGID_1__)"/>
+<radialGradient cx="5.4297" cy="19.583" gradientTransform="matrix(1 0 0 1.008 0 -14.4484)" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="1.8354">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</radialGradient>
-<path d="M7.204,4.694h-3.548c-0.414,0-0.754,0.342-0.754,0.801v0.393c0-0.459,0.34-0.801,0.754-0.801h3.548c0.414,0,0.753,0.342,0.753,0.801v-0.393c0-0.458-0.339-0.801-0.753-0.801z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="4.892" y2="25.34">
-<stop offset="0" stop-color="#D2D3D2"/>
-<stop offset="0.1212" stop-color="#D2D3D2"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9697" stop-color="#AFB3B2"/>
-<stop offset="0.9697" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
-</linearGradient>
-<path d="M28.22,4.921h-18.12c-0.428,0-0.777,0.355-0.777,0.792v0.984h-7.551c-0.427,0-0.777,0.356-0.777,0.792v17.02c0,0.436,0.35,0.792,0.777,0.792h26.44c0.427,0,0.778-0.356,0.778-0.792v-18.8c0-0.437-0.35-0.792-0.78-0.792z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.8" x2="24.8" y1="6.2" y2="9.553">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M7.204,4.694H3.656c-0.414,0-0.754,0.342-0.754,0.801v0.393c0-0.459,0.34-0.801,0.754-0.801h3.548 c0.414,0,0.753,0.342,0.753,0.801V5.495C7.957,5.037,7.618,4.694,7.204,4.694z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="4.8916" y2="25.3392">
+<stop offset="0" style="stop-color:#D2D3D2"/>
+<stop offset="0.1212" style="stop-color:#D2D3D2"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9697" style="stop-color:#AFB3B2"/>
+<stop offset="0.9697" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<rect fill="url(#SVGID_4__)" height="3.366" width="5.244" x="22.18" y="6.185"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.8" x2="24.8" y1="9.249" y2="6.475">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<path d="M28.222,4.921H10.105c-0.428,0-0.777,0.355-0.777,0.792v0.984H1.777C1.35,6.697,1,7.053,1,7.489 v17.024c0,0.436,0.35,0.792,0.777,0.792h26.444c0.427,0,0.778-0.356,0.778-0.792V5.713C29,5.276,28.648,4.921,28.222,4.921z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.7998" x2="24.7998" y1="6.1997" y2="9.553">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
+</linearGradient>
+<rect fill="url(#SVGID_4__)" height="3.366" width="5.244" x="22.179" y="6.185"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.8008" x2="24.8008" y1="9.249" y2="6.4746">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="2.801" width="4.583" x="22.51" y="6.468"/>
-<path d="M23.17,15.99c-0.002,4.312-3.498,8.564-7.811,8.563-4.311-0.002-7.806-4.257-7.806-8.568,0.003-4.312,3.499-7.806,7.812-7.804s7.8,3.504,7.8,7.814z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.37" x2="15.37" y1="7.844" y2="23.49">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<rect fill="url(#SVGID_5_)" height="2.801" width="4.583" x="22.509" y="6.468"/>
+<path d="M23.174,15.992c-0.002,4.312-3.498,8.564-7.811,8.563c-4.311-0.002-7.806-4.257-7.806-8.568 c0.003-4.312,3.499-7.806,7.812-7.804S23.174,11.681,23.174,15.992z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.3652" x2="15.3652" y1="7.8438" y2="23.4871">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<circle cx="15.37" cy="15.67" fill="url(#SVGID_6_)" r="7.778"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.37" x2="15.37" y1="8.182" y2="22.99">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<circle cx="15.366" cy="15.674" fill="url(#SVGID_6_)" r="7.778"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.3652" x2="15.3652" y1="8.1816" y2="22.9943">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<circle cx="15.37" cy="15.68" fill="url(#SVGID_7_)" r="7.388"/>
-<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.8701)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="11.91" x2="20.43" y1="12.28" y2="20.8">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<circle cx="15.366" cy="15.675" fill="url(#SVGID_7_)" r="7.388"/>
+<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.8701)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="11.9092" x2="20.4338" y1="12.2778" y2="20.8025">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<circle cx="15.37" cy="15.67" fill="url(#SVGID_8_)" r="6.028"/>
-<radialGradient cx="13.75" cy="1.954" gradientTransform="matrix(0.991 3.000000e-004 -3.000000e-004 0.991 2.3474 14.2158)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="6.531">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<circle cx="15.366" cy="15.674" fill="url(#SVGID_8_)" r="6.028"/>
+<radialGradient cx="13.751" cy="1.9536" gradientTransform="matrix(0.991 3.000000e-004 -3.000000e-004 0.991 2.3474 14.2158)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="6.5314">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<circle cx="15.36" cy="15.67" fill="url(#SVGID_9_)" r="5.639"/>
-<radialGradient cx="8.036" cy="-26.85" gradientTransform="matrix(0.9785 3.000000e-004 -3.000000e-004 0.9786 6.3194 35.8131)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.41">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<circle cx="15.365" cy="15.674" fill="url(#SVGID_9_)" r="5.639"/>
+<radialGradient cx="8.0361" cy="-26.853" gradientTransform="matrix(0.9785 3.000000e-004 -3.000000e-004 0.9786 6.3194 35.8131)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="11.413">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M19.45,15.67c-0.001,2.256-1.83,4.084-4.086,4.084-2.252-0.002-4.081-1.831-4.081-4.086,0.002-2.256,1.831-4.082,4.083-4.082,2.26,0.01,4.09,1.84,4.09,4.09z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="5.574" x2="5.574" y1="11.82" y2="9.385">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<path d="M19.449,15.674c-0.001,2.256-1.83,4.084-4.086,4.084c-2.252-0.002-4.081-1.831-4.081-4.086 c0.002-2.256,1.831-4.082,4.083-4.082C17.623,11.592,19.449,13.42,19.449,15.674z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="5.5742" x2="5.5742" y1="11.8188" y2="9.3852">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<circle cx="5.575" cy="10.56" fill="url(#SVGID_11_)" r="1.167"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.35" x2="15.35" y1="10.65" y2="15.64">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<circle cx="5.575" cy="10.556" fill="url(#SVGID_11_)" r="1.167"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.3457" x2="15.3457" y1="10.6523" y2="15.6356">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M15.35,15.61c1.81,0,3.515-0.274,5.02-0.758-0.428-2.386-2.51-4.201-5.02-4.201s-4.592,1.814-5.02,4.201c1.5,0.49,3.21,0.76,5.02,0.76z" fill="url(#SVGID_12_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="4.854" y2="25.29">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M15.346,15.611c1.81,0,3.515-0.274,5.02-0.758c-0.428-2.386-2.51-4.201-5.02-4.201 s-4.592,1.814-5.02,4.201C11.83,15.337,13.536,15.611,15.346,15.611z" fill="url(#SVGID_12_)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="4.8535" y2="25.2888">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M28.22,4.921h-18.12c-0.428,0-0.777,0.355-0.777,0.792v0.984h-7.551c-0.427,0-0.777,0.356-0.777,0.792v17.02c0,0.436,0.35,0.792,0.777,0.792,0,0-0.389-0.214-0.389-0.792v-17.02c0-0.222,0.175-0.401,0.389-0.401h7.94v-1.375c0-0.221,0.174-0.399,0.389-0.399h18.12c0.215,0,0.39,0.179,0.39,0.399v18.8c0,0.626-0.39,0.792-0.39,0.792,0.427,0,0.778-0.356,0.778-0.792v-18.8c-0.01-0.437-0.36-0.792-0.79-0.792z" fill="url(#SVGID_13_)"/>
+<path d="M28.222,4.921H10.105c-0.428,0-0.777,0.355-0.777,0.792v0.984H1.777C1.35,6.697,1,7.053,1,7.489 v17.024c0,0.436,0.35,0.792,0.777,0.792c0,0-0.389-0.214-0.389-0.792V7.489c0-0.222,0.175-0.401,0.389-0.401h7.551h0.389V6.697 V5.713c0-0.221,0.174-0.399,0.389-0.399h18.116c0.215,0,0.39,0.179,0.39,0.399v18.801c0,0.626-0.39,0.792-0.39,0.792 c0.427,0,0.778-0.356,0.778-0.792V5.713C29,5.276,28.648,4.921,28.222,4.921z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_album_art.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_album_art.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,47 +1,51 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="254.3" x2="254.3" y1="-249.3" y2="-287.2">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="254.3201" x2="254.3201" y1="-249.2754" y2="-287.1613">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="43.97,45.57,46.97,48.17,46.97,47.17,43.97,44.57"/>
+<polygon fill="url(#SVGID_1_)" points="43.971,45.572 46.969,48.167 46.969,47.167 43.971,44.572 "/>
+<g>
<rect fill="#E6E6E6" height="60" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="236.3" x2="236.3" y1="-247.8" y2="-289.4">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7515" stop-color="#0A0A0A"/>
-<stop offset="1" stop-color="#5F5F5F"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="236.2722" x2="236.2721" y1="-247.7856" y2="-289.4495">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
</linearGradient>
-<path d="M48.18,11.61v-2.369h-41.52v41.52h41.52v-2.365l-3.211-2.78v-31.23l3.21-2.78zm-19.27,27.38c0.012,2.455-2.216,4.751-5.433,5.619-3.804,1.025-7.515-0.415-8.287-3.219-0.771-2.802,1.688-5.908,5.496-6.936,2.413-0.65,4.788-0.309,6.399,0.745l-0.02-14.21,10.52-4.684,1.831,4.456-10.51,4.297c0.01,4.81-0.01,11.47,0,13.92z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="237.8" x2="237.8" y1="-247.9" y2="-288.5">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<path d="M48.18,11.608V9.241H6.663v41.518H48.18v-2.365l-3.211-2.78V14.39L48.18,11.608z M28.906,38.994 c0.012,2.455-2.216,4.751-5.433,5.619c-3.804,1.025-7.515-0.415-8.287-3.219c-0.771-2.802,1.688-5.908,5.496-6.936 c2.413-0.65,4.788-0.309,6.399,0.745L27.068,20.99l10.519-4.684l1.831,4.456l-10.51,4.297 C28.925,29.88,28.895,36.539,28.906,38.994z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="237.7576" x2="237.7576" y1="-247.876" y2="-288.4691">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<path d="M28.9,38.03c0-2.223,0.009-5.377,0.009-8.39,0,3.21-0.01,6.42-0.01,8.39z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="243" x2="243" y1="-247.9" y2="-288.5">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<path d="M28.904,38.032c0-2.223,0.009-5.377,0.009-8.39C28.91,32.846,28.902,36.063,28.904,38.032z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="243.0115" x2="243.0115" y1="-247.8755" y2="-288.468">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<path d="M28.91,26.13l10.51-4.297-0.377-0.917-10.13,4.144v1.08z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="236.3" x2="236.3" y1="-247.9" y2="-288.5">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<path d="M28.908,26.131l10.508-4.297l-0.377-0.917l-10.133,4.144C28.906,25.408,28.908,25.767,28.908,26.131 z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="236.2722" x2="236.2721" y1="-247.876" y2="-288.4626">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="1.071" width="41.52" x="6.663" y="9.241"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="235.9" x2="235.9" y1="-247.9" y2="-288.5">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<rect fill="url(#SVGID_5_)" height="1.071" width="41.518" x="6.663" y="9.241"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="235.9246" x2="235.9246" y1="-247.876" y2="-288.4659">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="13.14" width="0" x="27.07" y="22.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="230.8" x2="230.8" y1="-247.9" y2="-288.5">
-<stop offset="0" stop-color="#949494"/>
-<stop offset="1" stop-color="#393939"/>
+<rect fill="url(#SVGID_6_)" height="13.142" width="0" x="27.074" y="22.063"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="230.8259" x2="230.8259" y1="-247.8784" y2="-288.4679">
+<stop offset="0" style="stop-color:#949494"/>
+<stop offset="1" style="stop-color:#393939"/>
</linearGradient>
-<path d="M15.19,42.47c0.773,2.804,4.484,4.244,8.287,3.219,3.216-0.869,5.445-3.164,5.433-5.619-0.002-0.292-0.002-0.647-0.002-1.051,0,2.446-2.222,4.733-5.43,5.601-3.805,1.025-7.515-0.416-8.287-3.219-0.048-0.172-0.081-0.346-0.104-0.519-0.08,0.53-0.05,1.06,0.1,1.59z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="259.9" x2="259.9" y1="-253.1" y2="-284.7">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7515" stop-color="#0A0A0A"/>
-<stop offset="1" stop-color="#5F5F5F"/>
+<path d="M15.186,42.466c0.773,2.804,4.484,4.244,8.287,3.219c3.216-0.869,5.445-3.164,5.433-5.619 c-0.002-0.292-0.002-0.647-0.002-1.051c0,2.446-2.222,4.733-5.43,5.601c-3.805,1.025-7.515-0.416-8.287-3.219 c-0.048-0.172-0.081-0.346-0.104-0.519C15.01,41.407,15.043,41.94,15.186,42.466z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -238.8496)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="259.8601" x2="259.8601" y1="-253.0869" y2="-284.7125">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7515" style="stop-color:#0A0A0A"/>
+<stop offset="1" style="stop-color:#5F5F5F"/>
</linearGradient>
-<path d="M46.54,13.96v32.09c5.388-3.355,8.972-9.326,8.938-16.14-0.03-6.75-3.61-12.63-8.94-15.95z" fill="url(#SVGID_8_)"/>
-</svg>
\ No newline at end of file
+<path d="M46.542,13.956v32.088c5.388-3.355,8.972-9.326,8.938-16.139 C55.446,23.16,51.874,17.277,46.542,13.956z" fill="url(#SVGID_8_)"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_als.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_als.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,268 +1,270 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.56" x2="39.56" y1="1" y2="45.11">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="39.5586" x2="39.5586" y1="1" y2="45.1092">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M53.99,42.77c0,1.357-1.1,2.457-2.457,2.457h-23.95c-1.356,0-2.457-1.1-2.457-2.457v-39.31c0-1.357,1.1-2.456,2.46-2.456h23.95c1.357,0,2.457,1.099,2.457,2.456v39.31z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="39.56" x2="39.56" y1="1" y2="44.34">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M53.992,42.767c0,1.357-1.1,2.457-2.457,2.457H27.581c-1.356,0-2.457-1.1-2.457-2.457V3.456 C25.124,2.099,26.225,1,27.581,1h23.954c1.357,0,2.457,1.099,2.457,2.456V42.767z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="39.5586" x2="39.5586" y1="1" y2="44.3417">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M51.54,1h-23.96c-1.356,0-2.457,1.099-2.457,2.456v39.31c0,0.655,0.261,1.247,0.68,1.688-0.038-0.147-0.065-0.3-0.065-0.459v-40.54c0-1.017,0.827-1.842,1.842-1.842h23.95c1.018,0,1.844,0.825,1.844,1.842v40.54c0,0.159-0.027,0.312-0.066,0.459,0.42-0.44,0.68-1.032,0.68-1.688v-39.31c0.01-1.357-1.09-2.456-2.44-2.456z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="39.56" x2="39.56" y1="4.114" y2="33.56">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M51.535,1H27.581c-1.356,0-2.457,1.099-2.457,2.456v39.311c0,0.655,0.261,1.247,0.68,1.688 c-0.038-0.147-0.065-0.3-0.065-0.459v-1.229V4.685V3.456c0-1.017,0.827-1.842,1.842-1.842h23.954c1.018,0,1.844,0.825,1.844,1.842 v1.229v38.082v1.229c0,0.159-0.027,0.312-0.066,0.459c0.42-0.44,0.68-1.032,0.68-1.688V3.456C53.992,2.099,52.893,1,51.535,1z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="39.5586" x2="39.5586" y1="4.1138" y2="33.5567">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="29.48" stroke-opacity="0.6" width="25.18" x="26.97" y="4.07"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="39.56" x2="39.56" y1="4.727" y2="32.94">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="29.483" stroke-opacity="0.6" width="25.184" x="26.967" y="4.07"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="39.5586" x2="39.5586" y1="4.7266" y2="32.9417">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="28.25" width="23.95" x="27.58" y="4.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="39.56" x2="39.56" y1="5.299" y2="32.32">
-<stop offset="0" stop-color="#A6A6A6"/>
-<stop offset="1" stop-color="#585858"/>
+<rect fill="url(#SVGID_4_)" height="28.254" width="23.954" x="27.581" y="4.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="39.5586" x2="39.5586" y1="5.2988" y2="32.3247">
+<stop offset="0" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#585858"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="27.02" width="22.73" x="28.2" y="5.299"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="39.56" x2="39.56" y1="5.788" y2="16.19">
-<stop offset="0" stop-color="#D8D8D8"/>
-<stop offset="1" stop-color="#8B8B8B"/>
+<rect fill="url(#SVGID_5_)" height="27.025" width="22.727" x="28.195" y="5.299"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="39.5586" x2="39.5586" y1="5.7876" y2="16.1937">
+<stop offset="0" style="stop-color:#D8D8D8"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="50.92,14.51,28.2,16.97,28.2,5.913,50.92,5.913"/>
-<rect fill="#FFFFFF" fill-opacity="0.7" height="0.614" stroke-opacity="0.7" width="22.73" x="28.2" y="5.299"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="39.46" x2="39.46" y1="34.19" y2="43.32">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_6_)" points="50.922,14.514 28.195,16.969 28.195,5.913 50.922,5.913 "/>
+<rect fill="#FFFFFF" fill-opacity="0.7" height="0.614" stroke-opacity="0.7" width="22.727" x="28.195" y="5.299"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="39.4639" x2="39.4639" y1="34.1924" y2="43.3226">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M37.24,43.38c-1.316,0-2.387-1.06-2.387-2.362v-4.489c0-1.303,1.07-2.362,2.387-2.362h4.439c1.316,0,2.387,1.06,2.387,2.362v4.489c0,1.303-1.07,2.362-2.387,2.362h-4.436z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M37.24,42.77c-0.975,0-1.77-0.784-1.77-1.748v-4.489c0-0.964,0.795-1.747,1.77-1.747h4.447c0.975,0,1.77,0.783,1.77,1.747v4.489c0,0.964-0.795,1.748-1.77,1.748h-4.45z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="39.46" x2="39.46" y1="35.36" y2="42.16">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M37.244,43.381c-1.316,0-2.387-1.06-2.387-2.362v-4.489 c0-1.303,1.07-2.362,2.387-2.362h4.439c1.316,0,2.387,1.06,2.387,2.362v4.489c0,1.303-1.07,2.362-2.387,2.362H37.244z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M37.24,42.767c-0.975,0-1.77-0.784-1.77-1.748v-4.489c0-0.964,0.795-1.747,1.77-1.747h4.447 c0.975,0,1.77,0.783,1.77,1.747v4.489c0,0.964-0.795,1.748-1.77,1.748H37.24z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="39.4639" x2="39.4639" y1="35.3643" y2="42.1641">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M42.84,41.02c0,0.627-0.516,1.134-1.15,1.134h-4.455c-0.635,0-1.15-0.507-1.15-1.134v-4.489c0-0.626,0.516-1.134,1.15-1.134h4.455c0.635,0,1.15,0.508,1.15,1.134v4.489z" fill="url(#SVGID_8_)"/>
-<path d="M38.54,40.92c-0.678,0-1.229-0.55-1.229-1.229v-1.843c0-0.679,0.551-1.228,1.229-1.228h1.842c0.678,0,1.229,0.549,1.229,1.228v1.843c0,0.679-0.551,1.229-1.229,1.229h-1.837z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="39.46" x2="39.46" y1="37.22" y2="40.31">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
-</linearGradient>
-<path d="M38.54,40.31c-0.338,0-0.615-0.276-0.615-0.614v-1.843c0-0.338,0.277-0.614,0.615-0.614h1.842c0.338,0,0.615,0.276,0.615,0.614v1.843c0,0.338-0.277,0.614-0.615,0.614h-1.837z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.68" x2="29.68" y1="34.75" y2="42.16">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M42.842,41.019c0,0.627-0.516,1.134-1.15,1.134h-4.455c-0.635,0-1.15-0.507-1.15-1.134v-4.489 c0-0.626,0.516-1.134,1.15-1.134h4.455c0.635,0,1.15,0.508,1.15,1.134V41.019z" fill="url(#SVGID_8_)"/>
+<path d="M38.543,40.924c-0.678,0-1.229-0.55-1.229-1.229v-1.843c0-0.679,0.551-1.228,1.229-1.228 h1.842c0.678,0,1.229,0.549,1.229,1.228v1.843c0,0.679-0.551,1.229-1.229,1.229H38.543z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="39.4639" x2="39.4639" y1="37.2236" y2="40.3145">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M29.33,42.15c-1.302,0-2.362-1.06-2.362-2.362v-2.646c0-1.303,1.06-2.362,2.362-2.362h0.709c1.302,0,2.362,1.06,2.362,2.362v2.646c0,1.303-1.061,2.362-2.362,2.362h-0.711z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.68" x2="29.68" y1="35.37" y2="41.55">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M38.543,40.31c-0.338,0-0.615-0.276-0.615-0.614v-1.843c0-0.338,0.277-0.614,0.615-0.614h1.842 c0.338,0,0.615,0.276,0.615,0.614v1.843c0,0.338-0.277,0.614-0.615,0.614H38.543z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.6831" x2="29.6831" y1="34.748" y2="42.165">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M29.33,41.54c-0.963,0-1.748-0.784-1.748-1.748v-2.646c0-0.963,0.785-1.749,1.748-1.749h0.709c0.964,0,1.747,0.786,1.747,1.749v2.646c0,0.964-0.783,1.748-1.747,1.748h-0.711z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="29.68" x2="29.68" y1="35.99" y2="40.93">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M29.329,42.152c-1.302,0-2.362-1.06-2.362-2.362v-2.646 c0-1.303,1.06-2.362,2.362-2.362h0.709c1.302,0,2.362,1.06,2.362,2.362v2.646c0,1.303-1.061,2.362-2.362,2.362H29.329z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.6831" x2="29.6831" y1="35.3672" y2="41.5488">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
+</linearGradient>
+<path d="M29.329,41.538c-0.963,0-1.748-0.784-1.748-1.748v-2.646 c0-0.963,0.785-1.749,1.748-1.749h0.709c0.964,0,1.747,0.786,1.747,1.749v2.646c0,0.964-0.783,1.748-1.747,1.748H29.329z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="29.6831" x2="29.6831" y1="35.9873" y2="40.9326">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M31.17,39.79c0,0.626-0.508,1.134-1.134,1.134h-0.709c-0.625,0-1.134-0.508-1.134-1.134v-2.646c0-0.627,0.508-1.135,1.134-1.135h0.709c0.626,0,1.134,0.508,1.134,1.135v2.65z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="48.9" x2="48.9" y1="34.75" y2="42.16">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M31.172,39.79c0,0.626-0.508,1.134-1.134,1.134h-0.709c-0.625,0-1.134-0.508-1.134-1.134v-2.646 c0-0.627,0.508-1.135,1.134-1.135h0.709c0.626,0,1.134,0.508,1.134,1.135V39.79z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="48.9043" x2="48.9043" y1="34.748" y2="42.165">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M48.55,42.15c-1.301,0-2.361-1.06-2.361-2.362v-2.646c0-1.303,1.061-2.362,2.361-2.362h0.709c1.303,0,2.363,1.06,2.363,2.362v2.646c0,1.303-1.061,2.362-2.363,2.362h-0.711z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="48.9" x2="48.9" y1="35.37" y2="41.55">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M48.549,42.152c-1.301,0-2.361-1.06-2.361-2.362v-2.646 c0-1.303,1.061-2.362,2.361-2.362h0.709c1.303,0,2.363,1.06,2.363,2.362v2.646c0,1.303-1.061,2.362-2.363,2.362H48.549z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="48.9033" x2="48.9033" y1="35.3672" y2="41.5488">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M48.55,41.54c-0.963,0-1.748-0.784-1.748-1.748v-2.646c0-0.963,0.785-1.749,1.748-1.749h0.709c0.965,0,1.748,0.786,1.748,1.749v2.646c0,0.964-0.783,1.748-1.748,1.748h-0.711z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="48.9" x2="48.9" y1="35.99" y2="40.93">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M48.549,41.538c-0.963,0-1.748-0.784-1.748-1.748v-2.646 c0-0.963,0.785-1.749,1.748-1.749h0.709c0.965,0,1.748,0.786,1.748,1.749v2.646c0,0.964-0.783,1.748-1.748,1.748H48.549z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="48.9043" x2="48.9043" y1="35.9873" y2="40.9326">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M50.39,39.79c0,0.626-0.51,1.134-1.135,1.134h-0.709c-0.625,0-1.133-0.508-1.133-1.134v-2.646c0-0.627,0.508-1.135,1.133-1.135h0.709c0.625,0,1.135,0.508,1.135,1.135v2.65z" fill="url(#SVGID_15_)"/>
-<path d="M45.14,28.4h-11.24v-1.411c0-1.2,0.271-2.36,0.813-3.484,0.543-1.122,1.955-2.538,4.24-4.246,1.324-0.989,2.172-1.764,2.541-2.325s0.555-1.121,0.555-1.677c0-0.893-0.32-1.597-0.959-2.108-0.639-0.515-1.465-0.771-2.482-0.771-0.854,0-2.328,0.198-4.42,0.59v-2.086c1.785-0.375,3.35-0.561,4.693-0.561,1.967,0,3.502,0.434,4.607,1.301,1.102,0.868,1.654,2.052,1.654,3.549,0,0.652-0.135,1.327-0.402,2.023-0.27,0.695-0.689,1.332-1.26,1.908-0.57,0.574-1.395,1.271-2.469,2.086-1.219,0.911-2.059,1.62-2.52,2.124-0.461,0.503-0.813,1.031-1.051,1.582-0.24,0.553-0.369,1.083-0.389,1.592h8.09v1.918z" fill="#FFFFFF"/>
-<path d="M28.77,6.527h-3.647v36.24c0,0.166,0.018,0.327,0.049,0.482,0.024,0.127,0.066,0.247,0.111,0.366,0.009,0.025,0.014,0.055,0.024,0.079,0.366,0.896,1.244,1.529,2.272,1.529h4.876v-35.02c0.01-2.032-1.65-3.686-3.68-3.686z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M28.77,7.142h-3.647v35.62c0,0.166,0.018,0.327,0.049,0.482,0.024,0.127,0.066,0.247,0.111,0.366,0.009,0.025,0.014,0.055,0.024,0.079,0.366,0.896,1.244,1.529,2.272,1.529h4.261v-35.02c0.01-1.693-1.37-3.071-3.06-3.071z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.79" x2="16.79" y1="7.756" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M50.393,39.79c0,0.626-0.51,1.134-1.135,1.134h-0.709c-0.625,0-1.133-0.508-1.133-1.134v-2.646 c0-0.627,0.508-1.135,1.133-1.135h0.709c0.625,0,1.135,0.508,1.135,1.135V39.79z" fill="url(#SVGID_15_)"/>
+<path d="M45.141,28.398H33.898v-1.411c0-1.2,0.271-2.36,0.813-3.484c0.543-1.122,1.955-2.538,4.24-4.246 c1.324-0.989,2.172-1.764,2.541-2.325c0.369-0.561,0.555-1.121,0.555-1.677c0-0.893-0.32-1.597-0.959-2.108 c-0.639-0.515-1.465-0.771-2.482-0.771c-0.854,0-2.328,0.198-4.42,0.59v-2.086c1.785-0.375,3.35-0.561,4.693-0.561 c1.967,0,3.502,0.434,4.607,1.301c1.102,0.868,1.654,2.052,1.654,3.549c0,0.652-0.135,1.327-0.402,2.023 c-0.27,0.695-0.689,1.332-1.26,1.908c-0.57,0.574-1.395,1.271-2.469,2.086c-1.219,0.911-2.059,1.62-2.52,2.124 c-0.461,0.503-0.813,1.031-1.051,1.582c-0.24,0.553-0.369,1.083-0.389,1.592h8.09V28.398z" fill="#FFFFFF"/>
+<path d="M28.771,6.527h-3.647v36.239c0,0.166,0.018,0.327,0.049,0.482c0.024,0.127,0.066,0.247,0.111,0.366 c0.009,0.025,0.014,0.055,0.024,0.079c0.366,0.896,1.244,1.529,2.272,1.529h4.876V10.213C32.457,8.181,30.804,6.527,28.771,6.527z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M28.771,7.142h-3.647v35.625c0,0.166,0.018,0.327,0.049,0.482c0.024,0.127,0.066,0.247,0.111,0.366 c0.009,0.025,0.014,0.055,0.024,0.079c0.366,0.896,1.244,1.529,2.272,1.529h4.261V10.213C31.842,8.52,30.465,7.142,28.771,7.142z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.7939" x2="16.7939" y1="7.7559" y2="51.8661">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M31.23,49.52c0,1.357-1.1,2.458-2.457,2.458h-23.95c-1.356,0-2.457-1.101-2.457-2.458v-39.31c0-1.357,1.101-2.457,2.457-2.457h23.96c1.357,0,2.457,1.1,2.457,2.457v39.31z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="16.79" x2="16.79" y1="7.756" y2="51.1">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M31.229,49.522c0,1.357-1.1,2.458-2.457,2.458H4.816c-1.356,0-2.457-1.101-2.457-2.458v-39.31 c0-1.357,1.101-2.457,2.457-2.457h23.955c1.357,0,2.457,1.1,2.457,2.457V49.522z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="16.7939" x2="16.7939" y1="7.7559" y2="51.0995">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M28.77,7.756h-23.95c-1.356,0-2.457,1.1-2.457,2.457v39.31c0,0.656,0.26,1.249,0.68,1.689-0.039-0.148-0.066-0.302-0.066-0.46v-40.54c0-1.017,0.827-1.843,1.843-1.843h23.96c1.017,0,1.842,0.826,1.842,1.843v40.54c0,0.158-0.025,0.312-0.064,0.46,0.418-0.44,0.68-1.033,0.68-1.689v-39.31c0-1.355-1.1-2.454-2.46-2.454z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="16.79" x2="16.79" y1="10.87" y2="40.31">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.771,7.756H4.816c-1.356,0-2.457,1.1-2.457,2.457v39.31c0,0.656,0.26,1.249,0.68,1.689 c-0.039-0.148-0.066-0.302-0.066-0.46v-1.229V11.441v-1.229c0-1.017,0.827-1.843,1.843-1.843h23.955 c1.017,0,1.842,0.826,1.842,1.843v1.229v38.081v1.229c0,0.158-0.025,0.312-0.064,0.46c0.418-0.44,0.68-1.033,0.68-1.689v-39.31 C31.229,8.855,30.129,7.756,28.771,7.756z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="16.7939" x2="16.7939" y1="10.8696" y2="40.3126">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_18_)" fill-opacity="0.6" height="29.48" stroke-opacity="0.6" width="25.18" x="4.202" y="10.83"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.79" x2="16.79" y1="11.48" y2="39.7">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_18_)" fill-opacity="0.6" height="29.483" stroke-opacity="0.6" width="25.184" x="4.202" y="10.826"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.7939" x2="16.7939" y1="11.4834" y2="39.6986">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_19_)" height="28.25" width="23.96" x="4.816" y="11.44"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="16.79" x2="16.79" y1="12.05" y2="39.08">
-<stop offset="0" stop-color="#A6A6A6"/>
-<stop offset="1" stop-color="#585858"/>
+<rect fill="url(#SVGID_19_)" height="28.254" width="23.955" x="4.816" y="11.441"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="16.7939" x2="16.7939" y1="12.0547" y2="39.0815">
+<stop offset="0" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#585858"/>
</linearGradient>
-<rect fill="url(#SVGID_20_)" height="27.03" width="22.73" x="5.431" y="12.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="16.79" x2="16.79" y1="12.54" y2="22.95">
-<stop offset="0" stop-color="#D8D8D8"/>
-<stop offset="1" stop-color="#8B8B8B"/>
+<rect fill="url(#SVGID_20_)" height="27.026" width="22.727" x="5.431" y="12.055"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="16.7939" x2="16.7939" y1="12.5435" y2="22.9495">
+<stop offset="0" style="stop-color:#D8D8D8"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
-<polygon fill="url(#SVGID_21_)" points="28.16,21.27,5.431,23.72,5.431,12.67,28.16,12.67"/>
-<rect fill="#FFFFFF" fill-opacity="0.7" height="0.614" stroke-opacity="0.7" width="22.73" x="5.431" y="12.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="16.7" x2="16.7" y1="40.95" y2="50.08">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_21_)" points="28.157,21.27 5.431,23.725 5.431,12.669 28.157,12.669 "/>
+<rect fill="#FFFFFF" fill-opacity="0.7" height="0.614" stroke-opacity="0.7" width="22.727" x="5.431" y="12.055"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="16.6992" x2="16.6992" y1="40.9492" y2="50.0804">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M14.48,50.14c-1.316,0-2.387-1.062-2.387-2.363v-4.489c0-1.303,1.071-2.362,2.387-2.362h4.44c1.315,0,2.387,1.06,2.387,2.362v4.489c0,1.302-1.071,2.363-2.387,2.363h-4.441z" fill="url(#SVGID_22_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M14.48,49.52c-0.975,0-1.769-0.783-1.769-1.747v-4.489c0-0.965,0.794-1.748,1.769-1.748h4.447c0.975,0,1.769,0.783,1.769,1.748v4.489c0,0.964-0.794,1.747-1.769,1.747h-4.454z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="16.7" x2="16.7" y1="42.12" y2="48.92">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M14.479,50.139c-1.316,0-2.387-1.062-2.387-2.363v-4.489 c0-1.303,1.071-2.362,2.387-2.362h4.44c1.315,0,2.387,1.06,2.387,2.362v4.489c0,1.302-1.071,2.363-2.387,2.363H14.479z" fill="url(#SVGID_22_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M14.476,49.522c-0.975,0-1.769-0.783-1.769-1.747v-4.489c0-0.965,0.794-1.748,1.769-1.748 h4.447c0.975,0,1.769,0.783,1.769,1.748v4.489c0,0.964-0.794,1.747-1.769,1.747H14.476z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="16.6992" x2="16.6992" y1="42.1211" y2="48.9199">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M20.08,47.78c0,0.626-0.515,1.133-1.149,1.133h-4.457c-0.634,0-1.15-0.507-1.15-1.133v-4.489c0-0.625,0.516-1.134,1.15-1.134h4.457c0.634,0,1.149,0.509,1.149,1.134v4.485z" fill="url(#SVGID_23_)"/>
-<path d="M15.78,47.68c-0.677,0-1.228-0.55-1.228-1.229v-1.842c0-0.678,0.551-1.229,1.228-1.229h1.843c0.677,0,1.229,0.551,1.229,1.229v1.842c0,0.679-0.551,1.229-1.229,1.229h-1.843z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="16.7" x2="16.7" y1="43.98" y2="47.07">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M20.077,47.775c0,0.626-0.515,1.133-1.149,1.133h-4.457c-0.634,0-1.15-0.507-1.15-1.133v-4.489 c0-0.625,0.516-1.134,1.15-1.134h4.457c0.634,0,1.149,0.509,1.149,1.134V47.775z" fill="url(#SVGID_23_)"/>
+<path d="M15.777,47.68c-0.677,0-1.228-0.55-1.228-1.229v-1.842c0-0.678,0.551-1.229,1.228-1.229h1.843 c0.677,0,1.229,0.551,1.229,1.229v1.842c0,0.679-0.551,1.229-1.229,1.229H15.777z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="16.6997" x2="16.6997" y1="43.9805" y2="47.0723">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M15.78,47.07c-0.337,0-0.613-0.278-0.613-0.616v-1.842c0-0.338,0.276-0.614,0.613-0.614h1.843c0.337,0,0.614,0.276,0.614,0.614v1.842c0,0.338-0.277,0.616-0.614,0.616h-1.843z" fill="url(#SVGID_24_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.918" x2="6.918" y1="41.5" y2="48.92">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M15.777,47.067c-0.337,0-0.613-0.278-0.613-0.616v-1.842c0-0.338,0.276-0.614,0.613-0.614h1.843 c0.337,0,0.614,0.276,0.614,0.614v1.842c0,0.338-0.277,0.616-0.614,0.616H15.777z" fill="url(#SVGID_24_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.9185" x2="6.9185" y1="41.5039" y2="48.9209">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M6.564,48.91c-1.303,0-2.362-1.06-2.362-2.361v-2.65c0-1.303,1.06-2.362,2.362-2.362h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.059,2.361-2.362,2.361h-0.708z" fill="url(#SVGID_25_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.919" x2="6.919" y1="42.12" y2="48.31">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M6.564,48.908c-1.303,0-2.362-1.06-2.362-2.361V43.9c0-1.303,1.06-2.362,2.362-2.362 h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.059,2.361-2.362,2.361H6.564z" fill="url(#SVGID_25_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.9189" x2="6.9189" y1="42.124" y2="48.3067">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M6.564,48.3c-0.964,0-1.748-0.785-1.748-1.749v-2.65c0-0.963,0.784-1.748,1.748-1.748h0.708c0.965,0,1.749,0.785,1.749,1.748v2.646c0,0.964-0.784,1.749-1.749,1.749h-0.708z" fill="url(#SVGID_26_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.918" x2="6.918" y1="42.74" y2="47.69">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M6.564,48.296c-0.964,0-1.748-0.785-1.748-1.749V43.9 c0-0.963,0.784-1.748,1.748-1.748h0.708c0.965,0,1.749,0.785,1.749,1.748v2.646c0,0.964-0.784,1.749-1.749,1.749H6.564z" fill="url(#SVGID_26_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.9185" x2="6.9185" y1="42.7441" y2="47.6885">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M8.407,46.55c0,0.626-0.508,1.133-1.134,1.133h-0.709c-0.625,0-1.134-0.507-1.134-1.133v-2.65c0-0.627,0.508-1.134,1.134-1.134h0.708c0.626,0,1.134,0.507,1.134,1.134v2.647z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.14" x2="26.14" y1="41.5" y2="48.92">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M8.407,46.547c0,0.626-0.508,1.133-1.134,1.133H6.564c-0.625,0-1.134-0.507-1.134-1.133V43.9 c0-0.627,0.508-1.134,1.134-1.134h0.708c0.626,0,1.134,0.507,1.134,1.134V46.547z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.1392" x2="26.1392" y1="41.5039" y2="48.9209">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M25.78,48.91c-1.303,0-2.362-1.06-2.362-2.361v-2.65c0-1.303,1.06-2.362,2.362-2.362h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.06,2.361-2.362,2.361h-0.705z" fill="url(#SVGID_28_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.14" x2="26.14" y1="42.12" y2="48.31">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M25.785,48.908c-1.303,0-2.362-1.06-2.362-2.361V43.9c0-1.303,1.06-2.362,2.362-2.362 h0.708c1.303,0,2.362,1.06,2.362,2.362v2.646c0,1.302-1.06,2.361-2.362,2.361H25.785z" fill="url(#SVGID_28_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.1392" x2="26.1392" y1="42.124" y2="48.3067">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M25.78,48.3c-0.965,0-1.749-0.785-1.749-1.749v-2.65c0-0.963,0.784-1.748,1.749-1.748h0.708c0.964,0,1.748,0.785,1.748,1.748v2.646c0,0.964-0.784,1.749-1.748,1.749h-0.705z" fill="url(#SVGID_29_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="26.14" x2="26.14" y1="42.74" y2="47.69">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M25.785,48.296c-0.965,0-1.749-0.785-1.749-1.749V43.9 c0-0.963,0.784-1.748,1.749-1.748h0.708c0.964,0,1.748,0.785,1.748,1.748v2.646c0,0.964-0.784,1.749-1.748,1.749H25.785z" fill="url(#SVGID_29_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="26.1392" x2="26.1392" y1="42.7441" y2="47.6885">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M27.63,46.55c0,0.626-0.508,1.133-1.134,1.133h-0.708c-0.626,0-1.134-0.507-1.134-1.133v-2.65c0-0.627,0.508-1.134,1.134-1.134h0.708c0.626,0,1.134,0.507,1.134,1.134v2.647z" fill="url(#SVGID_30_)"/>
-<path d="M22.74,35.16h-11.26v-1.944h4.089v-12.99l-4.089,0.764v-1.944l5.629-1.856h1.541v16.02h4.088v1.945z" fill="#FFFFFF"/>
-<path d="M53.36,31.1c-0.514-0.514-1.412-0.886-2.137-0.886h-15.91c-1.004,0-1.822,0.815-1.822,1.819v13.18h18.04c1.029,0,1.908-0.634,2.273-1.529,0.01-0.024,0.014-0.052,0.023-0.075,0.045-0.119,0.086-0.241,0.111-0.37,0.033-0.155,0.049-0.316,0.049-0.482v-11.03l-0.62-0.64z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M52.92,31.54c-0.396-0.396-1.145-0.706-1.703-0.706h-15.91c-0.666,0-1.207,0.539-1.207,1.204v13.18h17.43c1.029,0,1.908-0.634,2.273-1.529,0.01-0.024,0.014-0.052,0.023-0.075,0.045-0.119,0.086-0.241,0.111-0.37,0.033-0.155,0.049-0.316,0.049-0.482v-10.16l-1.07-1.069z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="46.18" x2="46.18" y1="31.42" y2="59.03">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<path d="M27.627,46.547c0,0.626-0.508,1.133-1.134,1.133h-0.708c-0.626,0-1.134-0.507-1.134-1.133V43.9 c0-0.627,0.508-1.134,1.134-1.134h0.708c0.626,0,1.134,0.507,1.134,1.134V46.547z" fill="url(#SVGID_30_)"/>
+<path d="M22.736,35.155H11.479v-1.944h4.089V20.226l-4.089,0.764v-1.944l5.629-1.856h1.541v16.022h4.088V35.155z" fill="#FFFFFF"/>
+<path d="M53.357,31.105c-0.514-0.514-1.412-0.886-2.137-0.886H35.314c-1.004,0-1.822,0.815-1.822,1.819v13.185h18.043 c1.029,0,1.908-0.634,2.273-1.529c0.01-0.024,0.014-0.052,0.023-0.075c0.045-0.119,0.086-0.241,0.111-0.37 c0.033-0.155,0.049-0.316,0.049-0.482V31.74L53.357,31.105z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M52.924,31.541c-0.396-0.396-1.145-0.706-1.703-0.706H35.314c-0.666,0-1.207,0.539-1.207,1.204v13.185 h17.428c1.029,0,1.908-0.634,2.273-1.529c0.01-0.024,0.014-0.052,0.023-0.075c0.045-0.119,0.086-0.241,0.111-0.37 c0.033-0.155,0.049-0.316,0.049-0.482V32.609L52.924,31.541z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="46.1797" x2="46.1797" y1="31.418" y2="59.0309">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<path d="M57.05,59h-21.74c-0.328,0-0.594-0.266-0.594-0.592v-26.37c0-0.324,0.266-0.591,0.594-0.591h15.91c0.396,0,0.988,0.247,1.27,0.526l4.625,4.621c0.279,0.282,0.523,0.874,0.523,1.271v20.54c0,0.32-0.26,0.59-0.59,0.59z" fill="url(#SVGID_31_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="46.18" x2="46.18" y1="32.13" y2="58.31">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M57.047,59H35.314c-0.328,0-0.594-0.266-0.594-0.592V32.039c0-0.324,0.266-0.591,0.594-0.591h15.906 c0.396,0,0.988,0.247,1.27,0.526l4.625,4.621c0.279,0.282,0.523,0.874,0.523,1.271v20.542C57.639,58.734,57.375,59,57.047,59 L57.047,59z" fill="url(#SVGID_31_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="46.1816" x2="46.1816" y1="32.1338" y2="58.3145">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M56.96,58.31h-21.55v-26.18h15.81c0.213,0,0.633,0.174,0.785,0.326l4.625,4.62c0.15,0.153,0.326,0.572,0.326,0.786v20.44l0.01-0.004z" fill="url(#SVGID_32_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="44.82" x2="44.82" y1="56.12" y2="42.4">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M56.957,58.314H35.406V32.134h15.814c0.213,0,0.633,0.174,0.785,0.326l4.625,4.62 c0.15,0.153,0.326,0.572,0.326,0.786V58.314L56.957,58.314z" fill="url(#SVGID_32_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="44.8232" x2="44.8232" y1="56.125" y2="42.3986">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_33_)" height="13.83" width="16.13" x="36.76" y="42.35"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="0.685" stroke-opacity="0.4" width="16.13" x="36.76" y="56.18"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="39.07" x2="39.07" y1="43.01" y2="55.17">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_33_)" height="13.831" width="16.127" x="36.76" y="42.347"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.685" stroke-opacity="0.4" width="16.127" x="36.76" y="56.178"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="39.0664" x2="39.0664" y1="43.0127" y2="55.1728">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_34_)" height="3.772" width="2.934" x="37.6" y="51.52"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="46.28" x2="46.28" y1="43.15" y2="55">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_34_)" height="3.772" width="2.934" x="37.6" y="51.523"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="46.2803" x2="46.2803" y1="43.1504" y2="55.0011">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_35_)" height="3.771" width="2.713" x="44.92" y="43.14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="42.73" x2="42.73" y1="43.15" y2="55">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_35_)" height="3.771" width="2.713" x="44.924" y="43.142"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="42.7275" x2="42.7275" y1="43.1504" y2="55.0011">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_36_)" height="3.771" width="2.713" x="41.37" y="43.14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="50.25" x2="50.25" y1="43.15" y2="55">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_36_)" height="3.771" width="2.713" x="41.371" y="43.142"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="50.25" x2="50.25" y1="43.1504" y2="55.0011">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_37_)" height="3.771" width="3.551" x="48.48" y="43.14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.28" x2="46.28" y1="43.01" y2="55.17">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_37_)" height="3.771" width="3.551" x="48.475" y="43.142"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.2803" x2="46.2803" y1="43.0127" y2="55.1728">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_38_)" height="3.772" width="2.713" x="44.92" y="51.52"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="42.73" x2="42.73" y1="43.01" y2="55.17">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_38_)" height="3.772" width="2.713" x="44.924" y="51.523"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="42.7275" x2="42.7275" y1="43.0127" y2="55.1728">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_39_)" height="3.772" width="2.713" x="41.37" y="51.52"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="44.81" x2="44.81" y1="43.15" y2="54.98">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_39_)" height="3.772" width="2.713" x="41.371" y="51.523"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="44.8125" x2="44.8125" y1="43.1504" y2="54.9801">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<polygon fill="url(#SVGID_40_)" points="40.49,47.75,40.49,43.14,37.6,43.14,37.6,50.68,52.02,50.68,52.02,47.75"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.25" x2="50.25" y1="43.01" y2="55.17">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<polygon fill="url(#SVGID_40_)" points="40.486,47.752 40.486,43.142 37.6,43.142 37.6,50.685 52.025,50.685 52.025,47.752 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.25" x2="50.25" y1="43.0127" y2="55.1728">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_41_)" height="3.772" width="3.551" x="48.48" y="51.52"/>
+<rect fill="url(#SVGID_41_)" height="3.772" width="3.551" x="48.475" y="51.523"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_application.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_application.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,57 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2267" x2="-2267" y1="-3741" y2="-3730">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="1" stop-color="#66924D"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2266.5317" x2="-2266.5317" y1="-3740.9238" y2="-3730.1428">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="1" style="stop-color:#66924D"/>
</linearGradient>
-<path d="M53.46,11.17l-2.885-6.015s-0.652-1.714-2.693-2.042h-35.8c-2.04,0.327-2.693,2.042-2.693,2.042l-2.886,6.015c-0.699,0.789-0.862,1.795-0.897,2.395h48.75c-0.03-0.59-0.2-1.6-0.9-2.39z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2267" x2="-2267" y1="-3734" y2="-3686">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.1394" stop-color="#98B060"/>
-<stop offset="0.6909" stop-color="#336541"/>
-<stop offset="0.9515" stop-color="#89B663"/>
-<stop offset="1" stop-color="#89B663"/>
+<path d="M53.46,11.174l-2.885-6.015c0,0-0.652-1.714-2.693-2.042H12.091 c-2.04,0.327-2.693,2.042-2.693,2.042l-2.886,6.015c-0.699,0.789-0.862,1.795-0.897,2.395h48.747 C54.326,12.969,54.163,11.963,53.46,11.174z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2266.5195" x2="-2266.5195" y1="-3734.1553" y2="-3685.6365">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.1394" style="stop-color:#98B060"/>
+<stop offset="0.6909" style="stop-color:#336541"/>
+<stop offset="0.9515" style="stop-color:#89B663"/>
+<stop offset="1" style="stop-color:#89B663"/>
</linearGradient>
-<path d="M54.39,53.63c0,1.926-1.558,3.484-3.481,3.484h-41.81c-1.926,0-3.484-1.561-3.484-3.484v-40.06c0-1.923,1.558-3.483,3.484-3.483h41.81c1.921,0,3.481,1.56,3.481,3.483v40.07l0.01-0.001z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2267" x2="-2267" y1="-3734" y2="-3698">
-<stop offset="0" stop-color="#4E8146"/>
-<stop offset="1" stop-color="#326644"/>
+<path d="M54.386,53.631c0,1.926-1.558,3.484-3.481,3.484H9.099c-1.926,0-3.484-1.561-3.484-3.484V13.567 c0-1.923,1.558-3.483,3.484-3.483h41.806c1.921,0,3.481,1.56,3.481,3.483V53.631L54.386,53.631z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2266.5181" x2="-2266.5181" y1="-3734.0898" y2="-3698.1501">
+<stop offset="0" style="stop-color:#4E8146"/>
+<stop offset="1" style="stop-color:#326644"/>
</linearGradient>
-<path d="M12.58,44.92h34.84c1.927,0,3.486-1.561,3.486-3.485v-31.36h-41.81v31.35c0,1.92,1.561,3.48,3.481,3.48z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2267" x2="-2267" y1="-3702" y2="-3686">
-<stop offset="0" stop-color="#326644"/>
-<stop offset="0.7758" stop-color="#4E8146"/>
-<stop offset="1" stop-color="#98B060"/>
+<path d="M12.583,44.923h34.835c1.927,0,3.486-1.561,3.486-3.485V10.084H9.099v31.353 C9.099,43.362,10.657,44.923,12.583,44.923z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2266.5195" x2="-2266.5195" y1="-3702.2539" y2="-3686.2131">
+<stop offset="0" style="stop-color:#326644"/>
+<stop offset="0.7758" style="stop-color:#4E8146"/>
+<stop offset="1" style="stop-color:#98B060"/>
</linearGradient>
-<path d="M49.22,44.41c-0.414,0.252-0.873,0.408-1.372,0.469-0.115,0.027-0.248,0.046-0.43,0.046h-34.84c-0.183,0-0.317-0.019-0.429-0.046-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.98c0.605,1.029,1.714,1.729,2.995,1.729h41.81c1.28,0,2.386-0.7,2.992-1.729l-4.67-10.98z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2267" x2="-2267" y1="-3702" y2="-3687">
-<stop offset="0" stop-color="#1A3635"/>
-<stop offset="0.3152" stop-color="#234345"/>
-<stop offset="0.7394" stop-color="#46814C"/>
-<stop offset="1" stop-color="#7EA257"/>
+<path d="M49.22,44.408c-0.414,0.252-0.873,0.408-1.372,0.469c-0.115,0.027-0.248,0.046-0.43,0.046H12.583 c-0.183,0-0.317-0.019-0.429-0.046c-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.979c0.605,1.029,1.714,1.729,2.995,1.729h41.806 c1.28,0,2.386-0.7,2.992-1.729L49.22,44.408z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2266.5195" x2="-2266.5195" y1="-3702.0195" y2="-3687.3784">
+<stop offset="0" style="stop-color:#1A3635"/>
+<stop offset="0.3152" style="stop-color:#234345"/>
+<stop offset="0.7394" style="stop-color:#46814C"/>
+<stop offset="1" style="stop-color:#7EA257"/>
</linearGradient>
-<path d="M10.78,46.15c0.41,0.248,0.873,0.409,1.37,0.474,0.113,0.025,0.249,0.041,0.429,0.041h34.84c0.182,0,0.315-0.016,0.43-0.041,0.499-0.064,0.958-0.223,1.372-0.474l4.199,9.857c0.177-0.193,0.345-0.393,0.478-0.62l-4.68-10.98c-0.412,0.252-0.873,0.408-1.372,0.469-0.116,0.027-0.248,0.046-0.428,0.046h-34.84c-0.183,0-0.317-0.019-0.429-0.046-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.98c0.13,0.228,0.298,0.43,0.477,0.62l4.203-9.86z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2267" x2="-2267" y1="-3734" y2="-3698">
-<stop offset="0" stop-color="#739853"/>
-<stop offset="0.6182" stop-color="#234846"/>
-<stop offset="1" stop-color="#182830"/>
+<path d="M10.784,46.15c0.41,0.248,0.873,0.409,1.37,0.474 c0.113,0.025,0.249,0.041,0.429,0.041h34.835c0.182,0,0.315-0.016,0.43-0.041c0.499-0.064,0.958-0.223,1.372-0.474l4.199,9.857 c0.177-0.193,0.345-0.393,0.478-0.62L49.22,44.408c-0.412,0.252-0.873,0.408-1.372,0.469c-0.116,0.027-0.248,0.046-0.428,0.046 H12.583c-0.183,0-0.317-0.019-0.429-0.046c-0.497-0.062-0.96-0.217-1.37-0.469l-4.68,10.979c0.13,0.228,0.298,0.43,0.477,0.62 L10.784,46.15z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2266.5181" x2="-2266.5181" y1="-3734.0898" y2="-3698.1499">
+<stop offset="0" style="stop-color:#739853"/>
+<stop offset="0.6182" style="stop-color:#234846"/>
+<stop offset="1" style="stop-color:#182830"/>
</linearGradient>
-<path d="M9.099,10.08v31.35c0,1.926,1.558,3.485,3.484,3.485h34.84c1.927,0,3.486-1.56,3.486-3.485v-31.36h-41.81zm40.06,31.36c0,0.963-0.786,1.744-1.744,1.744h-34.84c-0.96,0-1.744-0.781-1.744-1.744v-29.61h38.32v29.61,0.003z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2267" x2="-2267" y1="-3741" y2="-3734">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="1" stop-color="#326644"/>
+<path d="M9.099,10.084v31.353c0,1.926,1.558,3.485,3.484,3.485 h34.835c1.927,0,3.486-1.56,3.486-3.485V10.084H9.099z M49.162,41.437c0,0.963-0.786,1.744-1.744,1.744H12.583 c-0.96,0-1.744-0.781-1.744-1.744V11.826h38.323V41.437L49.162,41.437z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2266.5181" x2="-2266.5181" y1="-3740.9043" y2="-3733.7168">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="1" style="stop-color:#326644"/>
</linearGradient>
-<path d="M50.9,6.6c0-1.922-1.561-3.482-3.486-3.482h-34.83c-1.926,0-3.484,1.56-3.484,3.482v3.484h41.81v-3.48z" fill="url(#SVGID_7_)"/>
-<path d="M9.099,10.08h41.81c1.129,0,2.117,0.546,2.761,1.382-0.071-0.099-0.125-0.202-0.205-0.293l-2.885-6.015s-0.652-1.714-2.695-2.042h-35.79c-2.04,0.327-2.693,2.042-2.693,2.042l-2.886,6.015c-0.244,0.275-0.405,0.575-0.538,0.876,0.567-1.16,1.743-1.97,3.125-1.97z" fill="#BBCE8B" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M53.87,11.76c0.016,0.025,0.027,0.053,0.046,0.081-0.02-0.03-0.04-0.05-0.05-0.08z" fill="#BBCE8B"/>
-<path d="M5.826,12.41c-0.01,0.023-0.017,0.048-0.023,0.074,0.009-0.02,0.013-0.04,0.023-0.07z" fill="#BBCE8B"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2267" x2="-2267" y1="-3734" y2="-3686">
-<stop offset="0" stop-color="#D9E5C2"/>
-<stop offset="0.6848" stop-color="#699D4D"/>
-<stop offset="1" stop-color="#89B663"/>
+<path d="M50.904,6.6c0-1.922-1.561-3.482-3.486-3.482H12.583c-1.926,0-3.484,1.56-3.484,3.482v3.484h41.806 V6.6z" fill="url(#SVGID_7_)"/>
+<path d="M9.099,10.084h41.806c1.129,0,2.117,0.546,2.761,1.382 c-0.071-0.099-0.125-0.202-0.205-0.293l-2.885-6.015c0,0-0.652-1.714-2.695-2.042H12.091c-2.04,0.327-2.693,2.042-2.693,2.042 l-2.886,6.015c-0.244,0.275-0.405,0.575-0.538,0.876C6.541,10.89,7.717,10.084,9.099,10.084z" fill="#BBCE8B" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M53.867,11.76c0.016,0.025,0.027,0.053,0.046,0.081C53.896,11.811,53.883,11.788,53.867,11.76z" fill="#BBCE8B"/>
+<path d="M5.826,12.412c-0.01,0.023-0.017,0.048-0.023,0.074C5.812,12.461,5.816,12.435,5.826,12.412z" fill="#BBCE8B"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2266.5195" x2="-2266.5195" y1="-3734.1553" y2="-3685.636">
+<stop offset="0" style="stop-color:#D9E5C2"/>
+<stop offset="0.6848" style="stop-color:#699D4D"/>
+<stop offset="1" style="stop-color:#89B663"/>
</linearGradient>
-<path d="M50.9,10.08h-41.8c-1.926,0-3.484,1.56-3.484,3.483v40.06c0,1.926,1.558,3.484,3.484,3.484h41.81c1.921,0,3.481-1.561,3.481-3.484v-40.05c0.01-1.927-1.55-3.487-3.48-3.487zm1.75,43.55c0,0.964-0.786,1.745-1.742,1.745h-41.81c-0.958,0-1.744-0.781-1.744-1.745v-40.07c0-0.961,0.784-1.741,1.744-1.741h41.81c0.956,0,1.741,0.781,1.741,1.741l0.01,40.06z" fill="url(#SVGID_8_)"/>
+<path d="M50.904,10.084H9.099c-1.926,0-3.484,1.56-3.484,3.483v40.064c0,1.926,1.558,3.484,3.484,3.484 h41.806c1.921,0,3.481-1.561,3.481-3.484V13.567C54.386,11.645,52.828,10.084,50.904,10.084z M52.646,53.631 c0,0.964-0.786,1.745-1.742,1.745H9.099c-0.958,0-1.744-0.781-1.744-1.745V13.567c0-0.961,0.784-1.741,1.744-1.741h41.806 c0.956,0,1.741,0.781,1.741,1.741L52.646,53.631L52.646,53.631z" fill="url(#SVGID_8_)"/>
+</g>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_download.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_download.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,53 +1,55 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="4093" y2="4081">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="0.6182" stop-color="#673F3A"/>
-<stop offset="1" stop-color="#4E2224"/>
+<g>
+<rect fill="none" height="59.999" width="60"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="0.6182" style="stop-color:#673F3A"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v14.44h49.81v-9.968c0-0.86-0.61-1.49-1.43-1.49z" fill="url(#SVGID_1_)"/>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.58c0.941,0,1.225,0.584,1.436,1.236,0,0,0.557,1.591,0.764,2.296,0.33,0.806,0.869,1.011,1.332,1.011h22.84c0.826,0,1.439,0.628,1.439,1.489v-0.728c0-0.86-0.61-1.49-1.43-1.49z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="8.728" width="46.91" x="6.73" y="15.82"/>
-<rect fill="#F2F2F2" height="7.271" width="45.45" x="7.457" y="16.54"/>
-<polygon fill="#222021" fill-opacity="0.4" points="55.08,22.36,5.27,22.36,5.27,21.64,55.08,21.64" stroke-opacity="0.4"/>
-<polygon fill="#222021" fill-opacity="0.15" points="55.08,21.64,5.27,21.64,5.27,20.91,55.08,20.91" stroke-opacity="0.15"/>
-<polygon fill="#222021" fill-opacity="0.05" points="55.08,20.91,5.27,20.91,5.27,20.18,55.08,20.18" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4049" y2="4079">
-<stop offset="0" stop-color="#8C673C"/>
-<stop offset="0.0303" stop-color="#8C673C"/>
-<stop offset="0.0364" stop-color="#E4E0C1"/>
-<stop offset="0.3273" stop-color="#D3CC9B"/>
-<stop offset="0.6727" stop-color="#B5A366"/>
-<stop offset="1" stop-color="#A18046"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
+<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
+<polygon fill="#222021" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#222021" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#222021" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
+<stop offset="0" style="stop-color:#8C673C"/>
+<stop offset="0.0303" style="stop-color:#8C673C"/>
+<stop offset="0.0364" style="stop-color:#E4E0C1"/>
+<stop offset="0.3273" style="stop-color:#D3CC9B"/>
+<stop offset="0.6727" style="stop-color:#B5A366"/>
+<stop offset="1" style="stop-color:#A18046"/>
</linearGradient>
-<path d="M56.27,22.36h-52.54c-1.536,0-1.727,1.7-1.727,1.7l2.549,25.93c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l2.55-25.93s-0.19-1.7-1.73-1.7z" fill="url(#SVGID_2_)"/>
-<path d="M3.727,23.09h52.55c1.178,0,1.563,0.995,1.68,1.464l0.05-0.49s-0.191-1.703-1.727-1.703h-52.54c-1.536,0-1.727,1.7-1.727,1.7l0.047,0.489c0.117-0.46,0.502-1.46,1.68-1.46z" fill="#EFEDDD"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="4049" y2="4053">
-<stop offset="0" stop-color="#CDC18D"/>
-<stop offset="1" stop-color="#BA9D5D"/>
+<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
+<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#EFEDDD"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
+<stop offset="0" style="stop-color:#CDC18D"/>
+<stop offset="1" style="stop-color:#BA9D5D"/>
</linearGradient>
-<path d="M4.334,47.82l0.215,2.181c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181h-51.3z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
+<rect fill="none" height="59.999" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.1,0,0.096,0,0.096,14.83,0,14.83,0.096,14.93,0.096,30,14.6,30,15.02,30.44,15.45,30,30.1,30,30.1,14.96,30.22,14.84,30.1,14.84"/>
-<polygon fill-opacity="0.35" points="0,14.83,3.596,14.83,3.625,14.86,8.375,14.86,8.375,0,21.73,0.001,21.73,14.84,30.22,14.84,15.02,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2985" y2="2957">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="2.846,15.86,15.02,28.58,27.4,15.84,20.73,15.84,20.73,1.292,9.375,1.291,9.375,15.86"/>
-<line fill="none" x1="20.73" x2="9.375" y1="1.297" y2="1.296"/>
-<polygon fill="#E4EACE" points="9.375,1,20.73,1.001,20.73,1.593,9.375,1.592"/>
-<polygon fill="#E4EACE" points="20.56,15.87,27.53,15.87,27,16.46,20.56,16.46"/>
-<polygon fill="#E4EACE" points="2.459,15.86,9.365,15.86,9.365,16.45,3.08,16.45"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2166" x2="-2188" y1="2963" y2="2963">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
+<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
+<polygon fill="#E4EACE" points="9.375,1 20.729,1.001 20.727,1.593 9.375,1.592 "/>
+<polygon fill="#E4EACE" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
+<polygon fill="#E4EACE" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
+<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="27.02,15.84,15.02,28.15,3.172,15.83,2.348,15.83,15.02,29,27.84,15.84"/>
+<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_essential.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<rect fill="none" height="60" width="60"/>
+<polygon fill="url(#SVGID_1_)" points="30.299,46.857 13.109,56.171 16.172,36.861 2.002,23.39 21.313,20.336 29.746,2.696 38.617,20.121 58.002,22.689 44.172,36.51 47.719,55.738 "/>
+<radialGradient cx="-2195.2817" cy="4635.3013" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="45.7877">
+<stop offset="0" style="stop-color:#D3CA99"/>
+<stop offset="0.1394" style="stop-color:#D3CA99"/>
+<stop offset="0.5515" style="stop-color:#B39C4D"/>
+<stop offset="0.7273" style="stop-color:#AC8A4A"/>
+<stop offset="1" style="stop-color:#C3B475"/>
+</radialGradient>
+<polygon fill="url(#SVGID_2_)" points="17.67,36.354 5.021,24.329 22.26,21.604 29.787,5.86 37.705,21.411 55.006,23.705 42.662,36.041 45.828,53.201 30.281,45.274 14.936,53.589 "/>
+<radialGradient cx="-2194.7852" cy="4599.8726" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="16.3968">
+<stop offset="0" style="stop-color:#CDC18B"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
+</radialGradient>
+<polygon fill="url(#SVGID_3_)" points="30.281,43.875 15.18,52.056 14.936,53.589 30.281,45.274 45.828,53.201 45.543,51.656 "/>
+<radialGradient cx="-2194.771" cy="4629.7397" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="63.637">
+<stop offset="0" style="stop-color:#F0EDDC"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
+</radialGradient>
+<polygon fill="url(#SVGID_4_)" points="22.959,23.005 29.787,8.661 37.006,22.811 53.764,24.945 55.006,23.705 37.705,21.411 29.787,5.86 22.26,21.604 5.021,24.329 6.292,25.537 "/>
+<rect fill="none" height="60" width="60"/>
+<defs>
+<linearGradient gradientTransform="matrix(0.9999 -0.0125 -0.0125 -0.9999 2215.6172 4551.269)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2128.8872" x2="-2128.8872" y1="4575.7925" y2="4523.3677">
+<stop offset="0" style="stop-color:#C2B282"/>
+<stop offset="0.3576" style="stop-color:#C2B282"/>
+<stop offset="0.8909" style="stop-color:#9B6943"/>
+<stop offset="1" style="stop-color:#AD8F60"/>
+</linearGradient>
+</defs>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_games.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_games.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,267 +1,159 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="4093" y2="4081">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="0.6182" stop-color="#673F3A"/>
-<stop offset="1" stop-color="#4E2224"/>
-</linearGradient>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v14.44h49.81v-9.968c0-0.86-0.61-1.49-1.43-1.49z" fill="url(#SVGID_1_)"/>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.58c0.941,0,1.225,0.584,1.436,1.236,0,0,0.557,1.591,0.764,2.296,0.33,0.806,0.869,1.011,1.332,1.011h22.84c0.826,0,1.439,0.628,1.439,1.489v-0.728c0-0.86-0.61-1.49-1.43-1.49z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="8.728" width="46.91" x="6.73" y="15.82"/>
-<rect fill="#F2F2F2" height="7.271" width="45.45" x="7.457" y="16.54"/>
-<polygon fill="#222021" fill-opacity="0.4" points="55.08,22.36,5.27,22.36,5.27,21.64,55.08,21.64" stroke-opacity="0.4"/>
-<polygon fill="#222021" fill-opacity="0.15" points="55.08,21.64,5.27,21.64,5.27,20.91,55.08,20.91" stroke-opacity="0.15"/>
-<polygon fill="#222021" fill-opacity="0.05" points="55.08,20.91,5.27,20.91,5.27,20.18,55.08,20.18" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4049" y2="4079">
-<stop offset="0" stop-color="#8C673C"/>
-<stop offset="0.0303" stop-color="#8C673C"/>
-<stop offset="0.0364" stop-color="#E4E0C1"/>
-<stop offset="0.3273" stop-color="#D3CC9B"/>
-<stop offset="0.6727" stop-color="#B5A366"/>
-<stop offset="1" stop-color="#A18046"/>
-</linearGradient>
-<path d="M56.27,22.36h-52.54c-1.536,0-1.727,1.7-1.727,1.7l2.549,25.93c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l2.55-25.93s-0.19-1.7-1.73-1.7z" fill="url(#SVGID_2_)"/>
-<path d="M3.727,23.09h52.55c1.178,0,1.563,0.995,1.68,1.464l0.05-0.49s-0.191-1.703-1.727-1.703h-52.54c-1.536,0-1.727,1.7-1.727,1.7l0.047,0.489c0.117-0.46,0.502-1.46,1.68-1.46z" fill="#EFEDDD"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="4049" y2="4053">
-<stop offset="0" stop-color="#CDC18D"/>
-<stop offset="1" stop-color="#BA9D5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.752" x2="37.7069" y1="18.6255" y2="19.3878">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<path d="M4.334,47.82l0.215,2.181c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181h-51.3z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
-<rect fill="none" height="60" width="60"/>
-<g transform="matrix(1 0 0 1 30 30)">
-<rect fill="none" height="30" width="30"/>
-<path d="M26.46,25.82c-1.436,0-2.695-0.801-3.367-2.143-0.775-1.542-2.788-6.932-2.788-6.932-0.324-0.144-0.635-0.312-0.932-0.503h-8.742c-0.348,0.224-0.715,0.417-1.1,0.576,0,0-1.844,5.316-2.617,6.86-0.674,1.342-1.933,2.143-3.368,2.143-1.565,0-2.854-0.985-3.138-2.395-0.319-1.59-0.407-12.97-0.407-12.97,0.014-3.823,3.107-6.905,6.896-6.905,1.332,0,2.617,0.381,3.734,1.105h8.738c1.117-0.725,2.403-1.105,3.735-1.105,3.451,0,6.322,2.556,6.818,5.874,0,0-0.121,12.96-0.328,14-0.28,1.4-1.57,2.38-3.13,2.38z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179" x2="-2179" y1="3224" y2="3214">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.5394" stop-color="#ADB3B3"/>
-<stop offset="1" stop-color="#A5A9A9"/>
+<path d="M27.656,5.649l5.785,0.394l1.092,2.745L32.23,9.758l2.959,1.516l0.109,5.178l-3.068-0.485 l3.068,2.237c0,0-5.514,8.872-1.639,11.192l-4.416,2.117c0,0-5.463-3.121-1.531-9.217C31.645,16.203,27.656,5.649,27.656,5.649z" fill="url(#SVGID_1_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,11.271 35.189,12.787 35.268,16.447 35.299,16.452 35.189,11.273 33.85,10.588 " stroke-opacity="0.5"/>
+<path d="M33.441,7.556l0.578,1.448l0.514-0.217l-1.092-2.745l-5.785-0.394c0,0,0.219,0.582,0.504,1.547L33.441,7.556 z" fill="#FFFFFF"/>
+<path d="M32.23,17.48l2.457,1.791c0.357-0.659,0.611-1.067,0.611-1.067l-0.42-0.306L32.23,17.48z" fill="#FFFFFF"/>
+<path d="M32.33,27.233c-0.115,0.987-0.037,1.904,0.348,2.633l0.982-0.471C32.854,28.914,32.457,28.143,32.33,27.233z " fill="#FFFFFF"/>
+<path d="M33.441,6.936l0.787,1.979l0.305-0.128l-1.092-2.745l-5.785-0.394 c0,0,0.125,0.335,0.309,0.913L33.441,6.936z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,10.651 35.189,12.167 35.279,16.449 35.299,16.452 35.189,11.273 33.186,10.248 " stroke-opacity="0.5"/>
+<path d="M32.299,26.955c-0.076,1.082,0.098,2.057,0.691,2.762l0.67-0.321C32.773,28.864,32.381,27.989,32.299,26.955 z" fill="#FFFFFF"/>
+<path d="M32.23,16.86l2.701,1.97c0.223-0.394,0.367-0.625,0.367-0.625l-1.504-1.098L32.23,16.86z" fill="#FFFFFF"/>
+<path d="M32.883,12.973c0.137-1.023,0.125-1.99-0.025-2.895L32.23,9.758l0.521-0.22 c-0.266-1.135-0.76-2.168-1.496-3.093c-0.164-0.205-0.342-0.4-0.52-0.587l-3.08-0.209c0,0,3.988,10.554,0.057,16.647 c-3.932,6.096,1.531,9.217,1.531,9.217l0.713-0.34c-2.512-3.189-1.322-6.021,0.35-9.96c0.674-1.581,1.402-3.31,1.939-5.234 l-0.016-0.011l0.02,0.002C32.516,15.021,32.74,14.026,32.883,12.973z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6943" x2="27.5643" y1="21.5898" y2="2.1062">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<rect fill="url(#SVGID_1__)" height="9.579" width="12.9" x="8.368" y="5.668"/>
-<rect fill="#FFFFFF" height="0.368" width="12.53" x="8.737" y="5.668"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2193" x2="-2186" y1="3212" y2="3211">
-<stop offset="0" stop-color="#969798"/>
-<stop offset="0.3273" stop-color="#B2B6B5"/>
-<stop offset="0.7212" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#8D9191"/>
-</linearGradient>
-<path d="M1,10.44s0,10.88,0.387,12.8c0.386,1.924,3.473,2.309,4.631,0s3.088-7.796,3.088-7.796-1.543-3.848-3.473-4.616c-1.93-0.77-4.633-0.38-4.633-0.38z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2193" x2="-2186" y1="3212" y2="3211">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M6.018,22.62c-1.158,2.308-4.245,1.924-4.631,0-0.331-1.648-0.378-9.855-0.385-12.18h-0.002s0,10.88,0.387,12.8c0.386,1.924,3.473,2.309,4.631,0s3.088-7.796,3.088-7.796-0.041-0.104-0.119-0.281c-0.44,1.22-1.984,5.49-2.969,7.46z" fill="url(#SVGID_3__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -3497.2295 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-3526" x2="-3519" y1="3212" y2="3211">
-<stop offset="0" stop-color="#969798"/>
-<stop offset="0.3273" stop-color="#B2B6B5"/>
-<stop offset="0.7212" stop-color="#878B8C"/>
-<stop offset="1" stop-color="#8D9191"/>
+<path d="M32.131,12.872c1.213-8.979-9.904-10.008-9.904-10.008L17.592,2c0,0-0.477,1.282,2.004,2.599 C15.244,7.53,6.963,13.376,6.555,15.737c-0.271,1.542,4.236,7.189,5.402,3.09c0.777-2.747,5.494-1.03,6.773-1.84 c1.045-0.661,2.186,0.291,2.186,0.291c-9.029,8.198-9.834,16.507-9.834,16.507v11.351h20.432V33.785 C23.324,27.117,30.877,22.202,32.131,12.872z" fill="url(#SVGID_2_)"/>
+<path d="M17.922,10.739l3.496-2.382C21.418,8.357,21.248,13.408,17.922,10.739z" fill="#FCFCFC" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.6699" x2="19.6699" y1="7.1016" y2="11.1458">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</linearGradient>
-<path d="M29,10.44s0,10.88-0.387,12.8c-0.385,1.924-3.473,2.309-4.631,0s-3.088-7.796-3.088-7.796,1.545-3.848,3.475-4.616c1.94-0.77,4.64-0.38,4.64-0.38z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2172" x2="-2165" y1="3213" y2="3211">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M28.61,22.62c-0.385,1.924-3.473,2.308-4.631,0-0.986-1.965-2.53-6.231-2.967-7.458-0.078,0.177-0.121,0.281-0.121,0.281s1.93,5.487,3.088,7.796c1.158,2.309,4.246,1.924,4.631,0,0.39-1.93,0.39-12.8,0.39-12.8-0.01,2.32-0.05,10.53-0.39,12.18z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2183" x2="-2183" y1="3224" y2="3214">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M17.922,10.385l3.496-2.243C21.418,8.142,20.67,12.024,17.922,10.385z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.5703" x2="33.0273" y1="46.6494" y2="46.6494">
+<stop offset="0" style="stop-color:#363636"/>
+<stop offset="0.6545" style="stop-color:#8A8B8B"/>
+<stop offset="1" style="stop-color:#58595A"/>
</linearGradient>
-<path d="M8.368,15.25h3.101c1.265-1.209,2.057-2.907,2.057-4.79,0-1.884-0.792-3.581-2.057-4.79h-3.102v9.577z" fill="url(#SVGID_6_)" fill-opacity="0.05" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2183" x2="-2183" y1="3224" y2="3214">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M8.368,15.25h2.556c1.364-1.149,2.234-2.87,2.234-4.79s-0.87-3.64-2.234-4.79h-2.552v9.577z" fill="url(#SVGID_7_)" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2189" x2="-2189" y1="3219" y2="3212">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M33.027,46.647c0,0.838-0.672,1.516-1.514,1.516H10.965c-0.842,0-1.395-0.678-1.395-1.516l0,0 c0-0.835,0.553-1.511,1.395-1.511h20.549C32.355,45.136,33.027,45.812,33.027,46.647L33.027,46.647z" fill="url(#SVGID_4_)"/>
+<path d="M10.965,45.892h20.549c0.709,0,1.293,0.483,1.461,1.135c0.031-0.121,0.053-0.249,0.053-0.379 c0-0.835-0.672-1.511-1.514-1.511H10.965c-0.842,0-1.395,0.676-1.395,1.511c0,0.13,0.016,0.258,0.043,0.379 C9.756,46.375,10.256,45.892,10.965,45.892z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.2041" x2="34.1982" y1="20.5649" y2="5.97">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M5.633,10.82c-1.93-0.77-4.633-0.38-4.633-0.38s0,1.299,0.016,3.077c1.108,2.121,3.326,3.575,5.881,3.575,0.587,0,1.154-0.085,1.697-0.229,0.311-0.85,0.512-1.421,0.512-1.421s-1.543-3.86-3.473-4.63z" fill="url(#SVGID_8_)" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-2189" x2="-2189" y1="3219" y2="3213">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M5.633,10.82c-1.93-0.77-4.633-0.38-4.633-0.38s0,0.86,0.009,2.139c0.873,2.413,3.179,4.146,5.888,4.146,0.643,0,1.266-0.1,1.851-0.281,0.221-0.611,0.358-1.001,0.358-1.001s-1.543-3.86-3.473-4.63z" fill="url(#SVGID_9_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-2187" x2="-2187" y1="3224" y2="3213">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#B4BBB9"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M29.066,5.392l-9.162,11.402c0.576,0.123,1.012,0.483,1.012,0.483 c-0.455,0.413-0.875,0.825-1.289,1.238l0.043,0.192l12.477-5.991C32.576,9.154,31.045,6.858,29.066,5.392z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.5635" x2="32.4584" y1="20.1465" y2="24.9896">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M6.896,4.747c3.152,0,5.709,2.557,5.709,5.71,0,3.155-2.557,5.71-5.709,5.71-3.156,0-5.711-2.556-5.711-5.71,0.006-3.156,2.56-5.713,5.716-5.713z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-2187" x2="-2187" y1="3225" y2="3213">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="0.0424" stop-color="#F9FCF9"/>
-<stop offset="0.4" stop-color="#E8EBE9"/>
-<stop offset="0.7333" stop-color="#B4BBB9"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M32.131,12.872c0.129-0.939,0.113-1.786-0.002-2.559c-4.604,1.772-10.771,6.632-11.324,7.071 c-8.918,8.165-9.723,16.401-9.723,16.401v0.008l20.432-0.008C23.324,27.117,30.877,22.202,32.131,12.872z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11.082" x2="31.5137" y1="39.4644" y2="39.4644">
+<stop offset="0" style="stop-color:#363636"/>
+<stop offset="0.6545" style="stop-color:#8A8B8B"/>
+<stop offset="1" style="stop-color:#58595A"/>
</linearGradient>
-<path d="M6.896,4.563c-3.257,0-5.896,2.639-5.896,5.897,0,3.254,2.639,5.894,5.896,5.894,3.254,0,5.894-2.64,5.894-5.894,0-3.258-2.64-5.897-5.894-5.897zm0,11.42c-3.049,0-5.528-2.479-5.528-5.526s2.479-5.526,5.528-5.526c3.046,0,5.524,2.479,5.524,5.526s-2.478,5.53-5.524,5.53z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-2175" x2="-2175" y1="3224" y2="3214">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M16.48,10.46c0,1.883,0.792,3.58,2.058,4.79h2.731v-9.582h-2.731c-1.27,1.208-2.06,2.906-2.06,4.792z" fill="url(#SVGID_12_)" fill-opacity="0.05" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-2175" x2="-2175" y1="3224" y2="3214">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<rect fill="url(#SVGID_7_)" height="11.343" width="20.432" x="11.082" y="33.792"/>
+<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.707" x2="33.2224" y1="33.5234" y2="32.0012">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.0545" style="stop-color:#2F2F2F"/>
+<stop offset="0.7333" style="stop-color:#8F8F8F"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M16.84,10.46c0,1.919,0.87,3.64,2.236,4.79h2.186v-9.582h-2.186c-1.37,1.149-2.24,2.869-2.24,4.792z" fill="url(#SVGID_13_)" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-2169" x2="-2169" y1="3219" y2="3212">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M28.98,13.52c0.02-1.78,0.02-3.08,0.02-3.08s-2.701-0.384-4.631,0.386c-1.93,0.769-3.475,4.616-3.475,4.616s0.202,0.571,0.512,1.422c0.543,0.144,1.112,0.229,1.698,0.229,2.55-0.01,4.77-1.46,5.87-3.58z" fill="url(#SVGID_14_)" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-2169" x2="-2169" y1="3219" y2="3213">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M28.99,12.58c0.01-1.28,0.01-2.14,0.01-2.14s-2.701-0.384-4.631,0.386c-1.93,0.769-3.475,4.616-3.475,4.616s0.138,0.39,0.359,1.001c0.586,0.182,1.208,0.281,1.85,0.281,2.71-0.01,5.01-1.74,5.88-4.15z" fill="url(#SVGID_15_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-2171" x2="-2171" y1="3224" y2="3213">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#B4BBB9"/>
-<stop offset="1" stop-color="#D4DAD7"/>
-</linearGradient>
-<path d="M23.1,4.747c3.154,0,5.713,2.557,5.713,5.71,0,3.155-2.559,5.71-5.713,5.71-3.152,0-5.709-2.556-5.709-5.71,0.01-3.156,2.56-5.713,5.71-5.713z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-2171" x2="-2171" y1="3225" y2="3213">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="0.0424" stop-color="#F9FCF9"/>
-<stop offset="0.4" stop-color="#E8EBE9"/>
-<stop offset="0.7333" stop-color="#B4BBB9"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M11.082,33.785h20.432c-2.48-2.008-3.729-3.008-9.955-3.008 C13.785,30.777,11.082,33.785,11.082,33.785z" fill="url(#SVGID_8_)"/>
+<rect fill="#222021" fill-opacity="0.5" height="0.758" stroke-opacity="0.5" width="20.432" x="11.082" y="44.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.756" stroke-opacity="0.3" width="20.432" x="11.082" y="33.785"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.758" stroke-opacity="0.2" width="20.432" x="11.082" y="34.541"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="0.755" stroke-opacity="0.1" width="20.432" x="11.082" y="35.299"/>
+<rect fill="#222021" fill-opacity="0.3" height="0.755" stroke-opacity="0.3" width="20.432" x="11.082" y="43.623"/>
+<rect fill="#222021" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.432" x="11.082" y="42.864"/>
+<path d="M27.799,28.044c-0.25,2.393,0.572,4.693,3.715,7.255v-1.514C29.037,31.77,28.006,29.913,27.799,28.044z" fill="#FFFFFF"/>
+<path d="M22.227,4.377c0,0,9.34,0.87,9.957,7.938c0.684-8.461-9.957-9.451-9.957-9.451L17.592,2 c0,0-0.266,0.718,0.639,1.633L22.227,4.377z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.082,33.785v1.514c0,0,0.805-8.31,9.834-16.508c0,0-0.469-0.386-1.078-0.493 C11.826,26.152,11.082,33.785,11.082,33.785z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19.596,6.112c-0.479-0.254-0.846-0.504-1.127-0.748C13.955,8.452,6.932,13.567,6.555,15.737 c-0.043,0.241,0.033,0.586,0.195,0.978C8.086,14.098,15.545,8.84,19.596,6.112z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.082,33.785v0.756c0,0,0.805-8.309,9.834-16.507c0,0-0.195-0.157-0.49-0.297 C11.863,25.782,11.082,33.785,11.082,33.785z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.227,3.621c0,0,9.664,0.897,9.984,8.3c0.328-8.1-9.984-9.058-9.984-9.058L17.592,2 c0,0-0.111,0.305,0.061,0.768L22.227,3.621z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M27.77,27.689c-0.119,2.25,0.777,4.435,3.744,6.851v-0.756C28.879,31.639,27.881,29.676,27.77,27.689z" fill="#FFFFFF"/>
+<path d="M19.596,5.356c-0.225-0.119-0.416-0.237-0.594-0.355C14.533,8.034,6.945,13.48,6.555,15.737 c-0.027,0.152-0.008,0.343,0.051,0.56C7.404,13.822,15.361,8.208,19.596,5.356z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.9121" x2="55.8671" y1="28.4629" y2="29.2252">
+<stop offset="0" style="stop-color:#8B8E8E"/>
+<stop offset="1" style="stop-color:#C9C9C9"/>
</linearGradient>
-<path d="M23.1,4.563c-3.254,0-5.894,2.64-5.894,5.895,0,3.254,2.64,5.894,5.894,5.894,3.258,0,5.896-2.64,5.896-5.894,0-3.258-2.64-5.897-5.9-5.897zm0,11.42c-3.046,0-5.525-2.479-5.525-5.526s2.479-5.526,5.525-5.526c3.051,0,5.527,2.479,5.527,5.526s-2.47,5.53-5.53,5.53z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-2187" x2="-2187" y1="3222" y2="3215">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M6.58,14.14c-0.437,0-0.79-0.355-0.79-0.791v-1.419h-1.421c-0.436,0-0.791-0.354-0.791-0.791v-0.683c0-0.436,0.355-0.79,0.791-0.79h1.421v-1.371c0-0.435,0.354-0.789,0.79-0.789h0.683c0.437,0,0.791,0.354,0.791,0.789v1.369h1.419c0.438,0,0.737,0.354,0.737,0.79v0.683c0,0.437-0.3,0.791-0.737,0.791h-1.419v1.419c0,0.436-0.354,0.791-0.791,0.791h-0.683z" fill="url(#SVGID_18_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-2187" x2="-2187" y1="3222" y2="3215">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#666666"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M45.816,15.486l5.787,0.393l1.094,2.745l-2.303,0.97l2.957,1.516l0.107,5.178l-3.064-0.485 l3.064,2.238c0,0-5.514,8.872-1.639,11.192l-4.416,2.117c0,0-5.461-3.122-1.529-9.217C49.805,26.041,45.816,15.486,45.816,15.486z" fill="url(#SVGID_9_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.395,21.109 53.352,22.625 53.428,26.284 53.459,26.289 53.352,21.111 52.014,20.425 " stroke-opacity="0.5"/>
+<path d="M51.604,17.393l0.576,1.449l0.518-0.217l-1.094-2.745l-5.787-0.393 c0,0,0.221,0.584,0.506,1.547L51.604,17.393z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M50.395,27.317l2.455,1.792c0.355-0.659,0.609-1.067,0.609-1.067l-0.42-0.307L50.395,27.317z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M50.492,37.07c-0.115,0.988-0.037,1.905,0.346,2.634l0.982-0.47C51.014,38.75,50.619,37.98,50.492,37.07z" fill="#FFFFFF"/>
+<path d="M51.604,16.773l0.789,1.979l0.305-0.127l-1.094-2.745l-5.787-0.393 c0,0,0.125,0.335,0.313,0.912L51.604,16.773z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.395,20.488 53.352,22.003 53.441,26.287 53.459,26.289 53.352,21.111 51.35,20.085 " stroke-opacity="0.5"/>
+<path d="M50.461,36.793c-0.076,1.082,0.1,2.057,0.691,2.762l0.668-0.321C50.934,38.703,50.543,37.826,50.461,36.793z " fill="#FFFFFF"/>
+<path d="M50.395,26.697l2.697,1.97c0.227-0.394,0.367-0.625,0.367-0.625l-1.504-1.099L50.395,26.697z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M51.795,22.912c0.119-0.9,0.127-1.758,0.043-2.579l-1.443-0.739l1.232-0.519 c-0.297-1.192-0.838-2.284-1.617-3.264c-0.012-0.015-0.025-0.029-0.039-0.043l-4.154-0.282c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l1.41-0.676c-2.369-2.885-1.332-5.364,0.352-9.328c0.65-1.533,1.355-3.199,1.898-5.053 l-0.67-0.49l0.77,0.121C51.428,24.971,51.652,23.974,51.795,22.912z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M51.043,22.811c0.141-1.024,0.125-1.987-0.023-2.895l-0.625-0.321l0.521-0.22 c-0.27-1.134-0.764-2.168-1.5-3.092c-0.164-0.205-0.338-0.4-0.52-0.586l-3.08-0.21c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l0.713-0.341c-2.51-3.188-1.32-6.021,0.354-9.958c0.672-1.584,1.398-3.312,1.939-5.237 l-0.016-0.012l0.018,0.002C50.68,24.857,50.9,23.863,51.043,22.811z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.693,31.644c0.158,0,0.375-0.017,0.619-0.072c-0.018-0.021-0.037-0.043-0.055-0.065 l1.316-0.63c0.396-0.384,0.758-0.951,1-1.798c0.039-0.138,0.135-0.432,1.217-0.519c-1.998-3.107,2.508-10.354,2.508-10.354 l-2.74-1.999c-7.863,5.659-9.123,7.896-9.336,9.108c-0.271,1.575,1.242,3.525,1.709,4.085 C25.795,30.422,27.146,31.644,28.693,31.644z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M34.332,11.312c-0.064,0.176-0.518,1.574,0.83,3.061c-0.857,0.591-1.65,1.149-2.391,1.678 l2.527,0.4l-0.109-5.178l-0.707-0.362L34.332,11.312z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511V33.785c0,0-0.002-0.004-0.006-0.007 c-3.328,5.372-3.754,9.555-3.777,9.845v4.541h3.783C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M35.229,13.167l-0.039-1.893l-0.027-0.015l-0.119,0.317 C35.002,11.689,34.799,12.333,35.229,13.167z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M28.693,30.888c0.59,0,1.654-0.263,2.152-2.015c0.168-0.599,0.658-0.923,1.613-1.043 c-1.039-3.379,2.84-9.625,2.84-9.625l-2.096-1.528c-5.842,4.191-8.951,7.136-9.234,8.768c-0.174,0.997,0.725,2.489,1.543,3.467 C26.133,29.65,27.371,30.888,28.693,30.888z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511v-9.898c-2.627,4.633-3.004,8.114-3.027,8.385 v4.541h3.027C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M35.299,16.452l-0.027-1.233c-0.492,0.34-0.971,0.676-1.432,1.001L35.299,16.452z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="39.8555" x2="45.7253" y1="31.4277" y2="11.9445">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<path d="M6.58,13.77c-0.437,0-0.79-0.354-0.79-0.79v-1.421h-1.421c-0.436,0-0.791-0.354-0.791-0.79v-0.68c0-0.436,0.355-0.79,0.791-0.79h1.421v-1.369c0-0.435,0.354-0.79,0.79-0.79h0.683c0.437,0,0.791,0.355,0.791,0.79v1.369h1.419c0.438,0,0.737,0.354,0.737,0.79v0.683c0,0.436-0.3,0.79-0.737,0.79h-1.419v1.421c0,0.436-0.354,0.79-0.791,0.79h-0.683z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-2187" x2="-2187" y1="3222" y2="3216">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.3879" stop-color="#7D7E7F"/>
-<stop offset="0.7152" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#656768"/>
-</linearGradient>
-<path d="M9.473,9.668h-1.788v-1.737c0-0.232-0.187-0.421-0.421-0.421h-0.684c-0.233,0-0.422,0.188-0.422,0.421v1.737h-1.789c-0.234,0-0.422,0.188-0.422,0.422v0.683c0,0.233,0.188,0.422,0.422,0.422h1.789v1.789c0,0.232,0.188,0.422,0.422,0.422h0.684c0.234,0,0.421-0.189,0.421-0.422v-1.789h1.788c0.234,0,0.369-0.189,0.369-0.422v-0.68c0-0.234-0.135-0.422-0.369-0.422z" fill="url(#SVGID_20_)"/>
-<path d="M4.369,10.04h1.789v-0.372h-1.789c-0.234,0-0.422,0.188-0.422,0.422v0.368c0-0.24,0.188-0.42,0.422-0.42z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M6.58,7.878h0.683c0.235,0,0.422,0.189,0.422,0.421v-0.368c0-0.232-0.187-0.421-0.422-0.421h-0.683c-0.234,0-0.422,0.188-0.422,0.421v0.368c0-0.232,0.189-0.421,0.422-0.421z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M9.473,9.668h-1.788v0.368h1.788c0.234,0,0.369,0.189,0.369,0.422v-0.37c0-0.234-0.135-0.422-0.369-0.422z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="-2168" x2="-2168" y1="3220" y2="3218">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M25.68,11.93c-0.607,0-1.104-0.497-1.104-1.106,0-0.608,0.496-1.104,1.104-1.104,0.611,0,1.107,0.496,1.107,1.104,0,0.62-0.5,1.11-1.11,1.11z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="-2168" x2="-2168" y1="3220" y2="3218">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#666666"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M50.295,22.709c1.209-8.98-9.908-10.006-9.908-10.006l-4.635-0.864c0,0-0.475,1.282,2.004,2.598 c-4.35,2.931-12.631,8.778-13.041,11.138c-0.27,1.543,4.24,7.189,5.402,3.091c0.779-2.748,5.498-1.031,6.777-1.84 c1.043-0.661,2.184,0.289,2.184,0.289c-9.029,8.199-9.834,16.508-9.834,16.508v11.351h20.432V43.623 C41.486,36.955,49.037,32.04,50.295,22.709z" fill="url(#SVGID_10_)"/>
+<path d="M36.086,20.578l3.492-2.383C39.578,18.195,39.412,23.245,36.086,20.578z" fill="#FCFCFC" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.832" x2="37.832" y1="16.939" y2="20.9847">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="1" style="stop-color:#868686"/>
</linearGradient>
-<path d="M25.68,11.64c-0.607,0-1.104-0.498-1.104-1.106,0-0.61,0.496-1.104,1.104-1.104,0.611,0,1.107,0.495,1.107,1.104,0,0.61-0.5,1.11-1.11,1.11z" fill="url(#SVGID_22_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-2168" x2="-2168" y1="3220" y2="3218">
-<stop offset="0" stop-color="#BA8873"/>
-<stop offset="0.103" stop-color="#9C685F"/>
-<stop offset="0.7515" stop-color="#673A45"/>
-<stop offset="1" stop-color="#713F4A"/>
-</linearGradient>
-<circle cx="25.68" cy="10.53" fill="url(#SVGID_23_)" r="0.737"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="-2173" x2="-2173" y1="3220" y2="3217">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M36.086,20.223l3.492-2.243C39.578,17.98,38.832,21.864,36.086,20.223z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="27.7305" x2="51.1914" y1="56.4868" y2="56.4868">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<path d="M20.52,11.93c-0.608,0-1.104-0.497-1.104-1.106,0-0.608,0.496-1.104,1.104-1.104,0.609,0,1.106,0.496,1.106,1.104,0,0.62-0.49,1.11-1.11,1.11z" fill="url(#SVGID_24_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-2173" x2="-2173" y1="3220" y2="3218">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#666666"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M51.191,56.484c0,0.84-0.674,1.516-1.516,1.516H29.129c-0.846,0-1.398-0.676-1.398-1.516l0,0 c0-0.835,0.553-1.511,1.398-1.511h20.547C50.518,54.973,51.191,55.649,51.191,56.484L51.191,56.484z" fill="url(#SVGID_12_)"/>
+<path d="M29.129,55.729h20.547c0.711,0,1.293,0.482,1.461,1.134c0.029-0.121,0.055-0.246,0.055-0.379 c0-0.835-0.674-1.511-1.516-1.511H29.129c-0.846,0-1.398,0.676-1.398,1.511c0,0.133,0.02,0.258,0.043,0.379 C27.916,56.211,28.416,55.729,29.129,55.729z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.3633" x2="52.3587" y1="30.4033" y2="15.8073">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<path d="M20.52,11.64c-0.608,0-1.104-0.498-1.104-1.106,0-0.61,0.496-1.104,1.104-1.104,0.609,0,1.106,0.495,1.106,1.104,0,0.61-0.49,1.11-1.11,1.11z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="-2173" x2="-2173" y1="3220" y2="3218">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.7394" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M47.227,15.23l-9.158,11.404c0.576,0.121,1.01,0.48,1.01,0.48c-0.455,0.413-0.875,0.826-1.287,1.241 l0.039,0.191l12.477-5.992C50.736,18.991,49.209,16.696,47.227,15.23z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="32.9014" x2="50.7963" y1="30.0332" y2="34.8763">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<circle cx="20.52" cy="10.53" fill="url(#SVGID_26_)" r="0.737"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="-2171" x2="-2171" y1="3222" y2="3220">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
+<path d="M50.295,22.709c0.125-0.939,0.111-1.787-0.006-2.556c-4.604,1.769-10.771,6.629-11.32,7.068 c-8.92,8.164-9.725,16.401-9.725,16.401v0.007l20.432-0.007C41.486,36.955,49.037,32.04,50.295,22.709z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="29.2441" x2="49.6758" y1="49.3013" y2="49.3013">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<path d="M23.1,9.352c-0.6,0-1.1-0.495-1.1-1.105s0.494-1.106,1.104-1.106,1.105,0.496,1.105,1.106c0.01,0.608-0.49,1.105-1.1,1.105z" fill="url(#SVGID_27_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="-2171" x2="-2171" y1="3223" y2="3220">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#666666"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M23.1,8.984c-0.6,0-1.1-0.496-1.1-1.106,0-0.609,0.494-1.104,1.104-1.104s1.105,0.496,1.105,1.104c0.01,0.61-0.49,1.106-1.1,1.106z" fill="url(#SVGID_28_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="-2171" x2="-2171" y1="3222" y2="3221">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.5091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<rect fill="url(#SVGID_15_)" height="11.344" width="20.432" x="29.244" y="43.629"/>
+<rect fill="#222021" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.432" x="29.244" y="54.215"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.755" stroke-opacity="0.5" width="20.432" x="29.244" y="43.623"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.432" x="29.244" y="44.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="0.756" stroke-opacity="0.1" width="20.432" x="29.244" y="45.136"/>
+<rect fill="#222021" fill-opacity="0.2" height="0.755" stroke-opacity="0.2" width="20.432" x="29.244" y="53.459"/>
+<rect fill="#222021" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.432" x="29.244" y="52.702"/>
+<path d="M45.961,37.882c-0.248,2.392,0.57,4.695,3.715,7.254v-1.513C47.199,41.606,46.166,39.75,45.961,37.882z" fill="#FFFFFF"/>
+<path d="M40.387,14.214c0,0,9.34,0.869,9.961,7.937c0.682-8.461-9.961-9.449-9.961-9.449l-4.635-0.864 c0,0-0.266,0.719,0.643,1.634L40.387,14.214z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M29.244,43.623v1.513c0,0,0.805-8.31,9.834-16.507c0,0-0.467-0.386-1.078-0.492 C29.988,35.989,29.244,43.623,29.244,43.623z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M37.756,15.949c-0.479-0.253-0.842-0.504-1.127-0.748 c-4.512,3.087-11.537,8.203-11.914,10.373c-0.041,0.241,0.035,0.587,0.195,0.978C26.248,23.936,33.705,18.678,37.756,15.949z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M29.244,43.623v0.755c0,0,0.805-8.31,9.834-16.508c0,0-0.195-0.157-0.488-0.296 C30.025,35.62,29.244,43.623,29.244,43.623z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M40.387,13.458c0,0,9.664,0.898,9.988,8.3c0.328-8.099-9.988-9.055-9.988-9.055l-4.635-0.864 c0,0-0.111,0.304,0.061,0.768L40.387,13.458z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M45.93,37.527c-0.115,2.25,0.777,4.435,3.746,6.851v-0.755C47.041,41.477,46.041,39.514,45.93,37.527z" fill="#FFFFFF"/>
+<path d="M37.756,15.194c-0.225-0.118-0.414-0.236-0.594-0.355 c-4.467,3.032-12.057,8.479-12.447,10.735c-0.025,0.153-0.004,0.343,0.051,0.56C25.564,23.66,33.521,18.045,37.756,15.194z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="33.5625" x2="53.7416" y1="42.9795" y2="41.7184">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<circle cx="23.1" cy="7.878" fill="url(#SVGID_29_)" r="0.737"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-2171" x2="-2171" y1="3217" y2="3215">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#303030"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M23.1,14.51c-0.609,0-1.104-0.496-1.104-1.104,0-0.61,0.494-1.106,1.104-1.106s1.105,0.496,1.105,1.106c0.01,0.6-0.49,1.1-1.1,1.1z" fill="url(#SVGID_30_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="-2171" x2="-2171" y1="3217" y2="3215">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#666666"/>
-<stop offset="0.7212" stop-color="#141414"/>
-<stop offset="1" stop-color="#262626"/>
-</linearGradient>
-<path d="M23.1,14.14c-0.609,0-1.104-0.497-1.104-1.106,0-0.61,0.494-1.104,1.104-1.104s1.105,0.495,1.105,1.104c0.01,0.61-0.49,1.11-1.1,1.11z" fill="url(#SVGID_31_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3229.2773)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-2171" x2="-2171" y1="3217" y2="3215">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.7333" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
-</linearGradient>
-<circle cx="23.1" cy="13.04" fill="url(#SVGID_32_)" r="0.737"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M29.244,43.601h20.432c-2.48-2.009-3.729-3.006-9.957-3.006 C31.945,40.595,29.244,43.601,29.244,43.601z" fill="url(#SVGID_16_)"/>
+<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_office.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_office.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,35 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="4093" y2="4081">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="0.6182" stop-color="#673F3A"/>
-<stop offset="1" stop-color="#4E2224"/>
+<g>
+<rect fill="none" height="59.999" width="60"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="0.6182" style="stop-color:#673F3A"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v14.44h49.81v-9.968c0-0.86-0.61-1.49-1.43-1.49z" fill="url(#SVGID_1_)"/>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.58c0.941,0,1.225,0.584,1.436,1.236,0,0,0.557,1.591,0.764,2.296,0.33,0.806,0.869,1.011,1.332,1.011h22.84c0.826,0,1.439,0.628,1.439,1.489v-0.728c0-0.86-0.61-1.49-1.43-1.49z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="8.728" width="46.91" x="6.73" y="15.82"/>
-<rect fill="#F2F2F2" height="7.271" width="45.45" x="7.457" y="16.54"/>
-<polygon fill="#222021" fill-opacity="0.4" points="55.08,22.36,5.27,22.36,5.27,21.64,55.08,21.64" stroke-opacity="0.4"/>
-<polygon fill="#222021" fill-opacity="0.15" points="55.08,21.64,5.27,21.64,5.27,20.91,55.08,20.91" stroke-opacity="0.15"/>
-<polygon fill="#222021" fill-opacity="0.05" points="55.08,20.91,5.27,20.91,5.27,20.18,55.08,20.18" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4049" y2="4079">
-<stop offset="0" stop-color="#8C673C"/>
-<stop offset="0.0303" stop-color="#8C673C"/>
-<stop offset="0.0364" stop-color="#E4E0C1"/>
-<stop offset="0.3273" stop-color="#D3CC9B"/>
-<stop offset="0.6727" stop-color="#B5A366"/>
-<stop offset="1" stop-color="#A18046"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
+<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
+<polygon fill="#222021" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#222021" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#222021" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
+<stop offset="0" style="stop-color:#8C673C"/>
+<stop offset="0.0303" style="stop-color:#8C673C"/>
+<stop offset="0.0364" style="stop-color:#E4E0C1"/>
+<stop offset="0.3273" style="stop-color:#D3CC9B"/>
+<stop offset="0.6727" style="stop-color:#B5A366"/>
+<stop offset="1" style="stop-color:#A18046"/>
</linearGradient>
-<path d="M56.27,22.36h-52.54c-1.536,0-1.727,1.7-1.727,1.7l2.549,25.93c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l2.55-25.93s-0.19-1.7-1.73-1.7z" fill="url(#SVGID_2_)"/>
-<path d="M3.727,23.09h52.55c1.178,0,1.563,0.995,1.68,1.464l0.05-0.49s-0.191-1.703-1.727-1.703h-52.54c-1.536,0-1.727,1.7-1.727,1.7l0.047,0.489c0.117-0.46,0.502-1.46,1.68-1.46z" fill="#EFEDDD"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="4049" y2="4053">
-<stop offset="0" stop-color="#CDC18D"/>
-<stop offset="1" stop-color="#BA9D5D"/>
+<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
+<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#EFEDDD"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
+<stop offset="0" style="stop-color:#CDC18D"/>
+<stop offset="1" style="stop-color:#BA9D5D"/>
</linearGradient>
-<path d="M4.334,47.82l0.215,2.181c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181h-51.3z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
+<rect fill="none" height="59.999" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.94" x2="14.94" y1="3.354" y2="10.7">
<stop offset="0" stop-color="#6B6B6B"/>
@@ -172,30 +174,30 @@
<stop offset="1" stop-color="#713F4A"/>
</linearGradient>
<path d="M21.22,21.75c0,0.236-0.192,0.428-0.428,0.428h-2.145c-0.235,0-0.428-0.191-0.428-0.428v-2.145c0-0.234,0.192-0.428,0.428-0.428h2.145c0.235,0,0.428,0.193,0.428,0.428v2.148z" fill="url(#SVGID_19_)"/>
-<polygon fill-opacity="0.35" points="24.17,10.71,24.17,10.67,24.17,9.891,15.62,18.44,16,18.81,10.34,24.48,10.47,24.62,9.831,24.63,9.57,25.67,16.5,25.67,19.68,22.5,20.06,22.87,24.17,18.76" stroke-opacity="0.35"/>
+<polygon fill-opacity="0.35" fill-rule="evenodd" points="24.17,10.71,24.17,10.67,24.17,9.891,15.62,18.44,16,18.81,10.34,24.48,10.47,24.62,9.831,24.63,9.57,25.67,16.5,25.67,19.68,22.5,20.06,22.87,24.17,18.76" stroke-opacity="0.35"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-109.7" x2="-105.4" y1="322.8" y2="322.8">
<stop offset="0" stop-color="#262626"/>
<stop offset="0.3091" stop-color="#A2A2A2"/>
<stop offset="0.8606" stop-color="#000000"/>
<stop offset="1" stop-color="#000000"/>
</linearGradient>
-<path d="M27.23,11.26c-0.834-0.834-1.765-1.257-2.077-0.943l-7.364,7.362,3.021,3.021,7.364-7.363c0.32-0.31-0.11-1.24-0.94-2.08z" fill="url(#SVGID_20_)"/>
+<path d="M27.23,11.26c-0.834-0.834-1.765-1.257-2.077-0.943l-7.364,7.362,3.021,3.021,7.364-7.363c0.32-0.31-0.11-1.24-0.94-2.08z" fill="url(#SVGID_20_)" fill-rule="evenodd"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="-109.2" x2="-106" y1="333.2" y2="333.2">
<stop offset="0" stop-color="#CECECE"/>
<stop offset="0.3818" stop-color="#FFFFFF"/>
<stop offset="0.7455" stop-color="#8B8B8B"/>
<stop offset="1" stop-color="#B2B2B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_21_)" points="14.39,26.37,12.12,24.1,17.41,18.81,19.68,21.08"/>
+<polygon fill="url(#SVGID_21_)" fill-rule="evenodd" points="14.39,26.37,12.12,24.1,17.41,18.81,19.68,21.08"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 0.0471 -0.0471 72.2638 118.3492)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="-109.2" x2="-106" y1="358.1" y2="358.1">
<stop offset="0" stop-color="#B2B2B2"/>
<stop offset="0.3818" stop-color="#FFFFFF"/>
<stop offset="0.8" stop-color="#4D4D4D"/>
<stop offset="1" stop-color="#B2B2B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_22_)" points="14.39,26.37,12.12,24.1,11.75,24.48,14.01,26.75"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.534" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.772 -6.7045)" width="3.204" x="16.38" y="20.25"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.534" stroke-opacity="0.5" transform="matrix(0.7068 0.7074 -0.7074 0.7068 19.6277 -7.0812)" width="3.205" x="16.75" y="19.87"/>
+<polygon fill="url(#SVGID_22_)" fill-rule="evenodd" points="14.39,26.37,12.12,24.1,11.75,24.48,14.01,26.75"/>
+<rect fill="#020202" fill-opacity="0.2" fill-rule="evenodd" height="0.534" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.772 -6.7045)" width="3.204" x="16.38" y="20.25"/>
+<rect fill="#020202" fill-opacity="0.5" fill-rule="evenodd" height="0.534" stroke-opacity="0.5" transform="matrix(0.7068 0.7074 -0.7074 0.7068 19.6277 -7.0812)" width="3.205" x="16.75" y="19.87"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="-109.2" x2="-106" y1="339.6" y2="339.6">
<stop offset="0" stop-color="#898A8B"/>
<stop offset="0.2606" stop-color="#EAEDEB"/>
@@ -209,16 +211,16 @@
<stop offset="0.7455" stop-color="#8B8B8B"/>
<stop offset="1" stop-color="#B2B2B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_24_)" points="20.06,21.46,17.04,18.44,17.79,17.68,20.81,20.7"/>
-<path d="M11.22,25.46l1.807,1.807c0.059-0.148,0.146-0.313,0.267-0.488l-1.584-1.584c-0.18,0.12-0.35,0.21-0.5,0.26z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M13.3,26.78c0.094-0.135,0.2-0.273,0.341-0.414l-0.756-0.756-0.755-0.754c-0.141,0.139-0.279,0.246-0.414,0.34l1.59,1.58z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<polygon fill="url(#SVGID_24_)" fill-rule="evenodd" points="20.06,21.46,17.04,18.44,17.79,17.68,20.81,20.7"/>
+<path d="M11.22,25.46l1.807,1.807c0.059-0.148,0.146-0.313,0.267-0.488l-1.584-1.584c-0.18,0.12-0.35,0.21-0.5,0.26z" fill="#020202" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M13.3,26.78c0.094-0.135,0.2-0.273,0.341-0.414l-0.756-0.756-0.755-0.754c-0.141,0.139-0.279,0.246-0.414,0.34l1.59,1.58z" fill="#020202" fill-opacity="0.3" fill-rule="evenodd" stroke-opacity="0.3"/>
<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 327.5859 -136.9729)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="-108.1" x2="-107" y1="338.8" y2="338.8">
<stop offset="0" stop-color="#666666"/>
<stop offset="0.3455" stop-color="#969696"/>
<stop offset="0.7818" stop-color="#3B3B3B"/>
<stop offset="1" stop-color="#2B2B2B"/>
</linearGradient>
-<path d="M12.31,26.94c-0.104,0.104-0.357,0.02-0.565-0.189-0.209-0.209-0.293-0.461-0.189-0.566,0.104-0.104,0.358-0.02,0.566,0.189,0.21,0.21,0.3,0.46,0.19,0.57z" fill="url(#SVGID_25_)"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M12.31,26.94c-0.104,0.104-0.357,0.02-0.565-0.189-0.209-0.209-0.293-0.461-0.189-0.566,0.104-0.104,0.358-0.02,0.566,0.189,0.21,0.21,0.3,0.46,0.19,0.57z" fill="url(#SVGID_25_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_user.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_applications_user.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,88 +1,90 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="4093" y2="4081">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="0.6182" stop-color="#673F3A"/>
-<stop offset="1" stop-color="#4E2224"/>
+<g>
+<rect fill="none" height="59.999" width="60"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="0.6182" style="stop-color:#673F3A"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v14.44h49.81v-9.968c0-0.86-0.61-1.49-1.43-1.49z" fill="url(#SVGID_1_)"/>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.58c0.941,0,1.225,0.584,1.436,1.236,0,0,0.557,1.591,0.764,2.296,0.33,0.806,0.869,1.011,1.332,1.011h22.84c0.826,0,1.439,0.628,1.439,1.489v-0.728c0-0.86-0.61-1.49-1.43-1.49z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="8.728" width="46.91" x="6.73" y="15.82"/>
-<rect fill="#F2F2F2" height="7.271" width="45.45" x="7.457" y="16.54"/>
-<polygon fill="#222021" fill-opacity="0.4" points="55.08,22.36,5.27,22.36,5.27,21.64,55.08,21.64" stroke-opacity="0.4"/>
-<polygon fill="#222021" fill-opacity="0.15" points="55.08,21.64,5.27,21.64,5.27,20.91,55.08,20.91" stroke-opacity="0.15"/>
-<polygon fill="#222021" fill-opacity="0.05" points="55.08,20.91,5.27,20.91,5.27,20.18,55.08,20.18" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4049" y2="4079">
-<stop offset="0" stop-color="#8C673C"/>
-<stop offset="0.0303" stop-color="#8C673C"/>
-<stop offset="0.0364" stop-color="#E4E0C1"/>
-<stop offset="0.3273" stop-color="#D3CC9B"/>
-<stop offset="0.6727" stop-color="#B5A366"/>
-<stop offset="1" stop-color="#A18046"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
+<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
+<polygon fill="#222021" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#222021" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#222021" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
+<stop offset="0" style="stop-color:#8C673C"/>
+<stop offset="0.0303" style="stop-color:#8C673C"/>
+<stop offset="0.0364" style="stop-color:#E4E0C1"/>
+<stop offset="0.3273" style="stop-color:#D3CC9B"/>
+<stop offset="0.6727" style="stop-color:#B5A366"/>
+<stop offset="1" style="stop-color:#A18046"/>
</linearGradient>
-<path d="M56.27,22.36h-52.54c-1.536,0-1.727,1.7-1.727,1.7l2.549,25.93c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l2.55-25.93s-0.19-1.7-1.73-1.7z" fill="url(#SVGID_2_)"/>
-<path d="M3.727,23.09h52.55c1.178,0,1.563,0.995,1.68,1.464l0.05-0.49s-0.191-1.703-1.727-1.703h-52.54c-1.536,0-1.727,1.7-1.727,1.7l0.047,0.489c0.117-0.46,0.502-1.46,1.68-1.46z" fill="#EFEDDD"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="4049" y2="4053">
-<stop offset="0" stop-color="#CDC18D"/>
-<stop offset="1" stop-color="#BA9D5D"/>
+<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
+<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#EFEDDD"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
+<stop offset="0" style="stop-color:#CDC18D"/>
+<stop offset="1" style="stop-color:#BA9D5D"/>
</linearGradient>
-<path d="M4.334,47.82l0.215,2.181c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181h-51.3z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
+<rect fill="none" height="59.999" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M4.714,29.28c-1.496,0-2.714-1.21-2.714-2.71v-19.71c0-0.395,0.088-0.781,0.263-1.15h-0.001c0.065-0.147,0.166-0.355,0.329-0.568l1.37-2.852c0.162-0.437,0.824-1.362,2.067-1.561l0.079-0.013h17.77l0.079,0.013c1.242,0.201,1.905,1.124,2.101,1.638l1.345,2.795c0.016,0.022,0.03,0.045,0.045,0.069,0.355,0.465,0.55,1.034,0.55,1.628l0.001,19.72c0,1.495-1.218,2.712-2.714,2.712h-20.57z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="318.5" x2="318.5" y1="406.2" y2="411.5">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="1" stop-color="#66924D"/>
+<path d="M4.714,29.284C3.218,29.284,2,28.067,2,26.572V6.857 c0-0.395,0.088-0.781,0.263-1.15l-0.001,0C2.327,5.56,2.428,5.352,2.591,5.139l1.37-2.852c0.162-0.437,0.824-1.362,2.067-1.561 l0.079-0.013h17.772l0.079,0.013c1.242,0.201,1.905,1.124,2.101,1.638l1.345,2.795c0.016,0.022,0.03,0.045,0.045,0.069 c0.355,0.465,0.55,1.034,0.55,1.628l0.001,19.715c0,1.495-1.218,2.712-2.714,2.712H4.714z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="318.4922" x2="318.4922" y1="406.1846" y2="411.4904">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="1" style="stop-color:#66924D"/>
</linearGradient>
-<path d="M26.54,5.679l-1.418-2.959s-0.321-0.844-1.326-1.005h-17.6c-1.003,0.16-1.324,1.006-1.324,1.006l-1.421,2.958c-0.344,0.388-0.425,0.884-0.442,1.178h23.98c-0.01-0.294-0.09-0.79-0.44-1.178z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="318.5" x2="318.5" y1="409.5" y2="433.4">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.14" stop-color="#98B060"/>
-<stop offset="0.69" stop-color="#336541"/>
-<stop offset="0.95" stop-color="#89B663"/>
-<stop offset="1" stop-color="#89B663"/>
+<path d="M26.543,5.679l-1.418-2.959c0,0-0.321-0.844-1.326-1.005H6.186C5.183,1.875,4.862,2.721,4.862,2.721 L3.441,5.679C3.097,6.067,3.016,6.563,2.999,6.857h23.985C26.97,6.563,26.889,6.067,26.543,5.679z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="318.5" x2="318.5" y1="409.5186" y2="433.3899">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.14" style="stop-color:#98B060"/>
+<stop offset="0.69" style="stop-color:#336541"/>
+<stop offset="0.95" style="stop-color:#89B663"/>
+<stop offset="1" style="stop-color:#89B663"/>
</linearGradient>
-<path d="M27,26.57c0,0.943-0.768,1.712-1.714,1.712h-20.58c-0.948,0-1.714-0.76-1.714-1.71v-19.71c0-0.947,0.768-1.714,1.714-1.714h20.57c0.947,0,1.714,0.767,1.714,1.714l0.01,19.71z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="318.5" x2="318.5" y1="409.5" y2="427.2">
-<stop offset="0" stop-color="#4E8146"/>
-<stop offset="1" stop-color="#326644"/>
+<path d="M26.999,26.572c0,0.943-0.768,1.712-1.714,1.712H4.714C3.766,28.284,3,27.516,3,26.572V6.857 C3,5.91,3.768,5.143,4.714,5.143h20.57c0.947,0,1.714,0.767,1.714,1.714L26.999,26.572L26.999,26.572z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="318.5" x2="318.5" y1="409.5498" y2="427.2303">
+<stop offset="0" style="stop-color:#4E8146"/>
+<stop offset="1" style="stop-color:#326644"/>
</linearGradient>
-<path d="M6.429,22.28h17.14c0.947,0,1.714-0.767,1.714-1.713v-15.43h-20.57v15.43c0,0.95,0.767,1.71,1.715,1.71z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="318.5" x2="318.5" y1="425.2" y2="433.1">
-<stop offset="0" stop-color="#326644"/>
-<stop offset="0.78" stop-color="#4E8146"/>
-<stop offset="1" stop-color="#98B060"/>
+<path d="M6.429,22.284h17.142c0.947,0,1.714-0.767,1.714-1.713V5.142H4.714V20.57 C4.714,21.518,5.481,22.284,6.429,22.284z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="318.5" x2="318.5" y1="425.2158" y2="433.1063">
+<stop offset="0" style="stop-color:#326644"/>
+<stop offset="0.78" style="stop-color:#4E8146"/>
+<stop offset="1" style="stop-color:#98B060"/>
</linearGradient>
-<path d="M24.46,22.03c-0.201,0.12-0.429,0.199-0.673,0.23-0.058,0.014-0.122,0.021-0.211,0.021h-17.15c-0.09,0-0.157-0.008-0.213-0.021-0.244-0.031-0.471-0.108-0.673-0.23l-2.302,5.4c0.298,0.506,0.844,0.849,1.473,0.849h20.57c0.629,0,1.174-0.343,1.475-0.849l-2.3-5.4z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="318.5" x2="318.5" y1="425.3" y2="432.5">
-<stop offset="0" stop-color="#1A3635"/>
-<stop offset="0.32" stop-color="#234345"/>
-<stop offset="0.74" stop-color="#46814C"/>
-<stop offset="1" stop-color="#7EA257"/>
+<path d="M24.455,22.034c-0.201,0.12-0.429,0.199-0.673,0.23c-0.058,0.014-0.122,0.021-0.211,0.021H6.429 c-0.09,0-0.157-0.008-0.213-0.021c-0.244-0.031-0.471-0.108-0.673-0.23l-2.302,5.4c0.298,0.506,0.844,0.849,1.473,0.849h20.57 c0.629,0,1.174-0.343,1.475-0.849L24.455,22.034z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="318.5" x2="318.5" y1="425.333" y2="432.5319">
+<stop offset="0" style="stop-color:#1A3635"/>
+<stop offset="0.32" style="stop-color:#234345"/>
+<stop offset="0.74" style="stop-color:#46814C"/>
+<stop offset="1" style="stop-color:#7EA257"/>
</linearGradient>
-<path d="M5.543,22.89c0.202,0.122,0.429,0.201,0.673,0.233,0.056,0.013,0.124,0.021,0.213,0.021h17.14c0.089,0,0.153-0.011,0.209-0.021,0.246-0.031,0.472-0.111,0.675-0.233l2.066,4.85c0.089-0.093,0.17-0.193,0.237-0.305l-2.301-5.4c-0.204,0.122-0.432,0.201-0.678,0.23-0.056,0.014-0.12,0.022-0.209,0.022h-17.15c-0.09,0-0.157-0.009-0.213-0.022-0.244-0.029-0.471-0.108-0.673-0.23l-2.302,5.4c0.065,0.111,0.148,0.211,0.236,0.305l2.066-4.85z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="318.5" x2="318.5" y1="409.5" y2="427.2">
-<stop offset="0" stop-color="#739853"/>
-<stop offset="0.62" stop-color="#234846"/>
-<stop offset="1" stop-color="#182830"/>
+<path d="M5.543,22.89c0.202,0.122,0.429,0.201,0.673,0.233 c0.056,0.013,0.124,0.021,0.213,0.021h17.142c0.089,0,0.153-0.011,0.209-0.021c0.246-0.031,0.472-0.111,0.675-0.233l2.066,4.85 c0.089-0.093,0.17-0.193,0.237-0.305l-2.301-5.4c-0.204,0.122-0.432,0.201-0.678,0.23c-0.056,0.014-0.12,0.022-0.209,0.022H6.429 c-0.09,0-0.157-0.009-0.213-0.022c-0.244-0.029-0.471-0.108-0.673-0.23l-2.302,5.4c0.065,0.111,0.148,0.211,0.236,0.305L5.543,22.89 z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="318.5" x2="318.5" y1="409.5498" y2="427.229">
+<stop offset="0" style="stop-color:#739853"/>
+<stop offset="0.62" style="stop-color:#234846"/>
+<stop offset="1" style="stop-color:#182830"/>
</linearGradient>
-<path d="M4.714,5.143v15.43c0,0.946,0.767,1.713,1.715,1.713h17.14c0.947,0,1.714-0.767,1.714-1.713v-15.43h-20.57zm19.72,15.43c0,0.473-0.386,0.858-0.856,0.858h-17.14c-0.473,0-0.86-0.385-0.86-0.858v-14.57h18.86v14.57z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="318.5" x2="318.5" y1="406.2" y2="409.7">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="1" stop-color="#326644"/>
+<path d="M4.714,5.143v15.428c0,0.946,0.767,1.713,1.715,1.713 h17.142c0.947,0,1.714-0.767,1.714-1.713V5.143H4.714z M24.427,20.57c0,0.473-0.386,0.858-0.856,0.858H6.429 c-0.473,0-0.86-0.385-0.86-0.858V6h18.857V20.57L24.427,20.57z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="318.499" x2="318.499" y1="406.1982" y2="409.7297">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="1" style="stop-color:#326644"/>
</linearGradient>
-<path d="M25.28,3.428c0-0.947-0.766-1.714-1.714-1.714h-17.14c-0.948,0-1.715,0.767-1.715,1.714v1.713h20.57v-1.713z" fill="url(#SVGID_7_)"/>
-<path d="M4.714,5.143h20.57c0.556,0,1.045,0.268,1.358,0.68-0.035-0.049-0.061-0.099-0.1-0.144l-1.419-2.958s-0.321-0.844-1.325-1.006h-17.61c-1.003,0.16-1.324,1.006-1.324,1.006l-1.421,2.958c-0.121,0.136-0.199,0.284-0.264,0.432,0.277-0.571,0.858-0.968,1.537-0.968z" fill="#BBCE8B" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M26.74,5.967c0.008,0.013,0.013,0.027,0.022,0.04,0-0.016-0.01-0.025-0.02-0.04z" fill="#BBCE8B"/>
-<path d="M3.051,5.824c-0.004,0.012-0.008,0.023-0.011,0.036,0.003-0.011,0.007-0.024,0.011-0.036z" fill="#BBCE8B"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="318.5" x2="318.5" y1="409.5" y2="433.4">
-<stop offset="0" stop-color="#D9E5C2"/>
-<stop offset="0.68" stop-color="#699D4D"/>
-<stop offset="1" stop-color="#89B663"/>
+<path d="M25.284,3.428c0-0.947-0.766-1.714-1.714-1.714H6.429c-0.948,0-1.715,0.767-1.715,1.714v1.713h20.57 V3.428z" fill="url(#SVGID_7_)"/>
+<path d="M4.714,5.143h20.57c0.556,0,1.045,0.268,1.358,0.68 c-0.035-0.049-0.061-0.099-0.1-0.144l-1.419-2.958c0,0-0.321-0.844-1.325-1.006H6.186C5.183,1.875,4.862,2.721,4.862,2.721 L3.441,5.679C3.32,5.815,3.242,5.963,3.177,6.111C3.454,5.54,4.035,5.143,4.714,5.143z" fill="#BBCE8B" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M26.743,5.967c0.008,0.013,0.013,0.027,0.022,0.04C26.759,5.991,26.751,5.982,26.743,5.967z" fill="#BBCE8B"/>
+<path d="M3.051,5.824C3.047,5.836,3.043,5.847,3.04,5.86C3.043,5.849,3.047,5.836,3.051,5.824z" fill="#BBCE8B"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -303.5 -404.5)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="318.5" x2="318.5" y1="409.5186" y2="433.3899">
+<stop offset="0" style="stop-color:#D9E5C2"/>
+<stop offset="0.68" style="stop-color:#699D4D"/>
+<stop offset="1" style="stop-color:#89B663"/>
</linearGradient>
-<path d="M25.28,5.143h-20.57c-0.948,0-1.714,0.767-1.714,1.714v19.71c0,0.945,0.767,1.714,1.713,1.714h20.57c0.947,0,1.714-0.769,1.714-1.714v-19.71c0.01-0.947-0.76-1.714-1.71-1.714zm0.86,21.43c0,0.472-0.388,0.856-0.858,0.856h-20.57c-0.471,0-0.858-0.385-0.858-0.856v-19.71c0-0.473,0.385-0.857,0.858-0.857h20.57c0.471,0,0.858,0.384,0.858,0.857v19.72z" fill="url(#SVGID_8_)"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M25.284,5.143H4.714C3.766,5.143,3,5.91,3,6.857V26.57c0,0.945,0.767,1.714,1.713,1.714h20.57 c0.947,0,1.714-0.769,1.714-1.714V6.857C26.999,5.91,26.231,5.143,25.284,5.143z M26.143,26.572c0,0.472-0.388,0.856-0.858,0.856 H4.714c-0.471,0-0.858-0.385-0.858-0.856V6.857C3.856,6.384,4.241,6,4.714,6h20.57c0.471,0,0.858,0.384,0.858,0.857V26.572z" fill="url(#SVGID_8_)"/>
+<rect fill="none" height="29.998" width="29.998"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_avatar.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_avatar.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<path d="M46.69,42.35c-1.665-0.866-9.918-3.756-10.07-3.936l-0.002,0.002c-0.934-1.068-0.896-3.433-0.43-4.46,0.001-0.001,0.002-0.001,0.002-0.002,0.032-0.071,0.065-0.139,0.104-0.197,0.113-0.177,0.219-0.354,0.326-0.533,0.813-1.329,1.494-2.651,2.054-3.892,1.009,0.349,2.307-0.59,2.95-2.18,0.667-1.645,0.379-3.354-0.645-3.815-0.058-0.026-0.119-0.03-0.178-0.048v-0.002c0.133-0.521,0.191-0.826,0.191-0.826,1.77-7.934-2.078-14.22-11.4-14.53-3.832,0-5.617,0.578-7.039,2.398-2.313,0.357-6.039,3.642-3.453,12.93-0.098,0.016-0.195,0.031-0.289,0.071-1.032,0.436-1.355,2.128-0.724,3.782,0.633,1.653,1.983,2.643,3.017,2.208,0.063-0.027,0.117-0.072,0.176-0.11,0.568,1.279,1.266,2.646,2.104,4.02h-0.01c0.022,0.037,0.046,0.073,0.067,0.11,0.023,0.038,0.045,0.076,0.068,0.114,0.002,0.003,0.005,0.005,0.007,0.008,0.061,0.101,0.12,0.201,0.185,0.301,0.532,0.833,0.663,3.229-0.166,4.457-0.208,0.283-8.346,3.135-10.23,4.136-2.161,1.147-5.688,3.782-5.688,9.723h44.76c-0.01-5.95-4.04-8.86-5.7-9.73z" fill="url(#SVGID_1)"/>
<path d="M7.659,51.07c-0.022,0.323-0.037,0.655-0.037,1h44.76c0-0.345-0.017-0.676-0.042-1h-44.68z" fill="#FFFFFF" fill-opacity="0.15"/>
@@ -13,4 +14,5 @@
<stop offset="1" stop-color="#444444"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_avatar_mycard.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_avatar_mycard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<path d="M46.69,42.35c-1.665-0.866-9.918-3.756-10.07-3.936l-0.002,0.002c-0.934-1.068-0.896-3.433-0.43-4.46,0.001-0.001,0.002-0.001,0.002-0.002,0.032-0.071,0.065-0.139,0.104-0.197,0.113-0.177,0.219-0.354,0.326-0.533,0.813-1.329,1.494-2.651,2.054-3.892,1.009,0.349,2.307-0.59,2.95-2.18,0.667-1.645,0.379-3.354-0.645-3.815-0.058-0.026-0.119-0.03-0.178-0.048v-0.002c0.133-0.521,0.191-0.826,0.191-0.826,1.77-7.934-2.078-14.22-11.4-14.53-3.832,0-5.617,0.578-7.039,2.398-2.313,0.357-6.039,3.642-3.453,12.93-0.098,0.016-0.195,0.031-0.289,0.071-1.032,0.436-1.355,2.128-0.724,3.782,0.633,1.653,1.983,2.643,3.017,2.208,0.063-0.027,0.117-0.072,0.176-0.11,0.568,1.279,1.266,2.646,2.104,4.02h-0.01c0.022,0.037,0.046,0.073,0.067,0.11,0.023,0.038,0.045,0.076,0.068,0.114,0.002,0.003,0.005,0.005,0.007,0.008,0.061,0.101,0.12,0.201,0.185,0.301,0.532,0.833,0.663,3.229-0.166,4.457-0.208,0.283-8.346,3.135-10.23,4.136-2.161,1.147-5.688,3.782-5.688,9.723h44.76c-0.01-5.95-4.04-8.86-5.7-9.73z" fill="url(#SVGID_1)"/>
<path d="M7.659,51.07c-0.022,0.323-0.037,0.655-0.037,1h44.76c0-0.345-0.017-0.676-0.042-1h-44.68z" fill="#FFFFFF" fill-opacity="0.15"/>
@@ -13,39 +14,40 @@
<stop offset="1" stop-color="#444444"/>
</linearGradient>
</defs>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4.404" y2="25.25">
-<stop offset="0" stop-color="#E3E3E3"/>
-<stop offset="1" stop-color="#9B9B9B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4.4043" y2="25.2544">
+<stop offset="0" style="stop-color:#E3E3E3"/>
+<stop offset="1" style="stop-color:#9B9B9B"/>
</linearGradient>
-<path d="M2.436,25.41c-0.792,0-1.436-0.64-1.436-1.44v-17.94c0-0.792,0.644-1.435,1.436-1.435h25.13c0.8,0,1.44,0.643,1.44,1.435v17.95c0,0.793-0.645,1.436-1.436,1.436h-25.12z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="4.77" y2="24.9">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<path d="M2.436,25.41C1.644,25.41,1,24.767,1,23.974V6.025C1,5.233,1.644,4.59,2.436,4.59h25.129 C28.356,4.59,29,5.233,29,6.025v17.949c0,0.793-0.645,1.436-1.436,1.436H2.436z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="4.77" y2="24.9003">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<path d="M28.64,23.97c0,0.594-0.482,1.076-1.076,1.076h-25.12c-0.594,0-1.077-0.482-1.077-1.076v-17.94c0-0.594,0.483-1.076,1.077-1.076h25.13c0.594,0,1.076,0.482,1.076,1.076v17.95z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="5.27" y2="24.66">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<path d="M28.641,23.974c0,0.594-0.482,1.076-1.076,1.076H2.436c-0.594,0-1.077-0.482-1.077-1.076V6.025 c0-0.594,0.483-1.076,1.077-1.076h25.129c0.594,0,1.076,0.482,1.076,1.076V23.974z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.27" y2="24.6558">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<path d="M27.56,5.667c0.197,0,0.358,0.161,0.358,0.358v17.95c0,0.197-0.161,0.359-0.358,0.359h-25.12c-0.198,0-0.359-0.162-0.359-0.359v-17.94c0-0.197,0.161-0.358,0.359-0.358h25.13m-0.005-0.359h-25.12c-0.396,0-0.718,0.321-0.718,0.718v17.95c0,0.396,0.322,0.719,0.718,0.719h25.13c0.395,0,0.717-0.322,0.717-0.719v-17.96c0-0.396-0.32-0.717-0.72-0.717z" fill="url(#SVGID_3_)"/>
-<rect fill="#020202" fill-opacity="0.2" height="11.85" stroke-opacity="0.2" width="10.77" x="3.872" y="9.52"/>
-<rect fill="#FFFFFF" height="11.84" width="10.77" x="3.872" y="8.803"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.257" x2="9.257" y1="20.33" y2="9.203">
-<stop offset="0" stop-color="#75B1BE"/>
-<stop offset="1" stop-color="#A6C8C1"/>
+<path d="M27.565,5.667c0.197,0,0.358,0.161,0.358,0.358v17.949c0,0.197-0.161,0.359-0.358,0.359H2.436 c-0.198,0-0.359-0.162-0.359-0.359V6.025c0-0.197,0.161-0.358,0.359-0.358H27.565 M27.565,5.308H2.436 c-0.396,0-0.718,0.321-0.718,0.718v17.949c0,0.396,0.322,0.719,0.718,0.719h25.129c0.395,0,0.717-0.322,0.717-0.719V6.025 C28.282,5.629,27.959,5.308,27.565,5.308L27.565,5.308z" fill="url(#SVGID_3_)"/>
+<rect fill="#020202" fill-opacity="0.2" height="11.847" stroke-opacity="0.2" width="10.769" x="3.872" y="9.52"/>
+<rect fill="#FFFFFF" height="11.845" width="10.769" x="3.872" y="8.803"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.2568" x2="9.2568" y1="20.3306" y2="9.2026">
+<stop offset="0" style="stop-color:#75B1BE"/>
+<stop offset="1" style="stop-color:#A6C8C1"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="11.13" width="10.05" x="4.231" y="9.16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="4.949" x2="12.85" y1="14.88" y2="14.88">
-<stop offset="0" stop-color="#425A81"/>
-<stop offset="1" stop-color="#242954"/>
+<rect fill="url(#SVGID_4_)" height="11.128" width="10.052" x="4.231" y="9.16"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="4.9492" x2="12.8466" y1="14.8813" y2="14.8813">
+<stop offset="0" style="stop-color:#425A81"/>
+<stop offset="1" style="stop-color:#242954"/>
</linearGradient>
-<path d="M12.47,17.26c-0.234-0.121-1.141-0.449-1.627-0.633l-0.021-0.008c-0.005-0.002-0.009-0.004-0.014-0.006l-0.275-0.109c-0.194-0.221-0.172-0.729-0.064-0.898,0.022-0.033,0.042-0.066,0.063-0.102h-0.004c0.157-0.256,0.291-0.51,0.398-0.75,0.194,0.068,0.444-0.113,0.568-0.418,0.129-0.318,0.073-0.646-0.125-0.736-0.011-0.004-0.022-0.005-0.034-0.008v-0.002c0.025-0.1,0.037-0.158,0.037-0.158,0.341-1.527-0.4-2.738-2.195-2.798-0.737,0-1.091,0.336-1.365,0.687-0.446,0.068-1.151,0.477-0.653,2.264-0.019,0.003-0.038,0.006-0.056,0.014-0.2,0.084-0.262,0.41-0.14,0.728s0.382,0.51,0.581,0.426c0.011-0.006,0.022-0.016,0.033-0.021,0.109,0.246,0.245,0.508,0.406,0.773h-0.019c0.007,0.012,0.015,0.025,0.022,0.037,0.001,0.002,0.002,0.004,0.004,0.006v0.002c0.013,0.018,0.024,0.037,0.036,0.057,0.104,0.162,0.125,0.629-0.041,0.861l-0.286,0.125c-0.48,0.188-1.407,0.525-1.675,0.668-0.417,0.223-1.095,0.729-1.095,1.873h8.615c0-1.13-0.77-1.7-1.09-1.86zm-1.16-3.68c-0.011-0.003-0.021-0.006-0.031-0.006-0.015-0.003-0.027-0.006-0.042-0.009-0.002-0.001-0.003-0.001-0.005-0.001,0.02,0.01,0.04,0.02,0.07,0.02zm-4.149,0c0.003-0.003,0.009-0.008,0.012-0.011,0,0.002,0.001,0.004,0.002,0.008h-0.014z" fill="url(#SVGID_5_)"/>
-<rect fill="#020202" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="9.333" x="16.8" y="17.26"/>
-<rect fill="#020202" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="9.333" x="16.8" y="12.27"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="9.333" x="16.8" y="11.72"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="9.333" x="16.8" y="16.72"/>
+<path d="M12.469,17.257c-0.234-0.121-1.141-0.449-1.627-0.633l-0.021-0.008h0 c-0.005-0.002-0.009-0.004-0.014-0.006l-0.275-0.109c-0.194-0.221-0.172-0.729-0.064-0.898c0.022-0.033,0.042-0.066,0.063-0.102 h-0.004c0.157-0.256,0.291-0.51,0.398-0.75c0.194,0.068,0.444-0.113,0.568-0.418c0.129-0.318,0.073-0.646-0.125-0.736 c-0.011-0.004-0.022-0.005-0.034-0.008c0-0.002,0-0.002,0-0.002c0.025-0.1,0.037-0.158,0.037-0.158 c0.341-1.527-0.4-2.738-2.195-2.798c-0.737,0-1.091,0.336-1.365,0.687c-0.446,0.068-1.151,0.477-0.653,2.264 c-0.019,0.003-0.038,0.006-0.056,0.014c-0.2,0.084-0.262,0.41-0.14,0.728c0.122,0.318,0.382,0.51,0.581,0.426 c0.011-0.006,0.022-0.016,0.033-0.021c0.109,0.246,0.245,0.508,0.406,0.773H7.982c0.007,0.012,0.015,0.025,0.022,0.037 c0.001,0.002,0.002,0.004,0.004,0.006l0,0.002c0.013,0.018,0.024,0.037,0.036,0.057c0.104,0.162,0.125,0.629-0.041,0.861 l-0.286,0.125c-0.48,0.188-1.407,0.525-1.675,0.668c-0.417,0.223-1.095,0.729-1.095,1.873h8.615 C13.564,17.986,12.789,17.425,12.469,17.257z M11.31,13.584c-0.011-0.003-0.021-0.006-0.031-0.006 c-0.015-0.003-0.027-0.006-0.042-0.009c-0.002-0.001-0.003-0.001-0.005-0.001C11.256,13.573,11.283,13.578,11.31,13.584z M7.161,13.581c0.003-0.003,0.009-0.008,0.012-0.011c0,0.002,0.001,0.004,0.002,0.008C7.17,13.578,7.166,13.58,7.161,13.581z" fill="url(#SVGID_5_)"/>
+<rect fill="#020202" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="9.333" x="16.795" y="17.265"/>
+<rect fill="#020202" fill-opacity="0.5" height="1" stroke-opacity="0.5" width="9.333" x="16.795" y="12.266"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="9.333" x="16.795" y="11.725"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="9.333" x="16.795" y="16.724"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bell.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bell.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,61 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -785.9789 1292.5154)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-326.7" x2="-304.8" y1="-1455" y2="-1455">
-<stop offset="0" stop-color="#696A6B"/>
-<stop offset="0.297" stop-color="#A2A4A4"/>
-<stop offset="0.7091" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -785.9789 1292.5154)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-326.7236" x2="-304.7813" y1="-1454.5332" y2="-1454.5332">
+<stop offset="0" style="stop-color:#696A6B"/>
+<stop offset="0.297" style="stop-color:#A2A4A4"/>
+<stop offset="0.7091" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M15.17,29.31c-4.057,4.059-3.887,10.82,0.402,15.11,4.285,4.285,11.06,4.465,15.11,0.406l-15.51-15.52z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.591" x2="42.14" y1="17.85" y2="54.39">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.2" stop-color="#DED7B3"/>
-<stop offset="0.3879" stop-color="#D2C49B"/>
-<stop offset="0.4182" stop-color="#C6B285"/>
-<stop offset="0.6667" stop-color="#AA8250"/>
-<stop offset="0.8545" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M15.172,29.313L15.172,29.313c-4.057,4.059-3.887,10.822,0.402,15.109 c4.285,4.285,11.057,4.465,15.113,0.406l0,0L15.172,29.313z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.5908" x2="42.1352" y1="17.8457" y2="54.3901">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.2" style="stop-color:#DED7B3"/>
+<stop offset="0.3879" style="stop-color:#D2C49B"/>
+<stop offset="0.4182" style="stop-color:#C6B285"/>
+<stop offset="0.6667" style="stop-color:#AA8250"/>
+<stop offset="0.8545" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M42.73,47.44l-30.17-30.17c-4.08-1.461-5.623-0.41-7.496,1.463l-3.064,3.07,36.2,36.2,3.064-3.063c1.88-1.88,2.93-3.42,1.47-7.5z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -785.9789 1292.5154)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-320.2" x2="-311.6" y1="-1502" y2="-1502">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.1939" stop-color="#DED7B3"/>
-<stop offset="0.703" stop-color="#AA8250"/>
-<stop offset="0.8848" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M42.727,47.441L12.559,17.273c-4.08-1.461-5.623-0.41-7.496,1.463L2,21.799L38.201,58l3.064-3.063 C43.137,53.064,44.188,51.521,42.727,47.441z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -785.9789 1292.5154)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-320.21" x2="-311.6052" y1="-1501.5957" y2="-1501.5957">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.1939" style="stop-color:#DED7B3"/>
+<stop offset="0.703" style="stop-color:#AA8250"/>
+<stop offset="0.8848" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M53.28,12.75l1.51-1.51c1.658-1.658,1.658-4.375,0-6.033-1.66-1.66-4.375-1.66-6.035,0l-1.508,1.508,6.03,6.035z" fill="url(#SVGID_3_)"/>
-<path d="M53.28,12.75l1.51-1.51c0.09-0.09,0.158-0.195,0.238-0.293-0.771-1.162-1.666-2.268-2.689-3.289-1.023-1.023-2.127-1.92-3.291-2.691-0.096,0.082-0.201,0.148-0.293,0.24l-1.508,1.508,6.03,6.032z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M52.91,7.092c-0.984-0.984-2.045-1.848-3.16-2.598-0.354,0.189-0.691,0.414-0.988,0.711l-0.94,0.945,6.033,6.033,0.943-0.943c0.297-0.297,0.521-0.637,0.713-0.99-0.74-1.113-1.61-2.174-2.59-3.158z" fill="#5E2D29" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="51.82" x2="27.39" y1="8.184" y2="32.61">
-<stop offset="0" stop-color="#E6E0C8"/>
-<stop offset="1" stop-color="#AF8C5A"/>
+<path d="M53.285,12.75l1.51-1.51c1.658-1.658,1.658-4.375,0-6.033c-1.66-1.66-4.375-1.66-6.035,0 l-1.508,1.508L53.285,12.75z" fill="url(#SVGID_3_)"/>
+<path d="M53.285,12.75l1.51-1.51c0.09-0.09,0.158-0.195,0.238-0.293 c-0.771-1.162-1.666-2.268-2.689-3.289c-1.023-1.023-2.127-1.92-3.291-2.691c-0.096,0.082-0.201,0.148-0.293,0.24l-1.508,1.508 L53.285,12.75z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M52.91,7.092c-0.984-0.984-2.045-1.848-3.16-2.598c-0.354,0.189-0.691,0.414-0.988,0.711 L47.818,6.15l6.033,6.033l0.943-0.943c0.297-0.297,0.521-0.637,0.713-0.99C54.756,9.137,53.893,8.076,52.91,7.092z" fill="#5E2D29" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="51.8164" x2="27.3908" y1="8.1841" y2="32.6097">
+<stop offset="0" style="stop-color:#E6E0C8"/>
+<stop offset="1" style="stop-color:#AF8C5A"/>
</linearGradient>
-<path d="M42.73,47.44l9.051-9.051c8.297-8.295,8.297-21.87,0-30.17-8.295-8.297-21.87-8.297-30.17,0l-9.051,9.051,30.17,30.17z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.41" x2="54.04" y1="5.987" y2="34.62">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.2545" stop-color="#DED7B3"/>
-<stop offset="0.503" stop-color="#C9B78A"/>
-<stop offset="0.5152" stop-color="#C4AE80"/>
-<stop offset="0.6667" stop-color="#AA8250"/>
-<stop offset="0.8545" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M42.727,47.441l9.051-9.051c8.297-8.295,8.297-21.871,0-30.168c-8.295-8.297-21.871-8.297-30.168,0 l-9.051,9.051L42.727,47.441z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.4072" x2="54.0366" y1="5.9873" y2="34.6167">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.2545" style="stop-color:#DED7B3"/>
+<stop offset="0.503" style="stop-color:#C9B78A"/>
+<stop offset="0.5152" style="stop-color:#C4AE80"/>
+<stop offset="0.6667" style="stop-color:#AA8250"/>
+<stop offset="0.8545" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M13.69,17.27l8.486-8.484c3.861-3.861,9.018-5.988,14.52-5.988s10.66,2.127,14.52,5.988,5.988,9.018,5.988,14.52c0,5.502-2.127,10.66-5.988,14.52l-8.486,8.484-29.04-29.04z" fill="url(#SVGID_5_)"/>
-<rect fill="#5E2D29" fill-opacity="0.2" height="0.801" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.8495 -10.3756)" width="42.66" x="6.617" y="31.65"/>
-<path d="M26.41,47.34c0.285-0.082,0.57-0.174,0.85-0.281l-14.32-14.32c-0.107,0.279-0.199,0.563-0.281,0.85l13.75,13.75z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#5E2D29" fill-opacity="0.1" height="0.8" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.6155 -10.9417)" width="42.66" x="7.184" y="31.09"/>
-<path d="M25.44,47.57c0.311-0.059,0.617-0.127,0.92-0.213l-13.72-13.72c-0.086,0.303-0.156,0.609-0.215,0.918l13.02,13.01z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M8.873,16.6l34.52,34.52c0.072-0.971-0.119-2.148-0.67-3.688l-30.16-30.16c-1.54-0.55-2.716-0.74-3.687-0.67z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M12.56,17.27c-0.391-0.141-0.758-0.256-1.105-0.352l31.62,31.62c-0.094-0.346-0.211-0.715-0.352-1.105l-30.17-30.17z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect fill="#522523" fill-opacity="0.2" height="0.801" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.985 -2.8095)" width="51.2" x="-5.215" y="39.22"/>
-<rect fill="#522523" fill-opacity="0.1" height="0.798" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.7481 -3.3767)" width="51.2" x="-4.649" y="38.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.48" x2="42.48" y1="3.564" y2="32.07">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDBD92"/>
+<path d="M13.689,17.273l8.486-8.484c3.861-3.861,9.018-5.988,14.518-5.988c5.502,0,10.658,2.127,14.52,5.988 s5.988,9.018,5.988,14.518c0,5.502-2.127,10.658-5.988,14.52l-8.486,8.484L13.689,17.273z" fill="url(#SVGID_5_)"/>
+<rect fill="#5E2D29" fill-opacity="0.2" height="0.801" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.8495 -10.3756)" width="42.664" x="6.617" y="31.65"/>
+<path d="M26.412,47.342c0.285-0.082,0.57-0.174,0.85-0.281L12.939,32.738c-0.107,0.279-0.199,0.563-0.281,0.85 L26.412,47.342z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#5E2D29" fill-opacity="0.1" height="0.8" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 30.6155 -10.9417)" width="42.664" x="7.184" y="31.086"/>
+<path d="M25.439,47.572c0.311-0.059,0.617-0.127,0.92-0.213L12.641,33.641c-0.086,0.303-0.156,0.609-0.215,0.918 L25.439,47.572z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M8.873,16.604l34.523,34.525c0.072-0.971-0.119-2.148-0.67-3.688L12.559,17.273 C11.021,16.721,9.844,16.531,8.873,16.604z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M12.559,17.273c-0.391-0.141-0.758-0.256-1.105-0.352l31.625,31.625 c-0.094-0.346-0.211-0.715-0.352-1.105L12.559,17.273z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill="#522523" fill-opacity="0.2" height="0.801" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.985 -2.8095)" width="51.198" x="-5.215" y="39.217"/>
+<rect fill="#522523" fill-opacity="0.1" height="0.798" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 33.7481 -3.3767)" width="51.198" x="-4.649" y="38.652"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.4766" x2="42.4766" y1="3.564" y2="32.0729">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDBD92"/>
</linearGradient>
-<path d="M53.87,30.98c-4.629-2.719-9.43-6.51-13.88-10.96s-8.25-9.26-10.97-13.89l-0.475-0.807,0.871-0.344c2.313-0.91,4.752-1.371,7.254-1.371,5.23,0,10.32,2.094,13.98,5.746,5.551,5.549,7.268,13.88,4.373,21.23l-0.344,0.869-0.8-0.47z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M53.869,30.98c-4.629-2.719-9.43-6.51-13.885-10.965S31.738,10.76,29.021,6.131 l-0.475-0.807l0.871-0.344c2.313-0.91,4.752-1.371,7.254-1.371c5.23,0,10.324,2.094,13.975,5.746 c5.551,5.549,7.268,13.883,4.373,21.229l-0.344,0.869L53.869,30.98z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.07">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,2c-11.86,0-20.06,5.973-20.06,28s8.195,28,20.06,28,20.05-5.97,20.05-28-8.19-28-20.05-28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.236" y2="56.76">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M30,56.76c-9.305,0-18.82-3.179-18.82-26.76s9.52-26.76,18.82-26.76c9.306,0,18.82,3.179,18.82,26.76s-9.51,26.76-18.82,26.76z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.69" x2="42.31" y1="30.21" y2="30.21">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M42.31,20.7l-14.07-14.4v18.97l-7.728-7.912-2.822,2.881,9.712,9.961-9.712,9.96,2.815,2.879,7.734-7.91v18.97l14.06-14.4-9.287-9.506,9.31-9.5zm-5.62,0.03l-4.49,4.59-0.006-9.188,4.5,4.6zm0,18.96l-4.496,4.584,0.006-9.185,4.49,4.61z" fill="url(#SVGID_3_)"/>
-<path d="M29.48,32.1l-8.971,9.175-1.087-1.112,9.71-9.959-9.71-9.96,1.091-1.113,8.967,9.179v-18.98l11.1,11.36-9.287,9.504,9.287,9.506-11.1,11.36v-18.97zm1.48,15.2l7.464-7.61-7.454-7.636-0.01,15.25zm0-18.95l7.454-7.618-7.464-7.632,0.01,15.25z" fill="#FFFFFF"/>
+<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
+<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_active_connection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_active_connection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,59 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.07">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,2c-11.86,0-20.06,5.973-20.06,28s8.195,28,20.06,28,20.05-5.97,20.05-28-8.19-28-20.05-28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.236" y2="56.76">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M30,56.76c-9.305,0-18.82-3.179-18.82-26.76s9.52-26.76,18.82-26.76c9.306,0,18.82,3.179,18.82,26.76s-9.51,26.76-18.82,26.76z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.69" x2="42.31" y1="30.21" y2="30.21">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M42.31,20.7l-14.07-14.4v18.97l-7.728-7.912-2.822,2.881,9.712,9.961-9.712,9.96,2.815,2.879,7.734-7.91v18.97l14.06-14.4-9.287-9.506,9.31-9.5zm-5.62,0.03l-4.49,4.59-0.006-9.188,4.5,4.6zm0,18.96l-4.496,4.584,0.006-9.185,4.49,4.61z" fill="url(#SVGID_3_)"/>
-<path d="M29.48,32.1l-8.971,9.175-1.087-1.112,9.71-9.959-9.71-9.96,1.091-1.113,8.967,9.179v-18.98l11.1,11.36-9.287,9.504,9.287,9.506-11.1,11.36v-18.97zm1.48,15.2l7.464-7.61-7.454-7.636-0.01,15.25zm0-18.95l7.454-7.618-7.464-7.632,0.01,15.25z" fill="#FFFFFF"/>
+<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
+<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.75,15h-19.48c-0.555,0-0.998,0.273-1.186,0.73-0.186,0.459-0.059,0.966,0.34,1.355l10.52,10.31c0.339,0.335,0.687,0.404,0.918,0.404,0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051c0-0.83-0.69-1.52-1.53-1.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M29.58,12.91l-10.52-10.31c-0.339-0.333-0.685-0.402-0.916-0.402-0.564,0-1.165,0.449-1.165,1.281v4.399h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.48c0.555,0,0.998-0.273,1.186-0.73,0.18-0.46,0.06-0.97-0.34-1.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.14" x2="11.14" y1="16.1" y2="27">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M21.28,20.59c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861c0,0.295-0.172,0.37-0.38,0.165l-10.52-10.33c-0.211-0.205-0.144-0.372,0.145-0.372h19.48c0.289,0,0.527,0.241,0.527,0.537v4.049z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.78" x2="11.78" y1="17.07" y2="24.88">
-<stop offset="0" stop-color="#88A372"/>
-<stop offset="0.2545" stop-color="#426E4B"/>
-<stop offset="0.5091" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
+<stop offset="0" style="stop-color:#88A372"/>
+<stop offset="0.2545" style="stop-color:#426E4B"/>
+<stop offset="0.5091" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M3.336,17.06h16.88v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878l-7.634-7.49z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.86" x2="18.86" y1="3.223" y2="14.16">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.4909" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.4909" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538v-4.861c0-0.297,0.172-0.37,0.381-0.165l10.52,10.32c0.211,0.205,0.144,0.372-0.145,0.372h-19.49c-0.289,0-0.525-0.241-0.525-0.535v-4.049z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.23" x2="18.23" y1="5.429" y2="12.97">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.703" stop-color="#426E4B"/>
-<stop offset="0.9879" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.703" style="stop-color:#426E4B"/>
+<stop offset="0.9879" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M9.785,12.94v-3.007h7.673c0.872,0,1.583-0.718,1.583-1.597v-2.878l7.627,7.48h-16.88z" fill="url(#SVGID_4_)"/>
+<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,28 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.07">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,2c-11.86,0-20.06,5.973-20.06,28s8.195,28,20.06,28,20.05-5.97,20.05-28-8.19-28-20.05-28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.236" y2="56.76">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M30,56.76c-9.305,0-18.82-3.179-18.82-26.76s9.52-26.76,18.82-26.76c9.306,0,18.82,3.179,18.82,26.76s-9.51,26.76-18.82,26.76z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.69" x2="42.31" y1="30.21" y2="30.21">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M42.31,20.7l-14.07-14.4v18.97l-7.728-7.912-2.822,2.881,9.712,9.961-9.712,9.96,2.815,2.879,7.734-7.91v18.97l14.06-14.4-9.287-9.506,9.31-9.5zm-5.62,0.03l-4.49,4.59-0.006-9.188,4.5,4.6zm0,18.96l-4.496,4.584,0.006-9.185,4.49,4.61z" fill="url(#SVGID_3_)"/>
-<path d="M29.48,32.1l-8.971,9.175-1.087-1.112,9.71-9.959-9.71-9.96,1.091-1.113,8.967,9.179v-18.98l11.1,11.36-9.287,9.504,9.287,9.506-11.1,11.36v-18.97zm1.48,15.2l7.464-7.61-7.454-7.636-0.01,15.25zm0-18.95l7.454-7.618-7.464-7.632,0.01,15.25z" fill="#FFFFFF"/>
+<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
+<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide_connection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_hide_connection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,61 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.07">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,2c-11.86,0-20.06,5.973-20.06,28s8.195,28,20.06,28,20.05-5.97,20.05-28-8.19-28-20.05-28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.236" y2="56.76">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M30,56.76c-9.305,0-18.82-3.179-18.82-26.76s9.52-26.76,18.82-26.76c9.306,0,18.82,3.179,18.82,26.76s-9.51,26.76-18.82,26.76z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.69" x2="42.31" y1="30.21" y2="30.21">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M42.31,20.7l-14.07-14.4v18.97l-7.728-7.912-2.822,2.881,9.712,9.961-9.712,9.96,2.815,2.879,7.734-7.91v18.97l14.06-14.4-9.287-9.506,9.31-9.5zm-5.62,0.03l-4.49,4.59-0.006-9.188,4.5,4.6zm0,18.96l-4.496,4.584,0.006-9.185,4.49,4.61z" fill="url(#SVGID_3_)"/>
-<path d="M29.48,32.1l-8.971,9.175-1.087-1.112,9.71-9.959-9.71-9.96,1.091-1.113,8.967,9.179v-18.98l11.1,11.36-9.287,9.504,9.287,9.506-11.1,11.36v-18.97zm1.48,15.2l7.464-7.61-7.454-7.636-0.01,15.25zm0-18.95l7.454-7.618-7.464-7.632,0.01,15.25z" fill="#FFFFFF"/>
+<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
+<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.75,15h-19.48c-0.555,0-0.998,0.273-1.186,0.73-0.186,0.459-0.059,0.966,0.34,1.355l10.52,10.31c0.339,0.335,0.687,0.404,0.918,0.404,0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051c0-0.83-0.69-1.52-1.53-1.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M29.58,12.91l-10.52-10.31c-0.339-0.333-0.685-0.402-0.916-0.402-0.564,0-1.165,0.449-1.165,1.281v4.399h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.48c0.555,0,0.998-0.273,1.186-0.73,0.18-0.46,0.06-0.97-0.34-1.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.14" x2="11.14" y1="16.1" y2="27">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M21.28,20.59c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861c0,0.295-0.172,0.37-0.38,0.165l-10.52-10.33c-0.211-0.205-0.144-0.372,0.145-0.372h19.48c0.289,0,0.527,0.241,0.527,0.537v4.049z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.78" x2="11.78" y1="17.07" y2="24.88">
-<stop offset="0" stop-color="#88A372"/>
-<stop offset="0.2545" stop-color="#426E4B"/>
-<stop offset="0.5091" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
+<stop offset="0" style="stop-color:#88A372"/>
+<stop offset="0.2545" style="stop-color:#426E4B"/>
+<stop offset="0.5091" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M3.336,17.06h16.88v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878l-7.634-7.49z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.86" x2="18.86" y1="3.223" y2="14.16">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.4909" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.4909" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538v-4.861c0-0.297,0.172-0.37,0.381-0.165l10.52,10.32c0.211,0.205,0.144,0.372-0.145,0.372h-19.49c-0.289,0-0.525-0.241-0.525-0.535v-4.049z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.23" x2="18.23" y1="5.429" y2="12.97">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.703" stop-color="#426E4B"/>
-<stop offset="0.9879" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.703" style="stop-color:#426E4B"/>
+<stop offset="0.9879" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M9.785,12.94v-3.007h7.673c0.872,0,1.583-0.718,1.583-1.597v-2.878l7.627,7.48h-16.88z" fill="url(#SVGID_4_)"/>
+<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_bluetooth_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.07">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="58.0739">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,2c-11.86,0-20.06,5.973-20.06,28s8.195,28,20.06,28,20.05-5.97,20.05-28-8.19-28-20.05-28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.236" y2="56.76">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M30,2C18.142,2,9.945,7.973,9.945,30.001C9.945,52.03,18.145,58,30,58 c11.857,0,20.054-5.97,20.054-27.999C50.054,7.973,41.857,2,30,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.2363" y2="56.7637">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M30,56.76c-9.305,0-18.82-3.179-18.82-26.76s9.52-26.76,18.82-26.76c9.306,0,18.82,3.179,18.82,26.76s-9.51,26.76-18.82,26.76z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.69" x2="42.31" y1="30.21" y2="30.21">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M30,56.764c-9.305,0-18.818-3.179-18.818-26.763C11.182,6.415,20.695,3.236,30,3.236 c9.306,0,18.817,3.179,18.817,26.765C48.817,53.585,39.306,56.764,30,56.764L30,56.764z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17.6924" x2="42.3066" y1="30.2065" y2="30.2065">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M42.31,20.7l-14.07-14.4v18.97l-7.728-7.912-2.822,2.881,9.712,9.961-9.712,9.96,2.815,2.879,7.734-7.91v18.97l14.06-14.4-9.287-9.506,9.31-9.5zm-5.62,0.03l-4.49,4.59-0.006-9.188,4.5,4.6zm0,18.96l-4.496,4.584,0.006-9.185,4.49,4.61z" fill="url(#SVGID_3_)"/>
-<path d="M29.48,32.1l-8.971,9.175-1.087-1.112,9.71-9.959-9.71-9.96,1.091-1.113,8.967,9.179v-18.98l11.1,11.36-9.287,9.504,9.287,9.506-11.1,11.36v-18.97zm1.48,15.2l7.464-7.61-7.454-7.636-0.01,15.25zm0-18.95l7.454-7.618-7.464-7.632,0.01,15.25z" fill="#FFFFFF"/>
+<path d="M42.307,20.702L28.242,6.305v18.972l-7.728-7.912l-2.822,2.881l9.712,9.961l-9.712,9.96l2.815,2.879 l7.734-7.91v18.974l14.064-14.396l-9.287-9.506L42.307,20.702z M36.689,20.734l-4.49,4.59l-0.006-9.188L36.689,20.734z M36.689,39.686l-4.496,4.584l0.006-9.185L36.689,39.686z" fill="url(#SVGID_3_)"/>
+<path d="M29.479,32.103l-8.971,9.175l-1.087-1.112l9.71-9.959l-9.71-9.96l1.091-1.113l8.967,9.179V9.339l11.1,11.363 l-9.287,9.504l9.287,9.506l-11.1,11.362V32.103z M30.955,47.297l7.464-7.61l-7.454-7.636L30.955,47.297z M30.965,28.353l7.454-7.618 l-7.464-7.632L30.965,28.353z" fill="#FFFFFF"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(2 0 0 2 0 0)">
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.35" height="33.87" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.15" y="-2.239"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="656" y2="656">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="0.8424" stop-color="#954B50"/>
-<stop offset="1" stop-color="#B36B4D"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="0.8424" style="stop-color:#954B50"/>
+<stop offset="1" style="stop-color:#B36B4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="25.81,26.43,3,4.177,4.191,2.956,27,25.21"/>
+<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_browser.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_browser.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,61 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="57.68" y2="2.078">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.998" x2="29.998" y1="57.6797" y2="2.0783">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M58,30c0,15.46-12.54,28-28,28s-28-12.54-28-28,12.54-28,28-28,28,12.54,28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="26.94" cy="12.71" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="33.87">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M57.998,30.001C57.998,45.464,45.461,58,30,58C14.535,58,1.998,45.464,1.998,30.001 C1.998,14.54,14.535,2,30,2C45.461,2,57.998,14.54,57.998,30.001z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="26.9434" cy="12.7056" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="33.8669">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_2_)" r="27.28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="2.478" y2="57.42">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<circle cx="29.999" cy="30.001" fill="url(#SVGID_2_)" r="27.282"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="2.4785" y2="57.4196">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M30,2.718c-15.07,0-27.28,12.22-27.28,27.28,0,15.07,12.22,27.28,27.28,27.28,15.07,0,27.28-12.21,27.28-27.28,0-15.06-12.21-27.28-27.28-27.28zm0,52.17c-14.17,0-25.69-11.52-25.69-25.69-0.001-14.16,11.52-25.68,25.69-25.68s25.69,11.52,25.69,25.7c0,14.16-11.52,25.68-25.69,25.68z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.162" x2="7.498" y1="33.71" y2="33.71">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M30,2.718c-15.066,0-27.283,12.218-27.283,27.283c0,15.069,12.217,27.28,27.283,27.28 c15.07,0,27.281-12.211,27.281-27.28C57.281,14.937,45.07,2.718,30,2.718z M30,54.894c-14.166,0-25.691-11.524-25.691-25.688 C4.309,15.04,15.834,3.515,30,3.515S55.689,15.04,55.689,29.206C55.689,43.37,44.166,54.894,30,54.894z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.1621" x2="7.498" y1="33.7139" y2="33.7139">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M5.277,29.56c-0.289-0.39-0.945-0.39-1.236-0.39-0.57,0-0.873,0.406-0.879,0.804v0.069c0,0.702,0.039,1.489,0.123,2.446,0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633,0.117,0.53,0.26,1.08,0.434,1.687,0.025,0.087,0.049,0.175,0.07,0.26,0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02,0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106c0.025-0.243,0.033-0.497,0.025-0.751-0.013-0.39-0.029-0.88-0.14-1.29l1.455-1.951,0.154-0.213v-2.115l-0.232-0.232-1.989-2z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.53" x2="56.9" y1="25.77" y2="25.77">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M5.277,29.556C4.988,29.17,4.332,29.17,4.041,29.17c-0.57,0-0.873,0.406-0.879,0.804 v0.028v0.041c0,0.702,0.039,1.489,0.123,2.446c0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665 l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633c0.117,0.53,0.26,1.08,0.434,1.687c0.025,0.087,0.049,0.175,0.07,0.26 c0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02l0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106 c0.025-0.243,0.033-0.497,0.025-0.751C6.016,36.956,6,36.467,5.889,36.056l1.455-1.951l0.154-0.213v-0.264v-1.52v-0.331 l-0.232-0.232L5.277,29.556z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.5254" x2="56.9043" y1="25.7695" y2="25.7695">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.9,24.65c-0.02-0.103-0.039-0.176-0.057-0.25-0.016-0.055-0.027-0.109-0.037-0.162-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457-0.248-0.767-0.514-1.5-0.797-2.177-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353-0.385-0.695-0.789-1.358-1.199-1.974-0.043-0.065-0.092-0.134-0.141-0.202-0.031-0.041-0.059-0.081-0.086-0.121-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218-0.498-0.596-1.023-1.174-1.566-1.72-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139-0.582-0.48-1.215-0.952-1.875-1.405-0.08-0.055-0.164-0.109-0.248-0.162l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088-0.693-0.371-1.414-0.72-2.146-1.035l-0.2-0.078-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934-0.574-0.077-1.961-0.251-3.359-0.386,0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573-0.07-0.016c-0.051-0.014-0.102-0.025-0.152-0.037l-0.12-0.023-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38v-0.001l-0.109-0.01c-0.914-0.093-1.844-0.139-2.762-0.139-0.809,0-1.648,0.042-2.564,0.13-0.145,0.013-0.281,0.029-0.422,0.043-0.906,0.101-1.697,0.221-2.447,0.373l-0.03,0.005-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762-0.057,0.023-0.094,0.037-0.131,0.051l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055c-0.205,0.113-0.412,0.242-0.617,0.37l-0.26,0.166-1.461,0.893,1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123,0.875,0,1.721-0.43,2.402-0.776,0.273-0.138,0.678-0.344,0.848-0.376,0.199,0.06,0.396,0.089,0.596,0.089,0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391,0.607-0.229,1.717-0.645,2.01-0.715,0.578-0.006,1.264-0.088,1.752-0.392,0.459,0.075,1.273,0.204,2.115,0.314-0.06,0.038-0.12,0.078-0.17,0.128-0.273,0.251-1.742,0.696-2.195,0.755-0.848,0.106-1.186,0.532-1.322,0.871-0.176,0.439-0.068,0.878,0.104,1.235-0.32,0.212-0.713,0.448-1.049,0.625,0-0.007,0.002-0.015,0.004-0.024,0.121-0.675,0.209-1.163-0.119-1.556-0.166-0.2-0.414-0.314-0.676-0.314-0.387,0-0.688,0.239-0.93,0.473-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207-0.074,0.051-0.287,0.132-0.582,0.132-0.041,0-0.076-0.002-0.105-0.005-0.191-0.205-0.453-0.322-0.752-0.322-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49,0.377,0.484,0.354,0.449c-5.51,4.257-5.551,4.5-5.609,4.855-0.01,0.032-0.057,0.18-0.123,0.383-0.822,2.552-1.275,4.46-0.834,5.482,1.025,2.368,2.182,4.579,3.68,4.701,0.133,0.011,0.277,0.017,0.434,0.017,1.373,0,3.6-0.416,4.668-0.635,0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421,0.484-0.016s0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022,0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269,0.088,0.14,0.168,0.266,0.232,0.374,0.424,1.204,0.934,2.002,2.02,2.002,0.078,0,0.16-0.005,0.244-0.009,0.063-0.004,0.125-0.007,0.191-0.007,0.121,0,0.207,0.014,0.293,0.045l0.1,0.036,0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071,0.334,0.047,0.68,0.095,1.031,0.095,0.941,0,1.689-0.357,2.336-1.119,0.021-0.004,0.045-0.005,0.068-0.008,0.678-0.095,0.932-0.433,1.018-0.737,0.051-0.05,0.117-0.112,0.172-0.164,0.268-0.244,0.584-0.537,0.803-0.88,0.1-0.059,0.213-0.125,0.338-0.2,0.219-0.134,0.465-0.283,0.658-0.382,0.172-0.052,0.322-0.153,0.436-0.293,0.273-0.335,0.217-0.717,0.172-1.023-0.047-0.318-0.092-0.642,0.078-0.99,0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712,0.264,0.301,0.641,0.468,1.063,0.468,0.131,0,0.271-0.017,0.416-0.05,1.342-0.304,3.723-3.531,3.916-5.312,0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24-0.398,0.396-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425,0.016-0.627-0.047-1.27-0.113-1.896-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043,0.051-0.051c0.418-0.426,0.883-0.799,1.373-1.193,1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158-0.115-0.167-0.359-0.426-0.814-0.518,0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059,0.109-0.104,2.48-2.381,0.363-0.35-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977,0.725,0.099,1.344,0.272,1.549,0.427,0.074,0.163,0.221,0.519,0.379,0.892,2.732,6.435,3.115,6.766,3.824,6.777,0.027,0,0.049,0.002,0.066,0.005,0.057,0.002,0.109,0.006,0.156,0.006,0.404,0,0.635-0.207,0.736-0.331,0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536,0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58-0.01-0.06zm-21.51-7.87c-0.113,0.005-0.238,0.012-0.367,0.017-0.422,0.018-0.902,0.04-1.377,0.04-1.25,0-1.533-0.155-1.564-0.171-0.146-0.107-0.297-0.188-0.457-0.246,0.285-0.063,0.607-0.279,0.939-0.924,0.33,0.636,0.773,1.198,1.457,1.198,0.184,0,0.363-0.045,0.531-0.131,0.23,0,0.61,0.13,0.84,0.21zm-0.49-3.48c-0.094,0-0.172-0.005-0.23-0.009,0.064-0.167,0.141-0.264,0.201-0.319,0.08,0.122,0.186,0.229,0.305,0.32-0.1,0.01-0.19,0.01-0.28,0.01zm-4.97,1.67c0.428,0.837,0.744,1.198,0.994,1.355-0.619,0.049-1.086,0.443-1.469,0.817-0.271-0.09-0.74-0.374-0.879-0.572-0.084-0.117-0.18-0.217-0.287-0.304,0.69-0.19,1.28-0.82,1.65-1.3zm-2.36-0.61l-0.889-0.043-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745,0.055-0.02,0.27-0.078,0.793-0.078,0.314,0,0.617,0.021,0.809,0.037l1.36,0.98z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="27.81" cy="3.104" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="30.94">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.896,24.654c-0.02-0.103-0.039-0.176-0.057-0.25 c-0.016-0.055-0.027-0.109-0.037-0.162c-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457 c-0.248-0.767-0.514-1.5-0.797-2.177c-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833 l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353c-0.385-0.695-0.789-1.358-1.199-1.974c-0.043-0.065-0.092-0.134-0.141-0.202 c-0.031-0.041-0.059-0.081-0.086-0.121c-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218 c-0.498-0.596-1.023-1.174-1.566-1.72c-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402 l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139c-0.582-0.48-1.215-0.952-1.875-1.405c-0.08-0.055-0.164-0.109-0.248-0.162 l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088 c-0.693-0.371-1.414-0.72-2.146-1.035L40.82,4.985l-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215 c-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138l-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934 c-0.574-0.077-1.961-0.251-3.359-0.386c0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573L35.994,3.47 c-0.051-0.014-0.102-0.025-0.152-0.037L35.723,3.41l-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38L33.16,3.009l-0.109-0.01 c-0.914-0.093-1.844-0.139-2.762-0.139c-0.809,0-1.648,0.042-2.564,0.13c-0.145,0.013-0.281,0.029-0.422,0.043 c-0.906,0.101-1.697,0.221-2.447,0.373L24.83,3.411l-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624 c-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762c-0.057,0.023-0.094,0.037-0.131,0.051 l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06c-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055 c-0.205,0.113-0.412,0.242-0.617,0.37L16.258,6.8l-1.461,0.893l1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123 c0.875,0,1.721-0.43,2.402-0.776c0.273-0.138,0.678-0.344,0.848-0.376c0.199,0.06,0.396,0.089,0.596,0.089 c0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391c0.607-0.229,1.717-0.645,2.01-0.715 c0.578-0.006,1.264-0.088,1.752-0.392c0.459,0.075,1.273,0.204,2.115,0.314C29.961,5.301,29.9,5.341,29.85,5.391 c-0.273,0.251-1.742,0.696-2.195,0.755c-0.848,0.106-1.186,0.532-1.322,0.871c-0.176,0.439-0.068,0.878,0.104,1.235 c-0.32,0.212-0.713,0.448-1.049,0.625c0-0.007,0.002-0.015,0.004-0.024c0.121-0.675,0.209-1.163-0.119-1.556 c-0.166-0.2-0.414-0.314-0.676-0.314c-0.387,0-0.688,0.239-0.93,0.473c-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059 l-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207c-0.074,0.051-0.287,0.132-0.582,0.132c-0.041,0-0.076-0.002-0.105-0.005 c-0.191-0.205-0.453-0.322-0.752-0.322l0,0c-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49l0.377,0.484l0.354,0.449 c-5.51,4.257-5.551,4.5-5.609,4.855c-0.01,0.032-0.057,0.18-0.123,0.383c-0.822,2.552-1.275,4.46-0.834,5.482 c1.025,2.368,2.182,4.579,3.68,4.701c0.133,0.011,0.277,0.017,0.434,0.017c1.373,0,3.6-0.416,4.668-0.635 c0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421l0.484-0.016c0,0,0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022 c0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269c0.088,0.14,0.168,0.266,0.232,0.374 c0.424,1.204,0.934,2.002,2.02,2.002c0.078,0,0.16-0.005,0.244-0.009c0.063-0.004,0.125-0.007,0.191-0.007 c0.121,0,0.207,0.014,0.293,0.045l0.1,0.036l0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071c0.334,0.047,0.68,0.095,1.031,0.095 c0.941,0,1.689-0.357,2.336-1.119c0.021-0.004,0.045-0.005,0.068-0.008c0.678-0.095,0.932-0.433,1.018-0.737 c0.051-0.05,0.117-0.112,0.172-0.164c0.268-0.244,0.584-0.537,0.803-0.88c0.1-0.059,0.213-0.125,0.338-0.2 c0.219-0.134,0.465-0.283,0.658-0.382c0.172-0.052,0.322-0.153,0.436-0.293c0.273-0.335,0.217-0.717,0.172-1.023 c-0.047-0.318-0.092-0.642,0.078-0.99c0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822 c-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121l-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712 c0.264,0.301,0.641,0.468,1.063,0.468c0.131,0,0.271-0.017,0.416-0.05c1.342-0.304,3.723-3.531,3.916-5.312 c0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24l-0.398,0.396l-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425 c0.016-0.627-0.047-1.27-0.113-1.896c-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043l0.051-0.051 c0.418-0.426,0.883-0.799,1.373-1.193c1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158 c-0.115-0.167-0.359-0.426-0.814-0.518c0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059l0.109-0.104l2.48-2.381l0.363-0.35 l-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977c0.725,0.099,1.344,0.272,1.549,0.427c0.074,0.163,0.221,0.519,0.379,0.892 c2.732,6.435,3.115,6.766,3.824,6.777c0.027,0,0.049,0.002,0.066,0.005c0.057,0.002,0.109,0.006,0.156,0.006 c0.404,0,0.635-0.207,0.736-0.331c0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536 c0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58L56.896,24.654z M35.391,16.784c-0.113,0.005-0.238,0.012-0.367,0.017 c-0.422,0.018-0.902,0.04-1.377,0.04c-1.25,0-1.533-0.155-1.564-0.171c-0.146-0.107-0.297-0.188-0.457-0.246 c0.285-0.063,0.607-0.279,0.939-0.924c0.33,0.636,0.773,1.198,1.457,1.198c0.184,0,0.363-0.045,0.531-0.131 C34.783,16.568,35.162,16.7,35.391,16.784z M34.9,13.303c-0.094,0-0.172-0.005-0.23-0.009c0.064-0.167,0.141-0.264,0.201-0.319 c0.08,0.122,0.186,0.229,0.305,0.32C35.078,13.301,34.986,13.303,34.9,13.303z M29.932,14.974c0.428,0.837,0.744,1.198,0.994,1.355 c-0.619,0.049-1.086,0.443-1.469,0.817c-0.271-0.09-0.74-0.374-0.879-0.572c-0.084-0.117-0.18-0.217-0.287-0.304 C28.969,16.077,29.564,15.447,29.932,14.974z M27.57,14.355l-0.889-0.043l-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745 c0.055-0.02,0.27-0.078,0.793-0.078c0.314,0,0.617,0.021,0.809,0.037L27.57,14.355z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="27.8105" cy="3.104" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="30.9363">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M3.957,29.98v0.002c0,0.01,0.002,0.014,0.002,0.021,0,0.813,0.051,1.615,0.119,2.41,0.023,0.259,0.063,0.52,0.092,0.781,0.07,0.544,0.15,1.082,0.248,1.615,0.055,0.283,0.107,0.567,0.166,0.845,0.123,0.553,0.266,1.097,0.422,1.632,0.063,0.222,0.113,0.447,0.184,0.663,0.007,0.05,0.017,0.07,0.023,0.09,0.021-0.212,0.027-0.427,0.021-0.648-0.053-1.568-0.303-1.367-0.303-1.367l1.771-2.381v-1.52l-2.077-2.07s-0.666-0.1-0.668-0.05z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="27.81" cy="3.107" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="30.94">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M3.957,29.985c0,0,0,0,0,0.002c0,0.01,0.002,0.014,0.002,0.021c0,0.813,0.051,1.615,0.119,2.41 c0.023,0.259,0.063,0.52,0.092,0.781c0.07,0.544,0.15,1.082,0.248,1.615c0.055,0.283,0.107,0.567,0.166,0.845 c0.123,0.553,0.266,1.097,0.422,1.632c0.063,0.222,0.113,0.447,0.184,0.663C5.197,37.978,5.207,38,5.213,38.023 c0.021-0.212,0.027-0.427,0.021-0.648c-0.053-1.568-0.303-1.367-0.303-1.367l1.771-2.381v-1.52L4.625,30.03 C4.625,30.03,3.959,29.926,3.957,29.985z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="27.8096" cy="3.1069" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="30.9388">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M20.63,6.433c0.766,0.252,1.395-0.26,2.109-0.717,0.252-0.051,3.055-1.17,3.357-1.17,0.301,0,1.32-0.04,1.572-0.444,0,0,4.387,0.763,5.049,0.508,0.359-0.141,1.869-0.26,3.17-0.346-0.074-0.016-0.141-0.037-0.213-0.052-0.07-0.014-0.141-0.026-0.211-0.04-0.814-0.163-1.637-0.295-2.475-0.378-0.006,0-0.012,0-0.02-0.004-0.881-0.088-1.775-0.135-2.682-0.135-0.84,0-1.67,0.05-2.492,0.127-0.143,0.015-0.287,0.031-0.434,0.046-0.793,0.086-1.578,0.203-2.35,0.357-0.03,0.006-0.04,0.007-0.06,0.008-0.801,0.166-1.584,0.371-2.355,0.606-0.133,0.039-0.26,0.085-0.393,0.125-0.684,0.221-1.357,0.466-2.02,0.737-0.076,0.034-0.156,0.063-0.234,0.095-0.727,0.31-1.438,0.654-2.129,1.024-0.104,0.056-0.203,0.116-0.307,0.175-0.299,0.165-0.576,0.349-0.861,0.525,1.42,0.477,3.2-1.302,3.95-1.047z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="27.81" cy="3.105" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="30.93">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M20.631,6.433c0.766,0.252,1.395-0.26,2.109-0.717c0.252-0.051,3.055-1.17,3.357-1.17 c0.301,0,1.32-0.04,1.572-0.444c0,0,4.387,0.763,5.049,0.508c0.359-0.141,1.869-0.26,3.17-0.346 c-0.074-0.016-0.141-0.037-0.213-0.052c-0.07-0.014-0.141-0.026-0.211-0.04c-0.814-0.163-1.637-0.295-2.475-0.378 c-0.006,0-0.012,0-0.02-0.004c-0.881-0.088-1.775-0.135-2.682-0.135c-0.84,0-1.67,0.05-2.492,0.127 c-0.143,0.015-0.287,0.031-0.434,0.046c-0.793,0.086-1.578,0.203-2.35,0.357C25,4.191,24.986,4.192,24.973,4.193 c-0.801,0.166-1.584,0.371-2.355,0.606c-0.133,0.039-0.26,0.085-0.393,0.125c-0.684,0.221-1.357,0.466-2.02,0.737 c-0.076,0.034-0.156,0.063-0.234,0.095c-0.727,0.31-1.438,0.654-2.129,1.024c-0.104,0.056-0.203,0.116-0.307,0.175 c-0.299,0.165-0.576,0.349-0.861,0.525C18.098,7.957,19.877,6.178,20.631,6.433z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="27.8066" cy="3.105" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="30.9346">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M56.11,24.79c-0.027-0.133-0.064-0.258-0.09-0.388-0.141-0.65-0.307-1.292-0.494-1.924-0.051-0.171-0.102-0.346-0.154-0.515-0.23-0.718-0.484-1.426-0.773-2.113-0.051-0.121-0.109-0.24-0.16-0.358-0.266-0.606-0.553-1.201-0.861-1.782-0.07-0.139-0.143-0.282-0.217-0.417-0.365-0.657-0.75-1.297-1.166-1.919-0.068-0.107-0.15-0.21-0.223-0.316-0.379-0.553-0.777-1.086-1.195-1.605-0.086-0.103-0.166-0.209-0.254-0.313-0.482-0.578-0.986-1.135-1.518-1.669-0.09-0.092-0.188-0.183-0.281-0.272-0.482-0.475-0.984-0.933-1.506-1.369-0.09-0.073-0.17-0.151-0.26-0.223-0.584-0.478-1.195-0.933-1.822-1.362-0.109-0.075-0.223-0.148-0.334-0.219-0.578-0.384-1.174-0.747-1.785-1.085-0.084-0.045-0.16-0.094-0.244-0.141-0.68-0.363-1.371-0.696-2.082-1.003-0.125-0.053-0.256-0.103-0.379-0.155-0.277-0.115-0.563-0.206-0.844-0.309-0.334,0.213-1.881,1.088-1.881,1.088s-6.717-0.917-7.174-0.462c-0.459,0.462-2.248,0.929-2.656,0.981-0.406,0.053-1.25,0.27-0.238,1.518-0.152,0.155-3.039,2.165-3.039,1.25,0-0.916,0.645-2.552-0.26-1.676-0.652,0.631-1.039,1.483-1.127,1.643-0.211,0.409-0.342,0.604-0.188,1.773,0.154,1.171-1.869,1.164-2.004,0.862-0.363-0.813-2.363,1.821-2.363,1.821l0.844,1.082s-5.893,4.539-5.941,4.844c-0.053,0.307-1.523,4.247-1.016,5.418,0.512,1.174,1.797,4.127,3.016,4.226,1.598,0.131,5.469-0.73,5.469-0.73,0.104,0.257,0.834,1.556,0.834,1.556s1.896-0.063,2.004,0.143c0.035,0.069,2.287,6.693,1.543,7.571-1.773,2.656,1.014,6.548,1.789,7.864,0.775,2.262,1.277,1.25,2.297,1.62,1.258,0.108,2.318,0.573,3.385-0.8,0.309-0.255,0.836-0.054,0.836-0.408,0-0.198,0.912-0.781,1.146-1.33,0.248-0.114,0.881-0.542,1.313-0.748,0.391-0.025-0.371-1.071,0.402-2.177,0.836-0.33,3.088-1.849,3.088-1.849,0.104-2.227-1.094-4.979,1.141-6.559,1.445-1.47,3.336-2.306,4.256-4.544,0.252-0.661,0.818-2.014-0.813-1.609-1.531,0.386-3.238,0.474-2.432-0.201-0.092-0.828-1.111-1.218-2.023-2.026-0.473-1.117-1.215-3.108-1.215-3.108l-1.621-2.463,0.203-0.508,1.926,2.836,1.926,2.328c0.707,2.33,1.314,2.535,1.314,2.535,1.068-0.377,3.596-1.419,3.596-1.419l2.484-2.381s-0.256-0.761-1.264-1.722l-0.764-0.455c-0.166,0.467-1.049,0.642-1.049,0.642l-2.145-2.564,0.801-0.162,0.613,1.171,1.473,0.509s0.408-0.298,1.166,0.484c0.619-0.051,3.029,0.117,3.594,0.832,0.109,0.142,2.986,7.325,3.555,7.336,0.248,0.001,0.43,0.099,0.348-0.335-0.102-0.205,0-4.717,0.154-5.683,0.385-0.821,0.445-0.002,1.357,1.553-0.04-0.03-0.04-0.07-0.05-0.1zm-25.31-17.41c0.201-0.6,1.367-0.804,1.367-0.804s-0.334,0.618-0.258,0.937c0.08,0.322-0.533,0.524-0.6,1.282-0.066,0.755-1.459,0.313-1.574,0.047-0.12-0.263,0.85-0.863,1.06-1.462zm4.99,10.19c-0.865,0-3.455,0.257-4.17-0.253-0.711-0.508-1.266,0.052-1.781,0.562-0.334,0.331-1.559-0.339-1.916-0.848-0.355-0.509-1.553-0.472-1.553-0.472l0.271-1.452-3.445-0.167-1.957,0.574-1.844,0.052,1.031-0.491,1.287-0.304s1.867-1.536,2.43-1.993c0.475-0.388,2.365-0.169,2.365-0.169l2.074,1.497s-0.459,1.174-0.662,1.426c0.76-0.05,1.658-1.436,1.658-1.436-1.621-1.488-1.555-1.992-1.555-1.992l2.133,1.498,0.021,0.013s0.865,2.035,1.225,2.035c0.352,0,0.809-1.401,0.809-1.401l0.609-0.153c0.27,0.642,0.773,2.094,1.381,1.754,0.35-0.193,0.928-0.017,1.588,0.236,0.664,0.255,1.115-0.137,1.654,0.337-0.08,2.08-1.31,1.23-1.67,1.13zm1.36-3.5c-0.891-0.339-3.9,0.766-3.229-1.04,0.359-0.975,1.281-1.179,1.598-0.531,0.082,0.267,1.084,0.679,1.076,0.117-0.006-0.562,1.01-0.86,1.154-0.441-0.54,0.38,2.11,2.41-0.6,1.89zm5.67,1.71c-0.492-0.397,0.223-0.738-0.506-1.359-1.041-0.895-1.855-1.278-0.436-2.002,1.754-0.221,0.283,0.559,0.576,1.027,0.156,0.247,1.039,1.08,1.73,2.103,0.58,0.85-0.87,0.63-1.36,0.23z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="27.81" cy="3.106" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="30.93">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.111,24.787c-0.027-0.133-0.064-0.258-0.09-0.388c-0.141-0.65-0.307-1.292-0.494-1.924 c-0.051-0.171-0.102-0.346-0.154-0.515c-0.23-0.718-0.484-1.426-0.773-2.113c-0.051-0.121-0.109-0.24-0.16-0.358 c-0.266-0.606-0.553-1.201-0.861-1.782c-0.07-0.139-0.143-0.282-0.217-0.417c-0.365-0.657-0.75-1.297-1.166-1.919 c-0.068-0.107-0.15-0.21-0.223-0.316c-0.379-0.553-0.777-1.086-1.195-1.605c-0.086-0.103-0.166-0.209-0.254-0.313 c-0.482-0.578-0.986-1.135-1.518-1.669c-0.09-0.092-0.188-0.183-0.281-0.272c-0.482-0.475-0.984-0.933-1.506-1.369 c-0.09-0.073-0.17-0.151-0.26-0.223c-0.584-0.478-1.195-0.933-1.822-1.362c-0.109-0.075-0.223-0.148-0.334-0.219 c-0.578-0.384-1.174-0.747-1.785-1.085c-0.084-0.045-0.16-0.094-0.244-0.141c-0.68-0.363-1.371-0.696-2.082-1.003 c-0.125-0.053-0.256-0.103-0.379-0.155c-0.277-0.115-0.563-0.206-0.844-0.309c-0.334,0.213-1.881,1.088-1.881,1.088 s-6.717-0.917-7.174-0.462c-0.459,0.462-2.248,0.929-2.656,0.981c-0.406,0.053-1.25,0.27-0.238,1.518 c-0.152,0.155-3.039,2.165-3.039,1.25c0-0.916,0.645-2.552-0.26-1.676c-0.652,0.631-1.039,1.483-1.127,1.643 c-0.211,0.409-0.342,0.604-0.188,1.773c0.154,1.171-1.869,1.164-2.004,0.862c-0.363-0.813-2.363,1.821-2.363,1.821l0.844,1.082 c0,0-5.893,4.539-5.941,4.844c-0.053,0.307-1.523,4.247-1.016,5.418c0.512,1.174,1.797,4.127,3.016,4.226 c1.598,0.131,5.469-0.73,5.469-0.73c0.104,0.257,0.834,1.556,0.834,1.556s1.896-0.063,2.004,0.143 c0.035,0.069,2.287,6.693,1.543,7.571c-1.773,2.656,1.014,6.548,1.789,7.864c0.775,2.262,1.277,1.25,2.297,1.62 c1.258,0.108,2.318,0.573,3.385-0.8c0.309-0.255,0.836-0.054,0.836-0.408c0-0.198,0.912-0.781,1.146-1.33 c0.248-0.114,0.881-0.542,1.313-0.748c0.391-0.025-0.371-1.071,0.402-2.177c0.836-0.33,3.088-1.849,3.088-1.849 c0.104-2.227-1.094-4.979,1.141-6.559c1.445-1.47,3.336-2.306,4.256-4.544c0.252-0.661,0.818-2.014-0.813-1.609 c-1.531,0.386-3.238,0.474-2.432-0.201c-0.092-0.828-1.111-1.218-2.023-2.026c-0.473-1.117-1.215-3.108-1.215-3.108l-1.621-2.463 l0.203-0.508l1.926,2.836l1.926,2.328c0.707,2.33,1.314,2.535,1.314,2.535c1.068-0.377,3.596-1.419,3.596-1.419l2.484-2.381 c0,0-0.256-0.761-1.264-1.722l-0.764-0.455c-0.166,0.467-1.049,0.642-1.049,0.642l-2.145-2.564l0.801-0.162l0.613,1.171l1.473,0.509 c0,0,0.408-0.298,1.166,0.484c0.619-0.051,3.029,0.117,3.594,0.832c0.109,0.142,2.986,7.325,3.555,7.336 c0.248,0.001,0.43,0.099,0.348-0.335c-0.102-0.205,0-4.717,0.154-5.683c0.385-0.821,0.445-0.002,1.357,1.553 C56.121,24.862,56.119,24.824,56.111,24.787z M30.797,7.378c0.201-0.6,1.367-0.804,1.367-0.804s-0.334,0.618-0.258,0.937 c0.08,0.322-0.533,0.524-0.6,1.282c-0.066,0.755-1.459,0.313-1.574,0.047C29.617,8.577,30.592,7.977,30.797,7.378z M35.793,17.571 c-0.865,0-3.455,0.257-4.17-0.253c-0.711-0.508-1.266,0.052-1.781,0.562c-0.334,0.331-1.559-0.339-1.916-0.848 c-0.355-0.509-1.553-0.472-1.553-0.472l0.271-1.452l-3.445-0.167l-1.957,0.574l-1.844,0.052l1.031-0.491l1.287-0.304 c0,0,1.867-1.536,2.43-1.993c0.475-0.388,2.365-0.169,2.365-0.169l2.074,1.497c0,0-0.459,1.174-0.662,1.426 c0.76-0.05,1.658-1.436,1.658-1.436c-1.621-1.488-1.555-1.992-1.555-1.992l2.133,1.498l0.021,0.013c0,0,0.865,2.035,1.225,2.035 c0.352,0,0.809-1.401,0.809-1.401l0.609-0.153c0.27,0.642,0.773,2.094,1.381,1.754c0.35-0.193,0.928-0.017,1.588,0.236 c0.664,0.255,1.115-0.137,1.654,0.337C37.381,18.519,36.15,17.674,35.793,17.571z M37.148,14.068c-0.891-0.339-3.9,0.766-3.229-1.04 c0.359-0.975,1.281-1.179,1.598-0.531c0.082,0.267,1.084,0.679,1.076,0.117c-0.006-0.562,1.01-0.86,1.154-0.441 C37.207,12.563,39.863,14.589,37.148,14.068z M42.816,15.78c-0.492-0.397,0.223-0.738-0.506-1.359 c-1.041-0.895-1.855-1.278-0.436-2.002c1.754-0.221,0.283,0.559,0.576,1.027c0.156,0.247,1.039,1.08,1.73,2.103 C44.756,16.397,43.307,16.175,42.816,15.78z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="27.8125" cy="3.1055" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="30.9328">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M43.52,38.98l-1.689,1.688-1.064,0.406c-0.023,0.174-0.082,0.927-0.252,1.315-0.338,0.235-0.742,1.012-0.742,1.012s-0.211,1.504,0.912,1.249c1.12-0.26,4.57-4.86,2.83-5.68z" fill="url(#SVGID_9_)"/>
+<path d="M43.523,38.979l-1.689,1.688c0,0-1.016,0-1.064,0.406c-0.023,0.174-0.082,0.927-0.252,1.315 c-0.338,0.235-0.742,1.012-0.742,1.012s-0.211,1.504,0.912,1.249C41.809,44.395,45.256,39.795,43.523,38.979z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calculator.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calculator.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,274 +1,276 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="20.26" y2="56.95">
-<stop offset="0" stop-color="#B7BABA"/>
-<stop offset="0.8182" stop-color="#7F8084"/>
-<stop offset="1" stop-color="#97999A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="20.2573" y2="56.9514">
+<stop offset="0" style="stop-color:#B7BABA"/>
+<stop offset="0.8182" style="stop-color:#7F8084"/>
+<stop offset="1" style="stop-color:#97999A"/>
</linearGradient>
-<path d="M8.918,20.75v34.77c0,0.82,0.662,1.48,1.482,1.48h39.21c0.816,0,1.479-0.664,1.479-1.479v-34.77h-42.17z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="20.26" y2="56.95">
-<stop offset="0" stop-color="#6B6B6B"/>
-<stop offset="0.7212" stop-color="#363636"/>
-<stop offset="0.9636" stop-color="#5E5E5E"/>
-<stop offset="1" stop-color="#5E5E5E"/>
+<path d="M8.918,20.754v34.767C8.918,56.336,9.58,57,10.396,57h39.207c0.816,0,1.479-0.664,1.479-1.479V20.754 H8.918z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="20.2573" y2="56.9514">
+<stop offset="0" style="stop-color:#6B6B6B"/>
+<stop offset="0.7212" style="stop-color:#363636"/>
+<stop offset="0.9636" style="stop-color:#5E5E5E"/>
+<stop offset="1" style="stop-color:#5E5E5E"/>
</linearGradient>
-<path d="M50.34,20.75v34.77c0,0.408-0.332,0.74-0.74,0.74h-39.2c-0.404,0-0.738-0.332-0.738-0.74v-34.77h-0.74v34.77c0,0.82,0.662,1.48,1.482,1.48h39.21c0.816,0,1.479-0.664,1.479-1.479v-34.77h-0.746z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="20.27" y2="56.21">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#D0D4D2"/>
-<stop offset="0.6606" stop-color="#D3DBD7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M50.344,20.754v0.739V54.78v0.74c0,0.408-0.332,0.74-0.74,0.74H10.396 c-0.404,0-0.738-0.332-0.738-0.74v-0.74V21.493v-0.739h-0.74v34.767C8.918,56.336,9.58,57,10.396,57h39.207 c0.816,0,1.479-0.664,1.479-1.479V20.754H50.344z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="20.2671" y2="56.2123">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#D0D4D2"/>
+<stop offset="0.6606" style="stop-color:#D3DBD7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M49.6,21.12v34.4h-39.15l0.021-34.77h-0.812v34.77c0,0.409,0.381,0.74,0.789,0.74h39.16c0.408,0,0.738-0.331,0.738-0.74v-34.4h-0.746z" fill="url(#SVGID_3_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="2.974" y2="20.73">
-<stop offset="0" stop-color="#B7BABA"/>
-<stop offset="0.8182" stop-color="#7F8084"/>
-<stop offset="1" stop-color="#97999A"/>
+<path d="M49.604,21.119v34.402H10.447l0.021-34.767H9.658v34.767 c0,0.409,0.381,0.74,0.789,0.74h39.156c0.408,0,0.738-0.331,0.738-0.74V21.119H49.604z" fill="url(#SVGID_3_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="2.9741" y2="20.728">
+<stop offset="0" style="stop-color:#B7BABA"/>
+<stop offset="0.8182" style="stop-color:#7F8084"/>
+<stop offset="1" style="stop-color:#97999A"/>
</linearGradient>
-<path d="M51.08,20.75v-16.3c0.03-0.802-0.64-1.451-1.45-1.451h-39.23c-0.816,0-1.482,0.649-1.482,1.451v16.3h42.16z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="3.714" y2="20.73">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#D0D4D2"/>
-<stop offset="0.6606" stop-color="#D3DBD7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M51.082,20.754V4.451C51.107,3.649,50.443,3,49.627,3H10.4C9.584,3,8.918,3.649,8.918,4.451v16.303 H51.082z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.001" x2="30.001" y1="3.7144" y2="20.729">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#D0D4D2"/>
+<stop offset="0.6606" style="stop-color:#D3DBD7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M50.16,3.96c-0.139-0.142-0.328-0.221-0.533-0.221h-39.23c-0.408,0-0.742,0.319-0.742,0.711v16.3h40.68l0.002-15.59v-0.74c0.01-0.166-0.06-0.332-0.18-0.46zm-0.56,1.207v14.85h-39.2v-15.56l39.23,0.029-0.03,0.687z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="2.974" y2="20.73">
-<stop offset="0" stop-color="#6B6B6B"/>
-<stop offset="0.7212" stop-color="#363636"/>
-<stop offset="0.9636" stop-color="#5E5E5E"/>
-<stop offset="1" stop-color="#5E5E5E"/>
+<path d="M50.16,3.96c-0.139-0.142-0.328-0.221-0.533-0.221H10.4 c-0.408,0-0.742,0.319-0.742,0.711v0.74v14.824v0.74h40.684l0.002-15.586v-0.74C50.348,4.254,50.281,4.088,50.16,3.96z M49.604,5.167v14.847H10.396V4.451l39.23,0.029L49.604,5.167z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="2.9741" y2="20.728">
+<stop offset="0" style="stop-color:#6B6B6B"/>
+<stop offset="0.7212" style="stop-color:#363636"/>
+<stop offset="0.9636" style="stop-color:#5E5E5E"/>
+<stop offset="1" style="stop-color:#5E5E5E"/>
</linearGradient>
-<path d="M49.63,3h-39.23c-0.816,0-1.482,0.649-1.482,1.451v16.3h0.74v-16.3c0-0.392,0.334-0.711,0.742-0.711h39.23c0.205,0,0.395,0.079,0.533,0.221,0.121,0.127,0.188,0.294,0.184,0.467v0.74l-0.002,15.59h0.74v-16.31c0.03-0.802-0.64-1.451-1.45-1.451z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="6.722" y2="17.12">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#CED2D0"/>
+<path d="M49.627,3H10.4C9.584,3,8.918,3.649,8.918,4.451v16.303h0.74v-0.74V5.19v-0.74 c0-0.392,0.334-0.711,0.742-0.711h39.227c0.205,0,0.395,0.079,0.533,0.221c0.121,0.127,0.188,0.294,0.184,0.467v0.74l0,0 l-0.002,15.586h0.74V4.451C51.107,3.649,50.443,3,49.627,3z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.001" x2="30.001" y1="6.7217" y2="17.1228">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#CED2D0"/>
</linearGradient>
-<path d="M14.1,17.06c-0.816,0-1.48-0.678-1.48-1.509v-7.342c0-0.833,0.664-1.509,1.48-1.509h31.8c0.816,0,1.482,0.676,1.482,1.509v7.337c0,0.831-0.666,1.509-1.482,1.509h-31.8z" fill="url(#SVGID_7_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="7.49" y2="16.47">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M14.098,17.055c-0.816,0-1.48-0.678-1.48-1.509V8.208c0-0.833,0.664-1.509,1.48-1.509 h31.805c0.816,0,1.482,0.676,1.482,1.509v7.337c0,0.831-0.666,1.509-1.482,1.509H14.098z" fill="url(#SVGID_7_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.998" x2="29.998" y1="7.4897" y2="16.4665">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M46.64,15.54c0,0.417-0.334,0.754-0.742,0.754h-31.8c-0.408,0-0.738-0.337-0.738-0.754v-7.332c0-0.417,0.33-0.755,0.738-0.755h31.8c0.408,0,0.742,0.338,0.742,0.755v7.337z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="-5.153" y2="20.69">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M46.637,15.545c0,0.417-0.334,0.754-0.742,0.754H14.098c-0.408,0-0.738-0.337-0.738-0.754V8.208 c0-0.417,0.33-0.755,0.738-0.755h31.797c0.408,0,0.742,0.338,0.742,0.755V15.545z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.9961" x2="29.9961" y1="-5.1528" y2="20.6866">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="7.337" width="31.8" x="14.1" y="8.208"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="-0.4434" y2="18.26">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_9_)" height="7.337" width="31.797" x="14.098" y="8.208"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.9961" x2="29.9961" y1="-0.4434" y2="18.2631">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_10_)" points="14.1,11.63,45.9,10.36,45.9,8.208,14.1,8.208"/>
-<path d="M25.53,14.36h-3.19v-0.551h1.158v-3.681l-1.158,0.215v-0.548l1.596-0.525h0.436v4.542h1.16v0.55z" fill="#FFFFFF"/>
-<path d="M29.42,14.36h-3.188v-0.398c0-0.341,0.076-0.671,0.232-0.991,0.152-0.315,0.553-0.717,1.201-1.203,0.375-0.28,0.615-0.5,0.719-0.659,0.105-0.159,0.158-0.317,0.158-0.475,0-0.253-0.092-0.452-0.271-0.598-0.182-0.145-0.418-0.218-0.703-0.218-0.244,0-0.662,0.057-1.254,0.167v-0.596c0.506-0.106,0.949-0.159,1.328-0.159,0.559,0,0.996,0.124,1.309,0.368,0.313,0.247,0.469,0.583,0.469,1.006,0,0.187-0.037,0.378-0.115,0.575-0.076,0.196-0.193,0.377-0.355,0.542-0.164,0.162-0.396,0.359-0.701,0.591-0.342,0.259-0.582,0.459-0.713,0.603-0.131,0.142-0.232,0.292-0.299,0.448-0.07,0.156-0.105,0.307-0.109,0.451h2.293v0.55z" fill="#FFFFFF"/>
-<path d="M35.37,11.67c0.283,0.086,0.498,0.229,0.641,0.432,0.143,0.201,0.215,0.461,0.215,0.776,0,0.519-0.15,0.901-0.449,1.146-0.303,0.246-0.77,0.368-1.404,0.368-0.402,0-0.801-0.052-1.199-0.156v-0.599c0.461,0.111,0.85,0.167,1.172,0.167,0.359,0,0.611-0.076,0.758-0.226,0.148-0.148,0.223-0.388,0.223-0.72,0-0.312-0.094-0.543-0.283-0.698-0.188-0.155-0.467-0.234-0.84-0.234h-0.572v-0.55h0.576c0.691,0,1.037-0.268,1.037-0.804,0-0.25-0.074-0.438-0.221-0.563-0.148-0.125-0.367-0.188-0.662-0.188-0.189,0-0.539,0.051-1.043,0.156v-0.614c0.441-0.094,0.838-0.14,1.186-0.14,0.545,0,0.955,0.105,1.229,0.316,0.271,0.21,0.408,0.525,0.408,0.944,0,0.283-0.064,0.522-0.193,0.717-0.15,0.19-0.35,0.35-0.6,0.46z" fill="#FFFFFF"/>
-<path d="M40.63,13.35h-0.553v1.013h-0.873v-1.013h-2.188v-0.55l2.416-3.53h0.645v3.53h0.553v0.547zm-1.43-2.76l-1.443,2.208h1.443v-2.211z" fill="#FFFFFF"/>
-<path d="M42.4,11.12h0.172c0.549,0,0.969,0.137,1.266,0.405,0.293,0.271,0.441,0.654,0.441,1.152,0,0.57-0.152,1-0.451,1.284-0.301,0.284-0.75,0.426-1.35,0.426-0.438,0-0.828-0.049-1.17-0.147v-0.595c0.395,0.103,0.77,0.155,1.123,0.155,0.299,0,0.535-0.083,0.699-0.246,0.166-0.163,0.25-0.446,0.25-0.848,0-0.332-0.094-0.583-0.279-0.749-0.188-0.169-0.467-0.251-0.84-0.251-0.246,0-0.494,0.011-0.738,0.038v-2.47h2.625v0.547h-1.74v1.305z" fill="#FFFFFF"/>
-<circle cx="30.79" cy="13.83" fill="#FFFFFF" r="0.595"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="43.31" x2="43.31" y1="45.87" y2="52.59">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<polygon fill="url(#SVGID_10_)" points="14.098,11.63 45.895,10.364 45.895,8.208 14.098,8.208 "/>
+<path d="M25.531,14.36H22.34v-0.551h1.158v-3.681l-1.158,0.215V9.792l1.596-0.525h0.436v4.542h1.16V14.36z" fill="#FFFFFF"/>
+<path d="M29.424,14.36h-3.188v-0.398c0-0.341,0.076-0.671,0.232-0.991c0.152-0.315,0.553-0.717,1.201-1.203 c0.375-0.28,0.615-0.5,0.719-0.659c0.105-0.159,0.158-0.317,0.158-0.475c0-0.253-0.092-0.452-0.271-0.598 c-0.182-0.145-0.418-0.218-0.703-0.218c-0.244,0-0.662,0.057-1.254,0.167V9.393c0.506-0.106,0.949-0.159,1.328-0.159 c0.559,0,0.996,0.124,1.309,0.368c0.313,0.247,0.469,0.583,0.469,1.006c0,0.187-0.037,0.378-0.115,0.575 c-0.076,0.196-0.193,0.377-0.355,0.542c-0.164,0.162-0.396,0.359-0.701,0.591c-0.342,0.259-0.582,0.459-0.713,0.603 c-0.131,0.142-0.232,0.292-0.299,0.448c-0.07,0.156-0.105,0.307-0.109,0.451h2.293V14.36z" fill="#FFFFFF"/>
+<path d="M35.371,11.667c0.283,0.086,0.498,0.229,0.641,0.432c0.143,0.201,0.215,0.461,0.215,0.776 c0,0.519-0.15,0.901-0.449,1.146c-0.303,0.246-0.77,0.368-1.404,0.368c-0.402,0-0.801-0.052-1.199-0.156v-0.599 c0.461,0.111,0.85,0.167,1.172,0.167c0.359,0,0.611-0.076,0.758-0.226c0.148-0.148,0.223-0.388,0.223-0.72 c0-0.312-0.094-0.543-0.283-0.698c-0.188-0.155-0.467-0.234-0.84-0.234h-0.572v-0.55h0.576c0.691,0,1.037-0.268,1.037-0.804 c0-0.25-0.074-0.438-0.221-0.563c-0.148-0.125-0.367-0.188-0.662-0.188c-0.189,0-0.539,0.051-1.043,0.156V9.374 c0.441-0.094,0.838-0.14,1.186-0.14c0.545,0,0.955,0.105,1.229,0.316c0.271,0.21,0.408,0.525,0.408,0.944 c0,0.283-0.064,0.522-0.193,0.717C35.818,11.405,35.625,11.557,35.371,11.667z" fill="#FFFFFF"/>
+<path d="M40.631,13.347h-0.553v1.013h-0.873v-1.013h-2.188v-0.55l2.416-3.53h0.645v3.53h0.553V13.347z M39.205,10.589l-1.443,2.208h1.443V10.589z" fill="#FFFFFF"/>
+<path d="M42.4,11.122h0.172c0.549,0,0.969,0.137,1.266,0.405c0.293,0.271,0.441,0.654,0.441,1.152 c0,0.57-0.152,1-0.451,1.284c-0.301,0.284-0.75,0.426-1.35,0.426c-0.438,0-0.828-0.049-1.17-0.147v-0.595 c0.395,0.103,0.77,0.155,1.123,0.155c0.299,0,0.535-0.083,0.699-0.246c0.166-0.163,0.25-0.446,0.25-0.848 c0-0.332-0.094-0.583-0.279-0.749c-0.188-0.169-0.467-0.251-0.84-0.251c-0.246,0-0.494,0.011-0.738,0.038V9.27h2.625v0.547H42.4 V11.122z" fill="#FFFFFF"/>
+<circle cx="30.79" cy="13.831" fill="#FFFFFF" r="0.595"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="43.3145" x2="43.3145" y1="45.8735" y2="52.5934">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M41.47,52.56c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.703z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M45.16,52.56h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74c0,0.82-0.66,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.32" x2="43.32" y1="46.58" y2="51.95">
-<stop offset="0" stop-color="#BA8873"/>
-<stop offset="0.103" stop-color="#9C685F"/>
-<stop offset="0.7515" stop-color="#673A45"/>
-<stop offset="1" stop-color="#713F4A"/>
+<path d="M41.467,52.562c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479 h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H41.467z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M45.164,52.562h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48 h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74C46.643,51.897,45.98,52.562,45.164,52.562z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.3154" x2="43.3154" y1="46.5791" y2="51.9528">
+<stop offset="0" style="stop-color:#BA8873"/>
+<stop offset="0.103" style="stop-color:#9C685F"/>
+<stop offset="0.7515" style="stop-color:#673A45"/>
+<stop offset="1" style="stop-color:#713F4A"/>
</linearGradient>
-<path d="M45.9,51.08c0,0.41-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.33-0.74-0.74v-3.698c0-0.409,0.332-0.74,0.74-0.74h3.697c0.408,0,0.74,0.331,0.74,0.74v3.702z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="34.44" x2="34.44" y1="45.87" y2="52.59">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M45.904,51.082c0,0.41-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.33-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.697c0.408,0,0.74,0.331,0.74,0.74V51.082z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="34.4385" x2="34.4385" y1="45.8735" y2="52.5934">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M32.59,52.56c-0.818,0-1.482-0.664-1.482-1.48v-3.698c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.698z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M36.29,52.56h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.816,0.664,1.48,1.482,1.48h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74c0,0.82-0.67,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="34.44" x2="34.44" y1="46.58" y2="51.95">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M32.592,52.562c-0.818,0-1.482-0.664-1.482-1.48v-3.698 c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H32.592z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M36.289,52.562h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.816,0.664,1.48,1.482,1.48 h3.697c0.816,0,1.479-0.664,1.479-1.48v-0.74C37.768,51.897,37.105,52.562,36.289,52.562z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="34.4385" x2="34.4385" y1="46.5791" y2="51.9528">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M37.03,51.08c0,0.41-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.33-0.742-0.74v-3.698c0-0.409,0.33-0.74,0.742-0.74h3.697c0.408,0,0.738,0.331,0.738,0.74v3.702z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.56" x2="25.56" y1="45.87" y2="52.59">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M37.027,51.082c0,0.41-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.33-0.742-0.74v-3.698 c0-0.409,0.33-0.74,0.742-0.74h3.697c0.408,0,0.738,0.331,0.738,0.74V51.082z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.5625" x2="25.5625" y1="45.8735" y2="52.5934">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.71,52.56c-0.816,0-1.479-0.664-1.479-1.48v-3.698c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.697z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M27.41,52.56h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.816,0.662,1.48,1.479,1.48h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74c0,0.82-0.66,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="25.56" x2="25.56" y1="46.58" y2="51.95">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M23.713,52.562c-0.816,0-1.479-0.664-1.479-1.48v-3.698 c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H23.713z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M27.412,52.562h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.816,0.662,1.48,1.479,1.48 h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74C28.891,51.897,28.229,52.562,27.412,52.562z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="25.5615" x2="25.5615" y1="46.5791" y2="51.9528">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M28.15,51.08c0,0.41-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.33-0.74-0.74v-3.698c0-0.409,0.332-0.74,0.74-0.74h3.699c0.408,0,0.738,0.331,0.738,0.74v3.702z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="16.68" x2="16.68" y1="45.87" y2="52.59">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M28.15,51.082c0,0.41-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.33-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.699c0.408,0,0.738,0.331,0.738,0.74V51.082z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="16.6846" x2="16.6846" y1="45.8735" y2="52.5934">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.84,52.56c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.704z" fill="url(#SVGID_17_)"/>
-<path d="M18.54,52.56h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74c-0.01,0.82-0.67,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="16.69" x2="16.69" y1="46.58" y2="51.95">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M14.836,52.562c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.815,0.664-1.479,1.48-1.479h3.699 c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H14.836z" fill="url(#SVGID_17_)"/>
+<path d="M18.535,52.562h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.816,0.664,1.48,1.48,1.48 h3.699c0.816,0,1.479-0.664,1.479-1.48v-0.74C20.014,51.897,19.352,52.562,18.535,52.562z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="16.6865" x2="16.6865" y1="46.5791" y2="51.9528">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M19.28,51.08c0,0.41-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.33-0.738-0.74v-3.698c0-0.409,0.33-0.74,0.738-0.74h3.699c0.408,0,0.74,0.331,0.74,0.74v3.702z" fill="url(#SVGID_18_)"/>
-<path d="M45.16,42.21h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74c0,0.81-0.66,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="43.31" x2="43.31" y1="35.55" y2="42.17">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.275,51.082c0,0.41-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.33-0.738-0.74v-3.698 c0-0.409,0.33-0.74,0.738-0.74h3.699c0.408,0,0.74,0.331,0.74,0.74V51.082z" fill="url(#SVGID_18_)"/>
+<path d="M45.164,42.206h-3.697c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C46.643,41.542,45.98,42.206,45.164,42.206z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="43.3145" x2="43.3145" y1="35.5479" y2="42.1745">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M41.47,42.21c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.703z" fill="url(#SVGID_19_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="43.32" x2="43.32" y1="36.22" y2="41.6">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M41.467,42.206c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479 h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H41.467z" fill="url(#SVGID_19_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="43.3154" x2="43.3154" y1="36.2231" y2="41.5973">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M45.9,40.73c0,0.409-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.331-0.74-0.74v-3.698c0-0.409,0.332-0.74,0.74-0.74h3.697c0.408,0,0.74,0.331,0.74,0.74v3.696z" fill="url(#SVGID_20_)"/>
-<rect fill="#222021" fill-opacity="0.5" height="0.739" stroke-opacity="0.5" width="40.69" x="9.658" y="20.75"/>
-<path d="M36.29,42.21h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.814,0.664,1.479,1.482,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74c0,0.81-0.67,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="34.44" x2="34.44" y1="35.55" y2="42.17">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M45.904,40.726c0,0.409-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.331-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.697c0.408,0,0.74,0.331,0.74,0.74V40.726z" fill="url(#SVGID_20_)"/>
+<rect fill="#222021" fill-opacity="0.5" height="0.739" stroke-opacity="0.5" width="40.686" x="9.658" y="20.754"/>
+<path d="M36.289,42.206h-3.697c-0.818,0-1.482-0.664-1.482-1.48v0.74c0,0.814,0.664,1.479,1.482,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C37.768,41.542,37.105,42.206,36.289,42.206z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="34.4385" x2="34.4385" y1="35.5479" y2="42.1745">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M32.59,42.21c-0.818,0-1.482-0.664-1.482-1.48v-3.698c0-0.816,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.698z" fill="url(#SVGID_21_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="34.44" x2="34.44" y1="36.22" y2="41.6">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M32.592,42.206c-0.818,0-1.482-0.664-1.482-1.48v-3.698 c0-0.816,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H32.592z" fill="url(#SVGID_21_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="34.4385" x2="34.4385" y1="36.2231" y2="41.5973">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M37.03,40.73c0,0.409-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.331-0.742-0.74v-3.698c0-0.409,0.33-0.74,0.742-0.74h3.697c0.408,0,0.738,0.331,0.738,0.74v3.696z" fill="url(#SVGID_22_)"/>
-<path d="M27.41,42.21h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.814,0.662,1.479,1.479,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74c0,0.81-0.66,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="25.56" x2="25.56" y1="35.55" y2="42.17">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M37.027,40.726c0,0.409-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.331-0.742-0.74v-3.698 c0-0.409,0.33-0.74,0.742-0.74h3.697c0.408,0,0.738,0.331,0.738,0.74V40.726z" fill="url(#SVGID_22_)"/>
+<path d="M27.412,42.206h-3.699c-0.816,0-1.479-0.664-1.479-1.48v0.74c0,0.814,0.662,1.479,1.479,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C28.891,41.542,28.229,42.206,27.412,42.206z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="25.5625" x2="25.5625" y1="35.5479" y2="42.1745">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.71,42.21c-0.816,0-1.479-0.664-1.479-1.48v-3.698c0-0.816,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.697z" fill="url(#SVGID_23_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="25.56" x2="25.56" y1="36.22" y2="41.6">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M23.713,42.206c-0.816,0-1.479-0.664-1.479-1.48v-3.698 c0-0.816,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H23.713z" fill="url(#SVGID_23_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="25.5615" x2="25.5615" y1="36.2231" y2="41.5973">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M28.15,40.73c0,0.409-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.331-0.74-0.74v-3.698c0-0.409,0.332-0.74,0.74-0.74h3.699c0.408,0,0.738,0.331,0.738,0.74v3.696z" fill="url(#SVGID_24_)"/>
-<path d="M18.54,42.21h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74c-0.01,0.81-0.67,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="16.68" x2="16.68" y1="35.55" y2="42.17">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M28.15,40.726c0,0.409-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.331-0.74-0.74v-3.698 c0-0.409,0.332-0.74,0.74-0.74h3.699c0.408,0,0.738,0.331,0.738,0.74V40.726z" fill="url(#SVGID_24_)"/>
+<path d="M18.535,42.206h-3.699c-0.816,0-1.48-0.664-1.48-1.48v0.74c0,0.814,0.664,1.479,1.48,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C20.014,41.542,19.352,42.206,18.535,42.206z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="16.6846" x2="16.6846" y1="35.5479" y2="42.1745">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.84,42.21c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48h-3.704z" fill="url(#SVGID_25_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="16.69" x2="16.69" y1="36.22" y2="41.6">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M14.836,42.206c-0.816,0-1.48-0.664-1.48-1.48v-3.698c0-0.816,0.664-1.479,1.48-1.479 h3.699c0.816,0,1.479,0.664,1.479,1.479v3.698c0,0.816-0.662,1.48-1.479,1.48H14.836z" fill="url(#SVGID_25_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="16.6865" x2="16.6865" y1="36.2231" y2="41.5973">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M19.28,40.73c0,0.409-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.331-0.738-0.74v-3.698c0-0.409,0.33-0.74,0.738-0.74h3.699c0.408,0,0.74,0.331,0.74,0.74v3.696z" fill="url(#SVGID_26_)"/>
-<path d="M45.16,31.85h-3.697c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74c0,0.81-0.66,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="43.31" x2="43.31" y1="25.21" y2="31.91">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.275,40.726c0,0.409-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.331-0.738-0.74v-3.698 c0-0.409,0.33-0.74,0.738-0.74h3.699c0.408,0,0.74,0.331,0.74,0.74V40.726z" fill="url(#SVGID_26_)"/>
+<path d="M45.164,31.849h-3.697c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479 h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C46.643,31.185,45.98,31.849,45.164,31.849z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="43.3145" x2="43.3145" y1="25.208" y2="31.91">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M41.47,31.85c-0.816,0-1.48-0.664-1.48-1.479v-3.699c0-0.815,0.664-1.479,1.48-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479h-3.703z" fill="url(#SVGID_27_)" fill-opacity="0.9" stroke-opacity="0.9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="43.32" x2="43.32" y1="25.87" y2="31.24">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M41.467,31.849c-0.816,0-1.48-0.664-1.48-1.479v-3.699 c0-0.815,0.664-1.479,1.48-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H41.467z" fill="url(#SVGID_27_)" fill-opacity="0.9" stroke-opacity="0.9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="43.3154" x2="43.3154" y1="25.8672" y2="31.2414">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M45.9,30.37c0,0.409-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.331-0.74-0.74v-3.699c0-0.408,0.332-0.739,0.74-0.739h3.697c0.408,0,0.74,0.331,0.74,0.739v3.7z" fill="url(#SVGID_28_)"/>
-<path d="M36.29,31.85h-3.697c-0.818,0-1.482-0.664-1.482-1.479v0.74c0,0.815,0.664,1.479,1.482,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74c0,0.81-0.67,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="34.44" x2="34.44" y1="25.21" y2="31.91">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M45.904,30.37c0,0.409-0.332,0.74-0.74,0.74h-3.697c-0.408,0-0.74-0.331-0.74-0.74v-3.699 c0-0.408,0.332-0.739,0.74-0.739h3.697c0.408,0,0.74,0.331,0.74,0.739V30.37z" fill="url(#SVGID_28_)"/>
+<path d="M36.289,31.849h-3.697c-0.818,0-1.482-0.664-1.482-1.479v0.74 c0,0.815,0.664,1.479,1.482,1.479h3.697c0.816,0,1.479-0.665,1.479-1.479v-0.74C37.768,31.185,37.105,31.849,36.289,31.849z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="34.4385" x2="34.4385" y1="25.208" y2="31.91">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M32.59,31.85c-0.818,0-1.482-0.664-1.482-1.479v-3.699c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479h-3.698z" fill="url(#SVGID_29_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.44" x2="34.44" y1="25.87" y2="31.24">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M32.592,31.849c-0.818,0-1.482-0.664-1.482-1.479v-3.699 c0-0.815,0.664-1.479,1.482-1.479h3.697c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H32.592z" fill="url(#SVGID_29_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.4385" x2="34.4385" y1="25.8672" y2="31.2414">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M37.03,30.37c0,0.409-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.331-0.742-0.74v-3.699c0-0.408,0.33-0.739,0.742-0.739h3.697c0.408,0,0.738,0.331,0.738,0.739v3.7z" fill="url(#SVGID_30_)"/>
-<path d="M27.41,31.85h-3.699c-0.816,0-1.479-0.664-1.479-1.479v0.74c0,0.815,0.662,1.479,1.479,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74c0,0.81-0.66,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="25.56" x2="25.56" y1="25.13" y2="31.99">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M37.027,30.37c0,0.409-0.33,0.74-0.738,0.74h-3.697c-0.412,0-0.742-0.331-0.742-0.74v-3.699 c0-0.408,0.33-0.739,0.742-0.739h3.697c0.408,0,0.738,0.331,0.738,0.739V30.37z" fill="url(#SVGID_30_)"/>
+<path d="M27.412,31.849h-3.699c-0.816,0-1.479-0.664-1.479-1.479v0.74 c0,0.815,0.662,1.479,1.479,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C28.891,31.185,28.229,31.849,27.412,31.849z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="25.5625" x2="25.5625" y1="25.127" y2="31.9908">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.71,31.85c-0.816,0-1.479-0.664-1.479-1.479v-3.699c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479h-3.697z" fill="url(#SVGID_31_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="25.56" x2="25.56" y1="25.87" y2="31.24">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M23.713,31.849c-0.816,0-1.479-0.664-1.479-1.479v-3.699 c0-0.815,0.662-1.479,1.479-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H23.713z" fill="url(#SVGID_31_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="25.5615" x2="25.5615" y1="25.8672" y2="31.2414">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
+</linearGradient>
+<path d="M28.15,30.37c0,0.409-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.331-0.74-0.74v-3.699 c0-0.408,0.332-0.739,0.74-0.739h3.699c0.408,0,0.738,0.331,0.738,0.739V30.37z" fill="url(#SVGID_32_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="16.6846" x2="16.6846" y1="25.127" y2="31.9099">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M28.15,30.37c0,0.409-0.33,0.74-0.738,0.74h-3.699c-0.408,0-0.74-0.331-0.74-0.74v-3.699c0-0.408,0.332-0.739,0.74-0.739h3.699c0.408,0,0.738,0.331,0.738,0.739v3.7z" fill="url(#SVGID_32_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="16.68" x2="16.68" y1="25.13" y2="31.91">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M14.836,31.849c-0.816,0-1.48-0.664-1.48-1.479v-3.699 c0-0.815,0.664-1.479,1.48-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479H14.836z" fill="url(#SVGID_33_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M18.535,31.849h-3.699c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479 h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74C20.014,31.185,19.352,31.849,18.535,31.849z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="16.6865" x2="16.6865" y1="25.8672" y2="31.2414">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#BBC2C0"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M14.84,31.85c-0.816,0-1.48-0.664-1.48-1.479v-3.699c0-0.815,0.664-1.479,1.48-1.479h3.699c0.816,0,1.479,0.664,1.479,1.479v3.699c0,0.815-0.662,1.479-1.479,1.479h-3.704z" fill="url(#SVGID_33_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M18.54,31.85h-3.699c-0.816,0-1.48-0.664-1.48-1.479v0.74c0,0.815,0.664,1.479,1.48,1.479h3.699c0.816,0,1.479-0.665,1.479-1.479v-0.74c-0.01,0.81-0.67,1.48-1.48,1.48z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="16.69" x2="16.69" y1="25.87" y2="31.24">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#BBC2C0"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
-</linearGradient>
-<path d="M19.28,30.37c0,0.409-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.331-0.738-0.74v-3.699c0-0.408,0.33-0.739,0.738-0.739h3.699c0.408,0,0.74,0.331,0.74,0.739v3.7z" fill="url(#SVGID_34_)"/>
-<rect fill="#FFFFFF" fill-opacity="0.6" height="0.74" stroke-opacity="0.6" width="40.69" x="9.658" y="22.23"/>
-<rect fill="#222021" fill-opacity="0.3" height="0.74" stroke-opacity="0.3" width="40.69" x="9.658" y="21.49"/>
-</svg>
\ No newline at end of file
+<path d="M19.275,30.37c0,0.409-0.332,0.74-0.74,0.74h-3.699c-0.408,0-0.738-0.331-0.738-0.74v-3.699 c0-0.408,0.33-0.739,0.738-0.739h3.699c0.408,0,0.74,0.331,0.74,0.739V30.37z" fill="url(#SVGID_34_)"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="0.74" stroke-opacity="0.6" width="40.686" x="9.658" y="22.233"/>
+<rect fill="#222021" fill-opacity="0.3" height="0.74" stroke-opacity="0.3" width="40.686" x="9.658" y="21.493"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,102 +1,104 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301" x2="301" y1="-240.6" y2="-287.1">
-<stop offset="0" stop-color="#EFF2F0"/>
-<stop offset="0.2" stop-color="#EFF2F0"/>
-<stop offset="0.8606" stop-color="#828586"/>
-<stop offset="1" stop-color="#B3B8B7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.0195" x2="301.0195" y1="-240.6152" y2="-287.0708">
+<stop offset="0" style="stop-color:#EFF2F0"/>
+<stop offset="0.2" style="stop-color:#EFF2F0"/>
+<stop offset="0.8606" style="stop-color:#828586"/>
+<stop offset="1" style="stop-color:#B3B8B7"/>
</linearGradient>
-<path d="M55.5,8.382h-51c-0.827,0-1.5,0.672-1.5,1.501v43.16c0,0.826,0.673,1.498,1.5,1.498h51c0.826,0,1.5-0.672,1.5-1.498v-43.16c0-0.829-0.67-1.501-1.5-1.501z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301" x2="301" y1="-241.6" y2="-286">
-<stop offset="0" stop-color="#E0E3E1"/>
-<stop offset="0.2364" stop-color="#CBCFCD"/>
-<stop offset="0.9636" stop-color="#8D9292"/>
-<stop offset="1" stop-color="#8D9292"/>
+<path d="M55.501,8.382H4.5C3.673,8.382,3,9.054,3,9.883v43.162c0,0.826,0.673,1.498,1.5,1.498h51.001 c0.826,0,1.5-0.672,1.5-1.498V9.883C57.001,9.054,56.327,8.382,55.501,8.382L55.501,8.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301.0195" x2="301.0195" y1="-241.6206" y2="-285.9926">
+<stop offset="0" style="stop-color:#E0E3E1"/>
+<stop offset="0.2364" style="stop-color:#CBCFCD"/>
+<stop offset="0.9636" style="stop-color:#8D9292"/>
+<stop offset="1" style="stop-color:#8D9292"/>
</linearGradient>
-<path d="M4.5,53.78c-0.409,0-0.742-0.334-0.742-0.74v-43.16c0-0.411,0.333-0.743,0.742-0.743h51c0.41,0,0.742,0.333,0.742,0.743v43.16c0,0.406-0.332,0.74-0.742,0.74h-51z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="301" x2="301" y1="-243.6" y2="-284.2">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M4.5,53.785c-0.409,0-0.742-0.334-0.742-0.74V9.883c0-0.411,0.333-0.743,0.742-0.743h51.001 c0.41,0,0.742,0.333,0.742,0.743v43.162c0,0.406-0.332,0.74-0.742,0.74H4.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="300.9824" x2="300.9824" y1="-243.6255" y2="-284.2258">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.06" stroke-opacity="0.4" width="48.96" x="5.48" y="10.89"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.5" x2="282.9" y1="-278.7" y2="-287.3">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="0.2485" stop-color="#737373"/>
-<stop offset="0.703" stop-color="#DEDEDE"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.061" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.541" x2="282.9478" y1="-278.6968" y2="-287.29">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="27.87" width="46.16" x="6.905" y="22.82"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301" x2="301" y1="-255.2" y2="-283">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_4_)" height="27.873" width="46.164" x="6.905" y="22.815"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301.0195" x2="301.0195" y1="-255.1953" y2="-283.0328">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M53.08,50.62h-32.9c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063v-15.19h46.16v27.88z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.8" x2="293.8" y1="-278.8" y2="-259.9">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M53.081,50.625c0,0-30.833,0-32.895,0c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063 c0-0.688,0-15.191,0-15.191h46.162V50.625z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.7813" x2="293.7813" y1="-278.7661" y2="-259.8767">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M28.69,46.22h-11.86v-2.05h4.31v-13.69l-4.31,0.805v-2.049l5.934-1.958h1.624v16.89h4.31v2.05z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.3" x2="308.3" y1="-278.8" y2="-259.9">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M28.694,46.221H16.827v-2.05h4.31V30.482l-4.31,0.805v-2.049l5.934-1.958h1.624v16.891h4.31 L28.694,46.221L28.694,46.221z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.2676" x2="308.2676" y1="-278.7661" y2="-259.8762">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M43.17,46.22h-11.85v-1.486c0-1.266,0.285-2.49,0.857-3.674,0.57-1.185,2.061-2.677,4.469-4.478,1.396-1.043,2.289-1.858,2.681-2.451,0.389-0.592,0.584-1.182,0.584-1.769,0-0.94-0.339-1.684-1.011-2.224-0.674-0.541-1.545-0.811-2.616-0.811-0.902,0-2.455,0.207-4.66,0.621v-2.2c1.883-0.395,3.53-0.592,4.946-0.592,2.074,0,3.693,0.458,4.857,1.375,1.162,0.916,1.744,2.162,1.744,3.74,0,0.688-0.141,1.397-0.424,2.133-0.283,0.732-0.727,1.404-1.328,2.01-0.602,0.607-1.471,1.342-2.604,2.201-1.285,0.961-2.17,1.707-2.656,2.238-0.484,0.531-0.854,1.088-1.107,1.67-0.252,0.582-0.389,1.141-0.41,1.678h8.529v2.01z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301" x2="301" y1="-244.7" y2="-255">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<path d="M43.173,46.221H31.32v-1.486c0-1.266,0.285-2.49,0.857-3.674c0.57-1.185,2.061-2.677,4.469-4.478 c1.396-1.043,2.289-1.858,2.681-2.451c0.389-0.592,0.584-1.182,0.584-1.769c0-0.94-0.339-1.684-1.011-2.224 c-0.674-0.541-1.545-0.811-2.616-0.811c-0.902,0-2.455,0.207-4.66,0.621V27.75c1.883-0.395,3.53-0.592,4.946-0.592 c2.074,0,3.693,0.458,4.857,1.375c1.162,0.916,1.744,2.162,1.744,3.74c0,0.688-0.141,1.397-0.424,2.133 c-0.283,0.732-0.727,1.404-1.328,2.01c-0.602,0.607-1.471,1.342-2.604,2.201c-1.285,0.961-2.17,1.707-2.656,2.238 c-0.484,0.531-0.854,1.088-1.107,1.67c-0.252,0.582-0.389,1.141-0.41,1.678h8.529L43.173,46.221L43.173,46.221z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301.0195" x2="301.0195" y1="-244.7197" y2="-255.0341">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="10.45" width="46.16" x="6.919" y="12.3"/>
-<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.64" y="8.382"/>
+<rect fill="url(#SVGID_8_)" height="10.453" width="46.162" x="6.919" y="12.301"/>
+<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="12.63" y="8.382"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.7" x2="318.9" y1="-249.6" y2="-249.6">
-<stop offset="0" stop-color="#C39179"/>
-<stop offset="0.497" stop-color="#E2CEBB"/>
-<stop offset="1" stop-color="#C39179"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.6953" x2="318.8543" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
</linearGradient>
-<ellipse cx="44.68" cy="17.08" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6" x2="289.8" y1="-249.6" y2="-249.6">
-<stop offset="0" stop-color="#C39179"/>
-<stop offset="0.497" stop-color="#E2CEBB"/>
-<stop offset="1" stop-color="#C39179"/>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6484" x2="289.8074" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
</linearGradient>
-<ellipse cx="15.63" cy="17.08" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.7" x2="315.7" y1="-246.5" y2="-251.7">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.6953" x2="315.6953" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
-<path d="M47.73,16.35c0,1.686-1.367,3.05-3.049,3.05-1.685,0-3.052-1.364-3.052-3.05,0-1.681,1.367-3.048,3.052-3.048,1.68,0,3.05,1.36,3.05,3.05z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5" x2="317.9" y1="-244.4" y2="-244.4">
-<stop offset="0" stop-color="#B5B5B5"/>
-<stop offset="0.1152" stop-color="#FEFDFD"/>
-<stop offset="0.6788" stop-color="#595959"/>
-<stop offset="0.9455" stop-color="#D4D3D3"/>
-<stop offset="1" stop-color="#D4D3D3"/>
+<path d="M47.727,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.685,0-3.052-1.364-3.052-3.05 c0-1.681,1.367-3.048,3.052-3.048C46.357,13.297,47.727,14.665,47.727,16.346z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5303" x2="317.8512" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M44.68,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177,1.198,0,2.178-0.975,2.178-2.177v-8.494c-0.01-1.201-0.98-2.178-2.18-2.178z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6" x2="286.6" y1="-246.5" y2="-251.7">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<path d="M44.678,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177 c1.198,0,2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.876,5.458,44.678,5.458z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6484" x2="286.6484" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
-<path d="M18.68,16.35c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05c0-1.681,1.365-3.048,3.048-3.048,1.68,0,3.05,1.36,3.05,3.05z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.5" x2="288.8" y1="-244.4" y2="-244.4">
-<stop offset="0" stop-color="#B5B5B5"/>
-<stop offset="0.1152" stop-color="#FEFDFD"/>
-<stop offset="0.6788" stop-color="#595959"/>
-<stop offset="0.9455" stop-color="#D4D3D3"/>
-<stop offset="1" stop-color="#D4D3D3"/>
+<path d="M18.678,16.346c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05 c0-1.681,1.365-3.048,3.048-3.048C17.312,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.4844" x2="288.8053" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M15.63,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177s2.18-0.975,2.18-2.177v-8.494c-0.01-1.201-0.99-2.178-2.19-2.178z" fill="url(#SVGID_14_)"/>
-<polygon fill="#55313A" points="53.08,23.05,6.919,23.05,6.919,22.46,53.08,22.46"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5" x2="541" y1="627.8" y2="633.4">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#FFFFFF"/>
-<stop offset="0.5576" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177 s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_14_)"/>
+<polygon fill="#55313A" points="53.081,23.051 6.919,23.051 6.919,22.455 53.081,22.455 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5391" x2="540.9523" y1="627.8145" y2="633.4014">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M8.216,39.96c-0.314-0.347-0.896-0.692-1.297-2.185,0,0,0.66,3.056,9.701,0.041,0,12.81,3.768,12.81,3.768,12.81-0.831,0-1.987-0.479-2.573-1.063l-9.604-9.61z" fill="url(#SVGID_15_)"/>
-<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045,0,0,0.004,0.01,0.013,0.04z" fill="#FFFFFF"/>
-<path d="M15.78,38.94c0,6.371,1.427,9.572,2.861,11.18,0.529,0.277,1.13,0.467,1.644,0.49-0.609-0.115-3.662-1.266-3.662-12.8-8.417,2.805-9.568,0.354-9.688,0.004,0.13,0.469,0.277,0.816,0.429,1.092,1.243,0.98,3.669,1.62,8.419,0.04z" fill="#FFFFFF" fill-opacity="0.75"/>
-</svg>
\ No newline at end of file
+<path d="M8.216,39.958c-0.314-0.347-0.896-0.692-1.297-2.185c0,0,0.66,3.056,9.701,0.041 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.063L8.216,39.958z" fill="url(#SVGID_15_)"/>
+<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045C6.919,37.775,6.923,37.792,6.932,37.82z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.572,2.861,11.182c0.529,0.277,1.13,0.467,1.644,0.49 c-0.609-0.115-3.662-1.266-3.662-12.797c-8.417,2.805-9.568,0.354-9.688,0.004c0.13,0.469,0.277,0.816,0.429,1.092 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_alarm.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_alarm.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,162 +1,164 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60" x="0"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301" x2="301" y1="-240.6" y2="-287.1">
-<stop offset="0" stop-color="#EFF2F0"/>
-<stop offset="0.2" stop-color="#EFF2F0"/>
-<stop offset="0.8606" stop-color="#828586"/>
-<stop offset="1" stop-color="#B3B8B7"/>
-</linearGradient>
-<path d="M55.5,8.382h-51c-0.827,0-1.5,0.672-1.5,1.501v43.16c0,0.826,0.673,1.498,1.5,1.498h51c0.826,0,1.5-0.672,1.5-1.498v-43.16c0-0.829-0.67-1.501-1.5-1.501z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301" x2="301" y1="-241.6" y2="-286">
-<stop offset="0" stop-color="#E0E3E1"/>
-<stop offset="0.2364" stop-color="#CBCFCD"/>
-<stop offset="0.9636" stop-color="#8D9292"/>
-<stop offset="1" stop-color="#8D9292"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.0195" x2="301.0195" y1="-240.6152" y2="-287.0708">
+<stop offset="0" style="stop-color:#EFF2F0"/>
+<stop offset="0.2" style="stop-color:#EFF2F0"/>
+<stop offset="0.8606" style="stop-color:#828586"/>
+<stop offset="1" style="stop-color:#B3B8B7"/>
</linearGradient>
-<path d="M4.5,53.78c-0.409,0-0.742-0.334-0.742-0.74v-43.16c0-0.411,0.333-0.743,0.742-0.743h51c0.41,0,0.742,0.333,0.742,0.743v43.16c0,0.406-0.332,0.74-0.742,0.74h-51z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="301" x2="301" y1="-243.6" y2="-284.2">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M55.501,8.382H4.5C3.673,8.382,3,9.054,3,9.883v43.162c0,0.826,0.673,1.498,1.5,1.498h51.001 c0.826,0,1.5-0.672,1.5-1.498V9.883C57.001,9.054,56.327,8.382,55.501,8.382L55.501,8.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301.0195" x2="301.0195" y1="-241.6206" y2="-285.9926">
+<stop offset="0" style="stop-color:#E0E3E1"/>
+<stop offset="0.2364" style="stop-color:#CBCFCD"/>
+<stop offset="0.9636" style="stop-color:#8D9292"/>
+<stop offset="1" style="stop-color:#8D9292"/>
+</linearGradient>
+<path d="M4.5,53.785c-0.409,0-0.742-0.334-0.742-0.74V9.883c0-0.411,0.333-0.743,0.742-0.743h51.001 c0.41,0,0.742,0.333,0.742,0.743v43.162c0,0.406-0.332,0.74-0.742,0.74H4.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="300.9824" x2="300.9824" y1="-243.6255" y2="-284.2258">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.06" stroke-opacity="0.4" width="48.96" x="5.48" y="10.89"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.5" x2="282.9" y1="-278.7" y2="-287.3">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="0.2485" stop-color="#737373"/>
-<stop offset="0.703" stop-color="#DEDEDE"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.061" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.541" x2="282.9478" y1="-278.6968" y2="-287.29">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="27.87" width="46.16" x="6.905" y="22.82"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301" x2="301" y1="-255.2" y2="-283">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_4_)" height="27.873" width="46.164" x="6.905" y="22.815"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301.0195" x2="301.0195" y1="-255.1953" y2="-283.0328">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M53.08,50.62h-32.9c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063v-15.19h46.16v27.88z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.8" x2="293.8" y1="-278.8" y2="-259.9">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M53.081,50.625c0,0-30.833,0-32.895,0c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063 c0-0.688,0-15.191,0-15.191h46.162V50.625z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.7813" x2="293.7813" y1="-278.7661" y2="-259.8767">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M28.69,46.22h-11.86v-2.05h4.31v-13.69l-4.31,0.805v-2.049l5.934-1.958h1.624v16.89h4.31v2.05z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.3" x2="308.3" y1="-278.8" y2="-259.9">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M28.694,46.221H16.827v-2.05h4.31V30.482l-4.31,0.805v-2.049l5.934-1.958h1.624v16.891h4.31 L28.694,46.221L28.694,46.221z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.2676" x2="308.2676" y1="-278.7661" y2="-259.8762">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M43.17,46.22h-11.85v-1.486c0-1.266,0.285-2.49,0.857-3.674,0.57-1.185,2.061-2.677,4.469-4.478,1.396-1.043,2.289-1.858,2.681-2.451,0.389-0.592,0.584-1.182,0.584-1.769,0-0.94-0.339-1.684-1.011-2.224-0.674-0.541-1.545-0.811-2.616-0.811-0.902,0-2.455,0.207-4.66,0.621v-2.2c1.883-0.395,3.53-0.592,4.946-0.592,2.074,0,3.693,0.458,4.857,1.375,1.162,0.916,1.744,2.162,1.744,3.74,0,0.688-0.141,1.397-0.424,2.133-0.283,0.732-0.727,1.404-1.328,2.01-0.602,0.607-1.471,1.342-2.604,2.201-1.285,0.961-2.17,1.707-2.656,2.238-0.484,0.531-0.854,1.088-1.107,1.67-0.252,0.582-0.389,1.141-0.41,1.678h8.529v2.01z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301" x2="301" y1="-244.7" y2="-255">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<path d="M43.173,46.221H31.32v-1.486c0-1.266,0.285-2.49,0.857-3.674c0.57-1.185,2.061-2.677,4.469-4.478 c1.396-1.043,2.289-1.858,2.681-2.451c0.389-0.592,0.584-1.182,0.584-1.769c0-0.94-0.339-1.684-1.011-2.224 c-0.674-0.541-1.545-0.811-2.616-0.811c-0.902,0-2.455,0.207-4.66,0.621V27.75c1.883-0.395,3.53-0.592,4.946-0.592 c2.074,0,3.693,0.458,4.857,1.375c1.162,0.916,1.744,2.162,1.744,3.74c0,0.688-0.141,1.397-0.424,2.133 c-0.283,0.732-0.727,1.404-1.328,2.01c-0.602,0.607-1.471,1.342-2.604,2.201c-1.285,0.961-2.17,1.707-2.656,2.238 c-0.484,0.531-0.854,1.088-1.107,1.67c-0.252,0.582-0.389,1.141-0.41,1.678h8.529L43.173,46.221L43.173,46.221z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301.0195" x2="301.0195" y1="-244.7197" y2="-255.0341">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="10.45" width="46.16" x="6.919" y="12.3"/>
-<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.64" y="8.382"/>
+<rect fill="url(#SVGID_8_)" height="10.453" width="46.162" x="6.919" y="12.301"/>
+<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="12.63" y="8.382"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.7" x2="318.9" y1="-249.6" y2="-249.6">
-<stop offset="0" stop-color="#C39179"/>
-<stop offset="0.497" stop-color="#E2CEBB"/>
-<stop offset="1" stop-color="#C39179"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.6953" x2="318.8543" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
</linearGradient>
-<ellipse cx="44.68" cy="17.08" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6" x2="289.8" y1="-249.6" y2="-249.6">
-<stop offset="0" stop-color="#C39179"/>
-<stop offset="0.497" stop-color="#E2CEBB"/>
-<stop offset="1" stop-color="#C39179"/>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6484" x2="289.8074" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
</linearGradient>
-<ellipse cx="15.63" cy="17.08" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.7" x2="315.7" y1="-246.5" y2="-251.7">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.6953" x2="315.6953" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
-<path d="M47.73,16.35c0,1.686-1.367,3.05-3.049,3.05-1.685,0-3.052-1.364-3.052-3.05,0-1.681,1.367-3.048,3.052-3.048,1.68,0,3.05,1.36,3.05,3.05z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5" x2="317.9" y1="-244.4" y2="-244.4">
-<stop offset="0" stop-color="#B5B5B5"/>
-<stop offset="0.1152" stop-color="#FEFDFD"/>
-<stop offset="0.6788" stop-color="#595959"/>
-<stop offset="0.9455" stop-color="#D4D3D3"/>
-<stop offset="1" stop-color="#D4D3D3"/>
+<path d="M47.727,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.685,0-3.052-1.364-3.052-3.05 c0-1.681,1.367-3.048,3.052-3.048C46.357,13.297,47.727,14.665,47.727,16.346z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5303" x2="317.8512" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M44.68,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177,1.198,0,2.178-0.975,2.178-2.177v-8.494c-0.01-1.201-0.98-2.178-2.18-2.178z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6" x2="286.6" y1="-246.5" y2="-251.7">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<path d="M44.678,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177 c1.198,0,2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.876,5.458,44.678,5.458z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6484" x2="286.6484" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
-<path d="M18.68,16.35c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05c0-1.681,1.365-3.048,3.048-3.048,1.68,0,3.05,1.36,3.05,3.05z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.5" x2="288.8" y1="-244.4" y2="-244.4">
-<stop offset="0" stop-color="#B5B5B5"/>
-<stop offset="0.1152" stop-color="#FEFDFD"/>
-<stop offset="0.6788" stop-color="#595959"/>
-<stop offset="0.9455" stop-color="#D4D3D3"/>
-<stop offset="1" stop-color="#D4D3D3"/>
+<path d="M18.678,16.346c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05 c0-1.681,1.365-3.048,3.048-3.048C17.312,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.4844" x2="288.8053" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M15.63,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177s2.18-0.975,2.18-2.177v-8.494c-0.01-1.201-0.99-2.178-2.19-2.178z" fill="url(#SVGID_14_)"/>
-<polygon fill="#55313A" points="53.08,23.05,6.919,23.05,6.919,22.46,53.08,22.46"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5" x2="541" y1="627.8" y2="633.4">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#FFFFFF"/>
-<stop offset="0.5576" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177 s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_14_)"/>
+<polygon fill="#55313A" points="53.081,23.051 6.919,23.051 6.919,22.455 53.081,22.455 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5391" x2="540.9523" y1="627.8145" y2="633.4014">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M8.216,39.96c-0.314-0.347-0.896-0.692-1.297-2.185,0,0,0.66,3.056,9.701,0.041,0,12.81,3.768,12.81,3.768,12.81-0.831,0-1.987-0.479-2.573-1.063l-9.604-9.61z" fill="url(#SVGID_15_)"/>
-<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045,0,0,0.004,0.01,0.013,0.04z" fill="#FFFFFF"/>
-<path d="M15.78,38.94c0,6.371,1.427,9.572,2.861,11.18,0.529,0.277,1.13,0.467,1.644,0.49-0.609-0.115-3.662-1.266-3.662-12.8-8.417,2.805-9.568,0.354-9.688,0.004,0.13,0.469,0.277,0.816,0.429,1.092,1.243,0.98,3.669,1.62,8.419,0.04z" fill="#FFFFFF" fill-opacity="0.75"/>
+<path d="M8.216,39.958c-0.314-0.347-0.896-0.692-1.297-2.185c0,0,0.66,3.056,9.701,0.041 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.063L8.216,39.958z" fill="url(#SVGID_15_)"/>
+<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045C6.919,37.775,6.923,37.792,6.932,37.82z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.572,2.861,11.182c0.529,0.277,1.13,0.467,1.644,0.49 c-0.609-0.115-3.662-1.266-3.662-12.797c-8.417,2.805-9.568,0.354-9.688,0.004c0.13,0.469,0.277,0.816,0.429,1.092 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0.414,0,0.414,10.48,0,10.9,0.414,11.31,0.414,30,19.1,30,19.51,30.41,19.93,30,30.41,30,30.41,0"/>
-<path d="M13.77,24.67c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021-0.51,0.09-0.025-0.025c-0.205,0.02-0.411,0.03-0.618,0.03-1.746,0-3.402-0.694-4.662-1.954-1.416-1.414-2.113-3.354-1.924-5.279l-0.024-0.02,0.09-0.501-0.006-0.01,0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338l-5.745-5.74,2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358,0.059-0.004,0.123-0.006,0.189-0.006,0.11,0,0.226,0.005,0.346,0.015l0.18,0.021c0.188,0.025,0.352,0.054,0.521,0.092,0,0,0.277,0.066,0.313,0.076l4.098-4.098c2.2-2.195,5.13-3.404,8.25-3.404,2.05,0,4.037,0.526,5.792,1.527,0.53-0.355,1.14-0.541,1.763-0.541,0.834,0,1.616,0.323,2.203,0.91,1.08,1.08,1.205,2.759,0.375,3.979,2.574,4.525,1.834,10.31-1.883,14.03l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29,0.044,0.201,0.072,0.357,0.092,0.505,0.011,0.083,0.021,0.159,0.026,0.23,0.015,0.178,0.019,0.354,0.011,0.519-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238-5.73-5.75z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="218.7" x2="229.7" y1="-1097" y2="-1097">
-<stop offset="0" stop-color="#696A6B"/>
-<stop offset="0.297" stop-color="#A2A4A4"/>
-<stop offset="0.7091" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<polygon fill="none" points="0.414,0 0.414,10.485 0,10.899 0.414,11.313 0.414,30 19.1,30 19.514,30.414 19.928,30 30.414,30 30.414,0 "/>
+<path d="M13.769,24.668c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021L12.8,24.867l-0.025-0.025 c-0.205,0.02-0.411,0.03-0.618,0.03c-1.746,0-3.402-0.694-4.662-1.954c-1.416-1.414-2.113-3.354-1.924-5.279L5.55,17.618l0.09-0.501 L5.634,17.11l0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338L0,10.899l2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358 C4.924,7.3,4.988,7.298,5.054,7.298c0.11,0,0.226,0.005,0.346,0.015L5.58,7.334c0.188,0.025,0.352,0.054,0.521,0.092 c0,0,0.277,0.066,0.313,0.076l4.098-4.098C12.707,1.209,15.636,0,18.76,0c2.05,0,4.037,0.526,5.792,1.527 c0.53-0.355,1.14-0.541,1.763-0.541c0.834,0,1.616,0.323,2.203,0.91c1.08,1.08,1.205,2.759,0.375,3.979 c2.574,4.525,1.834,10.311-1.883,14.027l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29c0.044,0.201,0.072,0.357,0.092,0.505 c0.011,0.083,0.021,0.159,0.026,0.23c0.015,0.178,0.019,0.354,0.011,0.519c-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238 L13.769,24.668z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="218.7148" x2="229.6865" y1="-1096.7686" y2="-1096.7686">
+<stop offset="0" style="stop-color:#696A6B"/>
+<stop offset="0.297" style="stop-color:#A2A4A4"/>
+<stop offset="0.7091" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M8,14.66c-2.029,2.029-1.943,5.411,0.201,7.555,2.143,2.143,5.527,2.232,7.557,0.203l-7.76-7.76z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="3.21" x2="21.48" y1="8.923" y2="27.2">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.2" stop-color="#DED7B3"/>
-<stop offset="0.3879" stop-color="#D2C49B"/>
-<stop offset="0.4182" stop-color="#C6B285"/>
-<stop offset="0.6667" stop-color="#AA8250"/>
-<stop offset="0.8545" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M8,14.656L8,14.656c-2.029,2.029-1.943,5.411,0.201,7.555c2.143,2.143,5.527,2.232,7.557,0.203l0,0 L8,14.656z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="3.21" x2="21.4822" y1="8.9229" y2="27.1951">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.2" style="stop-color:#DED7B3"/>
+<stop offset="0.3879" style="stop-color:#D2C49B"/>
+<stop offset="0.4182" style="stop-color:#C6B285"/>
+<stop offset="0.6667" style="stop-color:#AA8250"/>
+<stop offset="0.8545" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M21.78,23.72l-15.09-15.08c-2.041-0.73-2.813-0.205-3.748,0.731l-1.531,1.531,18.1,18.1,1.533-1.531c0.94-0.94,1.47-1.71,0.74-3.75z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="222" x2="226.3" y1="-1120" y2="-1120">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.1939" stop-color="#DED7B3"/>
-<stop offset="0.703" stop-color="#AA8250"/>
-<stop offset="0.8848" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M21.777,23.721L6.693,8.637c-2.041-0.73-2.813-0.205-3.748,0.731l-1.531,1.531L19.514,29l1.533-1.531 C21.982,26.532,22.508,25.761,21.777,23.721z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="221.9707" x2="226.2741" y1="-1120.2998" y2="-1120.2998">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.1939" style="stop-color:#DED7B3"/>
+<stop offset="0.703" style="stop-color:#AA8250"/>
+<stop offset="0.8848" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M27.06,6.375l0.754-0.755c0.83-0.829,0.83-2.188,0-3.017-0.83-0.83-2.188-0.83-3.018,0l-0.754,0.754,3.02,3.018z" fill="url(#SVGID_3__)"/>
-<path d="M27.06,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146-0.385-0.581-0.832-1.134-1.344-1.645-0.512-0.512-1.064-0.96-1.646-1.346-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754,3.02,3.018z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M26.87,3.546c-0.492-0.492-1.023-0.924-1.58-1.299-0.178,0.095-0.346,0.207-0.494,0.355l-0.473,0.473,3.018,3.017,0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495-0.39-0.557-0.82-1.087-1.31-1.579z" fill="#5E2D29" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="26.32" x2="14.11" y1="4.092" y2="16.31">
-<stop offset="0" stop-color="#E6E0C8"/>
-<stop offset="1" stop-color="#AF8C5A"/>
+<path d="M27.057,6.375l0.754-0.755c0.83-0.829,0.83-2.188,0-3.017c-0.83-0.83-2.188-0.83-3.018,0 l-0.754,0.754L27.057,6.375z" fill="url(#SVGID_3__)"/>
+<path d="M27.057,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146 c-0.385-0.581-0.832-1.134-1.344-1.645c-0.512-0.512-1.064-0.96-1.646-1.346c-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754 L27.057,6.375z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26.869,3.546c-0.492-0.492-1.023-0.924-1.58-1.299c-0.178,0.095-0.346,0.207-0.494,0.355 l-0.473,0.473l3.018,3.017l0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495C27.791,4.568,27.359,4.038,26.869,3.546z" fill="#5E2D29" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="26.3223" x2="14.1095" y1="4.0923" y2="16.3051">
+<stop offset="0" style="stop-color:#E6E0C8"/>
+<stop offset="1" style="stop-color:#AF8C5A"/>
</linearGradient>
-<path d="M21.78,23.72l4.525-4.525c4.148-4.147,4.148-10.94,0-15.08s-10.94-4.148-15.08,0l-4.527,4.517,15.09,15.08z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="13.12" x2="27.43" y1="2.994" y2="17.31">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.2545" stop-color="#DED7B3"/>
-<stop offset="0.503" stop-color="#C9B78A"/>
-<stop offset="0.5152" stop-color="#C4AE80"/>
-<stop offset="0.6667" stop-color="#AA8250"/>
-<stop offset="0.8545" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M21.777,23.721l4.525-4.525c4.148-4.147,4.148-10.936,0-15.084s-10.936-4.148-15.084,0L6.693,8.637 L21.777,23.721z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="13.1172" x2="27.4319" y1="2.9941" y2="17.3088">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.2545" style="stop-color:#DED7B3"/>
+<stop offset="0.503" style="stop-color:#C9B78A"/>
+<stop offset="0.5152" style="stop-color:#C4AE80"/>
+<stop offset="0.6667" style="stop-color:#AA8250"/>
+<stop offset="0.8545" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M7.258,8.637l4.244-4.242c1.93-1.931,4.51-2.995,7.26-2.995,2.752,0,5.33,1.063,7.26,2.994,1.932,1.931,2.994,4.509,2.994,7.259,0,2.751-1.063,5.329-2.994,7.26l-4.242,4.242-14.52-14.51z" fill="url(#SVGID_5__)"/>
-<rect fill="#5E2D29" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.33" x="3.723" y="15.82"/>
-<path d="M13.62,23.67c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425l6.873,6.87z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#5E2D29" fill-opacity="0.1" height="0.4" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.33" x="4.006" y="15.54"/>
-<path d="M13.13,23.79c0.156-0.029,0.309-0.063,0.461-0.106l-6.856-6.86c-0.043,0.151-0.078,0.305-0.107,0.459l6.503,6.51z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M4.85,8.302l17.26,17.26c0.037-0.485-0.059-1.074-0.334-1.844l-15.09-15.08c-0.769-0.277-1.357-0.371-1.843-0.335z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.81,15.81c-0.047-0.173-0.105-0.357-0.176-0.553l-15.08-15.08z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect fill="#522523" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.6" x="-2.194" y="19.61"/>
-<rect fill="#522523" fill-opacity="0.1" height="0.398" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.6" x="-1.911" y="19.33"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="21.65" x2="21.65" y1="1.782" y2="16.04">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDBD92"/>
+<path d="M7.258,8.637l4.244-4.242C13.432,2.464,16.01,1.4,18.76,1.4c2.752,0,5.33,1.063,7.26,2.994 c1.932,1.931,2.994,4.509,2.994,7.259c0,2.751-1.063,5.329-2.994,7.26l-4.242,4.242L7.258,8.637z" fill="url(#SVGID_5__)"/>
+<rect fill="#5E2D29" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.332" x="3.723" y="15.825"/>
+<path d="M13.619,23.671c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425 L13.619,23.671z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#5E2D29" fill-opacity="0.1" height="0.4" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.332" x="4.006" y="15.543"/>
+<path d="M13.133,23.786c0.156-0.029,0.309-0.063,0.461-0.106L6.734,16.82c-0.043,0.151-0.078,0.305-0.107,0.459 L13.133,23.786z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M4.85,8.302l17.262,17.263c0.037-0.485-0.059-1.074-0.334-1.844L6.693,8.637 C5.924,8.36,5.336,8.266,4.85,8.302z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.813,15.813 c-0.047-0.173-0.105-0.357-0.176-0.553L6.693,8.637z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill="#522523" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.598" x="-2.194" y="19.608"/>
+<rect fill="#522523" fill-opacity="0.1" height="0.398" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.599" x="-1.911" y="19.326"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="21.6523" x2="21.6523" y1="1.7822" y2="16.0367">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDBD92"/>
</linearGradient>
-<path d="M27.35,15.49c-2.314-1.359-4.715-3.255-6.941-5.482-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403,0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686,2.615,0,5.162,1.047,6.986,2.873,2.775,2.774,3.635,6.941,2.188,10.61l-0.172,0.435-0.42-0.23z" fill="url(#SVGID_6__)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M27.348,15.49c-2.314-1.359-4.715-3.255-6.941-5.482 c-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403l0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686 c2.615,0,5.162,1.047,6.986,2.873c2.775,2.774,3.635,6.941,2.188,10.614l-0.172,0.435L27.348,15.49z" fill="url(#SVGID_6__)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_dynamic.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_calendar_dynamic.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,92 +1,94 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.135" y2="54.59">
-<stop offset="0" stop-color="#EFF2F0"/>
-<stop offset="0.2" stop-color="#EFF2F0"/>
-<stop offset="0.8606" stop-color="#828586"/>
-<stop offset="1" stop-color="#B3B8B7"/>
+<g>
+<rect fill="none" fill-rule="evenodd" height="60" width="60"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="8.1353" y2="54.5904">
+<stop offset="0" style="stop-color:#EFF2F0"/>
+<stop offset="0.2" style="stop-color:#EFF2F0"/>
+<stop offset="0.8606" style="stop-color:#828586"/>
+<stop offset="1" style="stop-color:#B3B8B7"/>
</linearGradient>
-<path d="M55.5,8.382h-51c-0.827,0-1.5,0.672-1.5,1.501v43.16c0,0.828,0.673,1.499,1.5,1.499h51c0.828,0,1.5-0.671,1.5-1.499v-43.16c0-0.829-0.67-1.501-1.5-1.501z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.14" y2="53.51">
-<stop offset="0" stop-color="#E0E3E1"/>
-<stop offset="0.2364" stop-color="#CBCFCD"/>
-<stop offset="0.9636" stop-color="#8D9292"/>
-<stop offset="1" stop-color="#8D9292"/>
+<path d="M55.5,8.382h-51C3.673,8.382,3,9.054,3,9.883v43.16c0,0.828,0.673,1.499,1.5,1.499h51 c0.828,0,1.5-0.671,1.5-1.499V9.883C57,9.054,56.328,8.382,55.5,8.382L55.5,8.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="9.1396" y2="53.5111">
+<stop offset="0" style="stop-color:#E0E3E1"/>
+<stop offset="0.2364" style="stop-color:#CBCFCD"/>
+<stop offset="0.9636" style="stop-color:#8D9292"/>
+<stop offset="1" style="stop-color:#8D9292"/>
</linearGradient>
-<path d="M4.5,53.78c-0.409,0-0.742-0.333-0.742-0.741v-43.16c0-0.411,0.333-0.743,0.742-0.743h51c0.412,0,0.742,0.333,0.742,0.743v43.16c0,0.408-0.33,0.741-0.742,0.741h-51z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.96" x2="29.96" y1="11.15" y2="51.74">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M4.5,53.784c-0.409,0-0.742-0.333-0.742-0.741V9.883 c0-0.411,0.333-0.743,0.742-0.743h51c0.412,0,0.742,0.333,0.742,0.743v43.16c0,0.408-0.33,0.741-0.742,0.741H4.5z" fill="url(#SVGID_2_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9624" x2="29.9624" y1="11.1455" y2="51.7444">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.06" stroke-opacity="0.4" width="48.96" x="5.48" y="10.89"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20.52" x2="11.93" y1="46.22" y2="54.81">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="0.2485" stop-color="#737373"/>
-<stop offset="0.703" stop-color="#DEDEDE"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.06" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20.5205" x2="11.9277" y1="46.2158" y2="54.8087">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="27.87" width="46.16" x="6.904" y="22.82"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="22.72" y2="50.55">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_4_)" fill-rule="evenodd" height="27.871" width="46.162" x="6.904" y="22.815"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="22.7153" y2="50.5533">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M53.08,50.62h-32.9c-1.003,0-6.479-6.618-6.479-6.618s-6.788-5.71-6.788-6.063v-15.19h46.17v27.88z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="12.24" y2="22.55">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<path d="M53.08,50.625c0,0-30.832,0-32.895,0 c-1.003,0-6.479-6.618-6.479-6.618s-6.788-5.71-6.788-6.063c0-0.688,0-15.19,0-15.19H53.08V50.625z" fill="url(#SVGID_5_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9995" x2="29.9995" y1="12.2397" y2="22.5541">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="10.45" width="46.16" x="6.919" y="12.3"/>
-<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.64" y="8.382"/>
-<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="12.63" y="8.382"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="41.68" x2="47.83" y1="17.08" y2="17.08">
-<stop offset="0" stop-color="#C39179"/>
-<stop offset="0.497" stop-color="#E2CEBB"/>
-<stop offset="1" stop-color="#C39179"/>
+<rect fill="url(#SVGID_6_)" fill-rule="evenodd" height="10.453" width="46.161" x="6.919" y="12.301"/>
+<rect fill="#222021" fill-opacity="0.4" fill-rule="evenodd" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
+<rect fill="#222021" fill-opacity="0.4" fill-rule="evenodd" height="7.614" stroke-opacity="0.4" width="6.012" x="12.631" y="8.382"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="41.6758" x2="47.8333" y1="17.0825" y2="17.0825">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
</linearGradient>
-<ellipse cx="44.68" cy="17.08" fill="url(#SVGID_7_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.63" x2="18.79" y1="17.08" y2="17.08">
-<stop offset="0" stop-color="#C39179"/>
-<stop offset="0.497" stop-color="#E2CEBB"/>
-<stop offset="1" stop-color="#C39179"/>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_7_)" fill-rule="evenodd" rx="3.049" ry="2.87"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.6294" x2="18.7869" y1="17.0825" y2="17.0825">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
</linearGradient>
-<ellipse cx="15.63" cy="17.08" fill="url(#SVGID_8_)" rx="3.049" ry="2.87"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="44.68" x2="44.68" y1="14.06" y2="19.19">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_8_)" fill-rule="evenodd" rx="3.049" ry="2.87"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="44.6758" x2="44.6758" y1="14.0566" y2="19.1892">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
-<path d="M47.72,16.35c0,1.686-1.367,3.05-3.049,3.05-1.684,0-3.049-1.364-3.049-3.05,0-1.681,1.365-3.048,3.049-3.048,1.69,0,3.05,1.36,3.05,3.05z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.51" x2="46.83" y1="11.88" y2="11.88">
-<stop offset="0" stop-color="#B5B5B5"/>
-<stop offset="0.1152" stop-color="#FEFDFD"/>
-<stop offset="0.6788" stop-color="#595959"/>
-<stop offset="0.9455" stop-color="#D4D3D3"/>
-<stop offset="1" stop-color="#D4D3D3"/>
+<path d="M47.725,16.346c0,1.686-1.367,3.05-3.049,3.05 c-1.684,0-3.049-1.364-3.049-3.05c0-1.681,1.365-3.048,3.049-3.048C46.357,13.297,47.725,14.665,47.725,16.346z" fill="url(#SVGID_9_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.5107" x2="46.8302" y1="11.8828" y2="11.8828">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M44.68,5.458c-1.201,0-2.176,0.977-2.176,2.178v8.494c0,1.202,0.975,2.177,2.176,2.177s2.178-0.975,2.178-2.177v-8.494c-0.01-1.201-0.98-2.178-2.18-2.178z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15.63" x2="15.63" y1="14.06" y2="19.19">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<path d="M44.676,5.458c-1.201,0-2.176,0.977-2.176,2.178v8.494 c0,1.202,0.975,2.177,2.176,2.177s2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.877,5.458,44.676,5.458z" fill="url(#SVGID_10_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15.6289" x2="15.6289" y1="14.0566" y2="19.1892">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
-<path d="M18.68,16.35c0,1.686-1.365,3.05-3.05,3.05-1.684,0-3.048-1.364-3.048-3.05,0-1.681,1.364-3.048,3.048-3.048,1.68,0,3.05,1.36,3.05,3.05z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.46" x2="17.78" y1="11.88" y2="11.88">
-<stop offset="0" stop-color="#B5B5B5"/>
-<stop offset="0.1152" stop-color="#FEFDFD"/>
-<stop offset="0.6788" stop-color="#595959"/>
-<stop offset="0.9455" stop-color="#D4D3D3"/>
-<stop offset="1" stop-color="#D4D3D3"/>
+<path d="M18.678,16.346c0,1.686-1.365,3.05-3.05,3.05 c-1.684,0-3.048-1.364-3.048-3.05c0-1.681,1.364-3.048,3.048-3.048C17.313,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_11_)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.4644" x2="17.7848" y1="11.8828" y2="11.8828">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
</linearGradient>
-<path d="M15.63,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177s2.18-0.975,2.18-2.177v-8.494c-0.01-1.201-0.99-2.178-2.19-2.178z" fill="url(#SVGID_12_)"/>
-<polygon fill="#55313A" points="53.08,23.05,6.919,23.05,6.919,22.46,53.08,22.46,53.08,23.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5" x2="269.9" y1="-325.3" y2="-330.9">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#FFFFFF"/>
-<stop offset="0.5576" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494 c0,1.202,0.973,2.177,2.175,2.177s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_12_)" fill-rule="evenodd"/>
+<polygon fill="#55313A" points="53.08,23.051 6.919,23.051 6.919,22.455 53.08,22.455 53.08,23.051 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5176" x2="269.9313" y1="-325.3354" y2="-330.9218">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M8.216,39.96c-0.313-0.348-0.896-0.695-1.297-2.184,0,0,0.659,3.055,9.701,0.041,0,12.81,3.767,12.81,3.767,12.81-0.83,0-1.986-0.479-2.572-1.064l-9.604-9.61z" fill="url(#SVGID_13_)"/>
-<path d="M6.932,37.82c-0.004-0.016-0.008-0.027-0.013-0.043,0,0,0.005,0.01,0.013,0.04z" fill="#FFFFFF"/>
-<path d="M15.78,38.94c0,6.371,1.427,9.571,2.861,11.18,0.528,0.276,1.13,0.467,1.644,0.489-0.609-0.114-3.661-1.264-3.661-12.8-8.417,2.805-9.568,0.354-9.688,0.002,0.131,0.47,0.277,0.818,0.43,1.094,1.242,0.98,3.668,1.62,8.418,0.04z" fill="#FFFFFF" fill-opacity="0.75"/>
-</svg>
\ No newline at end of file
+<path d="M8.216,39.959c-0.313-0.348-0.896-0.695-1.297-2.184c0,0,0.659,3.055,9.701,0.041 c0,12.809,3.767,12.809,3.767,12.809c-0.83,0-1.986-0.479-2.572-1.064L8.216,39.959z" fill="url(#SVGID_13_)"/>
+<path d="M6.932,37.818c-0.004-0.016-0.008-0.027-0.013-0.043C6.919,37.775,6.924,37.793,6.932,37.818z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.571,2.861,11.181c0.528,0.276,1.13,0.467,1.644,0.489 c-0.609-0.114-3.661-1.264-3.661-12.795c-8.417,2.805-9.568,0.354-9.688,0.002c0.131,0.47,0.277,0.818,0.43,1.094 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_assistant.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_assistant.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,150 +1,152 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M30,0.001h-15.04c-0.001,0-0.011-0.001-0.021-0.001-0.006,0-0.012,0.001-0.019,0.001h-14.92v30h30v-30z" fill="none"/>
+<path d="M30,0.001H14.961C14.955,0.001,14.949,0,14.943,0c-0.006,0-0.012,0.001-0.019,0.001H0v30h30V0.001z" fill="none"/>
<rect fill="none" height="30" width="30" y="0.001"/>
-<path d="M28.74,18.38c0.006-0.225,0.008-0.446-0.004-0.649-0.002-0.063-0.008-0.122-0.02-0.228-0.018-0.208-0.035-0.415-0.068-0.609-0.01-0.063-0.023-0.122-0.053-0.255-0.037-0.18-0.072-0.357-0.121-0.521-0.02-0.068-0.043-0.131-0.066-0.192l-0.936,0.352,0.896-0.462c-0.047-0.14-0.098-0.279-0.154-0.406-0.035-0.079-0.076-0.149-0.115-0.22l-0.865,0.502,0.805-0.611c-0.057-0.108-0.115-0.215-0.178-0.306-0.064-0.094-0.133-0.174-0.205-0.252l-0.066-0.078c-0.061-0.076-0.125-0.149-0.197-0.217-0.158-0.144-0.311-0.233-0.379-0.271l0.063-0.398h-0.217c-0.018-0.405-0.047-0.809-0.088-1.203,0.014-0.257,0.016-0.514,0.021-0.819,0.004-0.072,0.008-0.146,0.008-0.203,0-0.065-0.049-1.029-0.049-1.029-0.006-0.074-0.018-0.146-0.037-0.245-0.043-0.41-0.105-0.811-0.189-1.234-0.01-0.077-0.02-0.153-0.057-0.299,0,0-0.107-0.409-0.164-0.609-0.016-0.063-0.033-0.127-0.078-0.267-0.016-0.036-0.031-0.072-0.049-0.109-0.404-1.208-1.006-2.3-1.736-3.177l-0.084-0.135-0.057-0.066c-0.045-0.052-0.094-0.101-0.174-0.179-0.145-0.161-0.297-0.316-0.455-0.472-0.135-0.131-0.275-0.261-0.422-0.387-0.164-0.143-0.332-0.282-0.545-0.447-0.031-0.027-0.117-0.1-0.117-0.1l-0.068-0.048c-0.076-0.054-0.156-0.104-0.236-0.152l-0.092-0.058c-0.166-0.109-0.334-0.219-0.531-0.336-0.043-0.028-0.225-0.134-0.225-0.134-0.076-0.041-0.156-0.079-0.238-0.117l-0.15-0.074c-0.186-0.095-0.371-0.188-0.557-0.271l-0.072-0.036-0.172-0.073c-0.102-0.042-0.209-0.079-0.316-0.116l-0.098-0.035c-1.51-0.751-3.15-1.129-4.87-1.129-3.277,0-6.254,1.365-8.416,3.851,0,0-0.074,0.042-0.088,0.049-0.102,0.04-0.201,0.082-0.33,0.142l-0.018,0.006-0.18,0.092s-0.043,0.032-0.051,0.038c-0.125,0.067-0.246,0.138-0.341,0.202l-0.541,0.351v0.058c-1.043,0.897-2.107,2.544-2.125,5.53,0,0,0.002,0.221,0.008,0.355,0.006,0.26,0.014,0.522,0.039,0.858l0.006,0.119c0.018,0.194,0.037,0.393,0.07,0.65l0.084,0.609c-0.025,0.351-0.045,0.689-0.055,1.025-0.148,0.088-0.277,0.184-0.396,0.293-0.055,0.051-0.107,0.11-0.15,0.166-0.109,0.116-0.217,0.235-0.318,0.385-0.049,0.072-0.094,0.154-0.139,0.237l-0.069,0.12c-0.049,0.085-0.096,0.17-0.141,0.269-0.057,0.125-0.105,0.264-0.152,0.402l0.945,0.323-0.984-0.215c-0.023,0.061-0.045,0.122-0.066,0.191-0.057,0.194-0.1,0.402-0.143,0.626l-0.029,0.14c-0.037,0.226-0.061,0.463-0.078,0.709l-0.012,0.11c-0.014,0.241-0.012,0.489-0.004,0.729v0.122l0.041,0.001-0.039,0.002,0.004,0.159c0.18,2.729,1.537,4.709,3.225,4.709l0.066-0.003c0.033,0.007,0.068,0.012,0.104,0.017l0.314,0.518h0.018c1.168,1.754,3.143,3.851,6.264,4.856,0.137,0.088,0.277,0.173,0.42,0.254,0.105,0.06,0.211,0.116,0.322,0.173,0.189,0.096,0.383,0.184,0.566,0.259,0.115,0.049,0.229,0.096,0.348,0.139,0.217,0.075,0.434,0.135,0.734,0.208,0.076,0.021,0.154,0.041,0.236,0.056,0.363,0.067,0.697,0.1,1.018,0.1,0.369,0,0.715-0.029,1.049-0.071,0.1-0.012,0.199-0.027,0.301-0.044,0.256-0.042,0.504-0.096,0.809-0.176l0.174-0.046c0.24-0.073,0.469-0.155,0.691-0.247l0.229-0.095,0.018-0.02c1.295-0.59,2.434-1.545,3.477-2.911l0.057-0.075,0.09-0.18c0.49-0.765,0.957-1.572,1.398-2.416l0.01,0.018s0.344-0.712,0.385-0.799c0.455,0.389,0.947,0.495,1.277,0.518l0.145,0.005c0.139,0,0.281-0.013,0.424-0.038l0.066,0.002c1.689,0,3.045-1.98,3.227-4.714-0.01-0.05,0-0.26,0-0.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="-4273" cy="-2826" gradientTransform="matrix(0.4209 0 0 0.4195 1813.6772 1193.3445)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="50.78">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<path d="M28.736,18.376c0.006-0.225,0.008-0.446-0.004-0.649c-0.002-0.063-0.008-0.122-0.02-0.228 c-0.018-0.208-0.035-0.415-0.068-0.609c-0.01-0.063-0.023-0.122-0.053-0.255c-0.037-0.18-0.072-0.357-0.121-0.521 c-0.02-0.068-0.043-0.131-0.066-0.192l-0.936,0.352l0.896-0.462c-0.047-0.14-0.098-0.279-0.154-0.406 c-0.035-0.079-0.076-0.149-0.115-0.22l-0.865,0.502l0.805-0.611c-0.057-0.108-0.115-0.215-0.178-0.306 c-0.064-0.094-0.133-0.174-0.205-0.252l-0.066-0.078c-0.061-0.076-0.125-0.149-0.197-0.217c-0.158-0.144-0.311-0.233-0.379-0.271 l0.063-0.398h-0.217c-0.018-0.405-0.047-0.809-0.088-1.203c0.014-0.257,0.016-0.514,0.021-0.819 c0.004-0.072,0.008-0.146,0.008-0.203c0-0.065-0.049-1.029-0.049-1.029c-0.006-0.074-0.018-0.146-0.037-0.245 c-0.043-0.41-0.105-0.811-0.189-1.234c-0.01-0.077-0.02-0.153-0.057-0.299c0,0-0.107-0.409-0.164-0.609 c-0.016-0.063-0.033-0.127-0.078-0.267c-0.016-0.036-0.031-0.072-0.049-0.109c-0.404-1.208-1.006-2.3-1.736-3.177l-0.084-0.135 l-0.057-0.066c-0.045-0.052-0.094-0.101-0.174-0.179c-0.145-0.161-0.297-0.316-0.455-0.472c-0.135-0.131-0.275-0.261-0.422-0.387 c-0.164-0.143-0.332-0.282-0.545-0.447c-0.031-0.027-0.117-0.1-0.117-0.1l-0.068-0.048c-0.076-0.054-0.156-0.104-0.236-0.152 l-0.092-0.058c-0.166-0.109-0.334-0.219-0.531-0.336c-0.043-0.028-0.225-0.134-0.225-0.134c-0.076-0.041-0.156-0.079-0.238-0.117 l-0.15-0.074c-0.186-0.095-0.371-0.188-0.557-0.271l-0.072-0.036l-0.172-0.073c-0.102-0.042-0.209-0.079-0.316-0.116l-0.098-0.035 C18.303,0.378,16.66,0,14.943,0c-3.277,0-6.254,1.365-8.416,3.851c0,0-0.074,0.042-0.088,0.049c-0.102,0.04-0.201,0.082-0.33,0.142 L6.088,4.048L5.908,4.14c0,0-0.043,0.032-0.051,0.038C5.732,4.245,5.611,4.316,5.516,4.38L4.975,4.731v0.058 c-1.043,0.897-2.107,2.544-2.125,5.53c0,0,0.002,0.221,0.008,0.355c0.006,0.26,0.014,0.522,0.039,0.858l0,0l0.006,0.119 c0.018,0.194,0.037,0.393,0.07,0.65l0.084,0.609c-0.025,0.351-0.045,0.689-0.055,1.025c-0.148,0.088-0.277,0.184-0.396,0.293 c-0.055,0.051-0.107,0.11-0.15,0.166c-0.109,0.116-0.217,0.235-0.318,0.385c-0.049,0.072-0.094,0.154-0.139,0.237L1.93,15.142 c-0.049,0.085-0.096,0.17-0.141,0.269c-0.057,0.125-0.105,0.264-0.152,0.402l0.945,0.323l-0.984-0.215 c-0.023,0.061-0.045,0.122-0.066,0.191c-0.057,0.194-0.1,0.402-0.143,0.626l-0.029,0.14c-0.037,0.226-0.061,0.463-0.078,0.709 L1.27,17.703c-0.014,0.241-0.012,0.489-0.004,0.729v0.122l0.041,0.001l-0.039,0.002l0.004,0.159c0.18,2.729,1.537,4.709,3.225,4.709 l0.066-0.003c0.033,0.007,0.068,0.012,0.104,0.017l0.314,0.518h0.018c1.168,1.754,3.143,3.851,6.264,4.856 c0.137,0.088,0.277,0.173,0.42,0.254c0.105,0.06,0.211,0.116,0.322,0.173c0.189,0.096,0.383,0.184,0.566,0.259 c0.115,0.049,0.229,0.096,0.348,0.139c0.217,0.075,0.434,0.135,0.734,0.208c0.076,0.021,0.154,0.041,0.236,0.056 c0.363,0.067,0.697,0.1,1.018,0.1c0.369,0,0.715-0.029,1.049-0.071c0.1-0.012,0.199-0.027,0.301-0.044 c0.256-0.042,0.504-0.096,0.809-0.176l0.174-0.046c0.24-0.073,0.469-0.155,0.691-0.247l0.229-0.095l0.018-0.02 c1.295-0.59,2.434-1.545,3.477-2.911l0.057-0.075l0.09-0.18c0.49-0.765,0.957-1.572,1.398-2.416l0.01,0.018 c0,0,0.344-0.712,0.385-0.799c0.455,0.389,0.947,0.495,1.277,0.518l0.145,0.005c0.139,0,0.281-0.013,0.424-0.038l0.066,0.002 c1.689,0,3.045-1.98,3.227-4.714C28.734,18.665,28.738,18.451,28.736,18.376z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="-4272.6958" cy="-2826.3394" gradientTransform="matrix(0.4209 0 0 0.4195 1813.6772 1193.3445)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="50.7847">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M25.39,15.73c-0.051-0.023-0.109-0.029-0.166-0.046v-0.001c-0.01-0.003-0.02-0.004-0.031-0.006-0.084-0.021-0.164-0.041-0.25-0.045-10.46-1.8-15.26-7.599-15.62-6.064-0.289,1.219-3.221,3.863-4.758,5.179,0.014,0.062,0.02,0.111,0.035,0.171,0,0,0.053,0.271,0.168,0.729-0.121,0.014-0.24,0.039-0.355,0.088-0.979,0.413-1.285,2.014-0.684,3.58,0.596,1.563,1.873,2.502,2.852,2.089,0.061-0.025,0.113-0.067,0.166-0.104,0.566,1.277,1.268,2.646,2.119,4.018,1.432,1.7,3.623,3.694,6.043,3.694,2.93,0,4.719-1.601,5.951-3.216,0.035-0.069,0.064-0.132,0.1-0.188,0.912-1.426,1.652-2.856,2.252-4.188,0.955,0.331,2.182-0.559,2.791-2.063,0.63-1.56,0.36-3.18-0.61-3.62z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.8" x2="19.84" y1="30.4" y2="21.44">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M25.389,15.734c-0.051-0.023-0.109-0.029-0.166-0.046v-0.001c-0.01-0.003-0.02-0.004-0.031-0.006 c-0.084-0.021-0.164-0.041-0.25-0.045C14.48,13.817,9.682,8.021,9.32,9.556c-0.289,1.219-3.221,3.863-4.758,5.179 c0.014,0.062,0.02,0.111,0.035,0.171c0,0,0.053,0.271,0.168,0.729c-0.121,0.014-0.24,0.039-0.355,0.088 c-0.979,0.413-1.285,2.014-0.684,3.58c0.596,1.563,1.873,2.502,2.852,2.089c0.061-0.025,0.113-0.067,0.166-0.104 c0.566,1.277,1.268,2.646,2.119,4.018c1.432,1.7,3.623,3.694,6.043,3.694c2.93,0,4.719-1.601,5.951-3.216 c0.035-0.069,0.064-0.132,0.1-0.188c0.912-1.426,1.652-2.856,2.252-4.188c0.955,0.331,2.182-0.559,2.791-2.063 C26.633,17.789,26.357,16.172,25.389,15.734z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.7998" x2="19.8362" y1="30.4028" y2="21.437">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M14.48,28.18c-1.781,0-3.578-0.829-4.9-2.08,1.4,1.47,3.28,2.9,5.33,2.9,2.93,0,4.719-1.601,5.951-3.216,0.035-0.069,0.064-0.132,0.1-0.188,0.912-1.426,1.652-2.856,2.252-4.188-3.33,5.83-5.81,6.78-8.73,6.78z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.82" x2="14.82" y1="1.347" y2="14.65">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M14.477,28.181c-1.781,0-3.578-0.829-4.9-2.08C10.975,27.572,12.857,29,14.906,29 c2.93,0,4.719-1.601,5.951-3.216c0.035-0.069,0.064-0.132,0.1-0.188c0.912-1.426,1.652-2.856,2.252-4.188 C19.879,27.229,17.404,28.181,14.477,28.181z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.8223" x2="14.8223" y1="1.3467" y2="14.6545">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M14.62,1.151c-3.629,0-5.373,1.65-6.721,3.372-2.188,0.339-5.66,2.344-3.209,11.14,1.535-1.317,4.346-4.89,4.635-6.108,0.365-1.549,5.246,4.369,15.9,6.132,0.127-0.492,0.182-0.782,0.182-0.782,1.68-7.504-1.96-13.46-10.78-13.75z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.38" x2="7.317" y1="14.08" y2="6.919">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M14.615,1.151c-3.629,0-5.373,1.65-6.721,3.372c-2.188,0.339-5.66,2.344-3.209,11.141 c1.535-1.317,4.346-4.89,4.635-6.108c0.365-1.549,5.246,4.369,15.902,6.132c0.127-0.492,0.182-0.782,0.182-0.782 C27.078,7.396,23.438,1.444,14.615,1.151z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.375" x2="7.3168" y1="14.0776" y2="6.9192">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M9.332,8.835s5.217,6.854,15.82,6.842c0,0-4.99-0.79-15.82-6.845z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="6.228" x2="6.334" y1="5.526" y2="13.18">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M9.332,8.835c0,0,5.217,6.854,15.818,6.842C25.15,15.677,20.156,14.894,9.332,8.835z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="6.2285" x2="6.3344" y1="5.5264" y2="13.1843">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M8.076,5.032s-5.105,0.307-3.211,8.964c0,0-0.625-5.933,3.211-8.968z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="16.51" x2="16.14" y1="2.487" y2="5.956">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M8.076,5.032c0,0-5.105,0.307-3.211,8.964C4.865,13.996,4.24,8.067,8.076,5.032z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="16.5127" x2="16.1374" y1="2.4868" y2="5.9564">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M17.09,6.231c-2.377-0.338-6.398-2.445-7.977-1.694,0,0,5.16-5.888,14.27,0.818,0,0-2.17,1.464-6.29,0.876z" fill="url(#SVGID_6_)"/>
-<path d="M14.91,29c1.008,0,1.877-0.191,2.641-0.508,0.219-0.284,0.35-0.608,0.35-0.962,0-1.137-1.271-2.026-2.895-2.026-0.975,0-1.861,0.333-2.387,0.871-2.586-0.645-4.225-2.271-5.199-3.676,0.191,0.386,0.396,0.776,0.613,1.169,0.006,0.01,0.01,0.021,0.016,0.03,0.219,0.396,0.449,0.794,0.693,1.194,0.018,0.031,0.035,0.061,0.055,0.094,0.008,0.015,0.018,0.027,0.027,0.043,0.016,0.026,0.029,0.05,0.043,0.076,1.442,1.72,3.632,3.71,6.052,3.71z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M4.039,19.96c0.051,0.078,0.098,0.153,0.145,0.229,0.115,0.174,0.242,0.337,0.369,0.481,0.623,0.679,1.387,0.993,2.025,0.724,0.061-0.025,0.113-0.067,0.166-0.104,0.031,0.07,0.068,0.145,0.1,0.215,0.213-0.626,0.311-1.44,0.287-2.506-0.004-0.219-0.012-0.443-0.029-0.672-0.094-1.413-0.336-2.495-0.719-3.22l-0.041-0.581,0.008-0.197c0.086-6.517,3.539-10.9,8.59-10.9,5.088,0,8.543,4.423,8.596,11.01l0.006,0.054-0.059,0.897c-0.307,0.713-0.502,1.701-0.586,2.943-0.018,0.229-0.023,0.453-0.033,0.712-0.02,1.024,0.08,1.843,0.293,2.477,0.016-0.035,0.035-0.07,0.049-0.105,0.75,0.259,1.664-0.238,2.318-1.189,0.088-0.126,0.17-0.264,0.252-0.403,0.076-0.151,0.152-0.304,0.221-0.471,0.633-1.556,0.357-3.173-0.611-3.61-0.051-0.023-0.109-0.029-0.166-0.046v-0.001c0.127-0.492,0.182-0.782,0.182-0.782,0.063-0.284,0.117-0.566,0.164-0.848,0.014-0.076,0.025-0.157,0.039-0.235,0.035-0.214,0.064-0.429,0.09-0.642,0.008-0.068,0.014-0.139,0.021-0.207,0.061-0.561,0.086-1.11,0.078-1.646,0-0.048-0.002-0.097-0.004-0.144-0.004-0.243-0.014-0.48-0.037-0.717,0-0.027-0.002-0.055-0.004-0.082-0.047-0.539-0.127-1.063-0.242-1.571-0.006-0.024-0.014-0.05-0.021-0.074-0.057-0.244-0.119-0.484-0.193-0.721-0.002-0.004-0.004-0.01-0.004-0.01-0.463-1.186-1.051-2.256-1.75-3.196l-0.002-0.002c-0.461-0.538-0.99-1.023-1.584-1.456-0.006-0.005-0.014-0.01-0.02-0.016-0.287-0.203-0.588-0.393-0.902-0.572-0.029-0.016-0.057-0.029-0.084-0.045-0.305-0.169-0.629-0.327-0.965-0.471-0.041-0.017-0.082-0.035-0.125-0.054-0.332-0.137-0.68-0.263-1.039-0.376-0.053-0.017-0.104-0.031-0.154-0.046-0.363-0.107-0.738-0.206-1.133-0.285-0.051-0.011-0.102-0.022-0.154-0.031-0.402-0.079-0.818-0.146-1.246-0.196-0.039-0.005-0.078-0.007-0.119-0.013-0.451-0.049-0.916-0.084-1.398-0.1-3.629,0-5.373,1.65-6.721,3.372-0.171,0.028-0.321,0.059-0.478,0.098l-0.02,0.004c-0.151,0.041-0.304,0.088-0.462,0.146-0.006,0.002-0.012,0.002-0.018,0.006-0.158,0.06-0.316,0.127-0.476,0.208-0.004,0.003-0.008,0.003-0.01,0.004-0.162,0.084-0.322,0.18-0.48,0.287v0.003c-0.977,1.45-1.701,3.185-2.127,5.142,0,0.349,0.014,0.72,0.049,1.107v0.011c0.018,0.192,0.035,0.389,0.061,0.587,0.002,0.02,0.006,0.038,0.008,0.057,0.023,0.187,0.049,0.377,0.08,0.574,0.004,0.037,0.012,0.078,0.016,0.117,0.031,0.179,0.061,0.361,0.1,0.549,0.01,0.064,0.023,0.131,0.037,0.196,0.031,0.169,0.064,0.333,0.102,0.508,0.023,0.101,0.053,0.207,0.074,0.311,0.033,0.146,0.066,0.286,0.104,0.435,0.063,0.256,0.131,0.516,0.207,0.783-0.094,0.015-0.186,0.035-0.273,0.073-0.979,0.413-1.285,2.014-0.684,3.58,0.063,0.167,0.137,0.324,0.217,0.477,0.029,0.05,0.06,0.11,0.093,0.17zm0.719-4.36c0.002,0.013,0.006,0.023,0.008,0.036-0.02,0.002-0.041,0.007-0.061,0.01,0.016-0.02,0.035-0.04,0.053-0.05z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="4.57" x2="15.58" y1="24.34" y2="24.34">
-<stop offset="0" stop-color="#464646"/>
-<stop offset="0.4727" stop-color="#BFC1C1"/>
-<stop offset="1" stop-color="#E6E9E8"/>
+<path d="M17.088,6.231c-2.377-0.338-6.398-2.445-7.977-1.694c0,0,5.16-5.888,14.27,0.818 C23.381,5.355,21.211,6.819,17.088,6.231z" fill="url(#SVGID_6_)"/>
+<path d="M14.906,29c1.008,0,1.877-0.191,2.641-0.508c0.219-0.284,0.35-0.608,0.35-0.962 c0-1.137-1.271-2.026-2.895-2.026c-0.975,0-1.861,0.333-2.387,0.871c-2.586-0.645-4.225-2.271-5.199-3.676 c0.191,0.386,0.396,0.776,0.613,1.169c0.006,0.01,0.01,0.021,0.016,0.03c0.219,0.396,0.449,0.794,0.693,1.194l0,0 c0.018,0.031,0.035,0.061,0.055,0.094c0.008,0.015,0.018,0.027,0.027,0.043c0.016,0.026,0.029,0.05,0.043,0.076 C10.295,27.006,12.486,29,14.906,29z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M4.039,19.958c0.051,0.078,0.098,0.153,0.145,0.229c0.115,0.174,0.242,0.337,0.369,0.481l0,0 c0.623,0.679,1.387,0.993,2.025,0.724c0.061-0.025,0.113-0.067,0.166-0.104c0.031,0.07,0.068,0.145,0.1,0.215 c0.213-0.626,0.311-1.44,0.287-2.506c-0.004-0.219-0.012-0.443-0.029-0.672c-0.094-1.413-0.336-2.495-0.719-3.22l-0.041-0.581 l0.008-0.197C6.436,7.803,9.889,3.421,14.943,3.421c5.088,0,8.543,4.423,8.596,11.01l0.006,0.054l-0.059,0.897 c-0.307,0.713-0.502,1.701-0.586,2.943c-0.018,0.229-0.023,0.453-0.033,0.712c-0.02,1.024,0.08,1.843,0.293,2.477 c0.016-0.035,0.035-0.07,0.049-0.105c0.75,0.259,1.664-0.238,2.318-1.189l0,0c0.088-0.126,0.17-0.264,0.252-0.403 c0.076-0.151,0.152-0.304,0.221-0.471c0.633-1.556,0.357-3.173-0.611-3.61c-0.051-0.023-0.109-0.029-0.166-0.046v-0.001 c0.127-0.492,0.182-0.782,0.182-0.782c0.063-0.284,0.117-0.566,0.164-0.848c0.014-0.076,0.025-0.157,0.039-0.235 c0.035-0.214,0.064-0.429,0.09-0.642c0.008-0.068,0.014-0.139,0.021-0.207c0.061-0.561,0.086-1.11,0.078-1.646 c0-0.048-0.002-0.097-0.004-0.144c-0.004-0.243-0.014-0.48-0.037-0.717c0-0.027-0.002-0.055-0.004-0.082 c-0.047-0.539-0.127-1.063-0.242-1.571c-0.006-0.024-0.014-0.05-0.021-0.074c-0.057-0.244-0.119-0.484-0.193-0.721 c-0.002-0.004-0.004-0.01-0.004-0.01c-0.463-1.186-1.051-2.256-1.75-3.196c-0.002-0.002-0.002-0.002-0.002-0.002 c-0.461-0.538-0.99-1.023-1.584-1.456c-0.006-0.005-0.014-0.01-0.02-0.016c-0.287-0.203-0.588-0.393-0.902-0.572 c-0.029-0.016-0.057-0.029-0.084-0.045c-0.305-0.169-0.629-0.327-0.965-0.471c-0.041-0.017-0.082-0.035-0.125-0.054 c-0.332-0.137-0.68-0.263-1.039-0.376c-0.053-0.017-0.104-0.031-0.154-0.046c-0.363-0.107-0.738-0.206-1.133-0.285 c-0.051-0.011-0.102-0.022-0.154-0.031c-0.402-0.079-0.818-0.146-1.246-0.196c-0.039-0.005-0.078-0.007-0.119-0.013 c-0.451-0.049-0.916-0.084-1.398-0.1c-3.629,0-5.373,1.65-6.721,3.372C7.748,4.545,7.598,4.576,7.441,4.615l-0.02,0.004 C7.27,4.66,7.117,4.707,6.959,4.765C6.953,4.767,6.947,4.767,6.941,4.771C6.783,4.831,6.625,4.898,6.465,4.979 c-0.004,0.003-0.008,0.003-0.01,0.004c-0.162,0.084-0.322,0.18-0.48,0.287v0.003c-0.977,1.45-1.701,3.185-2.127,5.142 c0,0.349,0.014,0.72,0.049,1.107c0,0.006,0,0.011,0,0.011c0.018,0.192,0.035,0.389,0.061,0.587c0.002,0.02,0.006,0.038,0.008,0.057 c0.023,0.187,0.049,0.377,0.08,0.574c0.004,0.037,0.012,0.078,0.016,0.117c0.031,0.179,0.061,0.361,0.1,0.549 c0.01,0.064,0.023,0.131,0.037,0.196c0.031,0.169,0.064,0.333,0.102,0.508c0.023,0.101,0.053,0.207,0.074,0.311 c0.033,0.146,0.066,0.286,0.104,0.435c0.063,0.256,0.131,0.516,0.207,0.783c-0.094,0.015-0.186,0.035-0.273,0.073 c-0.979,0.413-1.285,2.014-0.684,3.58c0.063,0.167,0.137,0.324,0.217,0.477C3.975,19.841,4.006,19.9,4.039,19.958z M4.758,15.599 c0.002,0.013,0.006,0.023,0.008,0.036c-0.02,0.002-0.041,0.007-0.061,0.01C4.721,15.63,4.74,15.614,4.758,15.599z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="4.5703" x2="15.5801" y1="24.3438" y2="24.3438">
+<stop offset="0" style="stop-color:#464646"/>
+<stop offset="0.4727" style="stop-color:#BFC1C1"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
-<path d="M15,28.4c-7.861,0-10.38-7.274-10.4-7.347-0.104-0.304,0.061-0.633,0.367-0.732,0.303-0.102,0.631,0.062,0.732,0.364,0.088,0.268,2.289,6.558,9.301,6.558,0.318,0,0.578,0.261,0.578,0.579,0,0.32-0.26,0.58-0.58,0.58z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="4.58" x2="15.58" y1="24.63" y2="24.63">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.7394" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M15.002,28.398c-7.861,0-10.377-7.274-10.4-7.347c-0.104-0.304,0.061-0.633,0.367-0.732 c0.303-0.102,0.631,0.062,0.732,0.364c0.088,0.268,2.289,6.558,9.301,6.558c0.318,0,0.578,0.261,0.578,0.579 C15.58,28.142,15.32,28.398,15.002,28.398L15.002,28.398z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="4.5801" x2="15.5801" y1="24.6323" y2="24.6323">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.7394" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M15,27.82c-7.535,0-9.852-6.954-9.852-6.954h-0.568c0,0.064,0,0.124,0.021,0.186,0.023,0.072,2.539,7.347,10.4,7.347,0.318,0,0.578-0.257,0.578-0.578h-0.578z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.94" x2="14.94" y1="15.6" y2="2.958">
-<stop offset="0" stop-color="#3A3A3A"/>
-<stop offset="0.0424" stop-color="#818283"/>
-<stop offset="0.3333" stop-color="#59595A"/>
-<stop offset="1" stop-color="#A8A9AA"/>
+<path d="M15.002,27.82c-7.535,0-9.852-6.954-9.852-6.954H4.58c0,0.064,0,0.124,0.021,0.186 c0.023,0.072,2.539,7.347,10.4,7.347c0.318,0,0.578-0.257,0.578-0.578H15.002z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9443" x2="14.9443" y1="15.605" y2="2.9585">
+<stop offset="0" style="stop-color:#3A3A3A"/>
+<stop offset="0.0424" style="stop-color:#818283"/>
+<stop offset="0.3333" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#A8A9AA"/>
</linearGradient>
-<path d="M25.43,14.49c-0.01-8.527-4.396-12.75-10.43-12.75s-10.42,4.225-10.43,12.75v-0.005,0.005l-0.193,5.98,1.77-0.114-0.387-5.834c0.021-7.47,4.131-11.68,9.182-11.68,5.049,0,9.156,4.212,9.18,11.68l-0.381,5.838,1.768,0.114-0.08-5.98z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="14.94" x2="14.94" y1="10.89" y2="1.388">
-<stop offset="0" stop-color="#9E9FA0"/>
-<stop offset="0.0545" stop-color="#9E9FA0"/>
-<stop offset="0.3333" stop-color="#898A8B"/>
-<stop offset="1" stop-color="#E5E9E7"/>
+<path d="M25.432,14.492L25.432,14.492L25.432,14.492c-0.01-8.527-4.396-12.747-10.43-12.747 S4.58,5.965,4.572,14.492l0,0l0,0c0,0.006,0-0.005,0-0.005v0.005l-0.193,5.98l1.77-0.114l-0.387-5.834 c0.021-7.47,4.131-11.683,9.182-11.683c5.049,0,9.156,4.212,9.18,11.679l-0.381,5.838l1.768,0.114L25.432,14.492L25.432,14.492 C25.432,14.492,25.432,14.498,25.432,14.492z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="14.9434" x2="14.9434" y1="10.8926" y2="1.3884">
+<stop offset="0" style="stop-color:#9E9FA0"/>
+<stop offset="0.0545" style="stop-color:#9E9FA0"/>
+<stop offset="0.3333" style="stop-color:#898A8B"/>
+<stop offset="1" style="stop-color:#E5E9E7"/>
</linearGradient>
-<path d="M25.9,14.55h-0.002c-0.02-8.524-4.92-13.55-10.96-13.55-6.026,0-10.94,5.026-10.95,13.55v0.026h0.002l0.578,0.495c0.19-8.243,4.455-13.34,10.37-13.34,5.922,0,10.3,5.084,10.49,13.33l0.461-0.495h0.002l-0.002-0.011,0.01-0.02z" fill="url(#SVGID_10_)"/>
-<path d="M4.635,13.91c-0.041,0-0.086,0-0.129,0.004-0.166,0.012-0.332,0.048-0.492,0.101-0.008,0.181-0.021,0.351-0.021,0.535v0.026h0.002l0.086,1.333,0.135-0.009,0.088-0.037c0.092-0.036,0.188-0.062,0.332-0.067,0.693,0,1.172,1.212,1.311,3.328,0.014,0.191,0.021,0.38,0.023,0.564h0.133l-0.34-5.167c0-0.07,0.01-0.136,0.01-0.205-0.324-0.25-0.701-0.39-1.138-0.39z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5.701,20.68c-0.102-0.303-0.43-0.466-0.732-0.364-0.307,0.1-0.471,0.429-0.367,0.732,0.008,0.023,0.289,0.831,0.941,1.904,0.371-0.112,0.682-0.33,0.926-0.663-0.51-0.87-0.742-1.52-0.768-1.61z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(-1.1528 0.0088 -0.0088 1.0194 -260.3646 8.1097)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-229.9" x2="-229.9" y1="6.79" y2="15.89">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.8303" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M25.895,14.554h-0.002C25.885,6.026,20.977,1,14.943,1C8.914,1,4.002,6.026,3.992,14.554v0.009 v0.017h0.002l0.578,0.495C4.762,6.837,9.027,1.745,14.943,1.745c5.922,0,10.303,5.084,10.488,13.329l0.461-0.495h0.002l-0.002-0.011 L25.895,14.554z" fill="url(#SVGID_10_)"/>
+<path d="M4.635,13.914c-0.041,0-0.086,0-0.129,0.004c-0.166,0.012-0.332,0.048-0.492,0.101 c-0.008,0.181-0.021,0.351-0.021,0.535v0.009v0.017h0.002l0.086,1.333l0.135-0.009l0.088-0.037c0.092-0.036,0.188-0.062,0.332-0.067 c0.693,0,1.172,1.212,1.311,3.328c0.014,0.191,0.021,0.38,0.023,0.564h0.133l-0.34-5.167c0-0.07,0.01-0.136,0.01-0.205 C5.449,14.052,5.072,13.914,4.635,13.914z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M5.701,20.684c-0.102-0.303-0.43-0.466-0.732-0.364c-0.307,0.1-0.471,0.429-0.367,0.732 c0.008,0.023,0.289,0.831,0.941,1.904c0.371-0.112,0.682-0.33,0.926-0.663C5.959,21.424,5.727,20.767,5.701,20.684z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(-1.1528 0.0088 -0.0088 1.0194 -260.3646 8.1097)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-229.8506" x2="-229.8506" y1="6.7896" y2="15.8948">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.8303" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M2.451,18.63c0.146,2.2,1.32,3.912,2.621,3.826,1.301-0.087,1.596-1.895,1.451-4.094-0.143-2.199-0.676-3.955-1.977-3.868s-2.239,1.93-2.095,4.13z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -239.0674 0)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-243.1" x2="-243.1" y1="14.31" y2="22.53">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M2.451,18.632c0.146,2.2,1.32,3.912,2.621,3.826c1.301-0.087,1.596-1.895,1.451-4.094 c-0.143-2.199-0.676-3.955-1.977-3.868S2.307,16.433,2.451,18.632z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -239.0674 0)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-243.1118" x2="-243.1118" y1="14.311" y2="22.5257">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M2.27,18.65c0.143,2.158,1.172,3.849,2.301,3.772,1.131-0.074,1.371-1.848,1.229-4.004-0.143-2.159-0.615-3.885-1.744-3.811-1.128,0.07-1.929,1.88-1.786,4.04z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -239.0674 0)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-242.6" x2="-242.6" y1="14.1" y2="22.14">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.3515" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M2.27,18.649c0.143,2.158,1.172,3.849,2.301,3.772c1.131-0.074,1.371-1.848,1.229-4.004 c-0.143-2.159-0.615-3.885-1.744-3.811C2.928,14.684,2.127,16.491,2.27,18.649z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -239.0674 0)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-242.6147" x2="-242.6147" y1="14.103" y2="22.1363">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.3515" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M3.678,14.94c0.625,0.681,0.889,2.033,0.949,3.574,0.053,1.407-0.047,2.636-0.531,3.396-0.828-0.358-1.516-1.714-1.625-3.381-0.114-1.7,0.408-3.16,1.207-3.59z" fill="url(#SVGID_13_)"/>
-<path d="M4.055,15.33c0.006,0,0.014,0.002,0.014,0.002,0.158-0.063,0.316-0.101,0.479-0.112,1.301-0.086,1.834,1.669,1.977,3.867,0.014,0.198,0.021,0.394,0.027,0.586,0.012-0.414,0.002-0.853-0.027-1.311-0.143-2.199-0.676-3.955-1.977-3.868-0.162,0.009-0.32,0.05-0.471,0.113,0,0-0.016-0.002-0.021-0.002-1.105,0.072-1.889,1.809-1.789,3.903,0.087-1.76,0.815-3.11,1.788-3.18z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M25.37,13.91c-0.488,0-0.902,0.172-1.25,0.507,0.002,0.033,0.006,0.066,0.006,0.1l-0.338,5.171h0.246c0.006-0.185,0.014-0.373,0.025-0.564,0.139-2.113,0.615-3.327,1.359-3.327h0.004c0.092,0.005,0.188,0.03,0.281,0.066l0.086,0.037,0.02,0.002,0.086-1.326h0.002l-0.002-0.011,0.002-0.015h-0.002c0-0.195-0.016-0.377-0.02-0.569-0.123-0.034-0.248-0.06-0.379-0.066-0.05-0.01-0.09-0.01-0.13-0.01z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1.1528 0.0088 0.0088 1.0194 453.5628 8.1097)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-371.4" x2="-371.4" y1="8.012" y2="17.12">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.8303" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M3.678,14.938c0.625,0.681,0.889,2.033,0.949,3.574c0.053,1.407-0.047,2.636-0.531,3.396 c-0.828-0.358-1.516-1.714-1.625-3.381C2.357,16.833,2.879,15.374,3.678,14.938z" fill="url(#SVGID_13_)"/>
+<path d="M4.055,15.332c0.006,0,0.014,0.002,0.014,0.002c0.158-0.063,0.316-0.101,0.479-0.112 c1.301-0.086,1.834,1.669,1.977,3.867c0.014,0.198,0.021,0.394,0.027,0.586c0.012-0.414,0.002-0.853-0.027-1.311 c-0.143-2.199-0.676-3.955-1.977-3.868c-0.162,0.009-0.32,0.05-0.471,0.113c0,0-0.016-0.002-0.021-0.002 c-1.105,0.072-1.889,1.809-1.789,3.903C2.354,16.754,3.082,15.397,4.055,15.332z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M25.367,13.914c-0.488,0-0.902,0.172-1.25,0.507c0.002,0.033,0.006,0.066,0.006,0.1 l-0.338,5.171h0.246c0.006-0.185,0.014-0.373,0.025-0.564c0.139-2.113,0.615-3.327,1.359-3.327h0.004 c0.092,0.005,0.188,0.03,0.281,0.066l0.086,0.037l0.02,0.002l0.086-1.326h0.002l-0.002-0.011l0.002-0.015h-0.002 c0-0.195-0.016-0.377-0.02-0.569c-0.123-0.034-0.248-0.06-0.379-0.066C25.451,13.914,25.408,13.914,25.367,13.914z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1.1528 0.0088 0.0088 1.0194 453.5628 8.1097)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-371.4248" x2="-371.4248" y1="8.0117" y2="17.117">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.8303" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M27.55,18.63c-0.146,2.2-1.318,3.912-2.619,3.826-1.303-0.087-1.598-1.895-1.453-4.094s0.676-3.955,1.979-3.868c1.3,0.08,2.24,1.93,2.09,4.13z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 432.2656 0)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-406.3" x2="-406.3" y1="14.31" y2="22.53">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M27.551,18.632c-0.146,2.2-1.318,3.912-2.619,3.826c-1.303-0.087-1.598-1.895-1.453-4.094 s0.676-3.955,1.979-3.868C26.758,14.583,27.695,16.433,27.551,18.632z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 432.2656 0)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-406.3081" x2="-406.3081" y1="14.311" y2="22.5257">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M27.73,18.65c-0.143,2.158-1.172,3.849-2.301,3.772-1.129-0.074-1.373-1.848-1.227-4.004,0.139-2.159,0.613-3.885,1.742-3.811,1.14,0.07,1.93,1.88,1.79,4.04z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 432.2656 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-405.8" x2="-405.8" y1="14.1" y2="22.14">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.3515" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M27.732,18.649c-0.143,2.158-1.172,3.849-2.301,3.772c-1.129-0.074-1.373-1.848-1.227-4.004 c0.139-2.159,0.613-3.885,1.742-3.811C27.076,14.684,27.873,16.491,27.732,18.649z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 432.2656 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-405.8105" x2="-405.8105" y1="14.103" y2="22.1363">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.3515" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M26.32,14.94c-0.621,0.681-0.889,2.033-0.947,3.574-0.051,1.407,0.049,2.636,0.531,3.396,0.83-0.358,1.516-1.714,1.625-3.381,0.12-1.7-0.4-3.16-1.2-3.59z" fill="url(#SVGID_16_)"/>
-<path d="M25.95,15.33l-0.021,0.002c-0.15-0.063-0.307-0.101-0.469-0.112-1.303-0.086-1.834,1.669-1.979,3.867-0.016,0.198-0.021,0.394-0.025,0.586-0.016-0.414-0.004-0.853,0.025-1.311,0.145-2.199,0.676-3.955,1.979-3.868,0.162,0.009,0.318,0.05,0.469,0.113l0.021-0.002c1.104,0.072,1.891,1.809,1.789,3.903-0.09-1.76-0.82-3.11-1.79-3.18z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="15" x2="15" y1="26.01" y2="28.97">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M26.322,14.938c-0.621,0.681-0.889,2.033-0.947,3.574c-0.051,1.407,0.049,2.636,0.531,3.396 c0.83-0.358,1.516-1.714,1.625-3.381C27.643,16.833,27.123,15.374,26.322,14.938z" fill="url(#SVGID_16_)"/>
+<path d="M25.947,15.332l-0.021,0.002c-0.15-0.063-0.307-0.101-0.469-0.112 c-1.303-0.086-1.834,1.669-1.979,3.867c-0.016,0.198-0.021,0.394-0.025,0.586c-0.016-0.414-0.004-0.853,0.025-1.311 c0.145-2.199,0.676-3.955,1.979-3.868c0.162,0.009,0.318,0.05,0.469,0.113l0.021-0.002c1.104,0.072,1.891,1.809,1.789,3.903 C27.648,16.754,26.922,15.397,25.947,15.332z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="15.002" x2="15.002" y1="26.0142" y2="28.9689">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<ellipse cx="15" cy="27.53" fill="url(#SVGID_17_)" rx="2.316" ry="1.449"/>
+<ellipse cx="15.002" cy="27.53" fill="url(#SVGID_17_)" rx="2.316" ry="1.449"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_car.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_car.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<path d="M27.61,11.99l-1.636-5.233c-0.38-1.531-2.51-3.757-4.97-3.757h-12c-2.461,0-4.588,2.226-4.955,3.701l-1.652,5.291c-0.846,0.74-1.393,1.81-1.393,3.01v6c0,0.883,0.391,1.67,1,2.22v1.78c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.9,2.25-2v-1h12v1c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.897,2.25-2v-1.78c0.609-0.55,1-1.337,1-2.22v-6c0-1.2-0.55-2.28-1.39-3.01z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="5.5" x2="5.5" y1="22" y2="26">
@@ -102,4 +104,4 @@
<path d="M22,21h-14c-1.1,0-2,0.9-2,2h18c0-1.1-0.9-2-2-2z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_duration.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_duration.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,105 +1,81 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2268.4766" x2="-2264.6106" y1="-3735.1396" y2="-3735.1396">
+<stop offset="0" style="stop-color:#7D7F80"/>
+<stop offset="0.5091" style="stop-color:#BABEBD"/>
+<stop offset="1" style="stop-color:#828585"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<rect fill="url(#SVGID_1_)" height="7.185" width="4.074" x="27.964" y="5.25"/>
+<rect fill-opacity="0.2" height="3.276" stroke-opacity="0.2" width="4.074" x="27.964" y="5.909"/>
+<rect fill-opacity="0.2" height="3.275" stroke-opacity="0.2" width="4.074" x="27.964" y="5.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2269.7334" x2="-2263.386" y1="-3739.0508" y2="-3739.0508">
+<stop offset="0" style="stop-color:#AAADAD"/>
+<stop offset="0.5" style="stop-color:#D3D7D5"/>
+<stop offset="1" style="stop-color:#959898"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<rect fill="url(#SVGID_2_)" height="5.864" width="6.688" x="26.655" y="2"/>
+<rect fill="#FFFFFF" fill-opacity="0.35" height="0.661" stroke-opacity="0.35" width="6.688" x="26.655" y="2"/>
+<linearGradient gradientTransform="matrix(0.6906 0.369 -0.4713 0.882 1428.1566 3995.4771)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3961.1157" x2="-3958.5808" y1="-2859.4375" y2="-2859.4375">
+<stop offset="0" style="stop-color:#7D7F80"/>
+<stop offset="0.5091" style="stop-color:#BABEBD"/>
+<stop offset="1" style="stop-color:#828585"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
-<rect fill="none" height="60" width="60"/>
-<g transform="matrix(1 0 0 1 30 30)">
-<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15c8.27,0,15,6.729,15,15s-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1.195" y2="28.87">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<polygon fill="url(#SVGID_3_)" points="40.979,14.854 39.139,13.869 41.357,9.715 43.202,10.7 "/>
+<rect fill-opacity="0.2" height="2.147" stroke-opacity="0.2" transform="matrix(-0.8823 -0.4706 0.4706 -0.8823 72.8173 41.2729)" width="2.087" x="40.525" y="10.46"/>
+<rect fill-opacity="0.2" height="2.148" stroke-opacity="0.2" transform="matrix(-0.8824 -0.4706 0.4706 -0.8824 73.3945 40.6563)" width="2.092" x="40.733" y="10.08"/>
+<linearGradient gradientTransform="matrix(0.6906 0.369 -0.4713 0.882 1428.1566 3995.4771)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-3961.9404" x2="-3957.7771" y1="-2862.001" y2="-2862.001">
+<stop offset="0" style="stop-color:#AAADAD"/>
+<stop offset="0.5" style="stop-color:#D3D7D5"/>
+<stop offset="1" style="stop-color:#959898"/>
</linearGradient>
-<path d="M15,29c-7.719,0-14-6.28-14-14s6.281-14,14-14c7.72,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.584" y2="28.55">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.2364" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#6C6F70"/>
+<polygon fill="url(#SVGID_4_)" points="42.984,12.528 39.958,10.91 41.77,7.521 44.798,9.139 "/>
+<rect fill="#FFFFFF" fill-opacity="0.35" height="3.432" stroke-opacity="0.35" transform="matrix(0.4701 -0.8826 0.8826 0.4701 15.3612 42.6281)" width="0.432" x="42.967" y="6.805"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2266.5205" x2="-2266.5205" y1="-3732.8804" y2="-3686.0859">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="1" style="stop-color:#939696"/>
</linearGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_2__)" r="13.61"/>
-<path d="M15.47,15.48c4.559,0,8.961-0.286,13.13-0.81-0.18-7.365-6.19-13.28-13.6-13.28-7.36,0-13.36,5.847-13.6,13.15,4.446,0.6,9.17,0.94,14.07,0.94z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="1.519" x2="28.68" y1="8.292" y2="8.292">
-<stop offset="0" stop-color="#C2C5C4"/>
-<stop offset="0.2" stop-color="#F9FDFA"/>
-<stop offset="0.8" stop-color="#F9FDFA"/>
-<stop offset="1" stop-color="#CFD3D1"/>
+<circle cx="29.999" cy="34.382" fill="url(#SVGID_5_)" r="23.618"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2266.519" x2="-2266.519" y1="-3731.5786" y2="-3687.4014">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="1" style="stop-color:#6C6F70"/>
</linearGradient>
-<path d="M15,1.778c7.453,0,13.5,5.99,13.6,13.42,0.002-0.063,0.007-0.129,0.007-0.194,0-7.517-6.095-13.61-13.61-13.61-7.518-0.011-13.61,6.083-13.61,13.6,0,0.065,0.003,0.131,0.005,0.194,0.104-7.421,6.154-13.41,13.61-13.41z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="27.25" y2="2.991">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
-</linearGradient>
-<path d="M15,27.06c-6.648,0-12.06-5.41-12.06-12.06s5.408-12.06,12.06-12.06c6.648,0,12.06,5.406,12.06,12.06s-5.41,12.06-12.06,12.06z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="26.33" y2="3.037">
-<stop offset="0" stop-color="#FAF9F9"/>
-<stop offset="0.4" stop-color="#FAF9F9"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M30,56.68c-12.295,0-22.297-10.005-22.297-22.299S17.705,12.084,30,12.084 c12.296,0,22.298,10.003,22.298,22.297S42.296,56.68,30,56.68L30,56.68z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2266.5195" x2="-2266.5195" y1="-3689.3555" y2="-3729.4453">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M15,26.67c-6.434,0-11.67-5.24-11.67-11.67s5.233-11.67,11.67-11.67,11.67,5.234,11.67,11.67-5.24,11.67-11.67,11.67z" fill="url(#SVGID_5__)"/>
-<path d="M15,15.83c3.849,0,7.521-0.322,10.89-0.905-0.04-5.964-4.91-10.81-10.89-10.81-5.979,0-10.85,4.845-10.89,10.82,3.369,0.58,7.04,0.9,10.89,0.9z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
-<rect fill="#404041" height="2.335" width="0.777" x="14.61" y="4.396"/>
-<rect fill="#404041" height="2.333" width="0.777" x="14.61" y="23.84"/>
-<rect fill="#404041" height="0.779" width="2.333" x="23.56" y="14.9"/>
-<rect fill="#404041" height="0.779" width="2.332" x="4.111" y="14.9"/>
-<rect fill="#404041" height="1.88" transform="matrix(0.4993 0.8664 -0.8664 0.4993 20.7592 -15.0708)" width="0.628" x="23.11" y="9.486"/>
-<rect fill="#404041" height="1.88" transform="matrix(0.4968 0.8679 -0.8679 0.4968 20.7962 4.4286)" width="0.629" x="6.265" y="19.21"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.8671 0.4981 -0.4981 0.8671 6.0604 -8.9813)" width="0.627" x="19.55" y="5.926"/>
-<rect fill="#404041" height="1.884" transform="matrix(0.8674 0.4977 -0.4977 0.8674 13.1416 -1.9014)" width="0.626" x="9.825" y="22.76"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.8675 -0.4975 0.4975 0.8675 -2.0724 5.954)" width="0.628" x="9.825" y="5.926"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.8678 -0.497 0.497 0.8678 -9.1555 13.0056)" width="0.627" x="19.55" y="22.77"/>
-<rect fill="#404041" height="1.884" transform="matrix(0.497 -0.8678 0.8678 0.497 -5.7368 10.9541)" width="0.627" x="6.267" y="9.483"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.4991 -0.8665 0.8665 0.4991 -5.7273 30.3844)" width="0.63" x="23.1" y="19.21"/>
-<path d="M15.95,15.55c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418-1.117-0.34-1.392,4.587c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148l-5.989,6,0.505,0.506,5.978-5.979c0.129,0.063,0.273,0.102,0.427,0.102,0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389h-9.157z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 409.6663 189.0642)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="-428.3" x2="-428.3" y1="-57.43" y2="-51.44">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M30,54.305c-10.986,0-19.923-8.937-19.923-19.924c0-10.986,8.936-19.922,19.923-19.922 c10.986,0,19.923,8.934,19.923,19.922C49.923,45.366,40.986,54.305,30,54.305L30,54.305z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-2340.0537" cy="-3826.6226" gradientTransform="matrix(0.9438 0 0 0.9438 2238.5432 3680.6506)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="74.2208">
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#818283"/>
+</radialGradient>
+<path d="M30,53.661c-10.632,0-19.28-8.647-19.28-19.28c0-10.63,8.648-19.279,19.28-19.279 s19.279,8.648,19.279,19.279C49.279,45.014,40.632,53.661,30,53.661L30,53.661z" fill="url(#SVGID_8_)"/>
+<path d="M30,35.759c6.357,0,12.43-0.534,17.991-1.499 C47.925,24.393,39.884,16.388,30,16.388c-9.882,0-17.927,8.005-17.991,17.874C17.573,35.225,23.64,35.759,30,35.759z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#404041" height="3.855" width="1.287" x="29.356" y="16.86"/>
+<rect fill="#404041" height="3.857" width="1.287" x="29.356" y="48.994"/>
+<rect fill="#404041" height="1.284" width="3.855" x="44.139" y="34.214"/>
+<rect fill="#404041" height="1.284" width="3.854" x="12.007" y="34.214"/>
+<path d="M42.059,34.889H31.407c-0.25-0.14-0.458-0.193-0.458-0.193 V19.562h-0.644v15.133c-0.092,0.021-0.238,0.088-0.402,0.193h-3.074v1.137h2.252c-0.017,0.084-0.031,0.168-0.031,0.261 c0,0.965,0.791,1.465,1.256,1.56v4.209h0.644v-4.209c0.083-0.018,1.284-0.283,1.284-1.574c0-0.092-0.019-0.166-0.029-0.248h9.854 V34.889L42.059,34.889z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-2262.7349" x2="-2262.7349" y1="-3709.355" y2="-3709.0774">
+<stop offset="0" style="stop-color:#373737"/>
+<stop offset="0.3152" style="stop-color:#373737"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<polygon fill="url(#SVGID_6__)" points="17.03,10.1,15.92,9.763,14.22,15.34,15.34,15.68"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="8.38" x2="15.22" y1="21.75" y2="14.91">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<rect fill="url(#SVGID_9_)" height="1.135" width="15.224" x="26.173" y="34.229"/>
+<linearGradient gradientTransform="matrix(0 -1 1 0 2394.1406 1590.2969)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="1560.8965" x2="1560.8965" y1="-2364.5513" y2="-2363.6135">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#763242"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="15.48,15.16,14.97,14.66,8.091,21.54,8.596,22.04"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.31" x2="18.31" y1="14.94" y2="15.51">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#763242"/>
+<path d="M29.679,18.155V33.29c-0.732,0.149-1.284,0.797-1.284,1.573c0,0.779,0.552,1.427,1.284,1.574v4.209 h0.645v-4.209c0.734-0.147,1.283-0.795,1.283-1.574c0-0.776-0.549-1.424-1.283-1.573V18.155H29.679z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2296.5195 3743.9824)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-2266.5195" x2="-2266.5195" y1="-3710.1396" y2="-3708.0024">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="1" style="stop-color:#BC7A73"/>
</linearGradient>
-<path d="M25.11,15h-9.158c-0.091-0.442-0.482-0.778-0.953-0.778s-0.86,0.34-0.95,0.78h-2.55v0.389h2.55c0.089,0.443,0.48,0.778,0.951,0.778s0.862-0.335,0.953-0.778h9.158v-0.39z" fill="url(#SVGID_8_)"/>
-<circle cx="15" cy="15.19" fill="#DABEB1" r="0.583"/>
-<rect fill="none" height="30" width="30"/>
+<circle cx="30" cy="34.863" fill="url(#SVGID_11_)" r="0.964"/>
+<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,294 +1,296 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,11.6,0,11.61,0,22.2,0,22.21,0,30,30,30,30,0"/>
-<path d="M4.541,29.08v-2.15c-0.734-0.043-1.318-0.653-1.318-1.397v-0.819h-0.709c-1.386,0.01-2.514-1.12-2.514-2.51v-10.59c0-1.387,1.128-2.515,2.514-2.515h0.703v-0.761h0.006v-1.58c0-0.744,0.584-1.354,1.318-1.397v-4.442h20.92v4.441c0.734,0.043,1.318,0.653,1.318,1.397v1.58l0.005,0.762h0.704c1.386,0,2.513,1.128,2.513,2.515v10.6c0,1.386-1.127,2.513-2.513,2.513h-0.709v0.819c0,0.744-0.584,1.354-1.318,1.397v2.15h-20.91z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.302" y2="10.84">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.3273" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<polygon fill="none" points="0,11.605 0,11.61 0,22.205 0,22.21 0,30 30,30 30,0 0,0 "/>
+<path d="M4.541,29.085v-2.15c-0.734-0.043-1.318-0.653-1.318-1.397v-0.819 H2.514C1.128,24.718,0,23.591,0,22.205V11.61c0-1.387,1.128-2.515,2.514-2.515h0.703V8.334h0.006v-1.58 c0-0.744,0.584-1.354,1.318-1.397V0.915H25.46v4.441c0.734,0.043,1.318,0.653,1.318,1.397v1.58l0.005,0.762h0.704 c1.386,0,2.513,1.128,2.513,2.515v10.595c0,1.386-1.127,2.513-2.513,2.513h-0.709v0.819c0,0.744-0.584,1.354-1.318,1.397v2.15H4.541 z" fill-opacity="0.35" fill-rule="evenodd" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.0005" x2="15.0005" y1="6.3018" y2="10.8418">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.3273" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M25.78,10.5c0,0.22-0.179,0.397-0.399,0.397h-20.76c-0.22,0-0.399-0.178-0.399-0.397v-3.746c0-0.221,0.179-0.399,0.399-0.399h20.76c0.221,0,0.399,0.179,0.399,0.399v3.743z" fill="url(#SVGID_1__)"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="21.57" x="4.217" y="9.712"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.57" x="4.217" y="9.334"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.915" y2="10.63">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<path d="M25.778,10.497c0,0.22-0.179,0.397-0.399,0.397H4.622c-0.22,0-0.399-0.178-0.399-0.397V6.754 c0-0.221,0.179-0.399,0.399-0.399h20.756c0.221,0,0.399,0.179,0.399,0.399V10.497z" fill="url(#SVGID_1__)"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="21.567" x="4.217" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.567" x="4.217" y="9.334"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.0005" x2="15.0005" y1="1.915" y2="10.6297">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_2__)" height="8.323" width="18.92" x="5.541" y="1.915"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="1.835" y2="9.598">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<rect fill="url(#SVGID_2__)" height="8.323" width="18.919" x="5.541" y="1.915"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.0005" x2="15.0005" y1="1.835" y2="9.598">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="24.46,5.21,24.46,10.24,5.541,10.24,5.541,1.915,12.67,1.915,16.57,2.111,23.7,4.152,24.27,4.748"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.62" x="8.19" y="7.213"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.19" y="6.834"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="18.92" x="5.541" y="9.712"/>
-<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.92" x="5.541" y="9.334"/>
-<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.92" x="5.541" y="8.955"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.62" x="8.19" y="4.942"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="13.62" x="8.19" y="4.563"/>
-<path d="M12.57,1.916s6.867,1.039,9.42,4.539c0,0,1.93-2.649,2.467-1.208-0.27-1.392-2.72-3.383-11.89-3.331z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M12.57,1.916s6.867,0.282,9.42,3.781c0,0,1.93-2.271,2.467-0.45-0.27-1.392-2.72-3.383-11.89-3.331z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.88" x2="18.16" y1="2.244" y2="4.893">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<polygon fill="url(#SVGID_3__)" points="24.46,5.21 24.46,10.238 5.541,10.238 5.541,1.915 12.667,1.915 16.569,2.111 23.704,4.152 24.272,4.748 "/>
+<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.621" x="8.19" y="7.213"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.19" y="6.834"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="18.919" x="5.541" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.919" x="5.541" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.919" x="5.541" y="8.955"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.621" x="8.19" y="4.942"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="13.621" x="8.19" y="4.563"/>
+<path d="M12.572,1.916c0,0,6.867,1.039,9.42,4.539 c0,0,1.93-2.649,2.467-1.208C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M12.572,1.916c0,0,6.867,0.282,9.42,3.781 c0,0,1.93-2.271,2.467-0.45C24.188,3.855,21.738,1.864,12.572,1.916z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.876" x2="18.1627" y1="2.2437" y2="4.8932">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M12.57,1.916s6.867,0.059,9.42,3.56c0,0,1.83-2.256,2.467-0.229-0.27-1.392-2.72-3.383-11.89-3.331z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.938" y2="23.56">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.3515" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M12.572,1.916c0,0,6.867,0.059,9.42,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.738,1.864,12.572,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.9375" y2="23.5596">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.3515" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M29,22.2c0,0.835-0.677,1.513-1.513,1.513h-24.98c-0.836,0.01-1.514-0.67-1.514-1.51v-10.59c0-0.835,0.678-1.515,1.514-1.515h24.97c0.836,0,1.513,0.68,1.513,1.515v10.58z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="26.06" y2="23.34">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.3273" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M29,22.205c0,0.835-0.677,1.513-1.513,1.513H2.514C1.678,23.718,1,23.04,1,22.205V11.61 c0-0.835,0.678-1.515,1.514-1.515h24.973c0.836,0,1.513,0.68,1.513,1.515V22.205z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.0005" x2="15.0005" y1="26.0552" y2="23.3401">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.3273" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M4.223,23.72v1.819c0,0.221,0.179,0.399,0.399,0.399h20.76c0.221,0,0.399-0.179,0.399-0.399v-1.819h-21.56z" fill="url(#SVGID_6_)"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.55" x="4.226" y="23.73"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.55" x="4.226" y="24.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.938" y2="23.56">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M4.223,23.718v1.819c0,0.221,0.179,0.399,0.399,0.399h20.756c0.221,0,0.399-0.179,0.399-0.399v-1.819 H4.223z" fill="url(#SVGID_6_)"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.551" x="4.226" y="23.729"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.551" x="4.226" y="24.105"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.9375" y2="23.5596">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M27.49,10.1h-24.98c-0.836,0-1.514,0.68-1.514,1.51v10.6c0,0.835,0.678,1.513,1.514,1.513-0.626,0-1.135-0.51-1.135-1.135v-10.97c0-0.626,0.509-1.135,1.135-1.135h24.97c0.626,0,1.135,0.509,1.135,1.135v10.98c0,0.625-0.509,1.135-1.135,1.135,0.836,0,1.513-0.678,1.513-1.513v-10.62c0.01-0.83-0.67-1.51-1.5-1.51z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.49" x2="10.49" y1="11.93" y2="15.35">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M27.487,10.096H2.514C1.678,10.096,1,10.775,1,11.61v10.595c0,0.835,0.678,1.513,1.514,1.513 c-0.626,0-1.135-0.51-1.135-1.135v-0.378V11.988V11.61c0-0.626,0.509-1.135,1.135-1.135h24.973c0.626,0,1.135,0.509,1.135,1.135 v0.378v10.217v0.378c0,0.625-0.509,1.135-1.135,1.135c0.836,0,1.513-0.678,1.513-1.513V11.61C29,10.775,28.323,10.096,27.487,10.096 z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.4932" x2="10.4932" y1="11.9312" y2="15.3514">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
</linearGradient>
-<path d="M5.005,15.33c-0.417,0-0.758-0.344-0.758-0.766v-1.874c0-0.423,0.34-0.766,0.758-0.766h10.98c0.417,0,0.757,0.343,0.757,0.766v1.874c0,0.422-0.34,0.766-0.757,0.766h-10.98z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.49" x2="10.49" y1="12.32" y2="15">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M5.005,15.329c-0.417,0-0.758-0.344-0.758-0.766v-1.874 c0-0.423,0.34-0.766,0.758-0.766h10.978c0.417,0,0.757,0.343,0.757,0.766v1.874c0,0.422-0.34,0.766-0.757,0.766H5.005z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4912" x2="10.4912" y1="12.3164" y2="14.996">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M16.36,14.56c0,0.21-0.17,0.383-0.379,0.383h-10.98c-0.209,0-0.378-0.173-0.378-0.383v-1.874c0-0.213,0.169-0.384,0.378-0.384h10.97c0.209,0,0.379,0.171,0.379,0.384v1.873z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.49" x2="10.49" y1="9.277" y2="15.88">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M16.356,14.563c0,0.21-0.17,0.383-0.379,0.383H5.005c-0.209,0-0.378-0.173-0.378-0.383v-1.874 c0-0.213,0.169-0.384,0.378-0.384h10.972c0.209,0,0.379,0.171,0.379,0.384V14.563z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.4912" x2="10.4912" y1="9.2769" y2="15.8769">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="1.874" width="10.97" x="5.005" y="12.69"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.49" x2="10.49" y1="10.13" y2="15.65">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_10_)" height="1.874" width="10.972" x="5.005" y="12.689"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.4912" x2="10.4912" y1="10.1255" y2="15.6464">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_11_)" points="5.005,13.69,15.98,13.42,15.98,12.68,5.005,12.68"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.91" x2="24.91" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<polygon fill="url(#SVGID_11_)" points="5.005,13.688 15.977,13.419 15.977,12.679 5.005,12.679 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.9111" x2="24.9111" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,14.08c-0.398,0-0.723-0.323-0.723-0.722v-0.717c0-0.397,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.325,0.722,0.723v0.717c0,0.398-0.323,0.722-0.722,0.722h-0.717z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,14.08h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724h0.717c0.399,0,0.722-0.324,0.722-0.724v-0.36c0,0.4-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.91" x2="24.91" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.325,0.722,0.723v0.717c0,0.398-0.323,0.722-0.722,0.722H24.553z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.399,0,0.722-0.324,0.722-0.724v-0.36C25.992,13.762,25.669,14.085,25.27,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.9111" x2="24.9111" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,13.36c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.2,0-0.362-0.159-0.362-0.36v-0.717c0-0.201,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.161,0.361,0.362v0.723z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.02" x2="22.02" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,13.363c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.201,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.161,0.361,0.362V13.363z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.0195" x2="22.0195" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,14.08c-0.398,0-0.723-0.323-0.723-0.722v-0.717c0-0.397,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.325,0.722-0.723,0.722h-0.718z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,14.08h-0.716c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.325,0.724,0.723,0.724h0.716c0.398,0,0.723-0.324,0.723-0.724v-0.36c0,0.4-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.02" x2="22.02" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.662,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.325,0.722-0.723,0.722H21.662z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.378,14.085h-0.716c-0.398,0-0.723-0.323-0.723-0.722v0.36 c0,0.399,0.325,0.724,0.723,0.724h0.716c0.398,0,0.723-0.324,0.723-0.724v-0.36C23.101,13.762,22.776,14.085,22.378,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.02" x2="22.02" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,13.36c0,0.201-0.163,0.36-0.362,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717c0-0.201,0.162-0.362,0.362-0.362h0.716c0.2,0,0.362,0.161,0.362,0.362v0.723z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.13" x2="19.13" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,13.363c0,0.201-0.163,0.36-0.362,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.201,0.162-0.362,0.362-0.362h0.716c0.2,0,0.362,0.161,0.362,0.362V13.363z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.1279" x2="19.1279" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,14.08c-0.399,0-0.723-0.323-0.723-0.722v-0.717c0-0.397,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722h-0.72z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.49,14.08h-0.72c-0.399,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724h0.716c0.399,0,0.723-0.324,0.723-0.724v-0.36c0,0.4-0.33,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.13" x2="19.13" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,14.085c-0.399,0-0.723-0.323-0.723-0.722v-0.717 c0-0.397,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.325,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H18.77z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,14.085H18.77c-0.399,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.716c0.399,0,0.723-0.324,0.723-0.724v-0.36C20.209,13.762,19.885,14.085,19.486,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.1279" x2="19.1279" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,13.36c0,0.201-0.162,0.36-0.362,0.36h-0.72c-0.199,0-0.361-0.159-0.361-0.36v-0.717c0-0.201,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.161,0.362,0.362v0.723z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.91" x2="24.91" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.848,13.363c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.201,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.161,0.362,0.362V13.363z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.9111" x2="24.9111" y1="14.7876" y2="17.0325">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,16.98c-0.398,0-0.723-0.324-0.723-0.724v-0.717c0-0.399,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.323,0.722,0.723v0.717c0,0.399-0.323,0.724-0.722,0.724h-0.717z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,16.98h-0.717c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724h0.717c0.399,0,0.722-0.323,0.722-0.724v-0.36c0,0.39-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.91" x2="24.91" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,16.978c-0.398,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.324-0.723,0.723-0.723h0.717c0.399,0,0.722,0.323,0.722,0.723v0.717c0,0.399-0.323,0.724-0.722,0.724H24.553z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.399,0,0.722-0.323,0.722-0.724v-0.36C25.992,16.653,25.669,16.978,25.27,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.9111" x2="24.9111" y1="15.1587" y2="16.6506">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,16.25c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.2,0-0.362-0.159-0.362-0.36v-0.717c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36v0.724z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.02" x2="22.02" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,16.254c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V16.254z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.0195" x2="22.0195" y1="14.7876" y2="17.0325">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,16.98c-0.398,0-0.723-0.324-0.723-0.724v-0.717c0-0.399,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.325,0.724-0.723,0.724h-0.718z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,16.98h-0.716c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.325,0.724,0.723,0.724h0.716c0.398,0,0.723-0.323,0.723-0.724v-0.36c0,0.39-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.02" x2="22.02" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.662,16.978c-0.398,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.325-0.723,0.723-0.723h0.716c0.398,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.325,0.724-0.723,0.724H21.662z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.378,16.978h-0.716c-0.398,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.325,0.724,0.723,0.724 h0.716c0.398,0,0.723-0.323,0.723-0.724v-0.36C23.101,16.653,22.776,16.978,22.378,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.02" x2="22.02" y1="15.1587" y2="16.6506">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,16.25c0,0.201-0.163,0.36-0.362,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36v0.724z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.13" x2="19.13" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,16.254c0,0.201-0.163,0.36-0.362,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.1279" x2="19.1279" y1="14.7876" y2="17.0325">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,16.98c-0.399,0-0.723-0.324-0.723-0.724v-0.717c0-0.399,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.324,0.724-0.723,0.724h-0.72z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.49,16.98h-0.72c-0.399,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724h0.716c0.399,0,0.723-0.323,0.723-0.724v-0.36c0,0.39-0.33,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.13" x2="19.13" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,16.978c-0.399,0-0.723-0.324-0.723-0.724v-0.717 c0-0.399,0.324-0.723,0.723-0.723h0.716c0.399,0,0.723,0.323,0.723,0.723v0.717c0,0.399-0.324,0.724-0.723,0.724H18.77z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,16.978H18.77c-0.399,0-0.723-0.324-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.716c0.399,0,0.723-0.323,0.723-0.724v-0.36C20.209,16.653,19.885,16.978,19.486,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.1279" x2="19.1279" y1="15.1587" y2="16.6506">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,16.25c0,0.201-0.162,0.36-0.362,0.36h-0.72c-0.199,0-0.361-0.159-0.361-0.36v-0.717c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36v0.724z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.91" x2="24.91" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.848,16.254c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.9111" x2="24.9111" y1="17.6792" y2="19.9231">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,19.87c-0.398,0-0.723-0.322-0.723-0.723v-0.72c0-0.398,0.324-0.724,0.723-0.724h0.717c0.399,0,0.722,0.325,0.722,0.724v0.716c0,0.4-0.323,0.723-0.722,0.723h-0.717z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,19.87h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725h0.717c0.399,0,0.722-0.324,0.722-0.725v-0.361c0,0.39-0.32,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.91" x2="24.91" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.399,0,0.722,0.325,0.722,0.724v0.716c0,0.4-0.323,0.723-0.722,0.723H24.553z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.399,0,0.722-0.324,0.722-0.725v-0.361C25.992,19.546,25.669,19.868,25.27,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.9111" x2="24.9111" y1="18.0513" y2="19.5432">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,19.15c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.2,0-0.362-0.162-0.362-0.361v-0.72c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36v0.716z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.02" x2="22.02" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,19.146c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V19.146z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.0195" x2="22.0195" y1="17.6792" y2="19.9231">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,19.87c-0.398,0-0.723-0.322-0.723-0.723v-0.72c0-0.398,0.325-0.724,0.723-0.724h0.716c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.325,0.723-0.723,0.723h-0.718z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,19.87h-0.716c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.325,0.725,0.723,0.725h0.716c0.398,0,0.723-0.324,0.723-0.725v-0.361c0,0.39-0.32,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.02" x2="22.02" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.662,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.325-0.724,0.723-0.724h0.716c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.325,0.723-0.723,0.723H21.662z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.378,19.868h-0.716c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.325,0.725,0.723,0.725 h0.716c0.398,0,0.723-0.324,0.723-0.725v-0.361C23.101,19.546,22.776,19.868,22.378,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.02" x2="22.02" y1="18.0513" y2="19.5432">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,19.15c0,0.199-0.163,0.361-0.362,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361v-0.72c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36v0.716z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.13" x2="19.13" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,19.146c0,0.199-0.163,0.361-0.362,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V19.146z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.1279" x2="19.1279" y1="17.6792" y2="19.9231">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,19.87c-0.399,0-0.723-0.322-0.723-0.723v-0.72c0-0.398,0.324-0.724,0.723-0.724h0.716c0.399,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723h-0.72z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.49,19.87h-0.72c-0.399,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725h0.716c0.399,0,0.723-0.324,0.723-0.725v-0.361c0,0.39-0.33,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.13" x2="19.13" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,19.868c-0.399,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.716c0.399,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H18.77z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.486,19.868H18.77c-0.399,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.716c0.399,0,0.723-0.324,0.723-0.725v-0.361C20.209,19.546,19.885,19.868,19.486,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.1279" x2="19.1279" y1="18.0513" y2="19.5432">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,19.15c0,0.199-0.162,0.361-0.362,0.361h-0.72c-0.199,0-0.361-0.162-0.361-0.361v-0.72c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36v0.716z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7649" x2="-7649" y1="1925" y2="1931">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<path d="M19.848,19.146c0,0.199-0.162,0.361-0.362,0.361H18.77c-0.199,0-0.361-0.162-0.361-0.361V18.43 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V19.146z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7649.4858" x2="-7649.4858" y1="1924.5239" y2="1930.8613">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_30_)" height="6.053" width="18.92" x="5.541" y="22.03"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15" x2="15" y1="21.6" y2="23.73">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<rect fill="url(#SVGID_30_)" height="6.053" width="18.919" x="5.541" y="22.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15.0005" x2="15.0005" y1="21.604" y2="23.7331">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M24.57,21.58h-19.14c-0.21,0-0.382,0.172-0.382,0.383v1.751h19.9v-1.751c0-0.2-0.17-0.38-0.38-0.38z" fill="url(#SVGID_31_)"/>
-<path d="M24.57,21.21h-19.14c-0.21,0-0.382,0.171-0.382,0.384v0.377c0-0.211,0.171-0.383,0.382-0.383h19.14c0.211,0,0.382,0.172,0.382,0.383v-0.38c0-0.21-0.17-0.38-0.38-0.38z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7649" x2="-7649" y1="1924" y2="1930">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<path d="M24.568,21.584H5.433c-0.21,0-0.382,0.172-0.382,0.383v1.751H24.95v-1.751 C24.95,21.756,24.779,21.584,24.568,21.584z" fill="url(#SVGID_31_)"/>
+<path d="M24.568,21.206H5.433c-0.21,0-0.382,0.171-0.382,0.384v0.377 c0-0.211,0.171-0.383,0.382-0.383h19.135c0.211,0,0.382,0.172,0.382,0.383V21.59C24.95,21.377,24.779,21.206,24.568,21.206z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7649.4858" x2="-7649.4858" y1="1924.4653" y2="1930.1107">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_32_)" points="5.541,24.79,5.541,22.03,24.46,22.03,24.46,28.08,17.33,28.08,13.43,27.89,6.298,25.85,5.729,25.25"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.92" x="5.541" y="22.03"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.92" x="5.541" y="22.41"/>
-<rect fill="#020202" fill-opacity="0.05" height="0.378" stroke-opacity="0.05" width="18.92" x="5.541" y="22.79"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.62" x="8.19" y="24.68"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="13.62" x="8.19" y="25.06"/>
-<path d="M17.43,28.08s-6.867-1.039-9.421-4.539c0,0-1.929,2.649-2.467,1.208,0.271,1.39,2.721,3.39,11.89,3.33z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M17.43,28.08s-6.867-0.282-9.421-3.781c0,0-1.929,2.271-2.467,0.45,0.271,1.39,2.721,3.39,11.89,3.33z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7646" x2="-7646" y1="1925" y2="1928">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<polygon fill="url(#SVGID_32_)" points="5.541,24.79 5.541,22.032 24.46,22.032 24.46,28.085 17.334,28.085 13.432,27.889 6.298,25.848 5.729,25.252 "/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.919" x="5.541" y="22.032"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.919" x="5.541" y="22.412"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.378" stroke-opacity="0.05" width="18.919" x="5.541" y="22.79"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.376" stroke-opacity="0.5" width="13.621" x="8.19" y="24.682"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.38" stroke-opacity="0.2" width="13.621" x="8.19" y="25.058"/>
+<path d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.929,2.649-2.467,1.208C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.929,2.271-2.467,0.45C5.813,26.145,8.263,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7634.4854 1952.6084)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7645.6104" x2="-7646.3232" y1="1924.8521" y2="1927.5011">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M17.43,28.08s-6.867-0.059-9.421-3.56c0,0-1.829,2.256-2.467,0.229,0.271,1.39,2.721,3.39,11.89,3.33z" fill="url(#SVGID_33_)"/>
+<path d="M17.429,28.084c0,0-6.867-0.059-9.421-3.56 c0,0-1.829,2.256-2.467,0.229C5.813,26.145,8.263,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
<rect fill="none" height="30" width="30" x="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,311 +1,313 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M21.5,30c-1.331,0-2.65-0.315-3.834-0.915h-13.13v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818h-0.709c-1.387,0.01-2.514-1.12-2.514-2.51v-10.59c0-1.387,1.127-2.515,2.514-2.515h0.703v-0.761h0.006v-1.581c0-0.744,0.584-1.354,1.318-1.396v-4.442h20.92v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.6c0,0.297-0.052,0.588-0.154,0.864-0.76,4.03-4.25,6.94-8.35,6.94z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.302" y2="10.84">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.3273" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M21.5,30c-1.331,0-2.65-0.315-3.834-0.915H4.541v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818H2.514 C1.127,24.718,0,23.591,0,22.205V11.61c0-1.387,1.127-2.515,2.514-2.515h0.703V8.334h0.006V6.753c0-0.744,0.584-1.354,1.318-1.396 V0.915h20.918v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.595 c0,0.297-0.052,0.588-0.154,0.864C29.092,27.092,25.598,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.9995" x2="14.9995" y1="6.3018" y2="10.8418">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.3273" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M25.78,10.5c0,0.22-0.179,0.397-0.399,0.397h-20.76c-0.22,0-0.398-0.178-0.398-0.397v-3.747c0-0.221,0.179-0.398,0.398-0.398h20.76c0.221,0,0.399,0.178,0.399,0.398v3.744z" fill="url(#SVGID_1__)"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.379" stroke-opacity="0.3" width="21.57" x="4.217" y="9.712"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.57" x="4.217" y="9.334"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.915" y2="10.63">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<path d="M25.777,10.497c0,0.22-0.179,0.397-0.399,0.397H4.621c-0.22,0-0.398-0.178-0.398-0.397V6.753 c0-0.221,0.179-0.398,0.398-0.398h20.757c0.221,0,0.399,0.178,0.399,0.398V10.497z" fill="url(#SVGID_1__)"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.379" stroke-opacity="0.3" width="21.567" x="4.217" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.567" x="4.217" y="9.334"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9995" x2="14.9995" y1="1.915" y2="10.6297">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_2__)" height="8.323" width="18.92" x="5.541" y="1.915"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="1.835" y2="9.598">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<rect fill="url(#SVGID_2__)" height="8.323" width="18.918" x="5.541" y="1.915"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.9995" x2="14.9995" y1="1.835" y2="9.598">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="24.46,5.21,24.46,10.24,5.541,10.24,5.541,1.915,12.67,1.915,16.57,2.111,23.7,4.152,24.27,4.748"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.62" x="8.189" y="7.212"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.189" y="6.833"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="18.92" x="5.541" y="9.712"/>
-<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.92" x="5.541" y="9.334"/>
-<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.92" x="5.541" y="8.955"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.62" x="8.189" y="4.941"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.189" y="4.563"/>
-<path d="M12.57,1.916s6.867,1.039,9.421,4.539c0,0,1.93-2.648,2.467-1.209-0.27-1.391-2.72-3.382-11.89-3.33z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M12.57,1.916s6.867,0.282,9.421,3.781c0,0,1.93-2.27,2.467-0.451-0.27-1.391-2.72-3.382-11.89-3.33z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.88" x2="18.16" y1="2.244" y2="4.893">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<polygon fill="url(#SVGID_3__)" points="24.459,5.21 24.459,10.238 5.541,10.238 5.541,1.915 12.666,1.915 16.568,2.111 23.703,4.152 24.271,4.748 "/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="7.212"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="6.833"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="18.918" x="5.541" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.918" x="5.541" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.918" x="5.541" y="8.955"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="4.941"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="4.563"/>
+<path d="M12.571,1.916c0,0,6.867,1.039,9.421,4.539 c0,0,1.93-2.648,2.467-1.209C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M12.571,1.916c0,0,6.867,0.282,9.421,3.781 c0,0,1.93-2.27,2.467-0.451C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.875" x2="18.1619" y1="2.2437" y2="4.8927">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M12.57,1.916s6.867,0.06,9.421,3.56c0,0,1.83-2.256,2.467-0.229-0.27-1.392-2.72-3.383-11.89-3.331z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.938" y2="23.56">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.3515" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M12.571,1.916c0,0,6.867,0.06,9.421,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.737,1.864,12.571,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="9.9375" y2="23.5601">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.3515" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M29,22.2c0,0.835-0.678,1.513-1.514,1.513h-24.98c-0.836,0.01-1.514-0.67-1.514-1.51v-10.59c0-0.836,0.678-1.515,1.514-1.515h24.97c0.836,0,1.514,0.679,1.514,1.515v10.58z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="26.06" y2="23.34">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.3273" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M29,22.205c0,0.835-0.678,1.513-1.514,1.513H2.514C1.678,23.718,1,23.04,1,22.205V11.61 c0-0.836,0.678-1.515,1.514-1.515h24.973c0.836,0,1.514,0.679,1.514,1.515V22.205z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.0005" x2="15.0005" y1="26.0557" y2="23.3406">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.3273" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M4.223,23.72v1.818c0,0.221,0.179,0.4,0.398,0.4h20.76c0.221,0,0.399-0.18,0.399-0.4v-1.818h-21.56z" fill="url(#SVGID_6_)"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.55" x="4.225" y="23.73"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.55" x="4.225" y="24.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.938" y2="23.56">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M4.223,23.718v1.818c0,0.221,0.179,0.4,0.398,0.4h20.757c0.221,0,0.399-0.18,0.399-0.4v-1.818H4.223z " fill="url(#SVGID_6_)"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.552" x="4.225" y="23.729"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.552" x="4.225" y="24.105"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9995" x2="14.9995" y1="9.9375" y2="23.5601">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M27.49,10.1h-24.98c-0.836,0-1.514,0.67-1.514,1.51v10.6c0,0.835,0.678,1.513,1.514,1.513-0.626,0-1.135-0.51-1.135-1.136v-10.96c0-0.626,0.509-1.135,1.135-1.135h24.97c0.626,0,1.135,0.509,1.135,1.135v10.98c0,0.626-0.509,1.136-1.135,1.136,0.836,0,1.514-0.678,1.514-1.513v-10.62c0.01-0.84-0.67-1.51-1.5-1.51z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.49" x2="10.49" y1="11.93" y2="15.35">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M27.486,10.096H2.514C1.678,10.096,1,10.774,1,11.61v10.595c0,0.835,0.678,1.513,1.514,1.513 c-0.626,0-1.135-0.51-1.135-1.136v-0.377V11.988V11.61c0-0.626,0.509-1.135,1.135-1.135h24.973c0.626,0,1.135,0.509,1.135,1.135 v0.378v10.217v0.377c0,0.626-0.509,1.136-1.135,1.136c0.836,0,1.514-0.678,1.514-1.513V11.61C29,10.774,28.322,10.096,27.486,10.096 z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.4917" x2="10.4917" y1="11.9312" y2="15.3514">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
</linearGradient>
-<path d="M5.004,15.33c-0.418,0-0.758-0.345-0.758-0.766v-1.87c0-0.424,0.34-0.767,0.758-0.767h10.98c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766h-10.98z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.49" x2="10.49" y1="12.32" y2="15">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M5.004,15.329c-0.418,0-0.758-0.345-0.758-0.766V12.69c0-0.424,0.34-0.767,0.758-0.767 h10.979c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766H5.004z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4897" x2="10.4897" y1="12.3164" y2="14.996">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M16.36,14.56c0,0.21-0.17,0.383-0.379,0.383h-10.98c-0.209,0-0.379-0.173-0.379-0.383v-1.87c0-0.214,0.17-0.385,0.379-0.385h10.97c0.209,0,0.379,0.171,0.379,0.385v1.883z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.49" x2="10.49" y1="9.279" y2="15.88">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M16.355,14.563c0,0.21-0.17,0.383-0.379,0.383H5.004c-0.209,0-0.379-0.173-0.379-0.383V12.69 c0-0.214,0.17-0.385,0.379-0.385h10.973c0.209,0,0.379,0.171,0.379,0.385V14.563z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.4902" x2="10.4902" y1="9.2793" y2="15.8759">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="1.873" width="10.97" x="5.004" y="12.69"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.49" x2="10.49" y1="10.13" y2="15.65">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_10_)" height="1.873" width="10.973" x="5.004" y="12.69"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.4902" x2="10.4902" y1="10.1255" y2="15.6464">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_11_)" points="5.004,13.69,15.98,13.42,15.98,12.68,5.004,12.68"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.91" x2="24.91" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<polygon fill="url(#SVGID_11_)" points="5.004,13.688 15.977,13.419 15.977,12.679 5.004,12.679 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.9111" x2="24.9111" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,14.08c-0.398,0-0.723-0.323-0.723-0.722v-0.717c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722h-0.717z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,14.08h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36c0,0.4-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.91" x2="24.91" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H24.553z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36C25.992,13.762,25.668,14.085,25.27,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.9102" x2="24.9102" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,13.36c0,0.2-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.16-0.362-0.36v-0.717c0-0.2,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.162,0.361,0.362v0.723z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.02" x2="22.02" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,13.363c0,0.2-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.162,0.361,0.362V13.363z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.0195" x2="22.0195" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,14.08c-0.398,0-0.724-0.323-0.724-0.722v-0.717c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722h-0.719z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,14.08h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36c0,0.4-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.02" x2="22.02" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.661,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H21.661z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,14.085h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36 c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C23.101,13.762,22.775,14.085,22.377,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.0195" x2="22.0195" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,13.36c0,0.2-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.16-0.362-0.36v-0.717c0-0.2,0.162-0.362,0.362-0.362h0.716c0.2,0,0.363,0.162,0.363,0.362v0.723z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.13" x2="19.13" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,13.363c0,0.2-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.162-0.362,0.362-0.362h0.716c0.2,0,0.363,0.162,0.363,0.362V13.363z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.127" x2="19.127" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,14.08c-0.398,0-0.724-0.323-0.724-0.722v-0.717c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722h-0.72z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.48,14.08h-0.71c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36c0,0.4-0.33,0.72-0.73,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.13" x2="19.13" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H18.77z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,14.085H18.77c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C20.209,13.762,19.884,14.085,19.485,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.1279" x2="19.1279" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,13.36c0,0.2-0.162,0.36-0.362,0.36h-0.72c-0.199,0-0.361-0.16-0.361-0.36v-0.717c0-0.2,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.162,0.362,0.362v0.723z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.91" x2="24.91" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.848,13.363c0,0.2-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.16-0.361-0.36v-0.717 c0-0.2,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.162,0.362,0.362V13.363z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.9111" x2="24.9111" y1="14.7866" y2="17.0331">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,16.98c-0.398,0-0.723-0.325-0.723-0.724v-0.717c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724h-0.717z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,16.98h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36c0,0.39-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.91" x2="24.91" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,16.978c-0.398,0-0.723-0.325-0.723-0.724v-0.717 c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724H24.553z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36C25.992,16.652,25.668,16.978,25.27,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.9102" x2="24.9102" y1="15.1587" y2="16.6511">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,16.25c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.159-0.362-0.36v-0.717c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36v0.724z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.02" x2="22.02" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,16.254c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V16.254z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.0195" x2="22.0195" y1="14.7866" y2="17.0331">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,16.98c-0.398,0-0.724-0.325-0.724-0.724v-0.717c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724h-0.719z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,16.98h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36c0,0.39-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.02" x2="22.02" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.661,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H21.661z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,16.978h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C23.101,16.652,22.775,16.978,22.377,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.0195" x2="22.0195" y1="15.1587" y2="16.6511">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,16.25c0,0.201-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.363,0.161,0.363,0.36v0.724z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.13" x2="19.13" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,16.254c0,0.201-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.363,0.161,0.363,0.36V16.254z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.127" x2="19.127" y1="14.7866" y2="17.0331">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,16.98c-0.398,0-0.724-0.325-0.724-0.724v-0.717c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724h-0.72z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.48,16.98h-0.71c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36c0,0.39-0.33,0.72-0.73,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.13" x2="19.13" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H18.77z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,16.978H18.77c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C20.209,16.652,19.884,16.978,19.485,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.1279" x2="19.1279" y1="15.1587" y2="16.6511">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,16.25c0,0.201-0.162,0.36-0.362,0.36h-0.72c-0.199,0-0.361-0.159-0.361-0.36v-0.717c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36v0.724z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.91" x2="24.91" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.848,16.254c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.9111" x2="24.9111" y1="17.6797" y2="19.9236">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,19.87c-0.398,0-0.723-0.322-0.723-0.723v-0.72c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723h-0.717z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,19.87h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361c0,0.39-0.32,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.91" x2="24.91" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H24.553z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361C25.992,19.546,25.668,19.868,25.27,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.9102" x2="24.9102" y1="18.0508" y2="19.5437">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,19.15c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.199,0-0.362-0.162-0.362-0.361v-0.72c0-0.199,0.163-0.361,0.362-0.361h0.717c0.199,0,0.361,0.162,0.361,0.361v0.716z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.02" x2="22.02" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,19.146c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.199,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.163-0.361,0.362-0.361h0.717c0.199,0,0.361,0.162,0.361,0.361V19.146z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.0195" x2="22.0195" y1="17.6797" y2="19.9236">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,19.87c-0.398,0-0.724-0.322-0.724-0.723v-0.72c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723h-0.719z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,19.87h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361c0,0.39-0.32,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.02" x2="22.02" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.661,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H21.661z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,19.868h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C23.101,19.546,22.775,19.868,22.377,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.0195" x2="22.0195" y1="18.0508" y2="19.5437">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,19.15c0,0.199-0.163,0.361-0.363,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361v-0.72c0-0.199,0.162-0.361,0.362-0.361h0.716c0.2,0,0.363,0.162,0.363,0.361v0.716z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.13" x2="19.13" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,19.146c0,0.199-0.163,0.361-0.363,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.162-0.361,0.362-0.361h0.716c0.2,0,0.363,0.162,0.363,0.361V19.146z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.127" x2="19.127" y1="17.6797" y2="19.9236">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,19.87c-0.398,0-0.724-0.322-0.724-0.723v-0.72c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723h-0.72z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.48,19.87h-0.71c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361c0,0.39-0.33,0.71-0.73,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.13" x2="19.13" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H18.77z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,19.868H18.77c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C20.209,19.546,19.884,19.868,19.485,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.1279" x2="19.1279" y1="18.0508" y2="19.5437">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,19.15c0,0.199-0.162,0.361-0.362,0.361h-0.72c-0.199,0-0.361-0.162-0.361-0.361v-0.72c0-0.199,0.162-0.361,0.361-0.361h0.716c0.2,0,0.362,0.162,0.362,0.361v0.716z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7805" x2="-7805" y1="1151" y2="1158">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<path d="M19.848,19.146c0,0.199-0.162,0.361-0.362,0.361H18.77c-0.199,0-0.361-0.162-0.361-0.361V18.43 c0-0.199,0.162-0.361,0.361-0.361h0.716c0.2,0,0.362,0.162,0.362,0.361V19.146z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7805.2559" x2="-7805.2559" y1="1151.4873" y2="1157.8247">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_30_)" height="6.053" width="18.92" x="5.541" y="22.03"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15" x2="15" y1="21.61" y2="23.73">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<rect fill="url(#SVGID_30_)" height="6.053" width="18.918" x="5.541" y="22.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="14.9995" x2="14.9995" y1="21.6055" y2="23.7336">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M24.57,21.58h-19.14c-0.21,0-0.381,0.171-0.381,0.383v1.75h19.9v-1.75c0-0.2-0.17-0.38-0.38-0.38z" fill="url(#SVGID_31_)"/>
-<path d="M24.57,21.21h-19.14c-0.21,0-0.381,0.17-0.381,0.384v0.378c0-0.212,0.171-0.383,0.381-0.383h19.14c0.211,0,0.382,0.171,0.382,0.383v-0.38c0-0.21-0.17-0.38-0.38-0.38z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7805" x2="-7805" y1="1151" y2="1157">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<path d="M24.567,21.585H5.432c-0.21,0-0.381,0.171-0.381,0.383v1.75h19.898v-1.75 C24.949,21.756,24.778,21.585,24.567,21.585z" fill="url(#SVGID_31_)"/>
+<path d="M24.567,21.206H5.432c-0.21,0-0.381,0.17-0.381,0.384v0.378c0-0.212,0.171-0.383,0.381-0.383 h19.136c0.211,0,0.382,0.171,0.382,0.383V21.59C24.949,21.376,24.778,21.206,24.567,21.206z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7805.2559" x2="-7805.2559" y1="1151.4287" y2="1157.0741">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_32_)" points="5.541,24.79,5.541,22.03,24.46,22.03,24.46,28.08,17.33,28.08,13.43,27.89,6.297,25.85,5.729,25.25"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.92" x="5.541" y="22.03"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.92" x="5.541" y="22.41"/>
-<rect fill="#020202" fill-opacity="0.05" height="0.379" stroke-opacity="0.05" width="18.92" x="5.541" y="22.79"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.62" x="8.189" y="24.68"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.189" y="25.06"/>
-<path d="M17.43,28.08s-6.867-1.039-9.421-4.539c0,0-1.93,2.648-2.467,1.209,0.271,1.39,2.72,3.39,11.89,3.33z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M17.43,28.08s-6.867-0.282-9.421-3.781c0,0-1.93,2.27-2.467,0.451,0.271,1.39,2.72,3.39,11.89,3.33z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7801" x2="-7802" y1="1152" y2="1154">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<polygon fill="url(#SVGID_32_)" points="5.541,24.79 5.541,22.032 24.459,22.032 24.459,28.085 17.334,28.085 13.432,27.889 6.297,25.848 5.729,25.252 "/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.918" x="5.541" y="22.032"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.918" x="5.541" y="22.412"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.379" stroke-opacity="0.05" width="18.918" x="5.541" y="22.79"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="24.682"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="25.059"/>
+<path d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.93,2.648-2.467,1.209C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.93,2.27-2.467,0.451C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7801.3809" x2="-7802.0938" y1="1151.8154" y2="1154.4645">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M17.43,28.08s-6.867-0.06-9.421-3.56c0,0-1.83,2.256-2.467,0.229,0.271,1.39,2.72,3.39,11.89,3.33z" fill="url(#SVGID_33_)"/>
+<path d="M17.429,28.084c0,0-6.867-0.06-9.421-3.56 c0,0-1.83,2.256-2.467,0.229C5.813,26.145,8.262,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="492.5" x2="492.5" y1="-626.4" y2="-656.4">
-<stop offset="0" stop-color="#E3DBBF"/>
-<stop offset="0.297" stop-color="#E3DBBF"/>
-<stop offset="0.6667" stop-color="#794335"/>
-<stop offset="1" stop-color="#E3DBBF"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="492.5" x2="492.5" y1="-626.4292" y2="-656.4292">
+<stop offset="0" style="stop-color:#E3DBBF"/>
+<stop offset="0.297" style="stop-color:#E3DBBF"/>
+<stop offset="0.6667" style="stop-color:#794335"/>
+<stop offset="1" style="stop-color:#E3DBBF"/>
</linearGradient>
-<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5,0-4.135,3.363-7.5,7.5-7.5,4.135,0,7.5,3.365,7.5,7.5,0,4.14-3.36,7.5-7.5,7.5z" fill="url(#SVGID_34_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="21.5" x2="21.5" y1="14.49" y2="28.33">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="1" stop-color="#C2A673"/>
+<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.637,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_34_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="21.5" x2="21.5" y1="14.4858" y2="28.3326">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</linearGradient>
-<path d="M28.5,21.5c0,3.866-3.136,7-7,7-3.867,0-7-3.134-7-7,0-3.864,3.133-7,7-7,3.86,0,7,3.14,7,7z" fill="url(#SVGID_35_)"/>
-<polygon fill-opacity="0.3" points="25.7,22.89,21.5,18.44,17.3,22.89,16.66,22.21,21.5,17.08,26.34,22.21,25.7,22.89" stroke-opacity="0.3"/>
-<polygon fill-opacity="0.3" points="21.5,19.84,17.63,23.95,17.63,25.79,20.53,25.79,20.53,22.89,22.47,22.89,22.47,25.79,25.37,25.79,25.37,23.95" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" points="25.7,22.19,21.5,17.73,17.3,22.19,16.66,21.51,21.5,16.38,26.34,21.51,25.7,22.19"/>
-<polygon fill="#FFFFFF" points="21.5,19.15,17.63,23.25,17.63,25.09,20.53,25.09,20.53,22.19,22.47,22.19,22.47,25.09,25.37,25.09,25.37,23.25"/>
+<path d="M28.5,21.5c0,3.866-3.136,7-7,7c-3.867,0-7-3.134-7-7c0-3.864,3.133-7,7-7 C25.364,14.5,28.5,17.636,28.5,21.5z" fill="url(#SVGID_35_)"/>
+<polygon fill-opacity="0.3" points="25.703,22.889 21.498,18.435 17.297,22.889 16.658,22.209 21.498,17.077 26.342,22.209 25.703,22.889 " stroke-opacity="0.3"/>
+<polygon fill-opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" points="25.703,22.188 21.498,17.734 17.297,22.188 16.658,21.51 21.498,16.377 26.342,21.51 25.703,22.188 "/>
+<polygon fill="#FFFFFF" points="21.5,19.146 17.627,23.252 17.627,25.094 20.531,25.094 20.531,22.188 22.469,22.188 22.469,25.094 25.373,25.094 25.373,23.25 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_fax_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,310 +1,312 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M21.5,30c-1.331,0-2.65-0.315-3.834-0.915h-13.13v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818h-0.709c-1.387,0.01-2.514-1.12-2.514-2.51v-10.59c0-1.387,1.127-2.515,2.514-2.515h0.703v-0.761h0.006v-1.581c0-0.744,0.584-1.354,1.318-1.396v-4.442h20.92v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.6c0,0.297-0.052,0.588-0.154,0.864-0.76,4.03-4.25,6.94-8.35,6.94z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.302" y2="10.84">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.3273" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M21.5,30c-1.331,0-2.65-0.315-3.834-0.915H4.541v-2.15c-0.734-0.043-1.318-0.653-1.318-1.398v-0.818H2.514 C1.127,24.718,0,23.591,0,22.205V11.61c0-1.387,1.127-2.515,2.514-2.515h0.703V8.334h0.006V6.753c0-0.744,0.584-1.354,1.318-1.396 V0.915h20.918v4.441c0.734,0.043,1.318,0.652,1.318,1.396v1.581l0.006,0.762h0.703c1.386,0,2.514,1.128,2.514,2.515v10.595 c0,0.297-0.052,0.588-0.154,0.864C29.092,27.092,25.598,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.9995" x2="14.9995" y1="6.3018" y2="10.8418">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.3273" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M25.78,10.5c0,0.22-0.179,0.397-0.399,0.397h-20.76c-0.22,0-0.398-0.178-0.398-0.397v-3.747c0-0.221,0.179-0.398,0.398-0.398h20.76c0.221,0,0.399,0.178,0.399,0.398v3.744z" fill="url(#SVGID_1__)"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.379" stroke-opacity="0.3" width="21.57" x="4.217" y="9.712"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.57" x="4.217" y="9.334"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.915" y2="10.63">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
-</linearGradient>
-<rect fill="url(#SVGID_2__)" height="8.323" width="18.92" x="5.541" y="1.915"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="1.835" y2="9.598">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<path d="M25.777,10.497c0,0.22-0.179,0.397-0.399,0.397H4.621c-0.22,0-0.398-0.178-0.398-0.397V6.753 c0-0.221,0.179-0.398,0.398-0.398h20.757c0.221,0,0.399,0.178,0.399,0.398V10.497z" fill="url(#SVGID_1__)"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.379" stroke-opacity="0.3" width="21.567" x="4.217" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="21.567" x="4.217" y="9.334"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9995" x2="14.9995" y1="1.915" y2="10.6297">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="24.46,5.21,24.46,10.24,5.541,10.24,5.541,1.915,12.67,1.915,16.57,2.111,23.7,4.152,24.27,4.748"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.62" x="8.189" y="7.212"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.189" y="6.833"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="18.92" x="5.541" y="9.712"/>
-<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.92" x="5.541" y="9.334"/>
-<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.92" x="5.541" y="8.955"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.62" x="8.189" y="4.941"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.189" y="4.563"/>
-<path d="M12.57,1.916s6.867,1.039,9.421,4.539c0,0,1.93-2.648,2.467-1.209-0.27-1.391-2.72-3.382-11.89-3.33z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M12.57,1.916s6.867,0.282,9.421,3.781c0,0,1.93-2.27,2.467-0.451-0.27-1.391-2.72-3.382-11.89-3.33z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.88" x2="18.16" y1="2.244" y2="4.893">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<rect fill="url(#SVGID_2__)" height="8.323" width="18.918" x="5.541" y="1.915"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.9995" x2="14.9995" y1="1.835" y2="9.598">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<path d="M12.57,1.916s6.867,0.06,9.421,3.56c0,0,1.83-2.256,2.467-0.229-0.27-1.392-2.72-3.383-11.89-3.331z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="9.938" y2="23.56">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.3515" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<polygon fill="url(#SVGID_3__)" points="24.459,5.21 24.459,10.238 5.541,10.238 5.541,1.915 12.666,1.915 16.568,2.111 23.703,4.152 24.271,4.748 "/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="7.212"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="6.833"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="18.918" x="5.541" y="9.712"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.378" stroke-opacity="0.1" width="18.918" x="5.541" y="9.334"/>
+<rect fill="#020202" fill-opacity="0.03" height="0.379" stroke-opacity="0.03" width="18.918" x="5.541" y="8.955"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="4.941"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="4.563"/>
+<path d="M12.571,1.916c0,0,6.867,1.039,9.421,4.539 c0,0,1.93-2.648,2.467-1.209C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M12.571,1.916c0,0,6.867,0.282,9.421,3.781 c0,0,1.93-2.27,2.467-0.451C24.188,3.855,21.737,1.864,12.571,1.916z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.875" x2="18.1619" y1="2.2437" y2="4.8927">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M29,22.2c0,0.835-0.678,1.513-1.514,1.513h-24.98c-0.836,0.01-1.514-0.67-1.514-1.51v-10.59c0-0.836,0.678-1.515,1.514-1.515h24.97c0.836,0,1.514,0.679,1.514,1.515v10.58z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="26.06" y2="23.34">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.3273" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M12.571,1.916c0,0,6.867,0.06,9.421,3.56 c0,0,1.83-2.256,2.467-0.229C24.188,3.855,21.737,1.864,12.571,1.916z" fill="url(#SVGID_4__)" fill-rule="evenodd"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="9.9375" y2="23.5601">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.3515" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M4.223,23.72v1.818c0,0.221,0.179,0.4,0.398,0.4h20.76c0.221,0,0.399-0.18,0.399-0.4v-1.818h-21.56z" fill="url(#SVGID_6_)"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.55" x="4.225" y="23.73"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.55" x="4.225" y="24.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="9.938" y2="23.56">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M29,22.205c0,0.835-0.678,1.513-1.514,1.513H2.514C1.678,23.718,1,23.04,1,22.205V11.61 c0-0.836,0.678-1.515,1.514-1.515h24.973c0.836,0,1.514,0.679,1.514,1.515V22.205z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.0005" x2="15.0005" y1="26.0557" y2="23.3406">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.3273" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M27.49,10.1h-24.98c-0.836,0-1.514,0.67-1.514,1.51v10.6c0,0.835,0.678,1.513,1.514,1.513-0.626,0-1.135-0.51-1.135-1.136v-10.96c0-0.626,0.509-1.135,1.135-1.135h24.97c0.626,0,1.135,0.509,1.135,1.135v10.98c0,0.626-0.509,1.136-1.135,1.136,0.836,0,1.514-0.678,1.514-1.513v-10.62c0.01-0.84-0.67-1.51-1.5-1.51z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.49" x2="10.49" y1="11.93" y2="15.35">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M4.223,23.718v1.818c0,0.221,0.179,0.4,0.398,0.4h20.757c0.221,0,0.399-0.18,0.399-0.4v-1.818H4.223z " fill="url(#SVGID_6_)"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.377" stroke-opacity="0.3" width="21.552" x="4.225" y="23.729"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.379" stroke-opacity="0.15" width="21.552" x="4.225" y="24.105"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9995" x2="14.9995" y1="9.9375" y2="23.5601">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M5.004,15.33c-0.418,0-0.758-0.345-0.758-0.766v-1.87c0-0.424,0.34-0.767,0.758-0.767h10.98c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766h-10.98z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.49" x2="10.49" y1="12.32" y2="15">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M27.486,10.096H2.514C1.678,10.096,1,10.774,1,11.61v10.595c0,0.835,0.678,1.513,1.514,1.513 c-0.626,0-1.135-0.51-1.135-1.136v-0.377V11.988V11.61c0-0.626,0.509-1.135,1.135-1.135h24.973c0.626,0,1.135,0.509,1.135,1.135 v0.378v10.217v0.377c0,0.626-0.509,1.136-1.135,1.136c0.836,0,1.514-0.678,1.514-1.513V11.61C29,10.774,28.322,10.096,27.486,10.096 z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.4917" x2="10.4917" y1="11.9312" y2="15.3514">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
</linearGradient>
-<path d="M16.36,14.56c0,0.21-0.17,0.383-0.379,0.383h-10.98c-0.209,0-0.379-0.173-0.379-0.383v-1.87c0-0.214,0.17-0.385,0.379-0.385h10.97c0.209,0,0.379,0.171,0.379,0.385v1.883z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.49" x2="10.49" y1="9.279" y2="15.88">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M5.004,15.329c-0.418,0-0.758-0.345-0.758-0.766V12.69c0-0.424,0.34-0.767,0.758-0.767 h10.979c0.416,0,0.756,0.343,0.756,0.767v1.873c0,0.421-0.34,0.766-0.756,0.766H5.004z" fill="url(#SVGID_8_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4897" x2="10.4897" y1="12.3164" y2="14.996">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="1.873" width="10.97" x="5.004" y="12.69"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.49" x2="10.49" y1="10.13" y2="15.65">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M16.355,14.563c0,0.21-0.17,0.383-0.379,0.383H5.004c-0.209,0-0.379-0.173-0.379-0.383V12.69 c0-0.214,0.17-0.385,0.379-0.385h10.973c0.209,0,0.379,0.171,0.379,0.385V14.563z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.4902" x2="10.4902" y1="9.2793" y2="15.8759">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_11_)" points="5.004,13.69,15.98,13.42,15.98,12.68,5.004,12.68"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.91" x2="24.91" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<rect fill="url(#SVGID_10_)" height="1.873" width="10.973" x="5.004" y="12.69"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.4902" x2="10.4902" y1="10.1255" y2="15.6464">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
+</linearGradient>
+<polygon fill="url(#SVGID_11_)" points="5.004,13.688 15.977,13.419 15.977,12.679 5.004,12.679 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.9111" x2="24.9111" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,14.08c-0.398,0-0.723-0.323-0.723-0.722v-0.717c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722h-0.717z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,14.08h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36c0,0.4-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.91" x2="24.91" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,14.085c-0.398,0-0.723-0.323-0.723-0.722v-0.717 c0-0.398,0.324-0.723,0.723-0.723h0.717c0.398,0,0.723,0.324,0.723,0.723v0.717c0,0.398-0.324,0.722-0.723,0.722H24.553z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,14.085h-0.717c-0.398,0-0.723-0.323-0.723-0.722v0.36c0,0.399,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.324,0.723-0.724v-0.36C25.992,13.762,25.668,14.085,25.27,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.9102" x2="24.9102" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,13.36c0,0.2-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.16-0.362-0.36v-0.717c0-0.2,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.162,0.361,0.362v0.723z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.02" x2="22.02" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,13.363c0,0.2-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.163-0.362,0.362-0.362h0.717c0.199,0,0.361,0.162,0.361,0.362V13.363z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="22.0195" x2="22.0195" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,14.08c-0.398,0-0.724-0.323-0.724-0.722v-0.717c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722h-0.719z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,14.08h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36c0,0.4-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.02" x2="22.02" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.661,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H21.661z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,14.085h-0.716c-0.398,0-0.724-0.323-0.724-0.722v0.36 c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C23.101,13.762,22.775,14.085,22.377,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.0195" x2="22.0195" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,13.36c0,0.2-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.16-0.362-0.36v-0.717c0-0.2,0.162-0.362,0.362-0.362h0.716c0.2,0,0.363,0.162,0.363,0.362v0.723z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.13" x2="19.13" y1="11.9" y2="14.14">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,13.363c0,0.2-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.16-0.362-0.36v-0.717 c0-0.2,0.162-0.362,0.362-0.362h0.716c0.2,0,0.363,0.162,0.363,0.362V13.363z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="19.127" x2="19.127" y1="11.897" y2="14.1399">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,14.08c-0.398,0-0.724-0.323-0.724-0.722v-0.717c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722h-0.72z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.48,14.08h-0.71c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36c0,0.4-0.33,0.72-0.73,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.13" x2="19.13" y1="12.27" y2="13.76">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,14.085c-0.398,0-0.724-0.323-0.724-0.722v-0.717 c0-0.398,0.325-0.723,0.724-0.723h0.716c0.398,0,0.724,0.324,0.724,0.723v0.717c0,0.398-0.325,0.722-0.724,0.722H18.77z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,14.085H18.77c-0.398,0-0.724-0.323-0.724-0.722v0.36c0,0.399,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.324,0.724-0.724v-0.36C20.209,13.762,19.884,14.085,19.485,14.085z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.1279" x2="19.1279" y1="12.2661" y2="13.76">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,13.36c0,0.2-0.162,0.36-0.362,0.36h-0.72c-0.199,0-0.361-0.16-0.361-0.36v-0.717c0-0.2,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.162,0.362,0.362v0.723z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.91" x2="24.91" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.848,13.363c0,0.2-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.16-0.361-0.36v-0.717 c0-0.2,0.162-0.362,0.361-0.362h0.716c0.2,0,0.362,0.162,0.362,0.362V13.363z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="24.9111" x2="24.9111" y1="14.7866" y2="17.0331">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,16.98c-0.398,0-0.723-0.325-0.723-0.724v-0.717c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724h-0.717z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,16.98h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36c0,0.39-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.91" x2="24.91" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,16.978c-0.398,0-0.723-0.325-0.723-0.724v-0.717 c0-0.399,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.324,0.723,0.724v0.717c0,0.398-0.324,0.724-0.723,0.724H24.553z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,16.978h-0.717c-0.398,0-0.723-0.325-0.723-0.724v0.36c0,0.4,0.324,0.724,0.723,0.724 h0.717c0.398,0,0.723-0.323,0.723-0.724v-0.36C25.992,16.652,25.668,16.978,25.27,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="24.9102" x2="24.9102" y1="15.1587" y2="16.6511">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,16.25c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.159-0.362-0.36v-0.717c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36v0.724z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.02" x2="22.02" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,16.254c0,0.201-0.162,0.36-0.361,0.36h-0.717c-0.199,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.163-0.36,0.362-0.36h0.717c0.199,0,0.361,0.161,0.361,0.36V16.254z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.0195" x2="22.0195" y1="14.7866" y2="17.0331">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,16.98c-0.398,0-0.724-0.325-0.724-0.724v-0.717c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724h-0.719z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,16.98h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36c0,0.39-0.32,0.72-0.72,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.02" x2="22.02" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.661,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H21.661z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,16.978h-0.716c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C23.101,16.652,22.775,16.978,22.377,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="22.0195" x2="22.0195" y1="15.1587" y2="16.6511">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,16.25c0,0.201-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.363,0.161,0.363,0.36v0.724z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.13" x2="19.13" y1="14.79" y2="17.03">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,16.254c0,0.201-0.163,0.36-0.363,0.36h-0.716c-0.2,0-0.362-0.159-0.362-0.36v-0.717 c0-0.199,0.162-0.36,0.362-0.36h0.716c0.2,0,0.363,0.161,0.363,0.36V16.254z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.127" x2="19.127" y1="14.7866" y2="17.0331">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,16.98c-0.398,0-0.724-0.325-0.724-0.724v-0.717c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724h-0.72z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.48,16.98h-0.71c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36c0,0.39-0.33,0.72-0.73,0.72z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.13" x2="19.13" y1="15.16" y2="16.65">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,16.978c-0.398,0-0.724-0.325-0.724-0.724v-0.717 c0-0.399,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.324,0.724,0.724v0.717c0,0.398-0.325,0.724-0.724,0.724H18.77z" fill="url(#SVGID_22_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,16.978H18.77c-0.398,0-0.724-0.325-0.724-0.724v0.36c0,0.4,0.325,0.724,0.724,0.724 h0.716c0.398,0,0.724-0.323,0.724-0.724v-0.36C20.209,16.652,19.884,16.978,19.485,16.978z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.1279" x2="19.1279" y1="15.1587" y2="16.6511">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,16.25c0,0.201-0.162,0.36-0.362,0.36h-0.72c-0.199,0-0.361-0.159-0.361-0.36v-0.717c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36v0.724z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.91" x2="24.91" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M19.848,16.254c0,0.201-0.162,0.36-0.362,0.36H18.77c-0.199,0-0.361-0.159-0.361-0.36v-0.717 c0-0.199,0.162-0.36,0.361-0.36h0.716c0.2,0,0.362,0.161,0.362,0.36V16.254z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="24.9111" x2="24.9111" y1="17.6797" y2="19.9236">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M24.55,19.87c-0.398,0-0.723-0.322-0.723-0.723v-0.72c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723h-0.717z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M25.27,19.87h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361c0,0.39-0.32,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.91" x2="24.91" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M24.553,19.868c-0.398,0-0.723-0.322-0.723-0.723V18.43 c0-0.398,0.324-0.724,0.723-0.724h0.717c0.398,0,0.723,0.325,0.723,0.724v0.716c0,0.4-0.324,0.723-0.723,0.723H24.553z" fill="url(#SVGID_24_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M25.27,19.868h-0.717c-0.398,0-0.723-0.322-0.723-0.723v0.361c0,0.4,0.324,0.725,0.723,0.725 h0.717c0.398,0,0.723-0.324,0.723-0.725v-0.361C25.992,19.546,25.668,19.868,25.27,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="24.9102" x2="24.9102" y1="18.0508" y2="19.5437">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.63,19.15c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.199,0-0.362-0.162-0.362-0.361v-0.72c0-0.199,0.163-0.361,0.362-0.361h0.717c0.199,0,0.361,0.162,0.361,0.361v0.716z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.02" x2="22.02" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.631,19.146c0,0.199-0.162,0.361-0.361,0.361h-0.717c-0.199,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.163-0.361,0.362-0.361h0.717c0.199,0,0.361,0.162,0.361,0.361V19.146z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="22.0195" x2="22.0195" y1="17.6797" y2="19.9236">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M21.66,19.87c-0.398,0-0.724-0.322-0.724-0.723v-0.72c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723h-0.719z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M22.38,19.87h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361c0,0.39-0.32,0.71-0.72,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.02" x2="22.02" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M21.661,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H21.661z" fill="url(#SVGID_26_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M22.377,19.868h-0.716c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C23.101,19.546,22.775,19.868,22.377,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="22.0195" x2="22.0195" y1="18.0508" y2="19.5437">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M22.74,19.15c0,0.199-0.163,0.361-0.363,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361v-0.72c0-0.199,0.162-0.361,0.362-0.361h0.716c0.2,0,0.363,0.162,0.363,0.361v0.716z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.13" x2="19.13" y1="17.68" y2="19.92">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M22.74,19.146c0,0.199-0.163,0.361-0.363,0.361h-0.716c-0.2,0-0.362-0.162-0.362-0.361V18.43 c0-0.199,0.162-0.361,0.362-0.361h0.716c0.2,0,0.363,0.162,0.363,0.361V19.146z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="19.127" x2="19.127" y1="17.6797" y2="19.9236">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M18.77,19.87c-0.398,0-0.724-0.322-0.724-0.723v-0.72c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723h-0.72z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M19.48,19.87h-0.71c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361c0,0.39-0.33,0.71-0.73,0.71z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.13" x2="19.13" y1="18.05" y2="19.54">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M18.77,19.868c-0.398,0-0.724-0.322-0.724-0.723V18.43 c0-0.398,0.325-0.724,0.724-0.724h0.716c0.398,0,0.724,0.325,0.724,0.724v0.716c0,0.4-0.325,0.723-0.724,0.723H18.77z" fill="url(#SVGID_28_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M19.485,19.868H18.77c-0.398,0-0.724-0.322-0.724-0.723v0.361c0,0.4,0.325,0.725,0.724,0.725 h0.716c0.398,0,0.724-0.324,0.724-0.725v-0.361C20.209,19.546,19.884,19.868,19.485,19.868z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="19.1279" x2="19.1279" y1="18.0508" y2="19.5437">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M19.85,19.15c0,0.199-0.162,0.361-0.362,0.361h-0.72c-0.199,0-0.361-0.162-0.361-0.361v-0.72c0-0.199,0.162-0.361,0.361-0.361h0.716c0.2,0,0.362,0.162,0.362,0.361v0.716z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7805" x2="-7805" y1="1151" y2="1158">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<path d="M19.848,19.146c0,0.199-0.162,0.361-0.362,0.361H18.77c-0.199,0-0.361-0.162-0.361-0.361V18.43 c0-0.199,0.162-0.361,0.361-0.361h0.716c0.2,0,0.362,0.162,0.362,0.361V19.146z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="-7805.2559" x2="-7805.2559" y1="1151.4873" y2="1157.8247">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_30_)" height="6.053" width="18.92" x="5.541" y="22.03"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="15" x2="15" y1="21.61" y2="23.73">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<rect fill="url(#SVGID_30_)" height="6.053" width="18.918" x="5.541" y="22.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="14.9995" x2="14.9995" y1="21.6055" y2="23.7336">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M24.57,21.58h-19.14c-0.21,0-0.381,0.171-0.381,0.383v1.75h19.9v-1.75c0-0.2-0.17-0.38-0.38-0.38z" fill="url(#SVGID_31_)"/>
-<path d="M24.57,21.21h-19.14c-0.21,0-0.381,0.17-0.381,0.384v0.378c0-0.212,0.171-0.383,0.381-0.383h19.14c0.211,0,0.382,0.171,0.382,0.383v-0.38c0-0.21-0.17-0.38-0.38-0.38z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7805" x2="-7805" y1="1151" y2="1157">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<path d="M24.567,21.585H5.432c-0.21,0-0.381,0.171-0.381,0.383v1.75h19.898v-1.75 C24.949,21.756,24.778,21.585,24.567,21.585z" fill="url(#SVGID_31_)"/>
+<path d="M24.567,21.206H5.432c-0.21,0-0.381,0.17-0.381,0.384v0.378c0-0.212,0.171-0.383,0.381-0.383 h19.136c0.211,0,0.382,0.171,0.382,0.383V21.59C24.949,21.376,24.778,21.206,24.567,21.206z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="-7805.2559" x2="-7805.2559" y1="1151.4287" y2="1157.0741">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_32_)" points="5.541,24.79,5.541,22.03,24.46,22.03,24.46,28.08,17.33,28.08,13.43,27.89,6.297,25.85,5.729,25.25"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.92" x="5.541" y="22.03"/>
-<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.92" x="5.541" y="22.41"/>
-<rect fill="#020202" fill-opacity="0.05" height="0.379" stroke-opacity="0.05" width="18.92" x="5.541" y="22.79"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.62" x="8.189" y="24.68"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.62" x="8.189" y="25.06"/>
-<path d="M17.43,28.08s-6.867-1.039-9.421-4.539c0,0-1.93,2.648-2.467,1.209,0.271,1.39,2.72,3.39,11.89,3.33z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M17.43,28.08s-6.867-0.282-9.421-3.781c0,0-1.93,2.27-2.467,0.451,0.271,1.39,2.72,3.39,11.89,3.33z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7801" x2="-7802" y1="1152" y2="1154">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<polygon fill="url(#SVGID_32_)" points="5.541,24.79 5.541,22.032 24.459,22.032 24.459,28.085 17.334,28.085 13.432,27.889 6.297,25.848 5.729,25.252 "/>
+<rect fill="#020202" fill-opacity="0.3" height="0.38" stroke-opacity="0.3" width="18.918" x="5.541" y="22.032"/>
+<rect fill="#020202" fill-opacity="0.15" height="0.378" stroke-opacity="0.15" width="18.918" x="5.541" y="22.412"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.379" stroke-opacity="0.05" width="18.918" x="5.541" y="22.79"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.377" stroke-opacity="0.5" width="13.621" x="8.189" y="24.682"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.379" stroke-opacity="0.2" width="13.621" x="8.189" y="25.059"/>
+<path d="M17.429,28.084c0,0-6.867-1.039-9.421-4.539 c0,0-1.93,2.648-2.467,1.209C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M17.429,28.084c0,0-6.867-0.282-9.421-3.781 c0,0-1.93,2.27-2.467,0.451C5.813,26.145,8.262,28.136,17.429,28.084z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -7790.2559 1179.5723)" gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="-7801.3809" x2="-7802.0938" y1="1151.8154" y2="1154.4645">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M17.43,28.08s-6.867-0.06-9.421-3.56c0,0-1.83,2.256-2.467,0.229,0.271,1.39,2.72,3.39,11.89,3.33z" fill="url(#SVGID_33_)"/>
+<path d="M17.429,28.084c0,0-6.867-0.06-9.421-3.56 c0,0-1.83,2.256-2.467,0.229C5.813,26.145,8.262,28.136,17.429,28.084z" fill="url(#SVGID_33_)" fill-rule="evenodd"/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="492.5" x2="492.5" y1="-626.4" y2="-656.4">
-<stop offset="0" stop-color="#B8BCBB"/>
-<stop offset="0.7091" stop-color="#4B4B4D"/>
-<stop offset="1" stop-color="#ABAFAF"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="492.5" x2="492.5" y1="-626.4292" y2="-656.4292">
+<stop offset="0" style="stop-color:#B8BCBB"/>
+<stop offset="0.7091" style="stop-color:#4B4B4D"/>
+<stop offset="1" style="stop-color:#ABAFAF"/>
</linearGradient>
-<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5,0-4.135,3.364-7.5,7.5-7.5,4.135,0,7.5,3.365,7.5,7.5,0,4.14-3.36,7.5-7.5,7.5z" fill="url(#SVGID_34_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="21.5" x2="21.5" y1="14.45" y2="28.45">
-<stop offset="0" stop-color="#747576"/>
-<stop offset="0.7394" stop-color="#262628"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5c0-4.135,3.364-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.636,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_34_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="21.5" x2="21.5" y1="14.4453" y2="28.4458">
+<stop offset="0" style="stop-color:#747576"/>
+<stop offset="0.7394" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M28.5,21.5c0,3.866-3.135,7-7,7-3.866,0-7-3.134-7-7,0-3.865,3.134-7,7-7,3.86,0,7,3.14,7,7z" fill="url(#SVGID_35_)"/>
-<polygon fill="#FFFFFF" points="23,18,23,19,25,19,25,20,23,20,23,21,25,21,25,22,23,22,23,25,26,25,26,18"/>
-<path d="M17,18v7h2v-2h2v2h1v-9l-5,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm2,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M28.5,21.5c0,3.866-3.135,7-7,7c-3.866,0-7-3.134-7-7c0-3.865,3.134-7,7-7 C25.365,14.5,28.5,17.635,28.5,21.5z" fill="url(#SVGID_35_)"/>
+<polygon fill="#FFFFFF" points="23,18 23,19 25,19 25,20 23,20 23,21 25,21 25,22 23,22 23,25 26,25 26,18 "/>
+<path d="M17,18v7h2v-2h2v2h1v-9L17,18z M19,22h-1v-1h1V22z M19,20h-1v-1h1V20z M21,22h-1v-1h1V22z M21,20h-1v-1h1V20 z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="5" x="21" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="23"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_group.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_group.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<radialGradient cx="669.4" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="11.1">
@@ -73,13 +75,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M19.11,11.16s1.818,2.389,5.512,2.384-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
+<path d="M19.11,11.16s1.818,2.389,5.512,2.384c0,0-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="663.1" x2="663.1" y1="-572" y2="-577.3">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M18.68,9.836s-1.78,0.106-1.12,3.123-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
+<path d="M18.68,9.836s-1.78,0.106-1.12,3.123c0,0-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="670.2" x2="670" y1="-569.9" y2="-572.3">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -128,13 +130,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M6.936,11.16s1.818,2.389,5.513,2.384-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
+<path d="M6.936,11.16s1.818,2.389,5.513,2.384c0,0-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="638.7" x2="638.8" y1="-572.3" y2="-577.7">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M6.498,9.836s-1.779,0.106-1.119,3.123-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
+<path d="M6.498,9.836s-1.779,0.106-1.119,3.123c0,0-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="645.9" x2="645.6" y1="-569.9" y2="-572.3">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -194,7 +196,7 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M12.11,8.272s2.658,3.492,8.059,3.485-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
+<path d="M12.11,8.272s2.658,3.492,8.059,3.485c0,0-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="648.1" x2="648.2" y1="-565.2" y2="-573">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
@@ -208,4 +210,4 @@
<path d="M16.06,6.946c-1.212-0.173-3.263-1.247-4.065-0.863,0,0,2.63-3,7.271,0.415,0,0-1.11,0.747-3.21,0.448z" fill="url(#SVGID_28_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,253 +1,255 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,8,0,25.29,0,30,30,30,30,25.29,30,8,30,0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="2.165" y2="28.43">
-<stop offset="0" stop-color="#262628"/>
-<stop offset="1" stop-color="#5C5D5F"/>
-</linearGradient>
-<path d="M2.647,27.94c-1.459,0-2.647-1.19-2.647-2.65v-17.29c0-1.295,0.936-2.376,2.167-2.603,0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.726,1.407,4.177,3.295h16c1.46,0.001,2.65,1.188,2.65,2.647v17.29c0,1.46-1.188,2.647-2.647,2.647h-24.7z" fill="url(#SVGID_1__)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.114" y2="26.7">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<polygon fill="none" points="0,8 0,25.294 0,30 30,30 30,25.294 30,8 30,0 0,0 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="2.1646" y2="28.4294">
+<stop offset="0" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#5C5D5F"/>
</linearGradient>
-<path d="M29,25.29c0,0.909-0.738,1.647-1.647,1.647h-24.7c-0.909,0-1.647-0.74-1.647-1.65v-17.29c0-0.908,0.738-1.646,1.647-1.646h24.7c0.91,0,1.65,0.738,1.65,1.646v17.29z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="6.114" y2="26.7">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M2.647,27.941C1.188,27.941,0,26.754,0,25.294V8c0-1.295,0.936-2.376,2.167-2.603 c0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.726,1.407,4.177,3.295h15.999C28.813,5.354,30,6.541,30,8v17.294 c0,1.46-1.188,2.647-2.647,2.647H2.647z" fill="url(#SVGID_1__)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.1143" y2="26.7021">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M27.35,6.354h-24.7c-0.909,0-1.647,0.738-1.647,1.646v17.29c0,0.909,0.738,1.647,1.647,1.647-0.682,0-1.235-0.554-1.235-1.236v-17.7c0-0.682,0.554-1.235,1.235-1.235h24.7c0.682,0,1.234,0.554,1.234,1.235v17.7c0,0.683-0.552,1.236-1.234,1.236,0.909,0,1.647-0.738,1.647-1.647v-17.29c0-0.908-0.74-1.646-1.65-1.646z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.47" x2="24.47" y1="20.77" y2="24.09">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M29,25.294c0,0.909-0.738,1.647-1.647,1.647H2.647C1.738,26.941,1,26.203,1,25.294V8 c0-0.908,0.738-1.646,1.647-1.646h24.705C28.262,6.354,29,7.092,29,8V25.294z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="6.1143" y2="26.7021">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+</linearGradient>
+<path d="M27.353,6.354H2.647C1.738,6.354,1,7.092,1,8v17.294c0,0.909,0.738,1.647,1.647,1.647 c-0.682,0-1.235-0.554-1.235-1.236v-0.411V8.412V8c0-0.682,0.554-1.235,1.235-1.235h24.705c0.682,0,1.234,0.554,1.234,1.235v0.412 v16.882v0.411c0,0.683-0.552,1.236-1.234,1.236c0.909,0,1.647-0.738,1.647-1.647V8C29,7.092,28.262,6.354,27.353,6.354z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.4707" x2="24.4707" y1="20.7725" y2="24.0876">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,24.06c-0.455,0-0.824-0.368-0.824-0.822v-1.646c0-0.455,0.369-0.824,0.824-0.824h1.647c0.456,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.368,0.822-0.824,0.822h-1.653z" fill="url(#SVGID_4__)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.47" x2="24.47" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.647c0.456,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.368,0.822-0.824,0.822H23.647z" fill="url(#SVGID_4__)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="24.4707" x2="24.4707" y1="21.146" y2="23.7092">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,23.24c0,0.228-0.184,0.411-0.411,0.411h-1.647c-0.228,0-0.412-0.184-0.412-0.411v-1.646c0-0.229,0.184-0.412,0.412-0.412h1.647c0.227,0,0.411,0.183,0.411,0.412v1.645z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.94" x2="19.94" y1="20.73" y2="24.13">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,23.235c0,0.228-0.184,0.411-0.411,0.411h-1.647c-0.228,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.184-0.412,0.412-0.412h1.647c0.227,0,0.411,0.183,0.411,0.412V23.235z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.9414" x2="19.9414" y1="20.7324" y2="24.1276">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,24.06c-0.455,0-0.824-0.368-0.824-0.822v-1.646c0-0.455,0.369-0.824,0.824-0.824h1.646c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822h-1.662z" fill="url(#SVGID_6_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="19.94" x2="19.94" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H19.118z" fill="url(#SVGID_6_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="19.9409" x2="19.9409" y1="21.146" y2="23.7092">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,23.24c0,0.228-0.184,0.411-0.413,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.646c0-0.229,0.185-0.412,0.413-0.412h1.646c0.229,0,0.413,0.183,0.413,0.412v1.645z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.41" x2="15.41" y1="20.73" y2="24.09">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.176,23.235c0,0.228-0.184,0.411-0.413,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.646 c0-0.229,0.185-0.412,0.413-0.412h1.646c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.4126" x2="15.4126" y1="20.7324" y2="24.0876">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,24.06c-0.452,0-0.821-0.368-0.821-0.822v-1.646c0-0.455,0.369-0.824,0.821-0.824h1.647c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822h-1.653z" fill="url(#SVGID_8_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15.41" x2="15.41" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.587,24.058c-0.452,0-0.821-0.368-0.821-0.822v-1.646 c0-0.455,0.369-0.824,0.821-0.824h1.647c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_8_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15.4121" x2="15.4121" y1="21.146" y2="23.7092">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,23.24c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.411-0.184-0.411-0.411v-1.646c0-0.229,0.184-0.412,0.411-0.412h1.647c0.229,0,0.413,0.183,0.413,0.412v1.645z" fill="url(#SVGID_9_)"/>
-<path d="M25.29,19.94h-1.647c-0.455,0-0.824-0.369-0.824-0.825v0.412c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824v-0.412c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.47" x2="24.47" y1="16.66" y2="19.97">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M16.647,23.235c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.411-0.184-0.411-0.411v-1.646 c0-0.229,0.184-0.412,0.411-0.412h1.647c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_9_)"/>
+<path d="M25.294,19.942h-1.647c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824v-0.412C26.118,19.573,25.75,19.942,25.294,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.4707" x2="24.4707" y1="16.6553" y2="19.9724">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,19.94c-0.455,0-0.824-0.369-0.824-0.825v-1.65c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.368,0.825-0.824,0.825h-1.653z" fill="url(#SVGID_10_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="24.47" x2="24.47" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.368,0.825-0.824,0.825H23.647z" fill="url(#SVGID_10_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="24.4707" x2="24.4707" y1="17.0278" y2="19.592">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,19.12c0,0.229-0.184,0.412-0.411,0.412h-1.647c-0.228,0-0.412-0.184-0.412-0.412v-1.65c0-0.226,0.184-0.411,0.412-0.411h1.647c0.227,0,0.411,0.186,0.411,0.411v1.647z" fill="url(#SVGID_11_)"/>
-<path d="M20.76,19.94h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824v-0.412c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.94" x2="19.94" y1="16.62" y2="20.01">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,19.117c0,0.229-0.184,0.412-0.411,0.412h-1.647c-0.228,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.184-0.411,0.412-0.411h1.647c0.227,0,0.411,0.186,0.411,0.411V19.117z" fill="url(#SVGID_11_)"/>
+<path d="M20.764,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824v-0.412C21.589,19.573,21.218,19.942,20.764,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.9414" x2="19.9414" y1="16.6152" y2="20.0124">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,19.94c-0.455,0-0.824-0.369-0.824-0.825v-1.65c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825h-1.662z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.94" x2="19.94" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H19.118z" fill="url(#SVGID_12_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="19.9409" x2="19.9409" y1="17.0278" y2="19.592">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,19.12c0,0.229-0.184,0.412-0.413,0.412h-1.646c-0.228,0-0.413-0.184-0.413-0.412v-1.65c0-0.226,0.185-0.411,0.413-0.411h1.646c0.229,0,0.413,0.186,0.413,0.411v1.647z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.41" x2="15.41" y1="16.62" y2="19.97">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.176,19.117c0,0.229-0.184,0.412-0.413,0.412h-1.646c-0.228,0-0.413-0.184-0.413-0.412V17.47 c0-0.226,0.185-0.411,0.413-0.411h1.646c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4126" x2="15.4126" y1="16.6152" y2="19.9724">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,19.94c-0.452,0-0.821-0.369-0.821-0.825v-1.65c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825h-1.653z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M16.23,19.94h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824v-0.412c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.41" x2="15.41" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.587,19.942c-0.452,0-0.821-0.369-0.821-0.825V17.47 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H14.587z" fill="url(#SVGID_14_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,19.942h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.689,19.942,16.234,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.4121" x2="15.4121" y1="17.0278" y2="19.592">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,19.12c0,0.229-0.184,0.412-0.413,0.412h-1.647c-0.227,0-0.411-0.184-0.411-0.412v-1.65c0-0.226,0.184-0.411,0.411-0.411h1.647c0.229,0,0.413,0.186,0.413,0.411v1.647z" fill="url(#SVGID_15_)"/>
-<path d="M25.29,15.82h-1.647c-0.455,0-0.824-0.369-0.824-0.822v0.411c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824v-0.41c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.47" x2="24.47" y1="12.54" y2="15.85">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M16.647,19.117c0,0.229-0.184,0.412-0.413,0.412h-1.647c-0.227,0-0.411-0.184-0.411-0.412V17.47 c0-0.226,0.184-0.411,0.411-0.411h1.647c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_15_)"/>
+<path d="M25.294,15.822h-1.647c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.647c0.456,0,0.824-0.369,0.824-0.824V15C26.118,15.453,25.75,15.822,25.294,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.4707" x2="24.4707" y1="12.5381" y2="15.8522">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,15.82c-0.455,0-0.824-0.369-0.824-0.822v-1.647c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822v1.65c0,0.453-0.368,0.822-0.824,0.822h-1.653z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="24.47" x2="24.47" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.647c0.456,0,0.824,0.37,0.824,0.822V15c0,0.453-0.368,0.822-0.824,0.822H23.647z" fill="url(#SVGID_16_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="24.4707" x2="24.4707" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,15c0,0.228-0.184,0.411-0.411,0.411h-1.647c-0.228,0-0.412-0.184-0.412-0.411v-1.647c0-0.228,0.184-0.411,0.412-0.411h1.647c0.227,0,0.411,0.184,0.411,0.411v1.65z" fill="url(#SVGID_17_)"/>
-<path d="M20.76,15.82h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824v-0.41c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.94" x2="19.94" y1="12.5" y2="15.89">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,15c0,0.228-0.184,0.411-0.411,0.411h-1.647c-0.228,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.184-0.411,0.412-0.411h1.647c0.227,0,0.411,0.184,0.411,0.411V15z" fill="url(#SVGID_17_)"/>
+<path d="M20.764,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.454,0,0.825-0.369,0.825-0.824V15C21.589,15.453,21.218,15.822,20.764,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.9414" x2="19.9414" y1="12.498" y2="15.8922">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,15.82c-0.455,0-0.824-0.369-0.824-0.822v-1.647c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822v1.65c0,0.453-0.371,0.822-0.825,0.822h-1.662z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="19.94" x2="19.94" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.454,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H19.118z" fill="url(#SVGID_18_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="19.9409" x2="19.9409" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,15c0,0.228-0.184,0.411-0.413,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.647c0-0.228,0.185-0.411,0.413-0.411h1.646c0.229,0,0.413,0.184,0.413,0.411v1.65z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.41" x2="15.41" y1="12.5" y2="15.85">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.176,15c0,0.228-0.184,0.411-0.413,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.647 c0-0.228,0.185-0.411,0.413-0.411h1.646c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.4126" x2="15.4126" y1="12.498" y2="15.8522">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,15.82c-0.452,0-0.821-0.369-0.821-0.822v-1.647c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822v1.65c0,0.453-0.371,0.822-0.825,0.822h-1.653z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M16.23,15.82h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824v-0.41c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="15.41" x2="15.41" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.587,15.822c-0.452,0-0.821-0.369-0.821-0.822v-1.647 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.455,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_20_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,15.822h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.455,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.689,15.822,16.234,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="15.4121" x2="15.4121" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,15c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.411-0.184-0.411-0.411v-1.647c0-0.228,0.184-0.411,0.411-0.411h1.647c0.229,0,0.413,0.184,0.413,0.411v1.65z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.94" x2="19.94" y1="7.598" y2="11.73">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M16.647,15c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.411-0.184-0.411-0.411v-1.647 c0-0.228,0.184-0.411,0.411-0.411h1.647c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9434" x2="19.9434" y1="7.5977" y2="11.732">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
</linearGradient>
-<path d="M13.35,11.7c-0.454,0-0.825-0.374-0.825-0.833v-2.447c0-0.461,0.371-0.834,0.825-0.834h13.18c0.454,0,0.823,0.373,0.823,0.834v2.449c0,0.459-0.369,0.833-0.823,0.833h-13.17z" fill="url(#SVGID_22_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.94" x2="19.94" y1="8.02" y2="11.35">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M13.354,11.705c-0.454,0-0.825-0.374-0.825-0.833V8.423 c0-0.461,0.371-0.834,0.825-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.449c0,0.459-0.369,0.833-0.823,0.833H13.354z" fill="url(#SVGID_22_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.9419" x2="19.9419" y1="8.0195" y2="11.3512">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M26.94,10.87c0,0.23-0.183,0.417-0.411,0.417h-13.18c-0.227,0-0.412-0.187-0.412-0.417v-2.447c0-0.23,0.185-0.417,0.412-0.417h13.18c0.228,0,0.411,0.187,0.411,0.417v2.449z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.94" x2="19.94" y1="3.962" y2="12.59">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M26.942,10.872c0,0.23-0.183,0.417-0.411,0.417H13.354c-0.227,0-0.412-0.187-0.412-0.417V8.423 c0-0.23,0.185-0.417,0.412-0.417h13.177c0.228,0,0.411,0.187,0.411,0.417V10.872z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.9424" x2="19.9424" y1="3.9624" y2="12.5882">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_24_)" height="2.449" width="13.18" x="13.35" y="8.423"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="19.94" x2="19.94" y1="5.636" y2="11.64">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_24_)" height="2.449" width="13.177" x="13.354" y="8.423"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="19.9424" x2="19.9424" y1="5.6362" y2="11.6377">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_25_)" points="13.35,9.51,26.53,8.807,26.53,8.412,13.35,8.412"/>
-<path d="M2.234,21.18c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.118-1.848,4.118-4.117v-14.83h-8.643c-0.147,0-0.277,0.046-0.413,0.083v14.74z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M6.354,24.88h0.822c2.044,0,3.706-1.662,3.706-3.706v-14.82h-8.233v14.82c0,2.04,1.663,3.7,3.707,3.7z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.766" x2="6.766" y1="3.146" y2="24.87">
-<stop offset="0" stop-color="#747576"/>
-<stop offset="0.7394" stop-color="#262628"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<polygon fill="url(#SVGID_25_)" points="13.354,9.51 26.531,8.807 26.531,8.412 13.354,8.412 "/>
+<path d="M2.234,21.177c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.118-1.848,4.118-4.117V6.354 H4.706H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6.354,24.883h0.822c2.044,0,3.706-1.662,3.706-3.706V6.354H4.706H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.7656" x2="6.7656" y1="3.1465" y2="24.8746">
+<stop offset="0" style="stop-color:#747576"/>
+<stop offset="0.7394" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M10.47,21.18c0,1.819-1.474,3.294-3.295,3.294h-0.821c-1.82,0-3.294-1.475-3.294-3.294v-14.83c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295v14.82z" fill="url(#SVGID_26_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.766" x2="6.766" y1="3.082" y2="8.932">
-<stop offset="0" stop-color="#B8BCBB"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M10.471,21.177c0,1.819-1.474,3.294-3.295,3.294H6.354c-1.82,0-3.294-1.475-3.294-3.294V6.354 c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295V21.177z" fill="url(#SVGID_26_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.7656" x2="6.7656" y1="3.082" y2="8.9318">
+<stop offset="0" style="stop-color:#B8BCBB"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M7.176,3.059h-0.822c-1.82,0-3.294,1.476-3.294,3.295v2.47c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295v-2.47c0-1.82-1.473-3.295-3.294-3.295z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.766" x2="6.766" y1="3.069" y2="7.258">
-<stop offset="0" stop-color="#D8DDDA"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v2.47c0-1.819,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.476,3.295,3.295v-2.47C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.7656" x2="6.7656" y1="3.0688" y2="7.2577">
+<stop offset="0" style="stop-color:#D8DDDA"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M7.176,3.059h-0.822c-1.82,0-3.294,1.476-3.294,3.295v0.411c0-1.818,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.477,3.295,3.295v-0.411c0-1.82-1.473-3.295-3.294-3.295z" fill="url(#SVGID_28_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.765" x2="6.765" y1="2.735" y2="24.61">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="0.7576" stop-color="#262628"/>
-<stop offset="1" stop-color="#202020"/>
+<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v0.411c0-1.818,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.477,3.295,3.295V6.354C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_28_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.7646" x2="6.7646" y1="2.7354" y2="24.6079">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="0.7576" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#202020"/>
</linearGradient>
-<path d="M7.176,5.528h-0.822c-0.438,0-0.855,0.087-1.236,0.244v16.23h3.292v-16.23c-0.38-0.157-0.796-0.244-1.234-0.244z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="6.766" x2="6.766" y1="18.73" y2="24.58">
-<stop offset="0" stop-color="#262628"/>
-<stop offset="1" stop-color="#5C5D5F"/>
+<path d="M7.176,5.528H6.354c-0.438,0-0.855,0.087-1.236,0.244V22h3.292V5.772 C8.03,5.615,7.614,5.528,7.176,5.528z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="6.7656" x2="6.7656" y1="18.7295" y2="24.5792">
+<stop offset="0" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#5C5D5F"/>
</linearGradient>
-<path d="M7.176,22h-0.822c-1.82,0-3.294-1.476-3.294-3.294v2.471c0,1.819,1.474,3.294,3.294,3.294h0.822c1.821,0,3.295-1.475,3.295-3.294v-2.471c0,1.81-1.473,3.29-3.294,3.29z" fill="url(#SVGID_30_)"/>
+<path d="M7.176,22H6.354c-1.82,0-3.294-1.476-3.294-3.294v2.471c0,1.819,1.474,3.294,3.294,3.294h0.822 c1.821,0,3.295-1.475,3.295-3.294v-2.471C10.471,20.524,8.997,22,7.176,22z" fill="url(#SVGID_30_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,266 +1,268 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M21.5,30c-2.038,0-3.986-0.729-5.531-2.059h-13.32c-1.459,0-2.647-1.19-2.647-2.65v-17.29c0-1.295,0.936-2.376,2.167-2.603,0.436-1.91,2.147-3.339,4.188-3.339h0.822c2.023,0,3.725,1.407,4.177,3.295h16c1.46,0.001,2.65,1.188,2.65,2.647v17.29c0,1.46-1.188,2.647-2.647,2.647h-0.321c-1.55,1.33-3.49,2.06-5.53,2.06z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.114" y2="26.7">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M21.5,30c-2.038,0-3.986-0.729-5.531-2.059H2.647C1.188,27.941,0,26.754,0,25.294V8 c0-1.295,0.936-2.376,2.167-2.603c0.436-1.91,2.147-3.339,4.188-3.339h0.822c2.023,0,3.725,1.407,4.177,3.295h15.999 C28.813,5.354,30,6.541,30,8v17.294c0,1.46-1.188,2.647-2.647,2.647h-0.321C25.485,29.271,23.537,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.9995" x2="14.9995" y1="6.1143" y2="26.7026">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M29,25.29c0,0.909-0.738,1.647-1.647,1.647h-24.7c-0.909,0-1.647-0.74-1.647-1.65v-17.29c0-0.908,0.738-1.646,1.647-1.646h24.7c0.91,0,1.65,0.738,1.65,1.646v17.29z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.114" y2="26.7">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M29,25.294c0,0.909-0.738,1.647-1.647,1.647H2.647C1.738,26.941,1,26.203,1,25.294V8 c0-0.908,0.738-1.646,1.647-1.646h24.705C28.262,6.354,29,7.092,29,8V25.294z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9995" x2="14.9995" y1="6.1143" y2="26.7026">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M27.35,6.354h-24.7c-0.909,0-1.647,0.738-1.647,1.646v17.29c0,0.909,0.738,1.647,1.647,1.647-0.682,0-1.234-0.554-1.234-1.236v-17.7c0-0.682,0.553-1.235,1.234-1.235h24.7c0.682,0,1.234,0.554,1.234,1.235v17.7c0,0.683-0.553,1.236-1.234,1.236,0.909,0,1.647-0.738,1.647-1.647v-17.29c0-0.908-0.74-1.646-1.65-1.646z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="24.47" x2="24.47" y1="20.77" y2="24.09">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M27.353,6.354H2.647C1.738,6.354,1,7.092,1,8v17.294c0,0.909,0.738,1.647,1.647,1.647 c-0.682,0-1.234-0.554-1.234-1.236v-0.411V8.412V8c0-0.682,0.553-1.235,1.234-1.235h24.705c0.682,0,1.234,0.554,1.234,1.235v0.412 v16.882v0.411c0,0.683-0.553,1.236-1.234,1.236c0.909,0,1.647-0.738,1.647-1.647V8C29,7.092,28.262,6.354,27.353,6.354z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="24.4707" x2="24.4707" y1="20.7725" y2="24.0876">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,24.06c-0.455,0-0.824-0.368-0.824-0.822v-1.646c0-0.455,0.369-0.824,0.824-0.824h1.646c0.457,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.367,0.822-0.824,0.822h-1.653z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.47" x2="24.47" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.457,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.367,0.822-0.824,0.822H23.647z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.4707" x2="24.4707" y1="21.1465" y2="23.7097">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,23.24c0,0.228-0.184,0.411-0.411,0.411h-1.646c-0.229,0-0.412-0.184-0.412-0.411v-1.646c0-0.229,0.184-0.412,0.412-0.412h1.646c0.228,0,0.411,0.183,0.411,0.412v1.645z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.94" x2="19.94" y1="20.73" y2="24.13">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,23.235c0,0.228-0.184,0.411-0.411,0.411h-1.646c-0.229,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.184-0.412,0.412-0.412h1.646c0.228,0,0.411,0.183,0.411,0.412V23.235z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.9414" x2="19.9414" y1="20.7324" y2="24.1276">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,24.06c-0.455,0-0.824-0.368-0.824-0.822v-1.646c0-0.455,0.369-0.824,0.824-0.824h1.646c0.453,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.371,0.822-0.824,0.822h-1.652z" fill="url(#SVGID_5_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.94" x2="19.94" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,24.058c-0.455,0-0.824-0.368-0.824-0.822v-1.646 c0-0.455,0.369-0.824,0.824-0.824h1.646c0.453,0,0.824,0.369,0.824,0.824v1.646c0,0.454-0.371,0.822-0.824,0.822H19.118z" fill="url(#SVGID_5_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.9414" x2="19.9414" y1="21.1465" y2="23.7097">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,23.24c0,0.228-0.185,0.411-0.412,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.646c0-0.229,0.185-0.412,0.412-0.412h1.646c0.228,0,0.412,0.183,0.412,0.412v1.645z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.41" x2="15.41" y1="20.73" y2="24.09">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.177,23.235c0,0.228-0.185,0.411-0.412,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.185-0.412,0.412-0.412h1.646c0.228,0,0.412,0.183,0.412,0.412V23.235z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.4126" x2="15.4126" y1="20.7324" y2="24.0876">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,24.06c-0.452,0-0.821-0.368-0.821-0.822v-1.646c0-0.455,0.369-0.824,0.821-0.824h1.647c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822h-1.653z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.41" x2="15.41" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.587,24.058c-0.452,0-0.821-0.368-0.821-0.822v-1.646 c0-0.455,0.369-0.824,0.821-0.824h1.647c0.454,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.4116" x2="15.4116" y1="21.1465" y2="23.7097">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,23.24c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.41-0.184-0.41-0.411v-1.646c0-0.229,0.184-0.412,0.41-0.412h1.647c0.229,0,0.413,0.183,0.413,0.412v1.645z" fill="url(#SVGID_8_)"/>
-<path d="M25.29,19.94h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824v-0.412c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24.47" x2="24.47" y1="16.66" y2="19.97">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M16.647,23.235c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.41-0.184-0.41-0.411v-1.646 c0-0.229,0.184-0.412,0.41-0.412h1.647c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_8_)"/>
+<path d="M25.294,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824v-0.412C26.118,19.573,25.751,19.942,25.294,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24.4707" x2="24.4707" y1="16.6553" y2="19.9724">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,19.94c-0.455,0-0.824-0.369-0.824-0.825v-1.65c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.367,0.825-0.824,0.825h-1.653z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.47" x2="24.47" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.367,0.825-0.824,0.825H23.647z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.4707" x2="24.4707" y1="17.0283" y2="19.5925">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,19.12c0,0.229-0.184,0.412-0.411,0.412h-1.646c-0.229,0-0.412-0.184-0.412-0.412v-1.65c0-0.226,0.184-0.411,0.412-0.411h1.646c0.228,0,0.411,0.186,0.411,0.411v1.647z" fill="url(#SVGID_10_)"/>
-<path d="M20.76,19.94h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824v-0.412c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="19.94" x2="19.94" y1="16.62" y2="20.01">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,19.117c0,0.229-0.184,0.412-0.411,0.412h-1.646c-0.229,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.184-0.411,0.412-0.411h1.646c0.228,0,0.411,0.186,0.411,0.411V19.117z" fill="url(#SVGID_10_)"/>
+<path d="M20.765,19.942h-1.646c-0.455,0-0.824-0.369-0.824-0.825v0.412 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824v-0.412C21.589,19.573,21.218,19.942,20.765,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="19.9414" x2="19.9414" y1="16.6152" y2="20.0124">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,19.94c-0.455,0-0.824-0.369-0.824-0.825v-1.65c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.371,0.825-0.824,0.825h-1.652z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.94" x2="19.94" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,19.942c-0.455,0-0.824-0.369-0.824-0.825V17.47 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822v1.647c0,0.456-0.371,0.825-0.824,0.825H19.118z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.9414" x2="19.9414" y1="17.0283" y2="19.5925">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,19.12c0,0.229-0.185,0.412-0.412,0.412h-1.646c-0.228,0-0.412-0.184-0.412-0.412v-1.65c0-0.226,0.185-0.411,0.412-0.411h1.646c0.228,0,0.412,0.186,0.412,0.411v1.647z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.41" x2="15.41" y1="16.62" y2="19.97">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.177,19.117c0,0.229-0.185,0.412-0.412,0.412h-1.646c-0.228,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.185-0.411,0.412-0.411h1.646c0.228,0,0.412,0.186,0.412,0.411V19.117z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.4126" x2="15.4126" y1="16.6152" y2="19.9724">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,19.94c-0.452,0-0.821-0.369-0.821-0.825v-1.65c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825h-1.653z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M16.23,19.94h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824v-0.412c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.41" x2="15.41" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.587,19.942c-0.452,0-0.821-0.369-0.821-0.825V17.47 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.371,0.825-0.825,0.825H14.587z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,19.942h-1.647c-0.452,0-0.821-0.369-0.821-0.825v0.412 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.688,19.942,16.234,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4116" x2="15.4116" y1="17.0283" y2="19.5925">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,19.12c0,0.229-0.184,0.412-0.413,0.412h-1.647c-0.227,0-0.41-0.184-0.41-0.412v-1.65c0-0.226,0.184-0.411,0.41-0.411h1.647c0.229,0,0.413,0.186,0.413,0.411v1.647z" fill="url(#SVGID_14_)"/>
-<path d="M25.29,15.82h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824v-0.41c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="24.47" x2="24.47" y1="12.54" y2="15.85">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M16.647,19.117c0,0.229-0.184,0.412-0.413,0.412h-1.647c-0.227,0-0.41-0.184-0.41-0.412V17.47 c0-0.226,0.184-0.411,0.41-0.411h1.647c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_14_)"/>
+<path d="M25.294,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.457,0,0.824-0.369,0.824-0.824V15C26.118,15.453,25.751,15.822,25.294,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="24.4707" x2="24.4707" y1="12.5381" y2="15.8522">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,15.82c-0.455,0-0.824-0.369-0.824-0.822v-1.647c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822v1.65c0,0.453-0.367,0.822-0.824,0.822h-1.653z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.47" x2="24.47" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.457,0,0.824,0.37,0.824,0.822V15c0,0.453-0.367,0.822-0.824,0.822H23.647z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.4707" x2="24.4707" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,15c0,0.228-0.184,0.411-0.411,0.411h-1.646c-0.229,0-0.412-0.184-0.412-0.411v-1.647c0-0.228,0.184-0.411,0.412-0.411h1.646c0.228,0,0.411,0.184,0.411,0.411v1.65z" fill="url(#SVGID_16_)"/>
-<path d="M20.76,15.82h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824v-0.41c0.01,0.45-0.36,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.94" x2="19.94" y1="12.5" y2="15.89">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,15c0,0.228-0.184,0.411-0.411,0.411h-1.646c-0.229,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.184-0.411,0.412-0.411h1.646c0.228,0,0.411,0.184,0.411,0.411V15z" fill="url(#SVGID_16_)"/>
+<path d="M20.765,15.822h-1.646c-0.455,0-0.824-0.369-0.824-0.822v0.411 c0,0.455,0.369,0.824,0.824,0.824h1.646c0.453,0,0.824-0.369,0.824-0.824V15C21.589,15.453,21.218,15.822,20.765,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.9414" x2="19.9414" y1="12.498" y2="15.8922">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,15.82c-0.455,0-0.824-0.369-0.824-0.822v-1.647c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822v1.65c0,0.453-0.371,0.822-0.824,0.822h-1.652z" fill="url(#SVGID_17_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.94" x2="19.94" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,15.822c-0.455,0-0.824-0.369-0.824-0.822v-1.647 c0-0.452,0.369-0.822,0.824-0.822h1.646c0.453,0,0.824,0.37,0.824,0.822V15c0,0.453-0.371,0.822-0.824,0.822H19.118z" fill="url(#SVGID_17_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.9414" x2="19.9414" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,15c0,0.228-0.185,0.411-0.412,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.647c0-0.228,0.185-0.411,0.412-0.411h1.646c0.228,0,0.412,0.184,0.412,0.411v1.65z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.41" x2="15.41" y1="12.5" y2="15.85">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.177,15c0,0.228-0.185,0.411-0.412,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.185-0.411,0.412-0.411h1.646c0.228,0,0.412,0.184,0.412,0.411V15z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.4126" x2="15.4126" y1="12.498" y2="15.8522">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,15.82c-0.452,0-0.821-0.369-0.821-0.822v-1.647c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822v1.65c0,0.453-0.371,0.822-0.825,0.822h-1.653z" fill="url(#SVGID_19_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M16.23,15.82h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824v-0.41c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.41" x2="15.41" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.587,15.822c-0.452,0-0.821-0.369-0.821-0.822v-1.647 c0-0.452,0.369-0.822,0.821-0.822h1.647c0.454,0,0.825,0.37,0.825,0.822V15c0,0.453-0.371,0.822-0.825,0.822H14.587z" fill="url(#SVGID_19_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,15.822h-1.647c-0.452,0-0.821-0.369-0.821-0.822v0.411 c0,0.455,0.369,0.824,0.821,0.824h1.647c0.454,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.688,15.822,16.234,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.4116" x2="15.4116" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,15c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.41-0.184-0.41-0.411v-1.647c0-0.228,0.184-0.411,0.41-0.411h1.647c0.229,0,0.413,0.184,0.413,0.411v1.65z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="19.94" x2="19.94" y1="7.598" y2="11.73">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M16.647,15c0,0.228-0.184,0.411-0.413,0.411h-1.647c-0.227,0-0.41-0.184-0.41-0.411v-1.647 c0-0.228,0.184-0.411,0.41-0.411h1.647c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="19.9434" x2="19.9434" y1="7.5977" y2="11.732">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
</linearGradient>
-<path d="M13.35,11.7c-0.454,0-0.825-0.374-0.825-0.832v-2.45c0-0.461,0.371-0.834,0.825-0.834h13.18c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832h-13.17z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.94" x2="19.94" y1="8.02" y2="11.35">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M13.354,11.705c-0.454,0-0.825-0.374-0.825-0.832v-2.45 c0-0.461,0.371-0.834,0.825-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832H13.354z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9424" x2="19.9424" y1="8.0195" y2="11.3512">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M26.94,10.87c0,0.229-0.184,0.416-0.412,0.416h-13.18c-0.227,0-0.411-0.187-0.411-0.416v-2.45c0-0.23,0.185-0.417,0.411-0.417h13.18c0.229,0,0.412,0.187,0.412,0.417v2.453z" fill="url(#SVGID_22_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.94" x2="19.94" y1="3.961" y2="12.59">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M26.942,10.873c0,0.229-0.184,0.416-0.412,0.416H13.354c-0.227,0-0.411-0.187-0.411-0.416v-2.45 c0-0.23,0.185-0.417,0.411-0.417H26.53c0.229,0,0.412,0.187,0.412,0.417V10.873z" fill="url(#SVGID_22_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.9424" x2="19.9424" y1="3.9609" y2="12.5901">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_23_)" height="2.45" width="13.18" x="13.35" y="8.423"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.94" x2="19.94" y1="5.636" y2="11.64">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_23_)" height="2.45" width="13.177" x="13.354" y="8.423"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.9424" x2="19.9424" y1="5.6362" y2="11.6377">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_24_)" points="13.35,9.51,26.53,8.807,26.53,8.412,13.35,8.412"/>
-<path d="M2.234,21.18c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.117-1.848,4.117-4.117v-14.83h-8.643c-0.147,0-0.277,0.046-0.413,0.083v14.74z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M6.354,24.88h0.822c2.043,0,3.705-1.662,3.705-3.706v-14.82h-8.233v14.82c0,2.04,1.663,3.7,3.707,3.7z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.766" x2="6.766" y1="3.146" y2="24.88">
-<stop offset="0" stop-color="#747576"/>
-<stop offset="0.7394" stop-color="#262628"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<polygon fill="url(#SVGID_24_)" points="13.354,9.51 26.53,8.807 26.53,8.412 13.354,8.412 "/>
+<path d="M2.234,21.177c0,2.27,1.849,4.117,4.12,4.117h0.822c2.27,0,4.117-1.848,4.117-4.117V6.354 H4.706H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6.354,24.883h0.822c2.043,0,3.705-1.662,3.705-3.706V6.354H4.706H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.7656" x2="6.7656" y1="3.1465" y2="24.8751">
+<stop offset="0" style="stop-color:#747576"/>
+<stop offset="0.7394" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M10.47,21.18c0,1.819-1.475,3.294-3.295,3.294h-0.821c-1.82,0-3.295-1.475-3.295-3.294v-14.83c0-1.819,1.475-3.295,3.295-3.295h0.822c1.82,0,3.295,1.476,3.295,3.295v14.82z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.766" x2="6.766" y1="3.082" y2="8.932">
-<stop offset="0" stop-color="#B8BCBB"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M10.472,21.177c0,1.819-1.475,3.294-3.295,3.294H6.354c-1.82,0-3.295-1.475-3.295-3.294V6.354 c0-1.819,1.475-3.295,3.295-3.295h0.822c1.82,0,3.295,1.476,3.295,3.295V21.177z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.7656" x2="6.7656" y1="3.082" y2="8.9318">
+<stop offset="0" style="stop-color:#B8BCBB"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M7.177,3.059h-0.823c-1.82,0-3.295,1.476-3.295,3.295v2.47c0-1.819,1.475-3.295,3.295-3.295h0.822c1.82,0,3.295,1.476,3.295,3.295v-2.47c0-1.82-1.473-3.295-3.293-3.295z" fill="url(#SVGID_26_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.766" x2="6.766" y1="3.069" y2="7.258">
-<stop offset="0" stop-color="#D8DDDA"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M7.177,3.059H6.354c-1.82,0-3.295,1.476-3.295,3.295v2.47c0-1.819,1.475-3.295,3.295-3.295h0.822 c1.82,0,3.295,1.476,3.295,3.295v-2.47C10.472,4.534,8.997,3.059,7.177,3.059z" fill="url(#SVGID_26_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.7656" x2="6.7656" y1="3.0688" y2="7.2577">
+<stop offset="0" style="stop-color:#D8DDDA"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M7.177,3.059h-0.823c-1.82,0-3.295,1.476-3.295,3.295v0.411c0-1.818,1.475-3.295,3.295-3.295h0.822c1.82,0,3.295,1.477,3.295,3.295v-0.411c0-1.82-1.473-3.295-3.293-3.295z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.765" x2="6.765" y1="2.735" y2="24.61">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="0.7576" stop-color="#262628"/>
-<stop offset="1" stop-color="#202020"/>
+<path d="M7.177,3.059H6.354c-1.82,0-3.295,1.476-3.295,3.295v0.411c0-1.818,1.475-3.295,3.295-3.295h0.822 c1.82,0,3.295,1.477,3.295,3.295V6.354C10.472,4.534,8.997,3.059,7.177,3.059z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.7646" x2="6.7646" y1="2.7354" y2="24.6086">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="0.7576" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#202020"/>
</linearGradient>
-<path d="M7.177,5.528h-0.823c-0.439,0-0.855,0.087-1.236,0.244v16.23h3.293v-16.23c-0.381-0.157-0.797-0.244-1.234-0.244z" fill="url(#SVGID_28_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.766" x2="6.766" y1="18.73" y2="24.58">
-<stop offset="0" stop-color="#262628"/>
-<stop offset="1" stop-color="#5C5D5F"/>
+<path d="M7.177,5.528H6.354c-0.439,0-0.855,0.087-1.236,0.244V22h3.293V5.772 C8.03,5.615,7.614,5.528,7.177,5.528z" fill="url(#SVGID_28_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.7656" x2="6.7656" y1="18.7295" y2="24.5792">
+<stop offset="0" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#5C5D5F"/>
</linearGradient>
-<path d="M7.177,22h-0.823c-1.82,0-3.295-1.476-3.295-3.294v2.471c0,1.819,1.475,3.294,3.295,3.294h0.822c1.82,0,3.295-1.475,3.295-3.294v-2.471c0,1.81-1.473,3.29-3.293,3.29z" fill="url(#SVGID_29_)"/>
+<path d="M7.177,22H6.354c-1.82,0-3.295-1.476-3.295-3.294v2.471c0,1.819,1.475,3.294,3.295,3.294h0.822 c1.82,0,3.295-1.475,3.295-3.294v-2.471C10.472,20.524,8.997,22,7.177,22z" fill="url(#SVGID_29_)"/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="492.5" x2="492.5" y1="-626.4" y2="-656.4">
-<stop offset="0" stop-color="#E3DBBF"/>
-<stop offset="0.297" stop-color="#E3DBBF"/>
-<stop offset="0.6667" stop-color="#794335"/>
-<stop offset="1" stop-color="#E3DBBF"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="492.5" x2="492.5" y1="-626.4292" y2="-656.4292">
+<stop offset="0" style="stop-color:#E3DBBF"/>
+<stop offset="0.297" style="stop-color:#E3DBBF"/>
+<stop offset="0.6667" style="stop-color:#794335"/>
+<stop offset="1" style="stop-color:#E3DBBF"/>
</linearGradient>
-<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5,0-4.135,3.363-7.5,7.5-7.5,4.136,0,7.5,3.365,7.5,7.5,0,4.14-3.36,7.5-7.5,7.5z" fill="url(#SVGID_30_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="21.5" x2="21.5" y1="14.45" y2="28.25">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="1" stop-color="#C2A673"/>
+<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.136,0,7.5,3.365,7.5,7.5 C29,25.637,25.636,29,21.5,29L21.5,29z" fill="url(#SVGID_30_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="21.501" x2="21.501" y1="14.4502" y2="28.2501">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</linearGradient>
-<path d="M28.5,21.5c0,3.866-3.137,7-7.001,7-3.866,0-6.999-3.134-6.999-7,0-3.864,3.133-7,6.999-7,3.86,0,7,3.14,7,7z" fill="url(#SVGID_31_)"/>
-<polygon fill-opacity="0.3" points="25.7,22.89,21.5,18.44,17.3,22.89,16.66,22.21,21.5,17.08,26.34,22.21,25.7,22.89" stroke-opacity="0.3"/>
-<polygon fill-opacity="0.3" points="21.5,19.84,17.63,23.95,17.63,25.79,20.53,25.79,20.53,22.89,22.47,22.89,22.47,25.79,25.37,25.79,25.37,23.95" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" points="25.7,22.19,21.5,17.73,17.3,22.19,16.66,21.51,21.5,16.38,26.34,21.51,25.7,22.19"/>
-<polygon fill="#FFFFFF" points="21.5,19.15,17.63,23.25,17.63,25.09,20.53,25.09,20.53,22.19,22.47,22.19,22.47,25.09,25.37,25.09,25.37,23.25"/>
+<path d="M28.501,21.5c0,3.866-3.137,7-7.001,7c-3.866,0-6.999-3.134-6.999-7c0-3.864,3.133-7,6.999-7 C25.364,14.5,28.501,17.636,28.501,21.5z" fill="url(#SVGID_31_)"/>
+<polygon fill-opacity="0.3" points="25.703,22.889 21.499,18.435 17.297,22.889 16.658,22.209 21.499,17.077 26.342,22.209 25.703,22.889 " stroke-opacity="0.3"/>
+<polygon fill-opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" points="25.703,22.188 21.499,17.734 17.297,22.188 16.658,21.51 21.499,16.377 26.342,21.51 25.703,22.188 "/>
+<polygon fill="#FFFFFF" points="21.5,19.146 17.627,23.252 17.627,25.094 20.531,25.094 20.531,22.188 22.469,22.188 22.469,25.094 25.373,25.094 25.373,23.25 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_landline_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,265 +1,267 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M21.5,30c-2.037,0-3.985-0.729-5.531-2.059h-13.32c-1.459,0-2.647-1.19-2.647-2.65v-17.29c0-1.295,0.936-2.376,2.167-2.603,0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.727,1.407,4.178,3.295h16c1.46,0.001,2.65,1.188,2.65,2.647v17.29c0,1.46-1.188,2.647-2.647,2.647h-0.32c-1.55,1.33-3.49,2.06-5.53,2.06z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="6.114" y2="26.7">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M21.5,30c-2.037,0-3.985-0.729-5.531-2.059H2.647C1.188,27.941,0,26.754,0,25.294V8 c0-1.295,0.936-2.376,2.167-2.603c0.436-1.91,2.147-3.339,4.187-3.339h0.822c2.024,0,3.727,1.407,4.178,3.295h15.999 C28.813,5.354,30,6.541,30,8v17.294c0,1.46-1.188,2.647-2.647,2.647H27.03C25.484,29.271,23.537,30,21.5,30L21.5,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.9995" x2="14.9995" y1="6.1143" y2="26.7026">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M29,25.29c0,0.909-0.738,1.647-1.647,1.647h-24.7c-0.909,0-1.647-0.74-1.647-1.65v-17.29c0-0.908,0.738-1.646,1.647-1.646h24.7c0.91,0,1.65,0.738,1.65,1.646v17.29z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="6.114" y2="26.7">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M29,25.294c0,0.909-0.738,1.647-1.647,1.647H2.647C1.738,26.941,1,26.203,1,25.294V8 c0-0.908,0.738-1.646,1.647-1.646h24.705C28.262,6.354,29,7.092,29,8V25.294z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9995" x2="14.9995" y1="6.1143" y2="26.7026">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M27.35,6.354h-24.7c-0.909,0-1.647,0.738-1.647,1.646v17.29c0,0.909,0.738,1.647,1.647,1.647-0.682,0-1.235-0.554-1.235-1.236v-17.7c0-0.682,0.554-1.235,1.235-1.235h24.7c0.683,0,1.235,0.554,1.235,1.235v17.7c0,0.683-0.553,1.236-1.235,1.236,0.909,0,1.647-0.738,1.647-1.647v-17.29c0.01-0.908-0.73-1.646-1.64-1.646z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="24.47" x2="24.47" y1="20.77" y2="24.09">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M27.353,6.354H2.647C1.738,6.354,1,7.092,1,8v17.294c0,0.909,0.738,1.647,1.647,1.647 c-0.682,0-1.235-0.554-1.235-1.236v-0.411V8.412V8c0-0.682,0.554-1.235,1.235-1.235h24.705c0.683,0,1.235,0.554,1.235,1.235v0.412 v16.882v0.411c0,0.683-0.553,1.236-1.235,1.236c0.909,0,1.647-0.738,1.647-1.647V8C29,7.092,28.262,6.354,27.353,6.354z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="24.4707" x2="24.4707" y1="20.7725" y2="24.0876">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,24.06c-0.454,0-0.823-0.368-0.823-0.822v-1.646c0-0.455,0.369-0.824,0.823-0.824h1.647c0.455,0,0.823,0.369,0.823,0.824v1.646c0,0.454-0.368,0.822-0.823,0.822h-1.653z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.47" x2="24.47" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,24.058c-0.454,0-0.823-0.368-0.823-0.822v-1.646 c0-0.455,0.369-0.824,0.823-0.824h1.647c0.455,0,0.823,0.369,0.823,0.824v1.646c0,0.454-0.368,0.822-0.823,0.822H23.647z" fill="url(#SVGID_3__)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="24.4707" x2="24.4707" y1="21.1465" y2="23.7097">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,23.24c0,0.228-0.184,0.411-0.41,0.411h-1.647c-0.228,0-0.411-0.184-0.411-0.411v-1.646c0-0.229,0.184-0.412,0.411-0.412h1.647c0.227,0,0.41,0.183,0.41,0.412v1.645z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.94" x2="19.94" y1="20.73" y2="24.13">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,23.235c0,0.228-0.184,0.411-0.41,0.411h-1.647c-0.228,0-0.411-0.184-0.411-0.411v-1.646 c0-0.229,0.184-0.412,0.411-0.412h1.647c0.227,0,0.41,0.183,0.41,0.412V23.235z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.9424" x2="19.9424" y1="20.7324" y2="24.1276">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,24.06c-0.454,0-0.823-0.368-0.823-0.822v-1.646c0-0.455,0.369-0.824,0.823-0.824h1.646c0.455,0,0.826,0.369,0.826,0.824v1.646c0,0.454-0.371,0.822-0.826,0.822h-1.652z" fill="url(#SVGID_5_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.94" x2="19.94" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,24.058c-0.454,0-0.823-0.368-0.823-0.822v-1.646 c0-0.455,0.369-0.824,0.823-0.824h1.646c0.455,0,0.826,0.369,0.826,0.824v1.646c0,0.454-0.371,0.822-0.826,0.822H19.118z" fill="url(#SVGID_5_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.9404" x2="19.9404" y1="21.1465" y2="23.7097">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,23.24c0,0.228-0.184,0.411-0.412,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.646c0-0.229,0.186-0.412,0.413-0.412h1.646c0.229,0,0.412,0.183,0.412,0.412v1.645z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.41" x2="15.41" y1="20.73" y2="24.09">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.176,23.235c0,0.228-0.184,0.411-0.412,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.646 c0-0.229,0.186-0.412,0.413-0.412h1.646c0.229,0,0.412,0.183,0.412,0.412V23.235z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.4126" x2="15.4126" y1="20.7324" y2="24.0876">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,24.06c-0.453,0-0.822-0.368-0.822-0.822v-1.646c0-0.455,0.369-0.824,0.822-0.824h1.646c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.37,0.822-0.825,0.822h-1.652z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.41" x2="15.41" y1="21.15" y2="23.71">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.588,24.058c-0.453,0-0.822-0.368-0.822-0.822v-1.646 c0-0.455,0.369-0.824,0.822-0.824h1.646c0.455,0,0.825,0.369,0.825,0.824v1.646c0,0.454-0.37,0.822-0.825,0.822H14.588z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15.4116" x2="15.4116" y1="21.1465" y2="23.7097">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,23.24c0,0.228-0.185,0.411-0.413,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.646c0-0.229,0.185-0.412,0.412-0.412h1.646c0.229,0,0.413,0.183,0.413,0.412v1.645z" fill="url(#SVGID_8_)"/>
-<path d="M25.3,19.94h-1.647c-0.454,0-0.823-0.369-0.823-0.825v0.412c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824v-0.412c0,0.45-0.37,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24.47" x2="24.47" y1="16.66" y2="19.97">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M16.647,23.235c0,0.228-0.185,0.411-0.413,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.646 c0-0.229,0.185-0.412,0.412-0.412h1.646c0.229,0,0.413,0.183,0.413,0.412V23.235z" fill="url(#SVGID_8_)"/>
+<path d="M25.295,19.942h-1.647c-0.454,0-0.823-0.369-0.823-0.825v0.412 c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824v-0.412C26.118,19.573,25.75,19.942,25.295,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24.4707" x2="24.4707" y1="16.6553" y2="19.9724">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,19.94c-0.454,0-0.823-0.369-0.823-0.825v-1.65c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822v1.647c0,0.456-0.368,0.825-0.823,0.825h-1.653z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.47" x2="24.47" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,19.942c-0.454,0-0.823-0.369-0.823-0.825V17.47 c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822v1.647c0,0.456-0.368,0.825-0.823,0.825H23.647z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="24.4707" x2="24.4707" y1="17.0283" y2="19.5925">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,19.12c0,0.229-0.184,0.412-0.41,0.412h-1.647c-0.228,0-0.411-0.184-0.411-0.412v-1.65c0-0.226,0.184-0.411,0.411-0.411h1.647c0.227,0,0.41,0.186,0.41,0.411v1.647z" fill="url(#SVGID_10_)"/>
-<path d="M20.76,19.94h-1.646c-0.454,0-0.823-0.369-0.823-0.825v0.412c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824v-0.412c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="19.94" x2="19.94" y1="16.62" y2="20.01">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,19.117c0,0.229-0.184,0.412-0.41,0.412h-1.647c-0.228,0-0.411-0.184-0.411-0.412V17.47 c0-0.226,0.184-0.411,0.411-0.411h1.647c0.227,0,0.41,0.186,0.41,0.411V19.117z" fill="url(#SVGID_10_)"/>
+<path d="M20.764,19.942h-1.646c-0.454,0-0.823-0.369-0.823-0.825v0.412 c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824v-0.412C21.59,19.573,21.219,19.942,20.764,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="19.9424" x2="19.9424" y1="16.6152" y2="20.0124">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,19.94c-0.454,0-0.823-0.369-0.823-0.825v-1.65c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822v1.647c0,0.456-0.371,0.825-0.826,0.825h-1.652z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.94" x2="19.94" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,19.942c-0.454,0-0.823-0.369-0.823-0.825V17.47 c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822v1.647c0,0.456-0.371,0.825-0.826,0.825H19.118z" fill="url(#SVGID_11_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="19.9404" x2="19.9404" y1="17.0283" y2="19.5925">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,19.12c0,0.229-0.184,0.412-0.412,0.412h-1.646c-0.228,0-0.413-0.184-0.413-0.412v-1.65c0-0.226,0.186-0.411,0.413-0.411h1.646c0.229,0,0.412,0.186,0.412,0.411v1.647z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.41" x2="15.41" y1="16.62" y2="19.97">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.176,19.117c0,0.229-0.184,0.412-0.412,0.412h-1.646c-0.228,0-0.413-0.184-0.413-0.412V17.47 c0-0.226,0.186-0.411,0.413-0.411h1.646c0.229,0,0.412,0.186,0.412,0.411V19.117z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.4126" x2="15.4126" y1="16.6152" y2="19.9724">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,19.94c-0.453,0-0.822-0.369-0.822-0.825v-1.65c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.37,0.825-0.825,0.825h-1.652z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M16.23,19.94h-1.646c-0.453,0-0.822-0.369-0.822-0.825v0.412c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824v-0.412c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.41" x2="15.41" y1="17.03" y2="19.59">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.588,19.942c-0.453,0-0.822-0.369-0.822-0.825V17.47 c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822v1.647c0,0.456-0.37,0.825-0.825,0.825H14.588z" fill="url(#SVGID_13_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,19.942h-1.646c-0.453,0-0.822-0.369-0.822-0.825v0.412 c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824v-0.412C17.06,19.573,16.689,19.942,16.234,19.942z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4116" x2="15.4116" y1="17.0283" y2="19.5925">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,19.12c0,0.229-0.185,0.412-0.413,0.412h-1.646c-0.228,0-0.412-0.184-0.412-0.412v-1.65c0-0.226,0.185-0.411,0.412-0.411h1.646c0.229,0,0.413,0.186,0.413,0.411v1.647z" fill="url(#SVGID_14_)"/>
-<path d="M25.3,15.82h-1.647c-0.454,0-0.823-0.369-0.823-0.822v0.411c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824v-0.41c0,0.45-0.37,0.82-0.82,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="24.47" x2="24.47" y1="12.54" y2="15.85">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M16.647,19.117c0,0.229-0.185,0.412-0.413,0.412h-1.646c-0.228,0-0.412-0.184-0.412-0.412V17.47 c0-0.226,0.185-0.411,0.412-0.411h1.646c0.229,0,0.413,0.186,0.413,0.411V19.117z" fill="url(#SVGID_14_)"/>
+<path d="M25.295,15.822h-1.647c-0.454,0-0.823-0.369-0.823-0.822v0.411 c0,0.455,0.369,0.824,0.823,0.824h1.647c0.455,0,0.823-0.369,0.823-0.824V15C26.118,15.453,25.75,15.822,25.295,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="24.4707" x2="24.4707" y1="12.5381" y2="15.8522">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M23.65,15.82c-0.454,0-0.823-0.369-0.823-0.822v-1.647c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822v1.65c0,0.453-0.368,0.822-0.823,0.822h-1.653z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.47" x2="24.47" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M23.647,15.822c-0.454,0-0.823-0.369-0.823-0.822v-1.647 c0-0.452,0.369-0.822,0.823-0.822h1.647c0.455,0,0.823,0.37,0.823,0.822V15c0,0.453-0.368,0.822-0.823,0.822H23.647z" fill="url(#SVGID_15_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="24.4707" x2="24.4707" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M25.7,15c0,0.228-0.184,0.411-0.41,0.411h-1.647c-0.228,0-0.411-0.184-0.411-0.411v-1.647c0-0.228,0.184-0.411,0.411-0.411h1.647c0.227,0,0.41,0.184,0.41,0.411v1.65z" fill="url(#SVGID_16_)"/>
-<path d="M20.76,15.82h-1.646c-0.454,0-0.823-0.369-0.823-0.822v0.411c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824v-0.41c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.94" x2="19.94" y1="12.5" y2="15.89">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M25.705,15c0,0.228-0.184,0.411-0.41,0.411h-1.647c-0.228,0-0.411-0.184-0.411-0.411v-1.647 c0-0.228,0.184-0.411,0.411-0.411h1.647c0.227,0,0.41,0.184,0.41,0.411V15z" fill="url(#SVGID_16_)"/>
+<path d="M20.764,15.822h-1.646c-0.454,0-0.823-0.369-0.823-0.822v0.411 c0,0.455,0.369,0.824,0.823,0.824h1.646c0.455,0,0.826-0.369,0.826-0.824V15C21.59,15.453,21.219,15.822,20.764,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="19.9424" x2="19.9424" y1="12.498" y2="15.8922">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M19.12,15.82c-0.454,0-0.823-0.369-0.823-0.822v-1.647c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822v1.65c0,0.453-0.371,0.822-0.826,0.822h-1.652z" fill="url(#SVGID_17_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.94" x2="19.94" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M19.118,15.822c-0.454,0-0.823-0.369-0.823-0.822v-1.647 c0-0.452,0.369-0.822,0.823-0.822h1.646c0.455,0,0.826,0.37,0.826,0.822V15c0,0.453-0.371,0.822-0.826,0.822H19.118z" fill="url(#SVGID_17_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="19.9404" x2="19.9404" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21.18,15c0,0.228-0.184,0.411-0.412,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.647c0-0.228,0.186-0.411,0.413-0.411h1.646c0.229,0,0.412,0.184,0.412,0.411v1.65z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.41" x2="15.41" y1="12.5" y2="15.85">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.176,15c0,0.228-0.184,0.411-0.412,0.411h-1.646c-0.228,0-0.413-0.184-0.413-0.411v-1.647 c0-0.228,0.186-0.411,0.413-0.411h1.646c0.229,0,0.412,0.184,0.412,0.411V15z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.4126" x2="15.4126" y1="12.498" y2="15.8522">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.59,15.82c-0.453,0-0.822-0.369-0.822-0.822v-1.647c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822v1.65c0,0.453-0.37,0.822-0.825,0.822h-1.652z" fill="url(#SVGID_19_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M16.23,15.82h-1.646c-0.453,0-0.822-0.369-0.822-0.822v0.411c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824v-0.41c0,0.45-0.37,0.82-0.83,0.82z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.41" x2="15.41" y1="12.91" y2="15.47">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.588,15.822c-0.453,0-0.822-0.369-0.822-0.822v-1.647 c0-0.452,0.369-0.822,0.822-0.822h1.646c0.455,0,0.825,0.37,0.825,0.822V15c0,0.453-0.37,0.822-0.825,0.822H14.588z" fill="url(#SVGID_19_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M16.234,15.822h-1.646c-0.453,0-0.822-0.369-0.822-0.822v0.411 c0,0.455,0.369,0.824,0.822,0.824h1.646c0.455,0,0.825-0.369,0.825-0.824V15C17.06,15.453,16.689,15.822,16.234,15.822z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="15.4116" x2="15.4116" y1="12.9106" y2="15.4738">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M16.65,15c0,0.228-0.185,0.411-0.413,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.647c0-0.228,0.185-0.411,0.412-0.411h1.646c0.229,0,0.413,0.184,0.413,0.411v1.65z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="19.94" x2="19.94" y1="7.598" y2="11.73">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M16.647,15c0,0.228-0.185,0.411-0.413,0.411h-1.646c-0.228,0-0.412-0.184-0.412-0.411v-1.647 c0-0.228,0.185-0.411,0.412-0.411h1.646c0.229,0,0.413,0.184,0.413,0.411V15z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="19.9434" x2="19.9434" y1="7.5977" y2="11.732">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
</linearGradient>
-<path d="M13.35,11.7c-0.453,0-0.824-0.374-0.824-0.832v-2.45c0-0.461,0.371-0.834,0.824-0.834h13.18c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832h-13.18z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.94" x2="19.94" y1="8.02" y2="11.35">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M13.354,11.705c-0.453,0-0.824-0.374-0.824-0.832v-2.45 c0-0.461,0.371-0.834,0.824-0.834h13.181c0.454,0,0.823,0.373,0.823,0.834v2.45c0,0.458-0.369,0.832-0.823,0.832H13.354z" fill="url(#SVGID_21_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9414" x2="19.9414" y1="8.0195" y2="11.3512">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M26.94,10.87c0,0.229-0.183,0.416-0.41,0.416h-13.18c-0.227,0-0.412-0.187-0.412-0.416v-2.45c0-0.23,0.186-0.417,0.412-0.417h13.18c0.228,0,0.41,0.187,0.41,0.417v2.453z" fill="url(#SVGID_22_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.94" x2="19.94" y1="3.961" y2="12.59">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M26.941,10.873c0,0.229-0.183,0.416-0.41,0.416H13.354c-0.227,0-0.412-0.187-0.412-0.416v-2.45 c0-0.23,0.186-0.417,0.412-0.417h13.178c0.228,0,0.41,0.187,0.41,0.417V10.873z" fill="url(#SVGID_22_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="19.9424" x2="19.9424" y1="3.9609" y2="12.5901">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_23_)" height="2.45" width="13.18" x="13.35" y="8.423"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.94" x2="19.94" y1="5.636" y2="11.64">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_23_)" height="2.45" width="13.178" x="13.354" y="8.423"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="19.9424" x2="19.9424" y1="5.6362" y2="11.6377">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_24_)" points="13.35,9.51,26.53,8.807,26.53,8.412,13.35,8.412"/>
-<path d="M2.234,21.18c0,2.27,1.849,4.117,4.119,4.117h0.822c2.27,0,4.119-1.848,4.119-4.117v-14.83h-8.643c-0.147,0-0.277,0.046-0.413,0.083v14.74z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M6.354,24.88h0.822c2.045,0,3.706-1.662,3.706-3.706v-14.82h-8.233v14.82c0,2.04,1.663,3.7,3.707,3.7z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.765" x2="6.765" y1="3.146" y2="24.88">
-<stop offset="0" stop-color="#747576"/>
-<stop offset="0.7394" stop-color="#262628"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<polygon fill="url(#SVGID_24_)" points="13.354,9.51 26.531,8.807 26.531,8.412 13.354,8.412 "/>
+<path d="M2.234,21.177c0,2.27,1.849,4.117,4.119,4.117h0.822c2.27,0,4.119-1.848,4.119-4.117V6.354 h-6.59H2.647c-0.147,0-0.277,0.046-0.413,0.083V21.177z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M6.354,24.883h0.822c2.045,0,3.706-1.662,3.706-3.706V6.354H4.705H2.647v14.823 C2.647,23.221,4.31,24.883,6.354,24.883z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="6.7651" x2="6.7651" y1="3.1465" y2="24.8751">
+<stop offset="0" style="stop-color:#747576"/>
+<stop offset="0.7394" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M10.47,21.18c0,1.819-1.474,3.294-3.295,3.294h-0.821c-1.82,0-3.294-1.475-3.294-3.294v-14.83c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295v14.82z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.765" x2="6.765" y1="3.082" y2="8.932">
-<stop offset="0" stop-color="#B8BCBB"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M10.471,21.177c0,1.819-1.474,3.294-3.295,3.294H6.354c-1.82,0-3.294-1.475-3.294-3.294V6.354 c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295V21.177z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="6.7651" x2="6.7651" y1="3.082" y2="8.9318">
+<stop offset="0" style="stop-color:#B8BCBB"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M7.176,3.059h-0.822c-1.82,0-3.294,1.476-3.294,3.295v2.47c0-1.819,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.476,3.295,3.295v-2.47c0-1.82-1.473-3.295-3.294-3.295z" fill="url(#SVGID_26_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.765" x2="6.765" y1="3.069" y2="7.258">
-<stop offset="0" stop-color="#D8DDDA"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v2.47c0-1.819,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.476,3.295,3.295v-2.47C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_26_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="6.7651" x2="6.7651" y1="3.0688" y2="7.2577">
+<stop offset="0" style="stop-color:#D8DDDA"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M7.176,3.059h-0.822c-1.82,0-3.294,1.476-3.294,3.295v0.411c0-1.818,1.474-3.295,3.294-3.295h0.822c1.821,0,3.295,1.477,3.295,3.295v-0.411c0-1.82-1.473-3.295-3.294-3.295z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.764" x2="6.764" y1="2.735" y2="24.61">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="0.7576" stop-color="#262628"/>
-<stop offset="1" stop-color="#202020"/>
+<path d="M7.176,3.059H6.354c-1.82,0-3.294,1.476-3.294,3.295v0.411c0-1.818,1.474-3.295,3.294-3.295h0.822 c1.821,0,3.295,1.477,3.295,3.295V6.354C10.471,4.534,8.997,3.059,7.176,3.059z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="6.7642" x2="6.7642" y1="2.7354" y2="24.6086">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="0.7576" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#202020"/>
</linearGradient>
-<path d="M7.176,5.528h-0.822c-0.438,0-0.855,0.087-1.235,0.244v16.23h3.291v-16.23c-0.38-0.157-0.797-0.244-1.234-0.244z" fill="url(#SVGID_28_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.765" x2="6.765" y1="18.73" y2="24.58">
-<stop offset="0" stop-color="#262628"/>
-<stop offset="1" stop-color="#5C5D5F"/>
+<path d="M7.176,5.528H6.354c-0.438,0-0.855,0.087-1.235,0.244V22H8.41V5.772 C8.03,5.615,7.613,5.528,7.176,5.528z" fill="url(#SVGID_28_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.7651" x2="6.7651" y1="18.7295" y2="24.5792">
+<stop offset="0" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#5C5D5F"/>
</linearGradient>
-<path d="M7.176,22h-0.822c-1.82,0-3.294-1.476-3.294-3.294v2.471c0,1.819,1.474,3.294,3.294,3.294h0.822c1.821,0,3.295-1.475,3.295-3.294v-2.471c0,1.81-1.473,3.29-3.294,3.29z" fill="url(#SVGID_29_)"/>
+<path d="M7.176,22H6.354c-1.82,0-3.294-1.476-3.294-3.294v2.471c0,1.819,1.474,3.294,3.294,3.294h0.822 c1.821,0,3.295-1.475,3.295-3.294v-2.471C10.471,20.524,8.997,22,7.176,22z" fill="url(#SVGID_29_)"/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="492.5" x2="492.5" y1="-626.4" y2="-656.4">
-<stop offset="0" stop-color="#B8BCBB"/>
-<stop offset="0.7091" stop-color="#4B4B4D"/>
-<stop offset="1" stop-color="#ABAFAF"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="492.5" x2="492.5" y1="-626.4292" y2="-656.4292">
+<stop offset="0" style="stop-color:#B8BCBB"/>
+<stop offset="0.7091" style="stop-color:#4B4B4D"/>
+<stop offset="1" style="stop-color:#ABAFAF"/>
</linearGradient>
-<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5,0-4.135,3.364-7.5,7.5-7.5,4.135,0,7.5,3.365,7.5,7.5,0,4.14-3.36,7.5-7.5,7.5z" fill="url(#SVGID_30_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="21.5" x2="21.5" y1="14.45" y2="28.45">
-<stop offset="0" stop-color="#747576"/>
-<stop offset="0.7394" stop-color="#262628"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5c0-4.135,3.364-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.636,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_30_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="21.5" x2="21.5" y1="14.4453" y2="28.4458">
+<stop offset="0" style="stop-color:#747576"/>
+<stop offset="0.7394" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M28.5,21.5c0,3.866-3.135,7-7,7-3.866,0-7-3.134-7-7,0-3.865,3.134-7,7-7,3.86,0,7,3.14,7,7z" fill="url(#SVGID_31_)"/>
-<polygon fill="#FFFFFF" points="23,18,23,19,25,19,25,20,23,20,23,21,25,21,25,22,23,22,23,25,26,25,26,18"/>
-<path d="M17,18v7h2v-2h2v2h1v-9l-5,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm2,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M28.5,21.5c0,3.866-3.135,7-7,7c-3.866,0-7-3.134-7-7c0-3.865,3.134-7,7-7 C25.365,14.5,28.5,17.635,28.5,21.5z" fill="url(#SVGID_31_)"/>
+<polygon fill="#FFFFFF" points="23,18 23,19 25,19 25,20 23,20 23,21 25,21 25,22 23,22 23,25 26,25 26,18 "/>
+<path d="M17,18v7h2v-2h2v2h1v-9L17,18z M19,22h-1v-1h1V22z M19,20h-1v-1h1V20z M21,22h-1v-1h1V22z M21,20h-1v-1h1V20 z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="5" x="21" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="23"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,129 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="7.52,0,0,0,0,30,7.52,30,22.48,30,30,30,30,0,22.48,0"/>
-<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.039-0.041-0.057-0.07c-0.045-0.047-0.123-0.146-0.193-0.254l-0.031-0.049-0.041-0.079c-0.031-0.044-0.094-0.16-0.146-0.284l-0.023-0.057-0.033-0.117c-0.035-0.096-0.064-0.191-0.084-0.291-0.033-0.161-0.051-0.327-0.051-0.498v-24.94c-0.002-1.397,1.137-2.534,2.534-2.534h14.96c1.398,0,2.535,1.137,2.535,2.534v24.93c0,0.171-0.018,0.337-0.051,0.498-0.027,0.135-0.066,0.262-0.113,0.387-0.074,0.188-0.137,0.314-0.207,0.428l-0.039,0.065c-0.072,0.111-0.156,0.214-0.244,0.313-0.54,0.55-1.19,0.83-1.89,0.83h-14.96z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1" y2="28.93">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<polygon fill="none" points="7.52,0 0,0 0,30 7.52,30 22.479,30 30,30 30,0 22.479,0 "/>
+<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.039-0.041l-0.057-0.07c-0.045-0.047-0.123-0.146-0.193-0.254 l-0.031-0.049l-0.041-0.079c-0.031-0.044-0.094-0.16-0.146-0.284l-0.023-0.057l-0.033-0.117c-0.035-0.096-0.064-0.191-0.084-0.291 c-0.033-0.161-0.051-0.327-0.051-0.498V2.534C4.984,1.137,6.123,0,7.52,0h14.959c1.398,0,2.535,1.137,2.535,2.534v24.933 c0,0.171-0.018,0.337-0.051,0.498c-0.027,0.135-0.066,0.262-0.113,0.387c-0.074,0.188-0.137,0.314-0.207,0.428l-0.039,0.065 c-0.072,0.111-0.156,0.214-0.244,0.313C23.828,29.72,23.178,30,22.479,30H7.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.999" x2="14.999" y1="1" y2="28.9273">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M24.01,27.47c0,0.847-0.688,1.533-1.535,1.533h-14.96c-0.848,0-1.535-0.687-1.535-1.533v-24.94c-0.001-0.847,0.687-1.534,1.535-1.534h14.96c0.848,0,1.535,0.687,1.535,1.534v24.93z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1" y2="28.45">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M24.014,27.467c0,0.847-0.688,1.533-1.535,1.533H7.52c-0.848,0-1.535-0.687-1.535-1.533V2.534 C5.984,1.687,6.672,1,7.52,1h14.959c0.848,0,1.535,0.687,1.535,1.534V27.467z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.999" x2="14.999" y1="1" y2="28.45">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M22.48,1h-14.96c-0.848,0-1.536,0.687-1.536,1.534v24.93c0,0.409,0.164,0.779,0.424,1.055-0.021-0.094-0.039-0.188-0.039-0.287v-25.7c0-0.635,0.516-1.151,1.15-1.151h14.96c0.635,0,1.152,0.517,1.152,1.151v25.7c0,0.099-0.018,0.193-0.041,0.287,0.26-0.275,0.424-0.646,0.424-1.055v-24.95c0-0.847-0.68-1.534-1.53-1.534z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.946" y2="21.71">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M22.479,1H7.52C6.672,1,5.984,1.687,5.984,2.534v24.933c0,0.409,0.164,0.779,0.424,1.055 c-0.021-0.094-0.039-0.188-0.039-0.287v-0.768V3.3V2.534c0-0.635,0.516-1.151,1.15-1.151h14.959c0.635,0,1.152,0.517,1.152,1.151 V3.3v24.167v0.768c0,0.099-0.018,0.193-0.041,0.287c0.26-0.275,0.424-0.646,0.424-1.055V2.534C24.014,1.687,23.326,1,22.479,1z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.9458" y2="21.7146">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.8" stroke-opacity="0.6" width="15.73" x="7.137" y="2.918"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.327" y2="21.33">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.795" stroke-opacity="0.6" width="15.727" x="7.137" y="2.918"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="3.3267" y2="21.3309">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4__)" height="18.03" width="14.96" x="7.52" y="3.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.95">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4__)" height="18.029" width="14.959" x="7.52" y="3.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.9477">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="17.26" width="14.19" x="7.904" y="3.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.984" y2="10.85">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="17.262" width="14.191" x="7.904" y="3.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.9844" y2="10.8451">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="22.1,9.821,7.904,11.36,7.904,4.067,22.1,4.067"/>
-<rect fill="#BCE2D2" height="0.383" width="14.19" x="7.904" y="3.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.94" x2="14.94" y1="22.11" y2="27.81">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_6_)" points="22.096,9.821 7.904,11.356 7.904,4.067 22.096,4.067 "/>
+<rect fill="#BCE2D2" height="0.383" width="14.191" x="7.904" y="3.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9404" x2="14.9404" y1="22.1118" y2="27.8145">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M13.55,27.85c-0.82,0-1.488-0.662-1.488-1.475v-2.805c0-0.813,0.668-1.476,1.488-1.476h2.773c0.822,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.668,1.475-1.49,1.475h-2.767z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M13.55,27.47c-0.607,0-1.104-0.489-1.104-1.091v-2.805c0-0.602,0.496-1.09,1.104-1.09h2.777c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091h-2.789z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.94" x2="14.94" y1="22.84" y2="27.09">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M13.553,27.851c-0.82,0-1.488-0.662-1.488-1.475v-2.805 c0-0.813,0.668-1.476,1.488-1.476h2.773c0.822,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.668,1.475-1.49,1.475H13.553z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.551,27.467c-0.607,0-1.104-0.489-1.104-1.091v-2.805c0-0.602,0.496-1.09,1.104-1.09h2.777 c0.609,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.496,1.091-1.105,1.091H13.551z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9404" x2="14.9404" y1="22.8438" y2="27.0903">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M17.05,26.38c0,0.391-0.322,0.707-0.719,0.707h-2.785c-0.395,0-0.717-0.316-0.717-0.707v-2.805c0-0.391,0.322-0.708,0.717-0.708h2.785c0.396,0,0.719,0.317,0.719,0.708v2.796z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.94" x2="14.94" y1="23.59" y2="26.31">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M17.051,26.376c0,0.391-0.322,0.707-0.719,0.707h-2.785c-0.395,0-0.717-0.316-0.717-0.707v-2.805 c0-0.391,0.322-0.708,0.717-0.708h2.785c0.396,0,0.719,0.317,0.719,0.708V26.376z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9404" x2="14.9404" y1="23.5933" y2="26.3081">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M14.36,26.32c-0.422,0-0.766-0.344-0.766-0.769v-1.149c0-0.424,0.344-0.769,0.766-0.769h1.152c0.424,0,0.768,0.345,0.768,0.769v1.149c0,0.425-0.344,0.769-0.768,0.769h-1.147z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.09">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M14.363,26.316c-0.422,0-0.766-0.344-0.766-0.769v-1.149c0-0.424,0.344-0.769,0.766-0.769h1.152 c0.424,0,0.768,0.345,0.768,0.769v1.149c0,0.425-0.344,0.769-0.768,0.769H14.363z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.0908">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M8.609,27.08c-0.811,0-1.473-0.66-1.473-1.476v-1.652c0-0.813,0.662-1.474,1.473-1.474h0.443c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476h-0.444z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.832" x2="8.832" y1="22.85" y2="26.71">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M8.609,27.083c-0.811,0-1.473-0.66-1.473-1.476v-1.652 c0-0.813,0.662-1.474,1.473-1.474h0.443c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H8.609z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.832" x2="8.832" y1="22.8452" y2="26.7065">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M8.609,26.7c-0.6,0-1.09-0.49-1.09-1.093v-1.652c0-0.602,0.49-1.092,1.09-1.092h0.443c0.604,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.488,1.093-1.092,1.093h-0.439z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.833" x2="8.833" y1="23.23" y2="26.32">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M8.609,26.7c-0.6,0-1.09-0.49-1.09-1.093v-1.652c0-0.602,0.49-1.092,1.09-1.092h0.443 c0.604,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.488,1.093-1.092,1.093H8.609z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.833" x2="8.833" y1="23.2339" y2="26.3218">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M9.762,25.61c0,0.393-0.316,0.709-0.709,0.709h-0.444c-0.389,0-0.705-0.316-0.705-0.709v-1.652c0-0.392,0.316-0.707,0.705-0.707h0.443c0.393,0,0.709,0.315,0.709,0.707v1.647z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.84" x2="20.84" y1="22.46" y2="27.09">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M9.762,25.607c0,0.393-0.316,0.709-0.709,0.709H8.609c-0.389,0-0.705-0.316-0.705-0.709v-1.652 c0-0.392,0.316-0.707,0.705-0.707h0.443c0.393,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.835" x2="20.835" y1="22.46" y2="27.0908">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M20.62,27.08c-0.814,0-1.477-0.66-1.477-1.476v-1.652c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476h-0.445z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.84" x2="20.84" y1="22.85" y2="26.71">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M20.615,27.083c-0.814,0-1.477-0.66-1.477-1.476v-1.652 c0-0.813,0.662-1.474,1.477-1.474h0.441c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476H20.615z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.835" x2="20.835" y1="22.8452" y2="26.7065">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M20.62,26.7c-0.604,0-1.094-0.49-1.094-1.093v-1.652c0-0.602,0.49-1.092,1.094-1.092h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093h-0.445z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.84" x2="20.84" y1="23.23" y2="26.32">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M20.615,26.7c-0.604,0-1.094-0.49-1.094-1.093v-1.652c0-0.602,0.49-1.092,1.094-1.092 h0.441c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.8359" x2="20.8359" y1="23.2339" y2="26.3218">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M21.77,25.61c0,0.393-0.318,0.709-0.709,0.709h-0.441c-0.393,0-0.709-0.316-0.709-0.709v-1.652c0-0.392,0.316-0.707,0.709-0.707h0.441c0.391,0,0.709,0.315,0.709,0.707v1.647z" fill="url(#SVGID_15_)"/>
+<path d="M21.766,25.607c0,0.393-0.318,0.709-0.709,0.709h-0.441c-0.393,0-0.709-0.316-0.709-0.709v-1.652 c0-0.392,0.316-0.707,0.709-0.707h0.441c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_15_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,146 +1,148 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M7.521,30c-0.672,0-1.3-0.26-1.776-0.732l-0.053-0.04-0.094-0.121c-0.045-0.045-0.13-0.151-0.204-0.268l-0.058-0.101c-0.041-0.06-0.104-0.18-0.157-0.305l-0.024-0.059-0.033-0.114c-0.035-0.101-0.066-0.199-0.086-0.302-0.032-0.155-0.049-0.324-0.049-0.492v-24.95c-0.001-1.397,1.136-2.534,2.534-2.534h14.96c1.396,0,2.533,1.137,2.533,2.534v11.24c3.01,1.37,4.99,4.39,4.99,7.73,0,3.895-2.619,7.258-6.385,8.226-0.36,0.17-0.75,0.27-1.14,0.27h-14.96z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1" y2="28.93">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M7.521,30c-0.672,0-1.3-0.26-1.776-0.732l-0.053-0.04l-0.094-0.121c-0.045-0.045-0.13-0.151-0.204-0.268 l-0.058-0.101c-0.041-0.06-0.104-0.18-0.157-0.305l-0.024-0.059l-0.033-0.114c-0.035-0.101-0.066-0.199-0.086-0.302 c-0.032-0.155-0.049-0.324-0.049-0.492V2.534C4.986,1.137,6.123,0,7.521,0h14.96c1.396,0,2.533,1.137,2.533,2.534V13.77 C28.023,15.141,30,18.163,30,21.5c0,3.895-2.619,7.258-6.385,8.226C23.258,29.905,22.869,30,22.48,30H7.521z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.9995" x2="14.9995" y1="1" y2="28.9277">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M24.01,27.47c0,0.847-0.687,1.533-1.533,1.533h-14.96c-0.847,0-1.534-0.687-1.534-1.533v-24.94c-0.001-0.847,0.687-1.534,1.534-1.534h14.96c0.847,0,1.533,0.687,1.533,1.534v24.93z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1" y2="28.45">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M24.014,27.467c0,0.847-0.687,1.533-1.533,1.533H7.521c-0.847,0-1.534-0.687-1.534-1.533V2.534 C5.986,1.687,6.674,1,7.521,1h14.96c0.847,0,1.533,0.687,1.533,1.534V27.467z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9995" x2="14.9995" y1="1" y2="28.4505">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M22.48,1h-14.96c-0.847,0-1.535,0.687-1.535,1.534v24.93c0,0.409,0.162,0.779,0.424,1.055-0.023-0.094-0.041-0.188-0.041-0.287v-25.7c0-0.635,0.517-1.151,1.151-1.151h14.96c0.634,0,1.15,0.517,1.15,1.151v25.7c0,0.099-0.018,0.193-0.041,0.287,0.261-0.275,0.424-0.646,0.424-1.055v-24.95c0-0.847-0.68-1.534-1.53-1.534z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.946" y2="21.72">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M22.48,1H7.521C6.674,1,5.986,1.687,5.986,2.534v24.933c0,0.409,0.162,0.779,0.424,1.055 c-0.023-0.094-0.041-0.188-0.041-0.287v-0.768V3.3V2.534c0-0.635,0.517-1.151,1.151-1.151h14.96c0.634,0,1.15,0.517,1.15,1.151V3.3 v24.167v0.768c0,0.099-0.018,0.193-0.041,0.287c0.261-0.275,0.424-0.646,0.424-1.055V2.534C24.014,1.687,23.327,1,22.48,1z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.9995" x2="14.9995" y1="2.9458" y2="21.7151">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.8" stroke-opacity="0.6" width="15.73" x="7.137" y="2.918"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.327" y2="21.33">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.795" stroke-opacity="0.6" width="15.727" x="7.137" y="2.918"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.0005" x2="15.0005" y1="3.3267" y2="21.3314">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4__)" height="18.03" width="14.96" x="7.521" y="3.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.95">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4__)" height="18.029" width="14.96" x="7.521" y="3.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="3.71" y2="20.9482">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="17.26" width="14.19" x="7.904" y="3.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.984" y2="10.85">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="17.262" width="14.191" x="7.904" y="3.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="3.9844" y2="10.8451">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="22.1,9.821,7.904,11.36,7.904,4.067,22.1,4.067"/>
-<rect fill="#BCE2D2" height="0.383" width="14.19" x="7.904" y="3.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.94" x2="14.94" y1="22.11" y2="27.81">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<polygon fill="url(#SVGID_6_)" points="22.096,9.821 7.904,11.356 7.904,4.067 22.096,4.067 "/>
+<rect fill="#BCE2D2" height="0.383" width="14.191" x="7.904" y="3.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9409" x2="14.9409" y1="22.1113" y2="27.814">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M13.56,27.85c-0.822,0-1.49-0.662-1.49-1.475v-2.805c0-0.813,0.668-1.476,1.49-1.476h2.773c0.821,0,1.489,0.663,1.489,1.476v2.805c0,0.813-0.668,1.475-1.489,1.475h-2.775z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M13.55,27.47c-0.609,0-1.105-0.489-1.105-1.091v-2.805c0-0.602,0.496-1.09,1.105-1.09h2.775c0.61,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.495,1.091-1.105,1.091h-2.767z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.94" x2="14.94" y1="22.84" y2="27.09">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M13.555,27.851c-0.822,0-1.49-0.662-1.49-1.475v-2.805c0-0.813,0.668-1.476,1.49-1.476 h2.773c0.821,0,1.489,0.663,1.489,1.476v2.805c0,0.813-0.668,1.475-1.489,1.475H13.555z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.553,27.467c-0.609,0-1.105-0.489-1.105-1.091v-2.805c0-0.602,0.496-1.09,1.105-1.09h2.775 c0.61,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.495,1.091-1.105,1.091H13.553z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9409" x2="14.9409" y1="22.8438" y2="27.0903">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M17.05,26.38c0,0.391-0.322,0.707-0.719,0.707h-2.783c-0.396,0-0.718-0.316-0.718-0.707v-2.805c0-0.391,0.321-0.708,0.718-0.708h2.783c0.396,0,0.719,0.317,0.719,0.708v2.796z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.94" x2="14.94" y1="23.59" y2="26.31">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M17.051,26.376c0,0.391-0.322,0.707-0.719,0.707h-2.783c-0.396,0-0.718-0.316-0.718-0.707v-2.805 c0-0.391,0.321-0.708,0.718-0.708h2.783c0.396,0,0.719,0.317,0.719,0.708V26.376z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9409" x2="14.9409" y1="23.5928" y2="26.3076">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M14.36,26.32c-0.423,0-0.767-0.344-0.767-0.769v-1.149c0-0.424,0.344-0.769,0.767-0.769h1.151c0.423,0,0.767,0.345,0.767,0.769v1.149c0,0.425-0.344,0.769-0.767,0.769h-1.145z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.09">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M14.365,26.316c-0.423,0-0.767-0.344-0.767-0.769v-1.149c0-0.424,0.344-0.769,0.767-0.769h1.151 c0.423,0,0.767,0.345,0.767,0.769v1.149c0,0.425-0.344,0.769-0.767,0.769H14.365z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.0908">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M8.611,27.08c-0.813,0-1.475-0.66-1.475-1.476v-1.652c0-0.813,0.662-1.474,1.475-1.474h0.443c0.813,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.661,1.476-1.475,1.476h-0.444z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.834" x2="8.834" y1="22.85" y2="26.71">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M8.611,27.083c-0.813,0-1.475-0.66-1.475-1.476v-1.652 c0-0.813,0.662-1.474,1.475-1.474h0.443c0.813,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.661,1.476-1.475,1.476H8.611z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.8335" x2="8.8335" y1="22.8457" y2="26.707">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M8.611,26.7c-0.602,0-1.091-0.49-1.091-1.093v-1.652c0-0.602,0.489-1.092,1.091-1.092h0.443c0.603,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.489,1.093-1.092,1.093h-0.447z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.834" x2="8.834" y1="23.23" y2="26.32">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M8.611,26.7c-0.602,0-1.091-0.49-1.091-1.093v-1.652c0-0.602,0.489-1.092,1.091-1.092 h0.443c0.603,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.489,1.093-1.092,1.093H8.611z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.834" x2="8.834" y1="23.2334" y2="26.3213">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M9.764,25.61c0,0.393-0.318,0.709-0.709,0.709h-0.444c-0.39,0-0.707-0.316-0.707-0.709v-1.652c0-0.392,0.317-0.707,0.707-0.707h0.443c0.391,0,0.709,0.315,0.709,0.707v1.647z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.84" x2="20.84" y1="22.46" y2="27.09">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M9.764,25.607c0,0.393-0.318,0.709-0.709,0.709H8.611c-0.39,0-0.707-0.316-0.707-0.709v-1.652 c0-0.392,0.317-0.707,0.707-0.707h0.443c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.8359" x2="20.8359" y1="22.46" y2="27.0908">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M20.62,27.08c-0.813,0-1.476-0.66-1.476-1.476v-1.652c0-0.813,0.662-1.474,1.476-1.474h0.441c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476h-0.445z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.84" x2="20.84" y1="22.85" y2="26.71">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M20.615,27.083c-0.813,0-1.476-0.66-1.476-1.476v-1.652 c0-0.813,0.662-1.474,1.476-1.474h0.441c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H20.615z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.8359" x2="20.8359" y1="22.8457" y2="26.707">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M20.62,26.7c-0.603,0-1.092-0.49-1.092-1.093v-1.652c0-0.602,0.489-1.092,1.092-1.092h0.441c0.603,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.489,1.093-1.092,1.093h-0.445z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.84" x2="20.84" y1="23.23" y2="26.32">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M20.615,26.7c-0.603,0-1.092-0.49-1.092-1.093v-1.652 c0-0.602,0.489-1.092,1.092-1.092h0.441c0.603,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.489,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.8359" x2="20.8359" y1="23.2334" y2="26.3213">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M21.77,25.61c0,0.393-0.317,0.709-0.709,0.709h-0.441c-0.392,0-0.709-0.316-0.709-0.709v-1.652c0-0.392,0.317-0.707,0.709-0.707h0.441c0.392,0,0.709,0.315,0.709,0.707v1.647z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="492.5" x2="492.5" y1="-626.4" y2="-656.4">
-<stop offset="0" stop-color="#E3DBBF"/>
-<stop offset="0.297" stop-color="#E3DBBF"/>
-<stop offset="0.6667" stop-color="#794335"/>
-<stop offset="1" stop-color="#E3DBBF"/>
+<path d="M21.766,25.607c0,0.393-0.317,0.709-0.709,0.709h-0.441c-0.392,0-0.709-0.316-0.709-0.709v-1.652 c0-0.392,0.317-0.707,0.709-0.707h0.441c0.392,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="492.5" x2="492.5" y1="-626.4292" y2="-656.4292">
+<stop offset="0" style="stop-color:#E3DBBF"/>
+<stop offset="0.297" style="stop-color:#E3DBBF"/>
+<stop offset="0.6667" style="stop-color:#794335"/>
+<stop offset="1" style="stop-color:#E3DBBF"/>
</linearGradient>
-<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5,0-4.135,3.363-7.5,7.5-7.5,4.135,0,7.5,3.365,7.5,7.5,0,4.14-3.36,7.5-7.5,7.5z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="21.5" x2="21.5" y1="14.38" y2="28.34">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="1" stop-color="#C2A673"/>
+<path d="M21.5,29c-4.137,0-7.5-3.363-7.5-7.5c0-4.135,3.363-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.637,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="21.5" x2="21.5" y1="14.3818" y2="28.3359">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</linearGradient>
-<path d="M28.5,21.5c0,3.866-3.136,7-7,7-3.867,0-7-3.134-7-7,0-3.864,3.133-7,7-7,3.86,0,7,3.14,7,7z" fill="url(#SVGID_17_)"/>
-<polygon fill-opacity="0.3" points="25.7,22.89,21.5,18.44,17.3,22.89,16.66,22.21,21.5,17.08,26.34,22.21,25.7,22.89" stroke-opacity="0.3"/>
-<polygon fill-opacity="0.3" points="21.5,19.84,17.63,23.95,17.63,25.79,20.53,25.79,20.53,22.89,22.47,22.89,22.47,25.79,25.37,25.79,25.37,23.95" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" points="25.7,22.19,21.5,17.73,17.3,22.19,16.66,21.51,21.5,16.38,26.34,21.51,25.7,22.19"/>
-<polygon fill="#FFFFFF" points="21.5,19.15,17.63,23.25,17.63,25.09,20.53,25.09,20.53,22.19,22.47,22.19,22.47,25.09,25.37,25.09,25.37,23.25"/>
+<path d="M28.5,21.5c0,3.866-3.136,7-7,7c-3.867,0-7-3.134-7-7c0-3.864,3.133-7,7-7 C25.364,14.5,28.5,17.636,28.5,21.5z" fill="url(#SVGID_17_)"/>
+<polygon fill-opacity="0.3" points="25.703,22.889 21.499,18.435 17.297,22.889 16.658,22.209 21.499,17.077 26.342,22.209 25.703,22.889 " stroke-opacity="0.3"/>
+<polygon fill-opacity="0.3" points="21.5,19.845 17.627,23.951 17.627,25.793 20.531,25.793 20.531,22.889 22.469,22.889 22.469,25.793 25.373,25.793 25.373,23.95 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" points="25.703,22.188 21.499,17.734 17.297,22.188 16.658,21.51 21.499,16.377 26.342,21.51 25.703,22.188 "/>
+<polygon fill="#FFFFFF" points="21.5,19.146 17.627,23.252 17.627,25.094 20.531,25.094 20.531,22.188 22.469,22.188 22.469,25.094 25.373,25.094 25.373,23.25 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_mobile_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,145 +1,147 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.039-0.041-0.055-0.07c-0.045-0.047-0.125-0.146-0.195-0.254l-0.031-0.049-0.041-0.079c-0.031-0.044-0.094-0.16-0.145-0.284l-0.023-0.057-0.035-0.117c-0.033-0.096-0.064-0.191-0.084-0.291-0.031-0.161-0.049-0.327-0.049-0.498v-24.94c-0.001-1.397,1.136-2.534,2.533-2.534h14.96c1.396,0,2.533,1.137,2.533,2.534v11.24c3.01,1.37,4.99,4.39,4.99,7.73,0,3.895-2.619,7.257-6.385,8.225-0.36,0.18-0.75,0.28-1.14,0.28h-14.96z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1" y2="28.93">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M7.52,30c-0.699,0-1.352-0.281-1.836-0.793l-0.039-0.041l-0.055-0.07c-0.045-0.047-0.125-0.146-0.195-0.254 l-0.031-0.049l-0.041-0.079c-0.031-0.044-0.094-0.16-0.145-0.284l-0.023-0.057l-0.035-0.117c-0.033-0.096-0.064-0.191-0.084-0.291 c-0.031-0.161-0.049-0.327-0.049-0.498V2.534C4.986,1.137,6.123,0,7.52,0H22.48c1.396,0,2.533,1.137,2.533,2.534v11.236 C28.023,15.142,30,18.164,30,21.5c0,3.895-2.619,7.257-6.385,8.225C23.26,29.905,22.869,30,22.48,30H7.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="14.9995" x2="14.9995" y1="1" y2="28.9277">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M24.01,27.47c0,0.847-0.686,1.533-1.533,1.533h-14.96c-0.846,0-1.533-0.687-1.533-1.533v-24.94c-0.001-0.847,0.687-1.534,1.533-1.534h14.96c0.848,0,1.533,0.687,1.533,1.534v24.93z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1" y2="28.45">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M24.014,27.467c0,0.847-0.686,1.533-1.533,1.533H7.52c-0.846,0-1.533-0.687-1.533-1.533V2.534 C5.986,1.687,6.674,1,7.52,1H22.48c0.848,0,1.533,0.687,1.533,1.534V27.467z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9995" x2="14.9995" y1="1" y2="28.4505">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M22.48,1h-14.96c-0.846,0-1.534,0.687-1.534,1.534v24.93c0,0.409,0.162,0.779,0.424,1.055-0.023-0.094-0.041-0.188-0.041-0.287v-25.7c0-0.635,0.518-1.151,1.15-1.151h14.96c0.635,0,1.15,0.517,1.15,1.151v25.7c0,0.099-0.018,0.193-0.041,0.287,0.26-0.275,0.424-0.646,0.424-1.055v-24.95c0-0.847-0.68-1.534-1.53-1.534z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.946" y2="21.72">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
-</linearGradient>
-<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.8" stroke-opacity="0.6" width="15.73" x="7.137" y="2.918"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.327" y2="21.33">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<path d="M22.48,1H7.52C6.674,1,5.986,1.687,5.986,2.534v24.933c0,0.409,0.162,0.779,0.424,1.055 c-0.023-0.094-0.041-0.188-0.041-0.287v-0.768V3.3V2.534c0-0.635,0.518-1.151,1.15-1.151H22.48c0.635,0,1.15,0.517,1.15,1.151V3.3 v24.167v0.768c0,0.099-0.018,0.193-0.041,0.287c0.26-0.275,0.424-0.646,0.424-1.055V2.534C24.014,1.687,23.328,1,22.48,1z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.9995" x2="14.9995" y1="2.9458" y2="21.7151">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_4__)" height="18.03" width="14.96" x="7.52" y="3.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.71" y2="20.95">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_3__)" fill-opacity="0.6" height="18.795" stroke-opacity="0.6" width="15.727" x="7.137" y="2.918"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.9995" x2="14.9995" y1="3.3267" y2="21.3314">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="17.26" width="14.19" x="7.904" y="3.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="3.984" y2="10.85">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_4__)" height="18.029" width="14.961" x="7.52" y="3.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="3.71" y2="20.9482">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="22.1,9.821,7.904,11.36,7.904,4.067,22.1,4.067"/>
-<rect fill="#BCE2D2" height="0.383" width="14.19" x="7.904" y="3.685"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.94" x2="14.94" y1="22.11" y2="27.81">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<rect fill="url(#SVGID_5_)" height="17.262" width="14.191" x="7.904" y="3.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="3.9844" y2="10.8451">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<path d="M13.56,27.85c-0.822,0-1.49-0.662-1.49-1.475v-2.805c0-0.813,0.668-1.476,1.49-1.476h2.773c0.82,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.67,1.475-1.49,1.475h-2.775z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M13.55,27.47c-0.609,0-1.105-0.489-1.105-1.091v-2.805c0-0.602,0.496-1.09,1.105-1.09h2.775c0.611,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.494,1.091-1.105,1.091h-2.767z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.94" x2="14.94" y1="22.84" y2="27.09">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<polygon fill="url(#SVGID_6_)" points="22.096,9.821 7.904,11.356 7.904,4.067 22.096,4.067 "/>
+<rect fill="#BCE2D2" height="0.383" width="14.191" x="7.904" y="3.685"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9409" x2="14.9409" y1="22.1113" y2="27.814">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
+</linearGradient>
+<path d="M13.555,27.851c-0.822,0-1.49-0.662-1.49-1.475v-2.805c0-0.813,0.668-1.476,1.49-1.476 h2.773c0.82,0,1.49,0.663,1.49,1.476v2.805c0,0.813-0.67,1.475-1.49,1.475H13.555z" fill="url(#SVGID_7_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.553,27.467c-0.609,0-1.105-0.489-1.105-1.091v-2.805c0-0.602,0.496-1.09,1.105-1.09h2.775 c0.611,0,1.105,0.488,1.105,1.09v2.805c0,0.602-0.494,1.091-1.105,1.091H13.553z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9409" x2="14.9409" y1="22.8438" y2="27.0903">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M17.05,26.38c0,0.391-0.322,0.707-0.719,0.707h-2.783c-0.396,0-0.717-0.316-0.717-0.707v-2.805c0-0.391,0.32-0.708,0.717-0.708h2.783c0.396,0,0.719,0.317,0.719,0.708v2.796z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.94" x2="14.94" y1="23.59" y2="26.31">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M17.051,26.376c0,0.391-0.322,0.707-0.719,0.707h-2.783c-0.396,0-0.717-0.316-0.717-0.707v-2.805 c0-0.391,0.32-0.708,0.717-0.708h2.783c0.396,0,0.719,0.317,0.719,0.708V26.376z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9399" x2="14.9399" y1="23.5928" y2="26.3076">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M14.36,26.32c-0.422,0-0.768-0.344-0.768-0.769v-1.149c0-0.424,0.346-0.769,0.768-0.769h1.152c0.422,0,0.766,0.345,0.766,0.769v1.149c0,0.425-0.344,0.769-0.766,0.769h-1.145z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.09">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M14.365,26.316c-0.422,0-0.768-0.344-0.768-0.769v-1.149c0-0.424,0.346-0.769,0.768-0.769h1.152 c0.422,0,0.766,0.345,0.766,0.769v1.149c0,0.425-0.344,0.769-0.766,0.769H14.365z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="8.833" x2="8.833" y1="22.46" y2="27.0908">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M8.611,27.08c-0.813,0-1.475-0.66-1.475-1.476v-1.652c0-0.813,0.662-1.474,1.475-1.474h0.443c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476h-0.444z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.833" x2="8.833" y1="22.85" y2="26.71">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M8.611,27.083c-0.813,0-1.475-0.66-1.475-1.476v-1.652 c0-0.813,0.662-1.474,1.475-1.474h0.443c0.814,0,1.475,0.66,1.475,1.474v1.652c0,0.815-0.66,1.476-1.475,1.476H8.611z" fill="url(#SVGID_10_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="8.833" x2="8.833" y1="22.8457" y2="26.707">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M8.611,26.7c-0.602,0-1.092-0.49-1.092-1.093v-1.652c0-0.602,0.49-1.092,1.092-1.092h0.443c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093h-0.447z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.834" x2="8.834" y1="23.23" y2="26.32">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M8.611,26.7c-0.602,0-1.092-0.49-1.092-1.093v-1.652c0-0.602,0.49-1.092,1.092-1.092 h0.443c0.602,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.49,1.093-1.092,1.093H8.611z" fill="url(#SVGID_11_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="8.834" x2="8.834" y1="23.2334" y2="26.3213">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M9.764,25.61c0,0.393-0.318,0.709-0.709,0.709h-0.444c-0.389,0-0.707-0.316-0.707-0.709v-1.652c0-0.392,0.318-0.707,0.707-0.707h0.443c0.391,0,0.709,0.315,0.709,0.707v1.647z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.84" x2="20.84" y1="22.46" y2="27.09">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M9.764,25.607c0,0.393-0.318,0.709-0.709,0.709H8.611c-0.389,0-0.707-0.316-0.707-0.709v-1.652 c0-0.392,0.318-0.707,0.707-0.707h0.443c0.391,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.8369" x2="20.8369" y1="22.46" y2="27.0908">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M20.62,27.08c-0.813,0-1.475-0.66-1.475-1.476v-1.652c0-0.813,0.662-1.474,1.475-1.474h0.441c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476h-0.445z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.84" x2="20.84" y1="22.85" y2="26.71">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M20.615,27.083c-0.813,0-1.475-0.66-1.475-1.476v-1.652 c0-0.813,0.662-1.474,1.475-1.474h0.441c0.814,0,1.477,0.66,1.477,1.474v1.652c0,0.815-0.662,1.476-1.477,1.476H20.615z" fill="url(#SVGID_13_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.8359" x2="20.8359" y1="22.8457" y2="26.707">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M20.62,26.7c-0.604,0-1.092-0.49-1.092-1.093v-1.652c0-0.602,0.488-1.092,1.092-1.092h0.441c0.604,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.488,1.093-1.092,1.093h-0.445z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.84" x2="20.84" y1="23.23" y2="26.32">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M20.615,26.7c-0.604,0-1.092-0.49-1.092-1.093v-1.652 c0-0.602,0.488-1.092,1.092-1.092h0.441c0.604,0,1.092,0.49,1.092,1.092v1.652c0,0.603-0.488,1.093-1.092,1.093H20.615z" fill="url(#SVGID_14_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.8359" x2="20.8359" y1="23.2334" y2="26.3213">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M21.77,25.61c0,0.393-0.316,0.709-0.709,0.709h-0.441c-0.391,0-0.709-0.316-0.709-0.709v-1.652c0-0.392,0.318-0.707,0.709-0.707h0.441c0.393,0,0.709,0.315,0.709,0.707v1.647z" fill="url(#SVGID_15_)"/>
+<path d="M21.766,25.607c0,0.393-0.316,0.709-0.709,0.709h-0.441c-0.391,0-0.709-0.316-0.709-0.709v-1.652 c0-0.392,0.318-0.707,0.709-0.707h0.441c0.393,0,0.709,0.315,0.709,0.707V25.607z" fill="url(#SVGID_15_)"/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="492.5" x2="492.5" y1="-626.4" y2="-656.4">
-<stop offset="0" stop-color="#B8BCBB"/>
-<stop offset="0.7091" stop-color="#4B4B4D"/>
-<stop offset="1" stop-color="#ABAFAF"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -224.75 -299.25)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="492.5" x2="492.5" y1="-626.4292" y2="-656.4292">
+<stop offset="0" style="stop-color:#B8BCBB"/>
+<stop offset="0.7091" style="stop-color:#4B4B4D"/>
+<stop offset="1" style="stop-color:#ABAFAF"/>
</linearGradient>
-<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5,0-4.135,3.364-7.5,7.5-7.5,4.135,0,7.5,3.365,7.5,7.5,0,4.14-3.36,7.5-7.5,7.5z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="21.5" x2="21.5" y1="14.45" y2="28.45">
-<stop offset="0" stop-color="#747576"/>
-<stop offset="0.7394" stop-color="#262628"/>
-<stop offset="1" stop-color="#4B4B4D"/>
+<path d="M21.5,29c-4.136,0-7.5-3.364-7.5-7.5c0-4.135,3.364-7.5,7.5-7.5c4.135,0,7.5,3.365,7.5,7.5 C29,25.636,25.635,29,21.5,29L21.5,29z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="21.5" x2="21.5" y1="14.4453" y2="28.4458">
+<stop offset="0" style="stop-color:#747576"/>
+<stop offset="0.7394" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#4B4B4D"/>
</linearGradient>
-<path d="M28.5,21.5c0,3.866-3.135,7-7,7-3.866,0-7-3.134-7-7,0-3.865,3.134-7,7-7,3.86,0,7,3.14,7,7z" fill="url(#SVGID_17_)"/>
-<polygon fill="#FFFFFF" points="23,18,23,19,25,19,25,20,23,20,23,21,25,21,25,22,23,22,23,25,26,25,26,18"/>
-<path d="M17,18v7h2v-2h2v2h1v-9l-5,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm2,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M28.5,21.5c0,3.866-3.135,7-7,7c-3.866,0-7-3.134-7-7c0-3.865,3.134-7,7-7 C25.365,14.5,28.5,17.635,28.5,21.5z" fill="url(#SVGID_17_)"/>
+<polygon fill="#FFFFFF" points="23,18 23,19 25,19 25,20 23,20 23,21 25,21 25,22 23,22 23,25 26,25 26,18 "/>
+<path d="M17,18v7h2v-2h2v2h1v-9L17,18z M19,22h-1v-1h1V22z M19,20h-1v-1h1V20z M21,22h-1v-1h1V22z M21,20h-1v-1h1V20 z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="5" x="21" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="23"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_muted.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_muted.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,261 +1,263 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<path d="M49.82,18.77c2.203-4.334,1.499-9.768-2.128-13.39-3.624-3.624-9.056-4.33-13.39-2.127,0,0-0.002,0.001-0.005,0.002-1.055,0.538-2.049,1.242-2.932,2.125l-10.35,10.34c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.82,0,16.33,2.907,2.907,6.978,3.929,10.71,3.087,0.18-0.039,0.357-0.081,0.535-0.131,0.151-0.041,0.301-0.088,0.449-0.135,0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055-0.028,0.005-0.05,0.016-0.077,0.021-0.13,0.033-0.258,0.074-0.378,0.128-0.012,0.005-0.023,0.013-0.036,0.017-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333,0.008,0.153,0.02,0.377,0.033,0.745h23c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046-0.01-0.004-0.021-0.012-0.033-0.017-0.122-0.054-0.248-0.095-0.378-0.128-0.027-0.006-0.051-0.017-0.077-0.021-0.156-0.035-0.317-0.055-0.482-0.055h-5.405l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721c0.3-0.299,0.3-0.789,0-1.089,0,0,10.69-10.72,10.85-10.91v-0.001c0.645-0.736,1.186-1.529,1.613-2.367l0.02,0.01z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="267.1" x2="290.2" y1="468" y2="468">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M49.816,18.774L49.816,18.774c2.203-4.334,1.499-9.768-2.128-13.393c-3.624-3.624-9.056-4.33-13.391-2.127 l0,0c0,0-0.002,0.001-0.005,0.002c-1.055,0.538-2.049,1.242-2.932,2.125L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.821,0,16.33 c2.907,2.907,6.978,3.929,10.711,3.087c0.18-0.039,0.357-0.081,0.535-0.131c0.151-0.041,0.301-0.088,0.449-0.135 c0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055 c-0.028,0.005-0.05,0.016-0.077,0.021c-0.13,0.033-0.258,0.074-0.378,0.128c-0.012,0.005-0.023,0.013-0.036,0.017 c-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333c0.008,0.153,0.02,0.377,0.033,0.745h0.002h22.994h0.001 c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046c-0.01-0.004-0.021-0.012-0.033-0.017 c-0.122-0.054-0.248-0.095-0.378-0.128c-0.027-0.006-0.051-0.017-0.077-0.021c-0.156-0.035-0.317-0.055-0.482-0.055h-5.405 l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721 c0.3-0.299,0.3-0.789,0-1.089c0,0,10.687-10.718,10.854-10.906v-0.001c0.645-0.736,1.186-1.529,1.613-2.367L49.816,18.774z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="267.0962" x2="290.189" y1="468.0112" y2="468.0112">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M47.69,5.382c-4.507-4.509-11.82-4.509-16.33,0l-10.34,10.34,16.33,16.33,10.34-10.34c4.51-4.51,4.51-11.82,0-16.33z" fill="url(#SVGID_1_)"/>
-<path d="M47.69,5.382c-4.507-4.509-11.82-4.509-16.33,0l-1.634,1.633c4.51-4.509,9.643-2.331,14.15,2.178,4.511,4.51,6.687,9.644,2.178,14.15l1.632-1.633c4.51-4.51,4.51-11.82,0-16.33z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M47.69,5.382c-4.507-4.509-11.82-4.509-16.33,0l-1.634,1.633c4.51-4.509,11.82-4.509,16.33,0,4.51,4.511,4.508,11.82,0,16.33l1.632-1.633c4.51-4.51,4.51-11.82,0-16.33z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="267.1" x2="290.2" y1="493" y2="493">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0L21.019,15.725l16.328,16.328l10.341-10.342 C52.198,17.202,52.199,9.893,47.688,5.382z" fill="url(#SVGID_1_)"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,9.643-2.331,14.151,2.178c4.511,4.51,6.687,9.644,2.178,14.151l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,11.821-4.509,16.33,0c4.51,4.511,4.508,11.821,0,16.329l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="267.0962" x2="290.1899" y1="493.0283" y2="493.0283">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M21.02,15.72l-8.709,8.707c-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0l8.708-8.709-16.33-16.33z" fill="url(#SVGID_2_)"/>
-<path d="M16.66,36.41c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0l0.543-0.545c-4.51,4.51-8.01,0.7-12.52-3.81z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M15.03,38.04c-4.508-4.508-6.685-9.643-2.177-14.15l-0.544,0.544c-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0l0.543-0.545c-4.51,4.51-9.64,2.33-14.15-2.18z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13.4,39.67c-4.511-4.51-5.6-10.73-1.09-15.24-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0-4.51,4.51-10.73,3.42-15.24-1.09z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="266.3" x2="291" y1="483.8" y2="483.8">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M21.019,15.725l-8.709,8.707c-4.51,4.51-4.51,11.821,0,16.33c4.508,4.51,11.821,4.51,16.33,0 l8.708-8.709L21.019,15.725z" fill="url(#SVGID_2_)"/>
+<path d="M16.664,36.407c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,21.173,40.916,16.664,36.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.031,38.04c-4.508-4.508-6.685-9.643-2.177-14.152l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,19.541,42.55,15.031,38.04z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.398,39.674C8.889,35.164,7.8,28.941,12.31,24.432l0,0c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0,0C24.131,45.271,17.909,44.183,13.398,39.674z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="266.3257" x2="290.9585" y1="483.7915" y2="483.7915">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M34.63,35.86c-0.301,0.3-0.79,0.3-1.09,0l-16.33-16.33c-0.299-0.3-0.299-0.789,0-1.089l2.721-2.721c0.301-0.3,0.791-0.3,1.09,0l16.33,16.33c0.3,0.3,0.3,0.79,0,1.089l-2.72,2.72z" fill="url(#SVGID_3_)"/>
-<path d="M37.35,32.05l-16.33-16.33c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544c0.301-0.299,0.79-0.299,1.09,0l16.33,16.33c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544c0.3-0.3,0.3-0.79,0-1.09z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.09" x="12.46" y="28.67"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="0.771" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.09" x="17.91" y="23.23"/>
-<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.09" x="13.01" y="28.13"/>
-<rect fill-opacity="0.4" height="0.769" stroke-opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.09" x="13.55" y="27.59"/>
-<path d="M22.65,15.18c0.301-0.299,0.301-0.786,0-1.087l-1.089,1.087c0.3,0.3,0.79,0.3,1.09,0z" fill="#FFFFFF"/>
-<path d="M27,10.82c0.301-0.3,0.301-0.787,0-1.088l-1.087,1.088c0.31,0.31,0.79,0.3,1.09,0z" fill="#FFFFFF"/>
-<path d="M31.36,6.471c0.291-0.291,0.293-0.753,0.021-1.055-0.19,0.167-0.384,0.329-0.566,0.511l-0.544,0.544c0.3,0.3,0.79,0.3,1.09,0z" fill="#FFFFFF"/>
-<circle cx="27.01" cy="15.18" fill="#FFFFFF" r="0.769"/>
-<circle cx="31.36" cy="10.82" fill="#FFFFFF" r="0.77"/>
-<circle cx="35.72" cy="6.471" fill="#FFFFFF" r="0.77"/>
-<circle cx="27.55" cy="20.08" fill="#FFFFFF" r="0.769"/>
-<circle cx="31.9" cy="15.72" fill="#FFFFFF" r="0.77"/>
-<circle cx="36.26" cy="11.37" fill="#FFFFFF" r="0.769"/>
-<path d="M37.89,30.42c-0.299,0.301-0.299,0.788,0,1.089l1.089-1.089c-0.3-0.3-0.79-0.3-1.09,0z" fill="#FFFFFF"/>
-<path d="M42.25,26.06c-0.301,0.301-0.301,0.788,0,1.089l1.088-1.089c-0.31-0.3-0.79-0.29-1.09,0z" fill="#FFFFFF"/>
-<path d="M47.66,21.69c-0.302-0.272-0.766-0.27-1.057,0.021-0.301,0.3-0.301,0.788,0,1.088l0.544-0.544c0.19-0.19,0.35-0.38,0.52-0.57z" fill="#FFFFFF"/>
-<circle cx="37.89" cy="26.06" fill="#FFFFFF" r="0.77"/>
-<circle cx="42.25" cy="21.71" fill="#FFFFFF" r="0.77"/>
-<circle cx="46.6" cy="17.36" fill="#FFFFFF" r="0.77"/>
-<circle cx="32.99" cy="25.52" fill="#FFFFFF" r="0.769"/>
-<circle cx="37.35" cy="21.17" fill="#FFFFFF" r="0.77"/>
-<circle cx="41.7" cy="16.81" fill="#FFFFFF" r="0.769"/>
-<circle cx="32.45" cy="20.62" fill="#FFFFFF" r="0.77"/>
-<circle cx="36.8" cy="16.27" fill="#FFFFFF" r="0.769"/>
-<circle cx="41.16" cy="11.91" fill="#FFFFFF" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="267.5" x2="267.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M34.626,35.862c-0.301,0.3-0.79,0.3-1.09,0L17.208,19.534c-0.299-0.3-0.299-0.789,0-1.089 l2.721-2.721c0.301-0.3,0.791-0.3,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089L34.626,35.862z" fill="url(#SVGID_3_)"/>
+<path d="M37.347,32.053L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 c0.301-0.299,0.79-0.299,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544C37.647,32.843,37.647,32.353,37.347,32.053z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.093" x="12.465" y="28.674"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.771" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.091" x="17.909" y="23.23"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.091" x="13.01" y="28.13"/>
+<rect fill-opacity="0.4" height="0.769" stroke-opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.092" x="13.554" y="27.586"/>
+<path d="M22.652,15.179c0.301-0.299,0.301-0.786,0-1.087l-1.089,1.087C21.864,15.481,22.351,15.48,22.652,15.179z" fill="#FFFFFF"/>
+<path d="M27.005,10.824c0.301-0.3,0.301-0.787,0-1.088l-1.087,1.088C26.217,11.126,26.705,11.125,27.005,10.824z" fill="#FFFFFF"/>
+<path d="M31.361,6.471c0.291-0.291,0.293-0.753,0.021-1.055c-0.19,0.167-0.384,0.329-0.566,0.511l-0.544,0.544 C30.571,6.771,31.059,6.771,31.361,6.471z" fill="#FFFFFF"/>
+<circle cx="27.006" cy="15.181" fill="#FFFFFF" r="0.769"/>
+<circle cx="31.359" cy="10.825" fill="#FFFFFF" r="0.77"/>
+<circle cx="35.715" cy="6.471" fill="#FFFFFF" r="0.77"/>
+<circle cx="27.549" cy="20.078" fill="#FFFFFF" r="0.769"/>
+<circle cx="31.905" cy="15.724" fill="#FFFFFF" r="0.77"/>
+<circle cx="36.26" cy="11.369" fill="#FFFFFF" r="0.769"/>
+<path d="M37.891,30.42c-0.299,0.301-0.299,0.788,0,1.089l1.089-1.089C38.68,30.119,38.193,30.119,37.891,30.42z" fill="#FFFFFF"/>
+<path d="M42.246,26.065c-0.301,0.301-0.301,0.788,0,1.089l1.088-1.089C43.033,25.765,42.547,25.766,42.246,26.065z" fill="#FFFFFF"/>
+<path d="M47.657,21.689c-0.302-0.272-0.766-0.27-1.057,0.021c-0.301,0.3-0.301,0.788,0,1.088l0.544-0.544 C47.326,22.073,47.49,21.881,47.657,21.689z" fill="#FFFFFF"/>
+<circle cx="37.892" cy="26.065" fill="#FFFFFF" r="0.77"/>
+<circle cx="42.246" cy="21.71" fill="#FFFFFF" r="0.77"/>
+<circle cx="46.6" cy="17.357" fill="#FFFFFF" r="0.77"/>
+<circle cx="32.992" cy="25.521" fill="#FFFFFF" r="0.769"/>
+<circle cx="37.347" cy="21.167" fill="#FFFFFF" r="0.77"/>
+<circle cx="41.702" cy="16.813" fill="#FFFFFF" r="0.769"/>
+<circle cx="32.448" cy="20.622" fill="#FFFFFF" r="0.77"/>
+<circle cx="36.803" cy="16.269" fill="#FFFFFF" r="0.769"/>
+<circle cx="41.157" cy="11.914" fill="#FFFFFF" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="267.4819" x2="267.4819" y1="462.314" y2="479.7079">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M23.2,14.64c0.301-0.302,0.301-0.788,0-1.091l-1.088,1.091c0.3,0.3,0.79,0.3,1.09,0z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="267.5" x2="267.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M23.196,14.637c0.301-0.302,0.301-0.788,0-1.091l-1.088,1.091 C22.409,14.937,22.895,14.937,23.196,14.637z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="267.481" x2="267.481" y1="462.3311" y2="479.7029">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M27.55,10.28c0.302-0.3,0.302-0.788,0-1.088l-1.087,1.088c0.3,0.3,0.79,0.3,1.09,0z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.5" x2="267.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M27.549,10.28c0.302-0.3,0.302-0.788,0-1.088l-1.087,1.088C26.763,10.582,27.249,10.581,27.549,10.28 z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.481" x2="267.481" y1="462.3467" y2="479.6524">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M31.9,5.927c0.292-0.291,0.294-0.754,0.023-1.057-0.192,0.168-0.386,0.33-0.566,0.512l-0.545,0.545c0.32,0.301,0.8,0.301,1.1,0z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="270.9" x2="270.9" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M31.903,5.927c0.292-0.291,0.294-0.754,0.023-1.057c-0.192,0.168-0.386,0.33-0.566,0.512 l-0.545,0.545C31.116,6.228,31.603,6.228,31.903,5.927z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="270.9458" x2="270.9458" y1="462.3418" y2="479.7027">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="27.55" cy="14.64" fill="url(#SVGID_7_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="270.9" x2="270.9" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="27.549" cy="14.635" fill="url(#SVGID_7_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="270.9458" x2="270.9458" y1="462.3311" y2="479.6974">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="31.9" cy="10.28" fill="url(#SVGID_8_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="270.9" x2="270.9" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="31.905" cy="10.28" fill="url(#SVGID_8_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="270.9458" x2="270.9458" y1="462.3247" y2="479.6966">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="36.26" cy="5.926" fill="url(#SVGID_9_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="274.8" x2="274.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="274.7954" x2="274.7954" y1="462.314" y2="479.7079">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="28.09" cy="19.53" fill="url(#SVGID_10_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="274.8" x2="274.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="28.094" cy="19.534" fill="url(#SVGID_10_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="274.7944" x2="274.7944" y1="462.3257" y2="479.7086">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="32.45" cy="15.18" fill="url(#SVGID_11_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="274.8" x2="274.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="32.448" cy="15.181" fill="url(#SVGID_11_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="274.7944" x2="274.7944" y1="462.3267" y2="479.6985">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="36.8" cy="10.82" fill="url(#SVGID_12_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="289.8" x2="289.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="36.803" cy="10.825" fill="url(#SVGID_12_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="289.8052" x2="289.8052" y1="462.335" y2="479.7068">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M38.44,29.88c-0.301,0.301-0.301,0.788,0,1.088l1.088-1.088c-0.31-0.31-0.79-0.3-1.09,0z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="289.8" x2="289.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M38.437,29.876c-0.301,0.301-0.301,0.788,0,1.088l1.088-1.088 C39.225,29.574,38.737,29.575,38.437,29.876z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="289.8052" x2="289.8052" y1="462.3247" y2="479.7076">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M42.79,25.52c-0.301,0.301-0.301,0.787,0,1.09l1.088-1.09c-0.3-0.3-0.79-0.3-1.09,0z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="289.8" x2="289.8" y1="462.4" y2="479.6">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M42.79,25.521c-0.301,0.301-0.301,0.787,0,1.09l1.088-1.09C43.579,25.22,43.091,25.22,42.79,25.521z " fill="url(#SVGID_14_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="289.8032" x2="289.8032" y1="462.3516" y2="479.6407">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M48.2,21.15c-0.302-0.274-0.765-0.271-1.057,0.02-0.301,0.302-0.301,0.788,0,1.089l0.544-0.544c0.19-0.19,0.35-0.38,0.52-0.57z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="286.3" x2="286.3" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M48.201,21.146c-0.302-0.274-0.765-0.271-1.057,0.02c-0.301,0.302-0.301,0.788,0,1.089l0.544-0.544 C47.871,21.529,48.034,21.335,48.201,21.146z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="286.3403" x2="286.3403" y1="462.3247" y2="479.7076">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<circle cx="38.436" cy="25.521" fill="url(#SVGID_16_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="286.3403" x2="286.3403" y1="462.3271" y2="479.7046">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="38.44" cy="25.52" fill="url(#SVGID_16_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="286.3" x2="286.3" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="42.79" cy="21.167" fill="url(#SVGID_17_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="286.3403" x2="286.3403" y1="462.3262" y2="479.7036">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="42.79" cy="21.17" fill="url(#SVGID_17_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="286.3" x2="286.3" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M47.688,17.357c-0.297,0.3-0.786,0.3-1.088,0c-0.301-0.301-0.301-0.788,0-1.089s0.787-0.301,1.088,0 C47.991,16.569,47.989,17.057,47.688,17.357z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="282.4907" x2="282.4907" y1="462.3296" y2="479.707">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M47.69,17.36c-0.297,0.3-0.786,0.3-1.088,0-0.301-0.301-0.301-0.788,0-1.089s0.787-0.301,1.088,0c0.3,0.3,0.3,0.79,0,1.09z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="282.5" x2="282.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M34.08,25.521c-0.298,0.301-0.786,0.301-1.088,0c-0.301-0.301-0.301-0.788,0-1.089 c0.301-0.3,0.789-0.301,1.088,0C34.383,24.734,34.381,25.22,34.08,25.521z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="282.4917" x2="282.4917" y1="462.3237" y2="479.7066">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M34.08,25.52c-0.298,0.301-0.786,0.301-1.088,0-0.301-0.301-0.301-0.788,0-1.089,0.301-0.3,0.789-0.301,1.088,0,0.3,0.3,0.3,0.79,0,1.09z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="282.5" x2="282.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="37.892" cy="20.622" fill="url(#SVGID_20_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="282.4917" x2="282.4917" y1="462.3267" y2="479.7041">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="37.89" cy="20.62" fill="url(#SVGID_20_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="282.5" x2="282.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="42.246" cy="16.269" fill="url(#SVGID_21_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="278.6431" x2="278.6431" y1="462.3335" y2="479.7054">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="42.25" cy="16.27" fill="url(#SVGID_21_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="278.6" x2="278.6" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="32.992" cy="20.078" fill="url(#SVGID_22_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="278.6431" x2="278.6431" y1="462.3223" y2="479.7107">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="32.99" cy="20.08" fill="url(#SVGID_22_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="278.6" x2="278.6" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="37.347" cy="15.724" fill="url(#SVGID_23_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="278.6431" x2="278.6431" y1="462.3242" y2="479.7016">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="37.35" cy="15.72" fill="url(#SVGID_23_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="278.6" x2="278.6" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="41.702" cy="11.369" fill="url(#SVGID_24_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -374.1758 -502.9102)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="404.7837" x2="396.38" y1="554.8911" y2="554.8911">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2545" style="stop-color:#1A1A1A"/>
+<stop offset="0.6182" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<circle cx="41.7" cy="11.37" fill="url(#SVGID_24_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -374.1758 -502.9102)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="404.8" x2="396.4" y1="554.9" y2="554.9">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2545" stop-color="#1A1A1A"/>
-<stop offset="0.6182" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
-</linearGradient>
-<path d="M30.29,54.4c-0.001,1.216-0.979,2.203-2.185,2.203h-3.328c-1.207,0-2.185-0.987-2.185-2.2v-5.618c0-1.215,0.978-1.42,2.185-1.42h3.327c1.207,0,2.184,0.205,2.184,1.42l0.02,5.62z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="14.89" x2="37.98" y1="56.07" y2="56.07">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#999999"/>
-<stop offset="0.7515" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M30.288,54.397c-0.001,1.216-0.979,2.203-2.185,2.203h-3.328c-1.207,0-2.185-0.987-2.185-2.2v-5.618 c0-1.215,0.978-1.42,2.185-1.42h3.327c1.207,0,2.184,0.205,2.184,1.42L30.288,54.397z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="14.8921" x2="37.9844" y1="56.0747" y2="56.0747">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#999999"/>
+<stop offset="0.7515" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M37.94,58c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-1.251-1.026-2.267-2.292-2.267h-18.51c-1.266,0-2.293,1.016-2.293,2.267v0.506c0,0.158,0.019,0.312,0.049,1.078h23z" fill="url(#SVGID_26_)"/>
-<path d="M15.03,55.66h22.81c-0.101-0.282-0.255-0.537-0.453-0.755h-21.9c-0.198,0.22-0.348,0.48-0.458,0.76z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M14.9,57.24c0.009,0.154,0.02,0.381,0.035,0.757h23c0.017-0.376,0.028-0.603,0.037-0.757h-23.08z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M15.49,54.91h21.9c-0.42-0.462-1.021-0.757-1.698-0.757h-18.5c-0.676,0-1.276,0.29-1.696,0.76z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M30,49.09v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304c0.391,0.721,1.147,1.216,2.02,1.216h3.079c0.87-0.01,1.63-0.5,2.02-1.22z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M29.52,47.99v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294c0,0.85,0.69,1.54,1.539,1.54h3.079c0.85,0,1.54-0.69,1.54-1.54z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M28.64,40.76l1.648-1.649v-13.44c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.28c2.22-0.41,4.33-1.46,6.05-3.18z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M28.64,40.76l0.878-0.879v-14.21c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.1c1.93-0.5,3.76-1.49,5.28-3.01z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="26.44" x2="26.44" y1="25.13" y2="48.42">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M37.937,58c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-1.251-1.026-2.267-2.292-2.267H17.186 c-1.266,0-2.293,1.016-2.293,2.267v0.506c0,0.158,0.019,0.312,0.049,1.078H37.937z" fill="url(#SVGID_26_)"/>
+<path d="M15.032,55.661h22.811c-0.101-0.282-0.255-0.537-0.453-0.755H15.488 C15.29,55.124,15.135,55.379,15.032,55.661z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14.904,57.243c0.009,0.154,0.02,0.381,0.035,0.757h22.997c0.017-0.376,0.028-0.603,0.037-0.757H14.904z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.488,54.906H37.39c-0.42-0.462-1.021-0.757-1.698-0.757H17.186 C16.509,54.149,15.908,54.444,15.488,54.906z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30,49.086v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304 c0.391,0.721,1.147,1.216,2.02,1.216h3.079C28.854,50.302,29.606,49.807,30,49.086z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M29.518,47.992v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294 c0,0.85,0.69,1.54,1.539,1.54h3.079C28.827,49.532,29.518,48.842,29.518,47.992z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.64,40.762l1.648-1.649V25.67c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307 c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.275C24.807,43.534,26.924,42.476,28.64,40.762z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M28.64,40.762l0.878-0.879V25.67c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.097 C25.293,43.269,27.125,42.275,28.64,40.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="26.4395" x2="26.4395" y1="25.1289" y2="48.4234">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M28.75,47.99c0,0.426-0.344,0.77-0.77,0.77h-3.079c-0.425,0-0.768-0.344-0.768-0.77v-22.32c0-0.425,0.343-0.771,0.768-0.771h3.079c0.426,0,0.77,0.346,0.77,0.771v22.32z" fill="url(#SVGID_27_)"/>
-<path d="M26.44,29.24c-2.124,0-3.849-1.727-3.849-3.848,0-2.123,1.725-3.85,3.849-3.85,2.121,0,3.848,1.727,3.848,3.85,0,2.12-1.73,3.85-3.85,3.85z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.44" x2="26.44" y1="22.37" y2="28.38">
-<stop offset="0" stop-color="#9C9C9C"/>
-<stop offset="0.1515" stop-color="#D5D5D5"/>
-<stop offset="0.703" stop-color="#565656"/>
-<stop offset="0.9879" stop-color="#575757"/>
-<stop offset="1" stop-color="#575757"/>
+<path d="M28.748,47.992c0,0.426-0.344,0.77-0.77,0.77h-3.079c-0.425,0-0.768-0.344-0.768-0.77V25.67 c0-0.425,0.343-0.771,0.768-0.771h3.079c0.426,0,0.77,0.346,0.77,0.771V47.992z" fill="url(#SVGID_27_)"/>
+<path d="M26.439,29.237c-2.124,0-3.849-1.727-3.849-3.848c0-2.123,1.725-3.85,3.849-3.85 c2.121,0,3.848,1.727,3.848,3.85C30.288,27.511,28.56,29.237,26.439,29.237L26.439,29.237z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.439" x2="26.439" y1="22.3696" y2="28.3803">
+<stop offset="0" style="stop-color:#9C9C9C"/>
+<stop offset="0.1515" style="stop-color:#D5D5D5"/>
+<stop offset="0.703" style="stop-color:#565656"/>
+<stop offset="0.9879" style="stop-color:#575757"/>
+<stop offset="1" style="stop-color:#575757"/>
</linearGradient>
-<circle cx="26.44" cy="25.39" fill="url(#SVGID_28_)" r="3.079"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.44" x2="26.44" y1="23.88" y2="26.89">
-<stop offset="0" stop-color="#646464"/>
-<stop offset="1" stop-color="#EBEBEB"/>
+<circle cx="26.439" cy="25.39" fill="url(#SVGID_28_)" r="3.079"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.4385" x2="26.4385" y1="23.8794" y2="26.8862">
+<stop offset="0" style="stop-color:#646464"/>
+<stop offset="1" style="stop-color:#EBEBEB"/>
</linearGradient>
-<path d="M26.44,26.93c-0.851,0-1.541-0.691-1.541-1.54,0-0.85,0.69-1.54,1.541-1.54,0.847,0,1.539,0.69,1.539,1.54s-0.69,1.54-1.54,1.54z" fill="url(#SVGID_29_)"/>
-<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" width="7.697" x="22.59" y="53.38"/>
-<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" width="7.697" x="22.59" y="52.61"/>
+<path d="M26.439,26.93c-0.851,0-1.541-0.691-1.541-1.54c0-0.85,0.69-1.54,1.541-1.54 c0.847,0,1.539,0.69,1.539,1.54C27.978,26.238,27.287,26.93,26.439,26.93L26.439,26.93z" fill="url(#SVGID_29_)"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" width="7.697" x="22.59" y="53.381"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" width="7.697" x="22.59" y="52.611"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(2 0 0 2 0 0)">
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.35" height="33.87" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.15" y="-2.239"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="656" y2="656">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="0.8424" stop-color="#954B50"/>
-<stop offset="1" stop-color="#B36B4D"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="0.8424" style="stop-color:#954B50"/>
+<stop offset="1" style="stop-color:#B36B4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="25.81,26.43,3,4.177,4.191,2.956,27,25.21"/>
+<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_pager.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_pager.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,111 +1,113 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,6.354,0,23.65,0,30,30,30,30,23.65,30,6.354,30,0"/>
-<path d="M2.647,26.3c-1.459,0-2.647-1.19-2.647-2.65v-17.3c0-1.46,1.188-2.648,2.647-2.648h24.71c1.46-0.001,2.65,1.188,2.65,2.648v17.29c0,1.46-1.188,2.648-2.646,2.648h-24.7z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="4.466" y2="25.06">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<polygon fill="none" points="0,6.354 0,23.646 0,30 30,30 30,23.646 30,6.354 30,0 0,0 "/>
+<path d="M2.647,26.295C1.188,26.295,0,25.106,0,23.646V6.354c0-1.46,1.188-2.648,2.647-2.648h24.706 C28.813,3.705,30,4.894,30,6.354v17.293c0,1.46-1.188,2.648-2.646,2.648H2.647z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="4.4658" y2="25.0557">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M29,23.65c0,0.91-0.738,1.648-1.646,1.648h-24.7c-0.909,0-1.647-0.74-1.647-1.65v-17.3c0-0.91,0.738-1.648,1.647-1.648h24.71c0.91-0.001,1.65,0.737,1.65,1.648v17.29z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="4.466" y2="25.06">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-</linearGradient>
-<path d="M27.35,4.705h-24.7c-0.909,0-1.647,0.738-1.647,1.649v17.29c0,0.91,0.738,1.648,1.647,1.648-0.681,0-1.235-0.554-1.235-1.236v-17.71c0-0.682,0.555-1.235,1.235-1.235h24.71c0.683,0,1.234,0.554,1.234,1.235v17.7c0,0.683-0.552,1.236-1.234,1.236,0.908,0,1.646-0.738,1.646-1.648v-17.3c0-0.911-0.74-1.649-1.65-1.649z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="7.474" y2="16.69">
-<stop offset="0" stop-color="#6A6B6C"/>
-<stop offset="1" stop-color="#E8EEEA"/>
+<path d="M29,23.646c0,0.91-0.738,1.648-1.646,1.648H2.647C1.738,25.295,1,24.557,1,23.646V6.354 c0-0.91,0.738-1.648,1.647-1.648h24.706C28.262,4.705,29,5.443,29,6.354V23.646z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="4.4658" y2="25.0557">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M4.032,16.63c-0.455,0-0.825-0.374-0.825-0.832v-7.512c0-0.459,0.37-0.834,0.825-0.834h21.94c0.455,0,0.826,0.375,0.826,0.834v7.514c0,0.458-0.371,0.832-0.826,0.832h-21.94z" fill="url(#SVGID_3__)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="7.906" y2="16.37">
-<stop offset="0" stop-color="#171717"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M27.354,4.705H2.647C1.738,4.705,1,5.443,1,6.354v17.293c0,0.91,0.738,1.648,1.647,1.648 c-0.681,0-1.235-0.554-1.235-1.236v-0.412V6.764v-0.41c0-0.682,0.555-1.235,1.235-1.235h24.706c0.683,0,1.234,0.554,1.234,1.235 v0.41v16.883v0.412c0,0.683-0.552,1.236-1.234,1.236c0.908,0,1.646-0.738,1.646-1.648V6.354C29,5.443,28.262,4.705,27.354,4.705z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.002" x2="15.002" y1="7.4736" y2="16.6938">
+<stop offset="0" style="stop-color:#6A6B6C"/>
+<stop offset="1" style="stop-color:#E8EEEA"/>
+</linearGradient>
+<path d="M4.032,16.634c-0.455,0-0.825-0.374-0.825-0.832V8.288c0-0.459,0.37-0.834,0.825-0.834 h21.938c0.455,0,0.826,0.375,0.826,0.834v7.514c0,0.458-0.371,0.832-0.826,0.832H4.032z" fill="url(#SVGID_3__)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.9995" x2="14.9995" y1="7.9063" y2="16.3741">
+<stop offset="0" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M26.38,15.8c0,0.229-0.184,0.415-0.413,0.415h-21.94c-0.229,0-0.412-0.186-0.412-0.415v-7.512c0-0.231,0.184-0.416,0.412-0.416h21.93c0.229,0,0.413,0.185,0.413,0.416v7.514z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="-5.395" y2="21.07">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<path d="M26.379,15.802c0,0.229-0.184,0.415-0.413,0.415H4.032c-0.229,0-0.412-0.186-0.412-0.415V8.288 c0-0.231,0.184-0.416,0.412-0.416h21.934c0.229,0,0.413,0.185,0.413,0.416V15.802z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.999" x2="14.999" y1="-5.395" y2="21.0669">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#6292A3"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="7.514" width="21.93" x="4.032" y="8.288"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="0.04" y2="17.85">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#77A6AD"/>
-<stop offset="0.8727" stop-color="#455188"/>
-<stop offset="1" stop-color="#4E6591"/>
+<rect fill="url(#SVGID_5_)" height="7.514" width="21.934" x="4.032" y="8.288"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.999" x2="14.999" y1="0.04" y2="17.8522">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1455" style="stop-color:#7DC7BB"/>
+<stop offset="0.5576" style="stop-color:#77A6AD"/>
+<stop offset="0.8727" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#4E6591"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="4.032,11.54,25.97,10.83,25.97,8.278,4.032,8.278"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="17.66" x2="17.66" y1="18.37" y2="21.73">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<polygon fill="url(#SVGID_6_)" points="4.032,11.536 25.966,10.833 25.966,8.278 4.032,8.278 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="17.6641" x2="17.6641" y1="18.374" y2="21.7321">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M14.73,21.7c-0.453,0-0.822-0.371-0.822-0.826v-1.64c0-0.454,0.369-0.824,0.822-0.824h5.856c0.455,0,0.825,0.37,0.825,0.824v1.646c0,0.455-0.37,0.826-0.825,0.826h-5.866z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M20.59,21.7h-5.856c-0.453,0-0.822-0.371-0.822-0.826v0.412c0,0.454,0.369,0.823,0.822,0.823h5.856c0.455,0,0.825-0.369,0.825-0.823v-0.412c0,0.46-0.37,0.83-0.83,0.83z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="17.66" x2="17.66" y1="18.79" y2="21.35">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M14.734,21.702c-0.453,0-0.822-0.371-0.822-0.826V19.23 c0-0.454,0.369-0.824,0.822-0.824h5.856c0.455,0,0.825,0.37,0.825,0.824v1.646c0,0.455-0.37,0.826-0.825,0.826H14.734z" fill="url(#SVGID_7_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M20.591,21.702h-5.856c-0.453,0-0.822-0.371-0.822-0.826v0.412 c0,0.454,0.369,0.823,0.822,0.823h5.856c0.455,0,0.825-0.369,0.825-0.823v-0.412C21.416,21.331,21.046,21.702,20.591,21.702z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="17.6631" x2="17.6631" y1="18.7876" y2="21.3508">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M21,20.88c0,0.229-0.184,0.412-0.413,0.412h-5.856c-0.229,0-0.412-0.184-0.412-0.412v-1.65c0-0.228,0.184-0.412,0.412-0.412h5.856c0.229,0,0.413,0.185,0.413,0.412v1.646z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="7.77" x2="7.77" y1="18.37" y2="21.73">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.2" stop-color="#4D4D4D"/>
-<stop offset="0.7212" stop-color="#242424"/>
-<stop offset="1" stop-color="#373737"/>
+<path d="M21.004,20.876c0,0.229-0.184,0.412-0.413,0.412h-5.856c-0.229,0-0.412-0.184-0.412-0.412V19.23 c0-0.228,0.184-0.412,0.412-0.412h5.856c0.229,0,0.413,0.185,0.413,0.412V20.876z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="7.77" x2="7.77" y1="18.374" y2="21.7321">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.2" style="stop-color:#4D4D4D"/>
+<stop offset="0.7212" style="stop-color:#242424"/>
+<stop offset="1" style="stop-color:#373737"/>
</linearGradient>
-<path d="M4.842,21.7c-0.452,0-0.823-0.371-0.823-0.826v-1.64c0-0.454,0.371-0.824,0.823-0.824h5.857c0.455,0,0.822,0.37,0.822,0.824v1.646c0,0.455-0.367,0.826-0.822,0.826h-5.858z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M10.7,21.7h-5.858c-0.452,0-0.823-0.371-0.823-0.826v0.412c0,0.454,0.371,0.823,0.823,0.823h5.857c0.455,0,0.822-0.369,0.822-0.823v-0.412c0,0.46-0.37,0.83-0.82,0.83z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="7.772" x2="7.772" y1="18.79" y2="21.35">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.1333" stop-color="#848686"/>
-<stop offset="0.2606" stop-color="#7D7E7F"/>
-<stop offset="0.6606" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<path d="M4.842,21.702c-0.452,0-0.823-0.371-0.823-0.826V19.23 c0-0.454,0.371-0.824,0.823-0.824h5.857c0.455,0,0.822,0.37,0.822,0.824v1.646c0,0.455-0.367,0.826-0.822,0.826H4.842z" fill="url(#SVGID_9_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M10.699,21.702H4.842c-0.452,0-0.823-0.371-0.823-0.826v0.412 c0,0.454,0.371,0.823,0.823,0.823h5.857c0.455,0,0.822-0.369,0.822-0.823v-0.412C11.521,21.331,11.154,21.702,10.699,21.702z" fill="#222021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="7.772" x2="7.772" y1="18.7876" y2="21.3508">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.1333" style="stop-color:#848686"/>
+<stop offset="0.2606" style="stop-color:#7D7E7F"/>
+<stop offset="0.6606" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M11.11,20.88c0,0.229-0.185,0.412-0.413,0.412h-5.858c-0.227,0-0.41-0.184-0.41-0.412v-1.65c0-0.228,0.184-0.412,0.41-0.412h5.857c0.229,0,0.413,0.185,0.413,0.412v1.646z" fill="url(#SVGID_10_)"/>
+<path d="M11.112,20.876c0,0.229-0.185,0.412-0.413,0.412H4.842c-0.227,0-0.41-0.184-0.41-0.412V19.23 c0-0.228,0.184-0.412,0.41-0.412h5.857c0.229,0,0.413,0.185,0.413,0.412V20.876z" fill="url(#SVGID_10_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_service.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_service.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,71 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
+<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
+<stop offset="0" style="stop-color:#6FB2B5"/>
+<stop offset="0.297" style="stop-color:#6FB2B5"/>
+<stop offset="0.6667" style="stop-color:#4C5F94"/>
+<stop offset="0.7939" style="stop-color:#679FAD"/>
+<stop offset="1" style="stop-color:#679FAD"/>
</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="0.5091" style="stop-color:#1D1A33"/>
+<stop offset="1" style="stop-color:#516C8F"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,110 +1,112 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162" x2="-2162" y1="3604" y2="3655">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162.3384" x2="-2162.3384" y1="3603.7246" y2="3654.8755">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<circle cx="31.66" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
-<radialGradient cx="-2107" cy="3746" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.27">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<circle cx="31.662" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
+<radialGradient cx="-2106.918" cy="3745.7734" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.2687">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<path d="M56.76,27.76c0,13.86-11.23,25.1-25.1,25.1-13.86,0-25.1-11.23-25.1-25.1,0-13.86,11.24-25.1,25.1-25.1,13.87,0,25.1,11.24,25.1,25.1z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162" x2="-2162" y1="3655" y2="3604">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<path d="M56.761,27.759c0,13.864-11.234,25.097-25.099,25.097c-13.863,0-25.101-11.232-25.101-25.097 c0-13.859,11.239-25.099,25.101-25.099C45.53,2.66,56.761,13.899,56.761,27.759z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162.3384" x2="-2162.3384" y1="3654.5078" y2="3603.9641">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M31.66,2.66c-13.86,0-25.1,11.24-25.1,25.1s11.24,25.1,25.1,25.1,25.1-11.23,25.1-25.1c0-13.86-11.23-25.1-25.1-25.1zm0,48c-13.03,0-23.64-10.6-23.64-23.63s10.6-23.64,23.64-23.64c13.03,0,23.63,10.6,23.63,23.64,0.01,13.03-10.59,23.63-23.63,23.63z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187" x2="-2183" y1="3626" y2="3626">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187.0283" x2="-2183.0366" y1="3625.7734" y2="3625.7734">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M8.918,27.35c-0.268-0.357-0.871-0.357-1.137-0.357-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251,0.016,0.164,0.036,0.331,0.057,0.498l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583,0.107,0.488,0.238,0.993,0.399,1.552,0.023,0.08,0.044,0.159,0.065,0.239,0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017,0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796,0.145-0.194v-1.947l-0.215-0.215-1.822-1.83z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179" x2="-2138" y1="3633" y2="3633">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179.3354" x2="-2137.5874" y1="3633.083" y2="3633.083">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.41,22.84c-0.019-0.094-0.034-0.161-0.052-0.229-0.013-0.051-0.024-0.101-0.034-0.15-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42-0.227-0.706-0.473-1.38-0.732-2.003-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321-0.354-0.642-0.728-1.251-1.103-1.819-0.04-0.06-0.085-0.122-0.13-0.184-0.027-0.038-0.054-0.075-0.078-0.111-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199-0.459-0.55-0.941-1.08-1.441-1.583-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128-0.536-0.441-1.118-0.875-1.725-1.291-0.075-0.052-0.153-0.101-0.229-0.15l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859-0.526-0.07-1.801-0.23-3.089-0.355,0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446-0.059-0.017c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351v-0.012l-0.103-0.011c-0.84-0.083-1.693-0.127-2.539-0.127-0.744,0-1.517,0.04-2.361,0.122-0.13,0.013-0.256,0.025-0.385,0.038-0.83,0.094-1.56,0.204-2.25,0.345l-0.024,0.002-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7-0.051,0.021-0.086,0.032-0.121,0.046l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153-1.345,0.821,1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111,0.805,0,1.582-0.395,2.209-0.713,0.252-0.125,0.627-0.317,0.779-0.346,0.182,0.054,0.369,0.082,0.55,0.082,0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359,0.561-0.209,1.58-0.593,1.854-0.658,0.527-0.005,1.16-0.079,1.609-0.359,0.422,0.07,1.174,0.188,1.945,0.289-0.057,0.034-0.112,0.07-0.158,0.115-0.251,0.232-1.605,0.642-2.02,0.695-0.779,0.098-1.092,0.49-1.217,0.801-0.163,0.403-0.064,0.808,0.094,1.139-0.295,0.194-0.656,0.41-0.966,0.575,0,0,0.003-0.015,0.005-0.023,0.111-0.622,0.191-1.071-0.11-1.431-0.153-0.184-0.38-0.289-0.624-0.289-0.354,0-0.631,0.22-0.854,0.436-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028-0.064,0.05-0.264,0.124-0.534,0.124-0.036,0-0.07-0.001-0.095-0.004-0.176-0.189-0.42-0.298-0.693-0.298-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451,0.347,0.446,0.323,0.411c-5.066,3.918-5.104,4.14-5.157,4.468-0.009,0.03-0.054,0.165-0.115,0.352-0.754,2.348-1.174,4.104-0.765,5.044,0.942,2.179,2.006,4.212,3.383,4.325,0.122,0.01,0.256,0.015,0.398,0.015,1.265,0,3.311-0.382,4.295-0.584,0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39,0.445-0.015c0.004,0,0.239-0.009,0.539-0.009,0.342,0,0.573,0.011,0.723,0.021,0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607,0.078,0.129,0.15,0.244,0.213,0.345,0.389,1.108,0.861,1.841,1.856,1.841,0.075,0,0.149-0.004,0.227-0.01,0.058-0.002,0.115-0.004,0.175-0.004,0.109,0,0.189,0.012,0.271,0.042l0.09,0.032,0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068,0.309,0.042,0.625,0.084,0.947,0.084,0.868,0,1.555-0.327,2.148-1.028,0.023-0.003,0.044-0.005,0.067-0.008,0.622-0.086,0.854-0.398,0.935-0.678,0.045-0.047,0.107-0.104,0.157-0.15,0.245-0.226,0.538-0.493,0.739-0.811,0.091-0.054,0.193-0.114,0.311-0.183,0.2-0.124,0.428-0.26,0.605-0.352,0.157-0.05,0.297-0.142,0.401-0.271,0.251-0.31,0.2-0.659,0.157-0.941-0.041-0.291-0.084-0.592,0.072-0.911,0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575,0.242,0.277,0.59,0.432,0.978,0.432,0.124,0,0.253-0.016,0.384-0.047,1.234-0.279,3.426-3.249,3.604-4.888,0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221-0.367,0.364-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393,0.014-0.578-0.043-1.17-0.104-1.745-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04,0.046-0.047c0.387-0.392,0.813-0.734,1.264-1.099,1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984-0.107-0.155-0.33-0.395-0.75-0.478,0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052,0.1-0.097,2.281-2.19,0.334-0.321-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897,0.666,0.09,1.236,0.251,1.424,0.393,0.069,0.147,0.207,0.477,0.352,0.822,2.512,5.918,2.863,6.224,3.518,6.233,0.025,0,0.045,0.002,0.061,0.005,0.055,0.002,0.101,0.004,0.145,0.004,0.371,0,0.584-0.188,0.677-0.303,0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254,0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534-0.03-0.06zm-19.79-7.24c-0.104,0.004-0.217,0.009-0.338,0.014-0.388,0.02-0.828,0.038-1.268,0.038-1.147,0-1.409-0.142-1.438-0.157-0.135-0.1-0.275-0.174-0.42-0.226,0.26-0.059,0.557-0.259,0.863-0.853,0.303,0.586,0.712,1.104,1.342,1.104,0.171,0,0.332-0.043,0.488-0.122,0.22,0.01,0.57,0.13,0.78,0.21zm-0.45-3.2c-0.086,0-0.156-0.004-0.211-0.009,0.059-0.153,0.129-0.243,0.186-0.293,0.071,0.111,0.169,0.209,0.277,0.294-0.1,0.01-0.18,0.01-0.26,0.01zm-4.57,1.53c0.394,0.771,0.686,1.103,0.916,1.246-0.57,0.047-1.001,0.409-1.354,0.752-0.248-0.081-0.678-0.343-0.808-0.526-0.075-0.106-0.165-0.199-0.265-0.279,0.61-0.17,1.16-0.75,1.5-1.19zm-2.17-0.56l-0.817-0.039-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686,0.05-0.018,0.246-0.073,0.728-0.073,0.291,0,0.569,0.021,0.746,0.035l1.24,0.89z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.48">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-2106.0845" cy="3754.9141" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.4754">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M7.703,27.74c0,0.009,0.001,0.014,0.001,0.022,0,0.747,0.047,1.484,0.112,2.218,0.021,0.236,0.056,0.476,0.083,0.718,0.065,0.5,0.14,0.998,0.228,1.488,0.051,0.258,0.097,0.521,0.152,0.774,0.114,0.508,0.244,1.008,0.386,1.501,0.06,0.204,0.107,0.411,0.169,0.61,0.009,0.023,0.019,0.04,0.023,0.061,0.02-0.189,0.026-0.39,0.02-0.594-0.047-1.44-0.277-1.25-0.277-1.25l1.629-2.19v-1.402l-1.91-1.908c-0.001,0-0.616-0.1-0.617-0.05z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.48">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M7.703,27.745L7.703,27.745c0,0.009,0.001,0.014,0.001,0.022c0,0.747,0.047,1.484,0.112,2.218 c0.021,0.236,0.056,0.476,0.083,0.718c0.065,0.5,0.14,0.998,0.228,1.488c0.051,0.258,0.097,0.521,0.152,0.774 c0.114,0.508,0.244,1.008,0.386,1.501c0.06,0.204,0.107,0.411,0.169,0.61c0.009,0.023,0.019,0.04,0.023,0.061 c0.02-0.189,0.026-0.39,0.02-0.594C8.83,33.103,8.6,33.288,8.6,33.288l1.629-2.19v-1.402l-1.91-1.908 C8.319,27.787,7.704,27.69,7.703,27.745z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="-2106.0928" cy="3754.918" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.4765">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M23.04,6.076c0.706,0.233,1.282-0.24,1.939-0.66,0.231-0.049,2.81-1.076,3.089-1.076s1.216-0.036,1.448-0.409,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317-0.066-0.014-0.127-0.036-0.195-0.05-0.064-0.015-0.125-0.023-0.191-0.035-0.75-0.152-1.505-0.272-2.277-0.35-0.008,0-0.012,0-0.02-0.003-0.81-0.082-1.633-0.124-2.467-0.124-0.773,0-1.535,0.045-2.291,0.117-0.133,0.015-0.266,0.025-0.397,0.043-0.731,0.079-1.456,0.186-2.165,0.328-0.013,0.005-0.025,0.005-0.037,0.008-0.736,0.152-1.459,0.34-2.168,0.559-0.121,0.035-0.238,0.077-0.362,0.115-0.626,0.202-1.248,0.427-1.856,0.678-0.071,0.031-0.145,0.057-0.215,0.087-0.67,0.286-1.322,0.602-1.96,0.941-0.097,0.053-0.188,0.108-0.282,0.163-0.271,0.149-0.527,0.32-0.793,0.481,1.32,0.439,2.96-1.198,3.65-0.964z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.47">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M23.042,6.076c0.706,0.233,1.282-0.24,1.939-0.66c0.231-0.049,2.81-1.076,3.089-1.076 s1.216-0.036,1.448-0.409c0,0,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317c-0.066-0.014-0.127-0.036-0.195-0.05 c-0.064-0.015-0.125-0.023-0.191-0.035c-0.75-0.152-1.505-0.272-2.277-0.35c-0.008,0-0.012,0-0.02-0.003 c-0.81-0.082-1.633-0.124-2.467-0.124c-0.773,0-1.535,0.045-2.291,0.117c-0.133,0.015-0.266,0.025-0.397,0.043 c-0.731,0.079-1.456,0.186-2.165,0.328c-0.013,0.005-0.025,0.005-0.037,0.008c-0.736,0.152-1.459,0.34-2.168,0.559 c-0.121,0.035-0.238,0.077-0.362,0.115c-0.626,0.202-1.248,0.427-1.856,0.678c-0.071,0.031-0.145,0.057-0.215,0.087 c-0.67,0.286-1.322,0.602-1.96,0.941c-0.097,0.053-0.188,0.108-0.282,0.163c-0.271,0.149-0.527,0.32-0.793,0.481 C20.713,7.479,22.349,5.842,23.042,6.076z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-2106.0928" cy="3754.9209" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.4743">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M55.68,22.96c-0.026-0.122-0.06-0.237-0.083-0.356-0.127-0.601-0.28-1.19-0.455-1.773-0.045-0.154-0.092-0.316-0.143-0.474-0.211-0.659-0.445-1.31-0.709-1.941-0.047-0.112-0.1-0.223-0.15-0.331-0.242-0.56-0.504-1.104-0.789-1.639-0.066-0.128-0.131-0.259-0.199-0.383-0.336-0.604-0.691-1.194-1.074-1.768-0.064-0.1-0.137-0.192-0.203-0.292-0.35-0.507-0.717-0.997-1.102-1.477-0.078-0.094-0.152-0.192-0.233-0.287-0.442-0.532-0.909-1.044-1.396-1.534-0.082-0.085-0.172-0.17-0.259-0.252-0.444-0.437-0.907-0.857-1.387-1.258-0.079-0.069-0.157-0.139-0.237-0.206-0.537-0.439-1.1-0.857-1.678-1.254-0.1-0.069-0.203-0.135-0.307-0.2-0.531-0.354-1.079-0.686-1.643-0.998-0.074-0.042-0.148-0.087-0.225-0.129-0.625-0.336-1.262-0.642-1.916-0.924-0.117-0.049-0.232-0.096-0.348-0.145-0.254-0.104-0.521-0.188-0.777-0.282-0.306,0.195-1.729,1.001-1.729,1.001s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903-0.376,0.049-1.151,0.247-0.221,1.396-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51-0.195,0.375-0.315,0.554-0.174,1.632,0.142,1.077-1.719,1.07-1.845,0.791-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996s-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984,0.468,1.079,1.652,3.797,2.771,3.888,1.47,0.12,5.032-0.673,5.032-0.673,0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133c0.033,0.063,2.104,6.157,1.422,6.965-1.632,2.444,0.932,6.024,1.645,7.235,0.715,2.08,1.176,1.148,2.115,1.489,1.155,0.101,2.129,0.528,3.111-0.735,0.285-0.235,0.77-0.049,0.77-0.376,0-0.183,0.84-0.718,1.057-1.223,0.226-0.105,0.811-0.498,1.205-0.688,0.36-0.023-0.34-0.986,0.372-2.002,0.769-0.303,2.842-1.7,2.842-1.7,0.095-2.05-1.01-4.581,1.05-6.033,1.326-1.355,3.068-2.126,3.912-4.183,0.232-0.61,0.756-1.854-0.744-1.48-1.41,0.354-2.981,0.435-2.236-0.187-0.086-0.761-1.022-1.12-1.863-1.863-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266,0.186-0.468,1.773,2.609,1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33,0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19s-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361,0.733-0.147,0.565,1.076,1.356,0.47s0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765,0.102,0.13,2.748,6.739,3.271,6.749,0.229,0.002,0.395,0.091,0.32-0.309-0.094-0.188,0-4.338,0.14-5.229,0.354-0.753,0.412-0.002,1.25,1.428,0.02-0.05,0.01-0.08,0-0.12zm-23.28-16.01c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859c0.072,0.298-0.49,0.483-0.554,1.182-0.061,0.694-1.343,0.287-1.447,0.043-0.11-0.243,0.79-0.795,0.98-1.345zm4.59,9.373c-0.795,0-3.18,0.235-3.834-0.234-0.658-0.467-1.168,0.05-1.639,0.52-0.311,0.303-1.434-0.314-1.765-0.782-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335-3.171-0.154-1.802,0.528-1.694,0.05,0.95-0.454,1.181-0.278s1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378s-0.424,1.08-0.611,1.312c0.701-0.047,1.525-1.321,1.525-1.321-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377,0.02,0.012s0.795,1.874,1.127,1.874c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614,0.323-0.177,0.854-0.015,1.462,0.218,0.611,0.235,1.025-0.124,1.521,0.31-0.06,1.91-1.19,1.13-1.52,1.03zm1.25-3.22c-0.818-0.311-3.587,0.704-2.969-0.957,0.33-0.896,1.179-1.083,1.469-0.487,0.076,0.247,0.998,0.625,0.99,0.108-0.006-0.518,0.928-0.791,1.063-0.406-0.5,0.37,1.95,2.23-0.55,1.75zm5.21,1.58c-0.453-0.364,0.205-0.679-0.465-1.252-0.959-0.822-1.708-1.176-0.401-1.841,1.612-0.202,0.263,0.515,0.529,0.943,0.144,0.23,0.956,0.996,1.593,1.938,0.54,0.77-0.8,0.57-1.25,0.21z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.47">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M55.685,22.962c-0.026-0.122-0.06-0.237-0.083-0.356c-0.127-0.601-0.28-1.19-0.455-1.773 c-0.045-0.154-0.092-0.316-0.143-0.474c-0.211-0.659-0.445-1.31-0.709-1.941c-0.047-0.112-0.1-0.223-0.15-0.331 c-0.242-0.56-0.504-1.104-0.789-1.639c-0.066-0.128-0.131-0.259-0.199-0.383c-0.336-0.604-0.691-1.194-1.074-1.768 c-0.064-0.1-0.137-0.192-0.203-0.292c-0.35-0.507-0.717-0.997-1.102-1.477c-0.078-0.094-0.152-0.192-0.233-0.287 c-0.442-0.532-0.909-1.044-1.396-1.534c-0.082-0.085-0.172-0.17-0.259-0.252c-0.444-0.437-0.907-0.857-1.387-1.258 c-0.079-0.069-0.157-0.139-0.237-0.206c-0.537-0.439-1.1-0.857-1.678-1.254c-0.1-0.069-0.203-0.135-0.307-0.2 c-0.531-0.354-1.079-0.686-1.643-0.998c-0.074-0.042-0.148-0.087-0.225-0.129c-0.625-0.336-1.262-0.642-1.916-0.924 c-0.117-0.049-0.232-0.096-0.348-0.145c-0.254-0.104-0.521-0.188-0.777-0.282c-0.306,0.195-1.729,1.001-1.729,1.001 s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903c-0.376,0.049-1.151,0.247-0.221,1.396 c-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51 c-0.195,0.375-0.315,0.554-0.174,1.632c0.142,1.077-1.719,1.07-1.845,0.791c-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996 c0,0-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984c0.468,1.079,1.652,3.797,2.771,3.888 c1.47,0.12,5.032-0.673,5.032-0.673c0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133 c0.033,0.063,2.104,6.157,1.422,6.965c-1.632,2.444,0.932,6.024,1.645,7.235c0.715,2.08,1.176,1.148,2.115,1.489 c1.155,0.101,2.129,0.528,3.111-0.735c0.285-0.235,0.77-0.049,0.77-0.376c0-0.183,0.84-0.718,1.057-1.223 c0.226-0.105,0.811-0.498,1.205-0.688c0.36-0.023-0.34-0.986,0.372-2.002c0.769-0.303,2.842-1.7,2.842-1.7 c0.095-2.05-1.01-4.581,1.05-6.033c1.326-1.355,3.068-2.126,3.912-4.183c0.232-0.61,0.756-1.854-0.744-1.48 c-1.41,0.354-2.981,0.435-2.236-0.187c-0.086-0.761-1.022-1.12-1.863-1.863c-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266 l0.186-0.468l1.773,2.609l1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33c0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19 c0,0-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361l0.733-0.147l0.565,1.076l1.356,0.47 c0,0,0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765c0.102,0.13,2.748,6.739,3.271,6.749 c0.229,0.002,0.395,0.091,0.32-0.309c-0.094-0.188,0-4.338,0.14-5.229c0.354-0.753,0.412-0.002,1.25,1.428 C55.696,23.033,55.692,22.997,55.685,22.962z M32.397,6.947c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859 c0.072,0.298-0.49,0.483-0.554,1.182c-0.061,0.694-1.343,0.287-1.447,0.043C31.311,8.049,32.208,7.497,32.397,6.947z M36.993,16.324 c-0.795,0-3.18,0.235-3.834-0.234c-0.658-0.467-1.168,0.05-1.639,0.52c-0.311,0.303-1.434-0.314-1.765-0.782 c-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335l-3.171-0.154l-1.802,0.528l-1.694,0.05l0.95-0.454l1.181-0.278 c0,0,1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378c0,0-0.424,1.08-0.611,1.312 c0.701-0.047,1.525-1.321,1.525-1.321c-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377l0.02,0.012c0,0,0.795,1.874,1.127,1.874 c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614c0.323-0.177,0.854-0.015,1.462,0.218 c0.611,0.235,1.025-0.124,1.521,0.31C38.452,17.195,37.321,16.419,36.993,16.324z M38.239,13.102 c-0.818-0.311-3.587,0.704-2.969-0.957c0.33-0.896,1.179-1.083,1.469-0.487c0.076,0.247,0.998,0.625,0.99,0.108 c-0.006-0.518,0.928-0.791,1.063-0.406C38.293,11.716,40.737,13.58,38.239,13.102z M43.454,14.675 c-0.453-0.364,0.205-0.679-0.465-1.252c-0.959-0.822-1.708-1.176-0.401-1.841c1.612-0.202,0.263,0.515,0.529,0.943 c0.144,0.23,0.956,0.996,1.593,1.938C45.238,15.244,43.905,15.038,43.454,14.675z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-2106.0933" cy="3754.916" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.4698">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M44.1,36.02l-1.555,1.552-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146c1.04-0.24,4.21-4.47,2.61-5.22z" fill="url(#SVGID_9_)"/>
-<path d="M32.02,52.44c1.859,0,3.664-0.209,5.408-0.589-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847-0.685,0-1.324,0.265-1.804,0.751l-1.373,1.418-0.568,0.573-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51s-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083,2.215-0.77c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045-1.386-4.235-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394-2.904,4.096-4.617,9.095-4.617,14.5-0.006,13.85,11.24,25.09,25.1,25.09z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M32.02,52.44c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153c-0.386-0.396-0.912-0.624-1.442-0.624-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42-0.561,0.568-0.51,0.523,0.004,0.005-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45-0.029-0.071s-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614,0,0-0.144-0.406-0.174-0.493l0.085-0.354,2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044-1.373-4.188-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024-2.648,3.98-4.198,8.756-4.198,13.89-0.015,13.82,11.23,25.06,25.09,25.06z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="-2984" cy="4024" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.61">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.8364" stop-color="#ECEFED"/>
-<stop offset="0.8909" stop-color="#ADB2B1"/>
-<stop offset="0.9515" stop-color="#818587"/>
-<stop offset="1" stop-color="#888E8F"/>
+<path d="M44.104,36.019l-1.555,1.552c0,0-0.934,0-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209 c-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146C42.526,41.001,45.698,36.77,44.104,36.019z" fill="url(#SVGID_9_)"/>
+<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="-2983.5728" cy="4023.543" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.6078">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.8364" style="stop-color:#ECEFED"/>
+<stop offset="0.8909" style="stop-color:#ADB2B1"/>
+<stop offset="0.9515" style="stop-color:#818587"/>
+<stop offset="1" style="stop-color:#888E8F"/>
</radialGradient>
-<path d="M22.05,46.85c-2.873-2.563-5.037-5.372-6.979-8.311-1.865-2.832-3.556-7.079-4.079-8.93l-7.54-10.62c-0.429,0.711-1.107,3.264-0.794,6.717,0.316,3.454,3.534,11.81,7.313,17.54,3.782,5.731,9.389,11.12,11.27,12.31,2.959,1.878,6.523,2.493,7.608,2.439,0,0,1.002-0.118,2.367-0.597,0.58-0.2-9.17-10.55-9.17-10.55z" fill="url(#SVGID_10_)"/>
-<path d="M12.41,33.43c-0.661-1.542-1.174-2.953-1.418-3.827l-7.332-10.33c-0.077,0.108-0.12,0.173-0.12,0.173-0.126,0.207-0.266,0.55-0.406,0.977-0.142,0.722-0.214,1.466-0.202,2.229,0.072,5.4,4.153,9.85,9.48,10.78z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M12.1,32.68c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37c-0.089,0.13-0.137,0.2-0.137,0.2-0.118,0.195-0.25,0.522-0.383,0.925-0.134,0.682-0.202,1.383-0.19,2.105,0.07,5.18,4.034,9.43,9.173,10.22z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M3.443,19.41c-0.105,0.177-0.226,0.472-0.348,0.839-0.123,0.617-0.183,1.256-0.172,1.911,0.064,4.82,3.858,8.755,8.702,9.323-0.278-0.742-0.495-1.39-0.632-1.874l-7.394-10.43c-0.1,0.14-0.153,0.23-0.153,0.23z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="-3022" cy="4027" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.74">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M22.051,46.847c-2.873-2.563-5.037-5.372-6.979-8.311c-1.865-2.832-3.556-7.079-4.079-8.93 l-7.54-10.621c-0.429,0.711-1.107,3.264-0.794,6.717c0.316,3.454,3.534,11.814,7.313,17.545c3.782,5.731,9.389,11.118,11.269,12.311 c2.959,1.878,6.523,2.493,7.608,2.439c0,0,1.002-0.118,2.367-0.597C31.803,57.196,22.051,46.847,22.051,46.847z" fill="url(#SVGID_10_)"/>
+<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="-3022.0488" cy="4026.5146" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.7389">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M10.99,29.61l1.577-0.554s-3.343-14.95-4.669-14.27c-0.667,0.348-0.66,0.538-1.335,1.026-2.014,1.464-3.112,3.174-3.112,3.174-0.092,0.155-0.197,0.415-0.303,0.737-0.105,0.54-0.161,1.102-0.153,1.672,0.06,4.353,3.581,7.891,8.007,8.225l-0.01-0.01z" fill="url(#SVGID_11_)"/>
-<path d="M21.93,48.33c-0.311,0.874-0.481,1.802-0.47,2.769,0.031,2.291,1.062,4.354,2.695,5.889,2.064,0.771,3.951,1.047,4.689,1.01,0,0,1.002-0.118,2.367-0.597,0.492-0.171-6.277-7.469-8.48-9.823l-0.81,0.75z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M22.12,47.54c-0.313,0.871-0.481,1.799-0.47,2.766,0.043,3.142,1.947,5.86,4.748,7.363,0.927,0.218,1.705,0.318,2.198,0.331,0.013,0,0.032,0.002,0.045,0,0,0,1-0.115,2.37-0.594,0.508-0.179-6.761-7.982-8.693-10.06l-0.2,0.19z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="-3005" cy="3996" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="15">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M10.993,29.606l1.577-0.554c0,0-3.343-14.954-4.669-14.266c-0.667,0.348-0.66,0.538-1.335,1.026 c-2.014,1.464-3.112,3.174-3.112,3.174c-0.092,0.155-0.197,0.415-0.303,0.737c-0.105,0.54-0.161,1.102-0.153,1.672 c0.06,4.353,3.581,7.891,8.007,8.225C11,29.616,10.995,29.611,10.993,29.606z" fill="url(#SVGID_11_)"/>
+<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="-3005.0166" cy="3996.4961" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="14.9991">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M33.12,56.56c0.785-0.42,0.984-0.408,1.625-0.887,1.178-0.891-10.62-10.97-10.62-10.97l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648,0.062,4.526,3.869,8.17,8.542,8.24,0.82-0.2,1.86-0.55,2.94-1.14z" fill="url(#SVGID_12_)"/>
-<path d="M11.81,29.31l0.762-0.258s-3.343-14.95-4.669-14.27c-0.35,0.181-0.515,0.322-0.688,0.481l4.597,14.05z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3083" x2="-3078" y1="3928" y2="3912">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#9EA7A5"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M33.125,56.564c0.785-0.42,0.984-0.408,1.625-0.887c1.178-0.891-10.615-10.968-10.615-10.968 l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648c0.062,4.526,3.869,8.17,8.542,8.24C30.997,57.499,32.036,57.146,33.125,56.564z " fill="url(#SVGID_12_)"/>
+<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3082.8984" x2="-3077.6428" y1="3928.3984" y2="3911.7034">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.4" style="stop-color:#D6D9D7"/>
+<stop offset="0.7333" style="stop-color:#9EA7A5"/>
+<stop offset="1" style="stop-color:#D4DAD7"/>
</linearGradient>
-<path d="M12.57,29.06l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141-2.734-8.162c-0.214-0.641-0.854-1.006-1.43-0.813,0,0-0.515,0.211-1.837,0.898l4.657,14.26z" fill="url(#SVGID_13_)"/>
-<path d="M24.14,44.71l-0.563,0.568,10.52,10.87c0.227-0.158,0.457-0.313,0.662-0.468,1.17-0.9-10.62-10.97-10.62-10.97z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3067" x2="-3056" y1="3898" y2="3886">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#9EA7A5"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M12.57,29.056l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141l-2.734-8.162 c-0.214-0.641-0.854-1.006-1.43-0.813c0,0-0.515,0.211-1.837,0.898L12.57,29.056z" fill="url(#SVGID_13_)"/>
+<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3066.7827" x2="-3055.8347" y1="3897.6836" y2="3885.627">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.4" style="stop-color:#D6D9D7"/>
+<stop offset="0.7333" style="stop-color:#9EA7A5"/>
+<stop offset="1" style="stop-color:#D4DAD7"/>
</linearGradient>
-<path d="M34.75,55.67c1.176-0.889,1.558-1.273,1.558-1.273,0.438-0.448,0.407-1.204-0.071-1.697l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425,10.61,10.97z" fill="url(#SVGID_14_)"/>
-</svg>
\ No newline at end of file
+<path d="M34.749,55.673c1.176-0.889,1.558-1.273,1.558-1.273c0.438-0.448,0.407-1.204-0.071-1.697 l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425L34.749,55.673z" fill="url(#SVGID_14_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,151 +1,153 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162" x2="-2162" y1="3604" y2="3655">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162.3384" x2="-2162.3384" y1="3603.7246" y2="3654.8755">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<circle cx="31.66" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
-<radialGradient cx="-2107" cy="3746" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.27">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<circle cx="31.662" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
+<radialGradient cx="-2106.918" cy="3745.7734" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.2687">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<path d="M56.76,27.76c0,13.86-11.23,25.1-25.1,25.1-13.86,0-25.1-11.23-25.1-25.1,0-13.86,11.24-25.1,25.1-25.1,13.87,0,25.1,11.24,25.1,25.1z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162" x2="-2162" y1="3655" y2="3604">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<path d="M56.761,27.759c0,13.864-11.234,25.097-25.099,25.097c-13.863,0-25.101-11.232-25.101-25.097 c0-13.859,11.239-25.099,25.101-25.099C45.53,2.66,56.761,13.899,56.761,27.759z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162.3384" x2="-2162.3384" y1="3654.5078" y2="3603.9641">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M31.66,2.66c-13.86,0-25.1,11.24-25.1,25.1s11.24,25.1,25.1,25.1,25.1-11.23,25.1-25.1c0-13.86-11.23-25.1-25.1-25.1zm0,48c-13.03,0-23.64-10.6-23.64-23.63s10.6-23.64,23.64-23.64c13.03,0,23.63,10.6,23.63,23.64,0.01,13.03-10.59,23.63-23.63,23.63z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187" x2="-2183" y1="3626" y2="3626">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187.0283" x2="-2183.0366" y1="3625.7734" y2="3625.7734">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M8.918,27.35c-0.268-0.357-0.871-0.357-1.137-0.357-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251,0.016,0.164,0.036,0.331,0.057,0.498l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583,0.107,0.488,0.238,0.993,0.399,1.552,0.023,0.08,0.044,0.159,0.065,0.239,0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017,0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796,0.145-0.194v-1.947l-0.215-0.215-1.822-1.83z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179" x2="-2138" y1="3633" y2="3633">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179.3354" x2="-2137.5874" y1="3633.083" y2="3633.083">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.41,22.84c-0.019-0.094-0.034-0.161-0.052-0.229-0.013-0.051-0.024-0.101-0.034-0.15-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42-0.227-0.706-0.473-1.38-0.732-2.003-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321-0.354-0.642-0.728-1.251-1.103-1.819-0.04-0.06-0.085-0.122-0.13-0.184-0.027-0.038-0.054-0.075-0.078-0.111-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199-0.459-0.55-0.941-1.08-1.441-1.583-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128-0.536-0.441-1.118-0.875-1.725-1.291-0.075-0.052-0.153-0.101-0.229-0.15l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859-0.526-0.07-1.801-0.23-3.089-0.355,0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446-0.059-0.017c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351v-0.012l-0.103-0.011c-0.84-0.083-1.693-0.127-2.539-0.127-0.744,0-1.517,0.04-2.361,0.122-0.13,0.013-0.256,0.025-0.385,0.038-0.83,0.094-1.56,0.204-2.25,0.345l-0.024,0.002-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7-0.051,0.021-0.086,0.032-0.121,0.046l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153-1.345,0.821,1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111,0.805,0,1.582-0.395,2.209-0.713,0.252-0.125,0.627-0.317,0.779-0.346,0.182,0.054,0.369,0.082,0.55,0.082,0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359,0.561-0.209,1.58-0.593,1.854-0.658,0.527-0.005,1.16-0.079,1.609-0.359,0.422,0.07,1.174,0.188,1.945,0.289-0.057,0.034-0.112,0.07-0.158,0.115-0.251,0.232-1.605,0.642-2.02,0.695-0.779,0.098-1.092,0.49-1.217,0.801-0.163,0.403-0.064,0.808,0.094,1.139-0.295,0.194-0.656,0.41-0.966,0.575,0,0,0.003-0.015,0.005-0.023,0.111-0.622,0.191-1.071-0.11-1.431-0.153-0.184-0.38-0.289-0.624-0.289-0.354,0-0.631,0.22-0.854,0.436-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028-0.064,0.05-0.264,0.124-0.534,0.124-0.036,0-0.07-0.001-0.095-0.004-0.176-0.189-0.42-0.298-0.693-0.298-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451,0.347,0.446,0.323,0.411c-5.066,3.918-5.104,4.14-5.157,4.468-0.009,0.03-0.054,0.165-0.115,0.352-0.754,2.348-1.174,4.104-0.765,5.044,0.942,2.179,2.006,4.212,3.383,4.325,0.122,0.01,0.256,0.015,0.398,0.015,1.265,0,3.311-0.382,4.295-0.584,0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39,0.445-0.015c0.004,0,0.239-0.009,0.539-0.009,0.342,0,0.573,0.011,0.723,0.021,0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607,0.078,0.129,0.15,0.244,0.213,0.345,0.389,1.108,0.861,1.841,1.856,1.841,0.075,0,0.149-0.004,0.227-0.01,0.058-0.002,0.115-0.004,0.175-0.004,0.109,0,0.189,0.012,0.271,0.042l0.09,0.032,0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068,0.309,0.042,0.625,0.084,0.947,0.084,0.868,0,1.555-0.327,2.148-1.028,0.023-0.003,0.044-0.005,0.067-0.008,0.622-0.086,0.854-0.398,0.935-0.678,0.045-0.047,0.107-0.104,0.157-0.15,0.245-0.226,0.538-0.493,0.739-0.811,0.091-0.054,0.193-0.114,0.311-0.183,0.2-0.124,0.428-0.26,0.605-0.352,0.157-0.05,0.297-0.142,0.401-0.271,0.251-0.31,0.2-0.659,0.157-0.941-0.041-0.291-0.084-0.592,0.072-0.911,0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575,0.242,0.277,0.59,0.432,0.978,0.432,0.124,0,0.253-0.016,0.384-0.047,1.234-0.279,3.426-3.249,3.604-4.888,0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221-0.367,0.364-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393,0.014-0.578-0.043-1.17-0.104-1.745-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04,0.046-0.047c0.387-0.392,0.813-0.734,1.264-1.099,1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984-0.107-0.155-0.33-0.395-0.75-0.478,0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052,0.1-0.097,2.281-2.19,0.334-0.321-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897,0.666,0.09,1.236,0.251,1.424,0.393,0.069,0.147,0.207,0.477,0.352,0.822,2.512,5.918,2.863,6.224,3.518,6.233,0.025,0,0.045,0.002,0.061,0.005,0.055,0.002,0.101,0.004,0.145,0.004,0.371,0,0.584-0.188,0.677-0.303,0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254,0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534-0.03-0.06zm-19.79-7.24c-0.104,0.004-0.217,0.009-0.338,0.014-0.388,0.02-0.828,0.038-1.268,0.038-1.147,0-1.409-0.142-1.438-0.157-0.135-0.1-0.275-0.174-0.42-0.226,0.26-0.059,0.557-0.259,0.863-0.853,0.303,0.586,0.712,1.104,1.342,1.104,0.171,0,0.332-0.043,0.488-0.122,0.22,0.01,0.57,0.13,0.78,0.21zm-0.45-3.2c-0.086,0-0.156-0.004-0.211-0.009,0.059-0.153,0.129-0.243,0.186-0.293,0.071,0.111,0.169,0.209,0.277,0.294-0.1,0.01-0.18,0.01-0.26,0.01zm-4.57,1.53c0.394,0.771,0.686,1.103,0.916,1.246-0.57,0.047-1.001,0.409-1.354,0.752-0.248-0.081-0.678-0.343-0.808-0.526-0.075-0.106-0.165-0.199-0.265-0.279,0.61-0.17,1.16-0.75,1.5-1.19zm-2.17-0.56l-0.817-0.039-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686,0.05-0.018,0.246-0.073,0.728-0.073,0.291,0,0.569,0.021,0.746,0.035l1.24,0.89z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.48">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-2106.0845" cy="3754.9141" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.4754">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M7.703,27.74c0,0.009,0.001,0.014,0.001,0.022,0,0.747,0.047,1.484,0.112,2.218,0.021,0.236,0.056,0.476,0.083,0.718,0.065,0.5,0.14,0.998,0.228,1.488,0.051,0.258,0.097,0.521,0.152,0.774,0.114,0.508,0.244,1.008,0.386,1.501,0.06,0.204,0.107,0.411,0.169,0.61,0.009,0.023,0.019,0.04,0.023,0.061,0.02-0.189,0.026-0.39,0.02-0.594-0.047-1.44-0.277-1.25-0.277-1.25l1.629-2.19v-1.402l-1.91-1.908c-0.001,0-0.616-0.1-0.617-0.05z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.48">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M7.703,27.745L7.703,27.745c0,0.009,0.001,0.014,0.001,0.022c0,0.747,0.047,1.484,0.112,2.218 c0.021,0.236,0.056,0.476,0.083,0.718c0.065,0.5,0.14,0.998,0.228,1.488c0.051,0.258,0.097,0.521,0.152,0.774 c0.114,0.508,0.244,1.008,0.386,1.501c0.06,0.204,0.107,0.411,0.169,0.61c0.009,0.023,0.019,0.04,0.023,0.061 c0.02-0.189,0.026-0.39,0.02-0.594C8.83,33.103,8.6,33.288,8.6,33.288l1.629-2.19v-1.402l-1.91-1.908 C8.319,27.787,7.704,27.69,7.703,27.745z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="-2106.0928" cy="3754.918" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.4765">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M23.04,6.076c0.706,0.233,1.282-0.24,1.939-0.66,0.231-0.049,2.81-1.076,3.089-1.076s1.216-0.036,1.448-0.409,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317-0.066-0.014-0.127-0.036-0.195-0.05-0.064-0.015-0.125-0.023-0.191-0.035-0.75-0.152-1.505-0.272-2.277-0.35-0.008,0-0.012,0-0.02-0.003-0.81-0.082-1.633-0.124-2.467-0.124-0.773,0-1.535,0.045-2.291,0.117-0.133,0.015-0.266,0.025-0.397,0.043-0.731,0.079-1.456,0.186-2.165,0.328-0.013,0.005-0.025,0.005-0.037,0.008-0.736,0.152-1.459,0.34-2.168,0.559-0.121,0.035-0.238,0.077-0.362,0.115-0.626,0.202-1.248,0.427-1.856,0.678-0.071,0.031-0.145,0.057-0.215,0.087-0.67,0.286-1.322,0.602-1.96,0.941-0.097,0.053-0.188,0.108-0.282,0.163-0.271,0.149-0.527,0.32-0.793,0.481,1.32,0.439,2.96-1.198,3.65-0.964z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.47">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M23.042,6.076c0.706,0.233,1.282-0.24,1.939-0.66c0.231-0.049,2.81-1.076,3.089-1.076 s1.216-0.036,1.448-0.409c0,0,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317c-0.066-0.014-0.127-0.036-0.195-0.05 c-0.064-0.015-0.125-0.023-0.191-0.035c-0.75-0.152-1.505-0.272-2.277-0.35c-0.008,0-0.012,0-0.02-0.003 c-0.81-0.082-1.633-0.124-2.467-0.124c-0.773,0-1.535,0.045-2.291,0.117c-0.133,0.015-0.266,0.025-0.397,0.043 c-0.731,0.079-1.456,0.186-2.165,0.328c-0.013,0.005-0.025,0.005-0.037,0.008c-0.736,0.152-1.459,0.34-2.168,0.559 c-0.121,0.035-0.238,0.077-0.362,0.115c-0.626,0.202-1.248,0.427-1.856,0.678c-0.071,0.031-0.145,0.057-0.215,0.087 c-0.67,0.286-1.322,0.602-1.96,0.941c-0.097,0.053-0.188,0.108-0.282,0.163c-0.271,0.149-0.527,0.32-0.793,0.481 C20.713,7.479,22.349,5.842,23.042,6.076z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-2106.0928" cy="3754.9209" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.4743">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M55.68,22.96c-0.026-0.122-0.06-0.237-0.083-0.356-0.127-0.601-0.28-1.19-0.455-1.773-0.045-0.154-0.092-0.316-0.143-0.474-0.211-0.659-0.445-1.31-0.709-1.941-0.047-0.112-0.1-0.223-0.15-0.331-0.242-0.56-0.504-1.104-0.789-1.639-0.066-0.128-0.131-0.259-0.199-0.383-0.336-0.604-0.691-1.194-1.074-1.768-0.064-0.1-0.137-0.192-0.203-0.292-0.35-0.507-0.717-0.997-1.102-1.477-0.078-0.094-0.152-0.192-0.233-0.287-0.442-0.532-0.909-1.044-1.396-1.534-0.082-0.085-0.172-0.17-0.259-0.252-0.444-0.437-0.907-0.857-1.387-1.258-0.079-0.069-0.157-0.139-0.237-0.206-0.537-0.439-1.1-0.857-1.678-1.254-0.1-0.069-0.203-0.135-0.307-0.2-0.531-0.354-1.079-0.686-1.643-0.998-0.074-0.042-0.148-0.087-0.225-0.129-0.625-0.336-1.262-0.642-1.916-0.924-0.117-0.049-0.232-0.096-0.348-0.145-0.254-0.104-0.521-0.188-0.777-0.282-0.306,0.195-1.729,1.001-1.729,1.001s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903-0.376,0.049-1.151,0.247-0.221,1.396-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51-0.195,0.375-0.315,0.554-0.174,1.632,0.142,1.077-1.719,1.07-1.845,0.791-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996s-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984,0.468,1.079,1.652,3.797,2.771,3.888,1.47,0.12,5.032-0.673,5.032-0.673,0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133c0.033,0.063,2.104,6.157,1.422,6.965-1.632,2.444,0.932,6.024,1.645,7.235,0.715,2.08,1.176,1.148,2.115,1.489,1.155,0.101,2.129,0.528,3.111-0.735,0.285-0.235,0.77-0.049,0.77-0.376,0-0.183,0.84-0.718,1.057-1.223,0.226-0.105,0.811-0.498,1.205-0.688,0.36-0.023-0.34-0.986,0.372-2.002,0.769-0.303,2.842-1.7,2.842-1.7,0.095-2.05-1.01-4.581,1.05-6.033,1.326-1.355,3.068-2.126,3.912-4.183,0.232-0.61,0.756-1.854-0.744-1.48-1.41,0.354-2.981,0.435-2.236-0.187-0.086-0.761-1.022-1.12-1.863-1.863-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266,0.186-0.468,1.773,2.609,1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33,0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19s-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361,0.733-0.147,0.565,1.076,1.356,0.47s0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765,0.102,0.13,2.748,6.739,3.271,6.749,0.229,0.002,0.395,0.091,0.32-0.309-0.094-0.188,0-4.338,0.14-5.229,0.354-0.753,0.412-0.002,1.25,1.428,0.02-0.05,0.01-0.08,0-0.12zm-23.28-16.01c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859c0.072,0.298-0.49,0.483-0.554,1.182-0.061,0.694-1.343,0.287-1.447,0.043-0.11-0.243,0.79-0.795,0.98-1.345zm4.59,9.373c-0.795,0-3.18,0.235-3.834-0.234-0.658-0.467-1.168,0.05-1.639,0.52-0.311,0.303-1.434-0.314-1.765-0.782-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335-3.171-0.154-1.802,0.528-1.694,0.05,0.95-0.454,1.181-0.278s1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378s-0.424,1.08-0.611,1.312c0.701-0.047,1.525-1.321,1.525-1.321-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377,0.02,0.012s0.795,1.874,1.127,1.874c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614,0.323-0.177,0.854-0.015,1.462,0.218,0.611,0.235,1.025-0.124,1.521,0.31-0.06,1.91-1.19,1.13-1.52,1.03zm1.25-3.22c-0.818-0.311-3.587,0.704-2.969-0.957,0.33-0.896,1.179-1.083,1.469-0.487,0.076,0.247,0.998,0.625,0.99,0.108-0.006-0.518,0.928-0.791,1.063-0.406-0.5,0.37,1.95,2.23-0.55,1.75zm5.21,1.58c-0.453-0.364,0.205-0.679-0.465-1.252-0.959-0.822-1.708-1.176-0.401-1.841,1.612-0.202,0.263,0.515,0.529,0.943,0.144,0.23,0.956,0.996,1.593,1.938,0.54,0.77-0.8,0.57-1.25,0.21z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.47">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M55.685,22.962c-0.026-0.122-0.06-0.237-0.083-0.356c-0.127-0.601-0.28-1.19-0.455-1.773 c-0.045-0.154-0.092-0.316-0.143-0.474c-0.211-0.659-0.445-1.31-0.709-1.941c-0.047-0.112-0.1-0.223-0.15-0.331 c-0.242-0.56-0.504-1.104-0.789-1.639c-0.066-0.128-0.131-0.259-0.199-0.383c-0.336-0.604-0.691-1.194-1.074-1.768 c-0.064-0.1-0.137-0.192-0.203-0.292c-0.35-0.507-0.717-0.997-1.102-1.477c-0.078-0.094-0.152-0.192-0.233-0.287 c-0.442-0.532-0.909-1.044-1.396-1.534c-0.082-0.085-0.172-0.17-0.259-0.252c-0.444-0.437-0.907-0.857-1.387-1.258 c-0.079-0.069-0.157-0.139-0.237-0.206c-0.537-0.439-1.1-0.857-1.678-1.254c-0.1-0.069-0.203-0.135-0.307-0.2 c-0.531-0.354-1.079-0.686-1.643-0.998c-0.074-0.042-0.148-0.087-0.225-0.129c-0.625-0.336-1.262-0.642-1.916-0.924 c-0.117-0.049-0.232-0.096-0.348-0.145c-0.254-0.104-0.521-0.188-0.777-0.282c-0.306,0.195-1.729,1.001-1.729,1.001 s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903c-0.376,0.049-1.151,0.247-0.221,1.396 c-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51 c-0.195,0.375-0.315,0.554-0.174,1.632c0.142,1.077-1.719,1.07-1.845,0.791c-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996 c0,0-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984c0.468,1.079,1.652,3.797,2.771,3.888 c1.47,0.12,5.032-0.673,5.032-0.673c0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133 c0.033,0.063,2.104,6.157,1.422,6.965c-1.632,2.444,0.932,6.024,1.645,7.235c0.715,2.08,1.176,1.148,2.115,1.489 c1.155,0.101,2.129,0.528,3.111-0.735c0.285-0.235,0.77-0.049,0.77-0.376c0-0.183,0.84-0.718,1.057-1.223 c0.226-0.105,0.811-0.498,1.205-0.688c0.36-0.023-0.34-0.986,0.372-2.002c0.769-0.303,2.842-1.7,2.842-1.7 c0.095-2.05-1.01-4.581,1.05-6.033c1.326-1.355,3.068-2.126,3.912-4.183c0.232-0.61,0.756-1.854-0.744-1.48 c-1.41,0.354-2.981,0.435-2.236-0.187c-0.086-0.761-1.022-1.12-1.863-1.863c-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266 l0.186-0.468l1.773,2.609l1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33c0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19 c0,0-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361l0.733-0.147l0.565,1.076l1.356,0.47 c0,0,0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765c0.102,0.13,2.748,6.739,3.271,6.749 c0.229,0.002,0.395,0.091,0.32-0.309c-0.094-0.188,0-4.338,0.14-5.229c0.354-0.753,0.412-0.002,1.25,1.428 C55.696,23.033,55.692,22.997,55.685,22.962z M32.397,6.947c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859 c0.072,0.298-0.49,0.483-0.554,1.182c-0.061,0.694-1.343,0.287-1.447,0.043C31.311,8.049,32.208,7.497,32.397,6.947z M36.993,16.324 c-0.795,0-3.18,0.235-3.834-0.234c-0.658-0.467-1.168,0.05-1.639,0.52c-0.311,0.303-1.434-0.314-1.765-0.782 c-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335l-3.171-0.154l-1.802,0.528l-1.694,0.05l0.95-0.454l1.181-0.278 c0,0,1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378c0,0-0.424,1.08-0.611,1.312 c0.701-0.047,1.525-1.321,1.525-1.321c-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377l0.02,0.012c0,0,0.795,1.874,1.127,1.874 c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614c0.323-0.177,0.854-0.015,1.462,0.218 c0.611,0.235,1.025-0.124,1.521,0.31C38.452,17.195,37.321,16.419,36.993,16.324z M38.239,13.102 c-0.818-0.311-3.587,0.704-2.969-0.957c0.33-0.896,1.179-1.083,1.469-0.487c0.076,0.247,0.998,0.625,0.99,0.108 c-0.006-0.518,0.928-0.791,1.063-0.406C38.293,11.716,40.737,13.58,38.239,13.102z M43.454,14.675 c-0.453-0.364,0.205-0.679-0.465-1.252c-0.959-0.822-1.708-1.176-0.401-1.841c1.612-0.202,0.263,0.515,0.529,0.943 c0.144,0.23,0.956,0.996,1.593,1.938C45.238,15.244,43.905,15.038,43.454,14.675z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-2106.0933" cy="3754.916" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.4698">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M44.1,36.02l-1.555,1.552-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146c1.04-0.24,4.21-4.47,2.61-5.22z" fill="url(#SVGID_9_)"/>
-<path d="M32.02,52.44c1.859,0,3.664-0.209,5.408-0.589-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847-0.685,0-1.324,0.265-1.804,0.751l-1.373,1.418-0.568,0.573-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51s-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083,2.215-0.77c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045-1.386-4.235-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394-2.904,4.096-4.617,9.095-4.617,14.5-0.006,13.85,11.24,25.09,25.1,25.09z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M32.02,52.44c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153c-0.386-0.396-0.912-0.624-1.442-0.624-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42-0.561,0.568-0.51,0.523,0.004,0.005-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45-0.029-0.071s-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614,0,0-0.144-0.406-0.174-0.493l0.085-0.354,2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044-1.373-4.188-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024-2.648,3.98-4.198,8.756-4.198,13.89-0.015,13.82,11.23,25.06,25.09,25.06z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="-2984" cy="4024" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.61">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.8364" stop-color="#ECEFED"/>
-<stop offset="0.8909" stop-color="#ADB2B1"/>
-<stop offset="0.9515" stop-color="#818587"/>
-<stop offset="1" stop-color="#888E8F"/>
+<path d="M44.104,36.019l-1.555,1.552c0,0-0.934,0-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209 c-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146C42.526,41.001,45.698,36.77,44.104,36.019z" fill="url(#SVGID_9_)"/>
+<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="-2983.5728" cy="4023.543" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.6078">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.8364" style="stop-color:#ECEFED"/>
+<stop offset="0.8909" style="stop-color:#ADB2B1"/>
+<stop offset="0.9515" style="stop-color:#818587"/>
+<stop offset="1" style="stop-color:#888E8F"/>
</radialGradient>
-<path d="M22.05,46.85c-2.873-2.563-5.037-5.372-6.979-8.311-1.865-2.832-3.556-7.079-4.079-8.93l-7.54-10.62c-0.429,0.711-1.107,3.264-0.794,6.717,0.316,3.454,3.534,11.81,7.313,17.54,3.782,5.731,9.389,11.12,11.27,12.31,2.959,1.878,6.523,2.493,7.608,2.439,0,0,1.002-0.118,2.367-0.597,0.58-0.2-9.17-10.55-9.17-10.55z" fill="url(#SVGID_10_)"/>
-<path d="M12.41,33.43c-0.661-1.542-1.174-2.953-1.418-3.827l-7.332-10.33c-0.077,0.108-0.12,0.173-0.12,0.173-0.126,0.207-0.266,0.55-0.406,0.977-0.142,0.722-0.214,1.466-0.202,2.229,0.072,5.4,4.153,9.85,9.48,10.78z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M12.1,32.68c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37c-0.089,0.13-0.137,0.2-0.137,0.2-0.118,0.195-0.25,0.522-0.383,0.925-0.134,0.682-0.202,1.383-0.19,2.105,0.07,5.18,4.034,9.43,9.173,10.22z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M3.443,19.41c-0.105,0.177-0.226,0.472-0.348,0.839-0.123,0.617-0.183,1.256-0.172,1.911,0.064,4.82,3.858,8.755,8.702,9.323-0.278-0.742-0.495-1.39-0.632-1.874l-7.394-10.43c-0.1,0.14-0.153,0.23-0.153,0.23z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="-3022" cy="4027" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.74">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M22.051,46.847c-2.873-2.563-5.037-5.372-6.979-8.311c-1.865-2.832-3.556-7.079-4.079-8.93 l-7.54-10.621c-0.429,0.711-1.107,3.264-0.794,6.717c0.316,3.454,3.534,11.814,7.313,17.545c3.782,5.731,9.389,11.118,11.269,12.311 c2.959,1.878,6.523,2.493,7.608,2.439c0,0,1.002-0.118,2.367-0.597C31.803,57.196,22.051,46.847,22.051,46.847z" fill="url(#SVGID_10_)"/>
+<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="-3022.0488" cy="4026.5146" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.7389">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M10.99,29.61l1.577-0.554s-3.343-14.95-4.669-14.27c-0.667,0.348-0.66,0.538-1.335,1.026-2.014,1.464-3.112,3.174-3.112,3.174-0.092,0.155-0.197,0.415-0.303,0.737-0.105,0.54-0.161,1.102-0.153,1.672,0.06,4.353,3.581,7.891,8.007,8.225l-0.01-0.01z" fill="url(#SVGID_11_)"/>
-<path d="M21.93,48.33c-0.311,0.874-0.481,1.802-0.47,2.769,0.031,2.291,1.062,4.354,2.695,5.889,2.064,0.771,3.951,1.047,4.689,1.01,0,0,1.002-0.118,2.367-0.597,0.492-0.171-6.277-7.469-8.48-9.823l-0.81,0.75z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M22.12,47.54c-0.313,0.871-0.481,1.799-0.47,2.766,0.043,3.142,1.947,5.86,4.748,7.363,0.927,0.218,1.705,0.318,2.198,0.331,0.013,0,0.032,0.002,0.045,0,0,0,1-0.115,2.37-0.594,0.508-0.179-6.761-7.982-8.693-10.06l-0.2,0.19z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="-3005" cy="3996" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="15">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M10.993,29.606l1.577-0.554c0,0-3.343-14.954-4.669-14.266c-0.667,0.348-0.66,0.538-1.335,1.026 c-2.014,1.464-3.112,3.174-3.112,3.174c-0.092,0.155-0.197,0.415-0.303,0.737c-0.105,0.54-0.161,1.102-0.153,1.672 c0.06,4.353,3.581,7.891,8.007,8.225C11,29.616,10.995,29.611,10.993,29.606z" fill="url(#SVGID_11_)"/>
+<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="-3005.0166" cy="3996.4961" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="14.9991">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M33.12,56.56c0.785-0.42,0.984-0.408,1.625-0.887,1.178-0.891-10.62-10.97-10.62-10.97l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648,0.062,4.526,3.869,8.17,8.542,8.24,0.82-0.2,1.86-0.55,2.94-1.14z" fill="url(#SVGID_12_)"/>
-<path d="M11.81,29.31l0.762-0.258s-3.343-14.95-4.669-14.27c-0.35,0.181-0.515,0.322-0.688,0.481l4.597,14.05z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3083" x2="-3078" y1="3928" y2="3912">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#9EA7A5"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M33.125,56.564c0.785-0.42,0.984-0.408,1.625-0.887c1.178-0.891-10.615-10.968-10.615-10.968 l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648c0.062,4.526,3.869,8.17,8.542,8.24C30.997,57.499,32.036,57.146,33.125,56.564z " fill="url(#SVGID_12_)"/>
+<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3082.8984" x2="-3077.6428" y1="3928.3984" y2="3911.7034">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.4" style="stop-color:#D6D9D7"/>
+<stop offset="0.7333" style="stop-color:#9EA7A5"/>
+<stop offset="1" style="stop-color:#D4DAD7"/>
</linearGradient>
-<path d="M12.57,29.06l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141-2.734-8.162c-0.214-0.641-0.854-1.006-1.43-0.813,0,0-0.515,0.211-1.837,0.898l4.657,14.26z" fill="url(#SVGID_13_)"/>
-<path d="M24.14,44.71l-0.563,0.568,10.52,10.87c0.227-0.158,0.457-0.313,0.662-0.468,1.17-0.9-10.62-10.97-10.62-10.97z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3067" x2="-3056" y1="3898" y2="3886">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#9EA7A5"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M12.57,29.056l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141l-2.734-8.162 c-0.214-0.641-0.854-1.006-1.43-0.813c0,0-0.515,0.211-1.837,0.898L12.57,29.056z" fill="url(#SVGID_13_)"/>
+<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3066.7827" x2="-3055.8347" y1="3897.6836" y2="3885.627">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.4" style="stop-color:#D6D9D7"/>
+<stop offset="0.7333" style="stop-color:#9EA7A5"/>
+<stop offset="1" style="stop-color:#D4DAD7"/>
</linearGradient>
-<path d="M34.75,55.67c1.176-0.889,1.558-1.273,1.558-1.273,0.438-0.448,0.407-1.204-0.071-1.697l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425,10.61,10.97z" fill="url(#SVGID_14_)"/>
+<path d="M34.749,55.673c1.176-0.889,1.558-1.273,1.558-1.273c0.438-0.448,0.407-1.204-0.071-1.697 l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425L34.749,55.673z" fill="url(#SVGID_14_)"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.41,14.41,30.41,0,0.414,0,0.414,14.41,0,14.82,0.414,15.24,0.414,30,30.41,30,30.41,15.24,30.83,14.82"/>
-<path d="M2.749,29.82v-12.25l-2.749-2.75,0.706-0.707c0.507-0.5,12.43-12.46,13.15-13.15,0.387-0.368,0.914-0.786,1.589-0.786,0.687,0,1.172,0.42,1.518,0.785,0.457,0.484,8.802,8.816,13.15,13.15l0.708,0.706-2.747,2.749v12.25h-25.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.42" x2="15.42" y1="28.67" y2="12.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.08,28.82,3.749,28.82,3.749,14.47,15.41,5.489,27.08,14.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.42" x2="15.42" y1="17.31" y2="28.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M15.41,6.668l10.74,8.264v12.96h-21.47v-12.96l10.73-8.264m0-1.179l-11.66,8.981v14.35h23.33v-14.35l-11.67-8.984z" fill="url(#SVGID_2__)"/>
-<polygon fill-opacity="0.2" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,8.99" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,6.655"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.42" x2="15.42" y1="17.99" y2="29.15">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="10.5" width="7.001" x="11.92" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.42" x2="15.42" y1="28.75" y2="18.36">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M17.98,19.26v8.633h-5.133v-8.633h5.13m0.94-0.94h-7.001v10.5h7.001v-10.5-0.002z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.41" x2="15.41" y1="0.0352" y2="17.73">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M15.41,5.489l11.67,11.67,2.333-2.333s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333,11.66-11.66z" fill="url(#SVGID_5__)"/>
-<radialGradient cx="15.3" cy="1.756" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.67">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
+<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M14.55,2.616c0.724-0.688,1.102-0.653,1.689-0.034,0.516,0.549,10.43,10.44,12.7,12.71l0.467-0.468s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l0.467,0.465c2.257-2.25,12.04-12.06,12.67-12.66z" fill="url(#SVGID_6__)"/>
-<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.92" y="18.32"/>
+<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_call_voip_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,112 +1,114 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162" x2="-2162" y1="3604" y2="3655">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2162.3384" x2="-2162.3384" y1="3603.7246" y2="3654.8755">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<circle cx="31.66" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
-<radialGradient cx="-2107" cy="3746" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.27">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<circle cx="31.662" cy="27.76" fill="url(#SVGID_1_)" r="25.76"/>
+<radialGradient cx="-2106.918" cy="3745.7734" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="32.2687">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<path d="M56.76,27.76c0,13.86-11.23,25.1-25.1,25.1-13.86,0-25.1-11.23-25.1-25.1,0-13.86,11.24-25.1,25.1-25.1,13.87,0,25.1,11.24,25.1,25.1z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162" x2="-2162" y1="3655" y2="3604">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<path d="M56.761,27.759c0,13.864-11.234,25.097-25.099,25.097c-13.863,0-25.101-11.232-25.101-25.097 c0-13.859,11.239-25.099,25.101-25.099C45.53,2.66,56.761,13.899,56.761,27.759z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2162.3384" x2="-2162.3384" y1="3654.5078" y2="3603.9641">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M31.66,2.66c-13.86,0-25.1,11.24-25.1,25.1s11.24,25.1,25.1,25.1,25.1-11.23,25.1-25.1c0-13.86-11.23-25.1-25.1-25.1zm0,48c-13.03,0-23.64-10.6-23.64-23.63s10.6-23.64,23.64-23.64c13.03,0,23.63,10.6,23.63,23.64,0.01,13.03-10.59,23.63-23.63,23.63z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187" x2="-2183" y1="3626" y2="3626">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M31.663,2.66c-13.863,0-25.101,11.239-25.101,25.099 c0,13.864,11.239,25.097,25.101,25.097c13.864,0,25.099-11.232,25.099-25.097C56.761,13.899,45.53,2.66,31.663,2.66z M31.663,50.659 c-13.033,0-23.638-10.598-23.638-23.63c0-13.034,10.603-23.637,23.638-23.637c13.033,0,23.634,10.603,23.634,23.637 C55.296,40.06,44.696,50.659,31.663,50.659z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2187.0283" x2="-2183.0366" y1="3625.7734" y2="3625.7734">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M8.918,27.35c-0.268-0.357-0.871-0.357-1.137-0.357-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251,0.016,0.164,0.036,0.331,0.057,0.498l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583,0.107,0.488,0.238,0.993,0.399,1.552,0.023,0.08,0.044,0.159,0.065,0.239,0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017,0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796,0.145-0.194v-1.947l-0.215-0.215-1.822-1.83z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179" x2="-2138" y1="3633" y2="3633">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M8.918,27.351c-0.268-0.357-0.871-0.357-1.137-0.357 c-0.525,0-0.804,0.376-0.809,0.742v0.023l0.001,0.038c-0.001,0.646,0.035,1.37,0.113,2.251c0.016,0.164,0.036,0.331,0.057,0.498 l0.028,0.241c0.067,0.521,0.145,1.033,0.235,1.531l0.041,0.218c0.038,0.198,0.075,0.391,0.117,0.583 c0.107,0.488,0.238,0.993,0.399,1.552c0.023,0.08,0.044,0.159,0.065,0.239c0.036,0.132,0.07,0.261,0.11,0.388l0.006,0.017 l0.014,0.04c-0.003-0.012-0.009-0.028-0.012-0.045l1.44-0.097c0.022-0.227,0.028-0.46,0.022-0.691 c-0.012-0.364-0.025-0.813-0.129-1.191l1.337-1.796l0.145-0.194v-0.244v-1.4v-0.303l-0.215-0.215L8.918,27.351z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2179.3354" x2="-2137.5874" y1="3633.083" y2="3633.083">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.41,22.84c-0.019-0.094-0.034-0.161-0.052-0.229-0.013-0.051-0.024-0.101-0.034-0.15-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42-0.227-0.706-0.473-1.38-0.732-2.003-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321-0.354-0.642-0.728-1.251-1.103-1.819-0.04-0.06-0.085-0.122-0.13-0.184-0.027-0.038-0.054-0.075-0.078-0.111-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199-0.459-0.55-0.941-1.08-1.441-1.583-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128-0.536-0.441-1.118-0.875-1.725-1.291-0.075-0.052-0.153-0.101-0.229-0.15l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859-0.526-0.07-1.801-0.23-3.089-0.355,0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446-0.059-0.017c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351v-0.012l-0.103-0.011c-0.84-0.083-1.693-0.127-2.539-0.127-0.744,0-1.517,0.04-2.361,0.122-0.13,0.013-0.256,0.025-0.385,0.038-0.83,0.094-1.56,0.204-2.25,0.345l-0.024,0.002-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7-0.051,0.021-0.086,0.032-0.121,0.046l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153-1.345,0.821,1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111,0.805,0,1.582-0.395,2.209-0.713,0.252-0.125,0.627-0.317,0.779-0.346,0.182,0.054,0.369,0.082,0.55,0.082,0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359,0.561-0.209,1.58-0.593,1.854-0.658,0.527-0.005,1.16-0.079,1.609-0.359,0.422,0.07,1.174,0.188,1.945,0.289-0.057,0.034-0.112,0.07-0.158,0.115-0.251,0.232-1.605,0.642-2.02,0.695-0.779,0.098-1.092,0.49-1.217,0.801-0.163,0.403-0.064,0.808,0.094,1.139-0.295,0.194-0.656,0.41-0.966,0.575,0,0,0.003-0.015,0.005-0.023,0.111-0.622,0.191-1.071-0.11-1.431-0.153-0.184-0.38-0.289-0.624-0.289-0.354,0-0.631,0.22-0.854,0.436-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028-0.064,0.05-0.264,0.124-0.534,0.124-0.036,0-0.07-0.001-0.095-0.004-0.176-0.189-0.42-0.298-0.693-0.298-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451,0.347,0.446,0.323,0.411c-5.066,3.918-5.104,4.14-5.157,4.468-0.009,0.03-0.054,0.165-0.115,0.352-0.754,2.348-1.174,4.104-0.765,5.044,0.942,2.179,2.006,4.212,3.383,4.325,0.122,0.01,0.256,0.015,0.398,0.015,1.265,0,3.311-0.382,4.295-0.584,0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39,0.445-0.015c0.004,0,0.239-0.009,0.539-0.009,0.342,0,0.573,0.011,0.723,0.021,0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607,0.078,0.129,0.15,0.244,0.213,0.345,0.389,1.108,0.861,1.841,1.856,1.841,0.075,0,0.149-0.004,0.227-0.01,0.058-0.002,0.115-0.004,0.175-0.004,0.109,0,0.189,0.012,0.271,0.042l0.09,0.032,0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068,0.309,0.042,0.625,0.084,0.947,0.084,0.868,0,1.555-0.327,2.148-1.028,0.023-0.003,0.044-0.005,0.067-0.008,0.622-0.086,0.854-0.398,0.935-0.678,0.045-0.047,0.107-0.104,0.157-0.15,0.245-0.226,0.538-0.493,0.739-0.811,0.091-0.054,0.193-0.114,0.311-0.183,0.2-0.124,0.428-0.26,0.605-0.352,0.157-0.05,0.297-0.142,0.401-0.271,0.251-0.31,0.2-0.659,0.157-0.941-0.041-0.291-0.084-0.592,0.072-0.911,0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575,0.242,0.277,0.59,0.432,0.978,0.432,0.124,0,0.253-0.016,0.384-0.047,1.234-0.279,3.426-3.249,3.604-4.888,0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221-0.367,0.364-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393,0.014-0.578-0.043-1.17-0.104-1.745-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04,0.046-0.047c0.387-0.392,0.813-0.734,1.264-1.099,1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984-0.107-0.155-0.33-0.395-0.75-0.478,0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052,0.1-0.097,2.281-2.19,0.334-0.321-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897,0.666,0.09,1.236,0.251,1.424,0.393,0.069,0.147,0.207,0.477,0.352,0.822,2.512,5.918,2.863,6.224,3.518,6.233,0.025,0,0.045,0.002,0.061,0.005,0.055,0.002,0.101,0.004,0.145,0.004,0.371,0,0.584-0.188,0.677-0.303,0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254,0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534-0.03-0.06zm-19.79-7.24c-0.104,0.004-0.217,0.009-0.338,0.014-0.388,0.02-0.828,0.038-1.268,0.038-1.147,0-1.409-0.142-1.438-0.157-0.135-0.1-0.275-0.174-0.42-0.226,0.26-0.059,0.557-0.259,0.863-0.853,0.303,0.586,0.712,1.104,1.342,1.104,0.171,0,0.332-0.043,0.488-0.122,0.22,0.01,0.57,0.13,0.78,0.21zm-0.45-3.2c-0.086,0-0.156-0.004-0.211-0.009,0.059-0.153,0.129-0.243,0.186-0.293,0.071,0.111,0.169,0.209,0.277,0.294-0.1,0.01-0.18,0.01-0.26,0.01zm-4.57,1.53c0.394,0.771,0.686,1.103,0.916,1.246-0.57,0.047-1.001,0.409-1.354,0.752-0.248-0.081-0.678-0.343-0.808-0.526-0.075-0.106-0.165-0.199-0.265-0.279,0.61-0.17,1.16-0.75,1.5-1.19zm-2.17-0.56l-0.817-0.039-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686,0.05-0.018,0.246-0.073,0.728-0.073,0.291,0,0.569,0.021,0.746,0.035l1.24,0.89z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.48">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.406,22.84c-0.019-0.094-0.034-0.161-0.052-0.229 c-0.013-0.051-0.024-0.101-0.034-0.15c-0.128-0.595-0.285-1.208-0.472-1.832l-0.02-0.071c-0.041-0.14-0.082-0.281-0.127-0.42 c-0.227-0.706-0.473-1.38-0.732-2.003c-0.031-0.078-0.066-0.149-0.1-0.226l-0.055-0.119c-0.246-0.57-0.523-1.139-0.813-1.688 l-0.036-0.071c-0.057-0.107-0.111-0.216-0.17-0.321c-0.354-0.642-0.728-1.251-1.103-1.819c-0.04-0.06-0.085-0.122-0.13-0.184 c-0.027-0.038-0.054-0.075-0.078-0.111c-0.363-0.525-0.743-1.037-1.138-1.525l-0.076-0.099c-0.053-0.065-0.106-0.133-0.161-0.199 c-0.459-0.55-0.941-1.08-1.441-1.583c-0.068-0.067-0.139-0.138-0.211-0.209l-0.061-0.057c-0.45-0.44-0.93-0.878-1.422-1.289 l-0.097-0.083c-0.05-0.046-0.101-0.087-0.15-0.128c-0.536-0.441-1.118-0.875-1.725-1.291c-0.075-0.052-0.153-0.101-0.229-0.15 l-0.092-0.061c-0.546-0.362-1.115-0.709-1.688-1.023l-0.085-0.052c-0.049-0.028-0.096-0.054-0.144-0.082 c-0.636-0.341-1.3-0.66-1.976-0.951l-0.17-0.068l-0.186-0.077c-0.177-0.073-0.355-0.136-0.531-0.197 c-0.093-0.03-0.182-0.063-0.275-0.097l-0.339-0.127l-0.308,0.195c-0.203,0.129-1.01,0.589-1.484,0.859 c-0.526-0.07-1.801-0.23-3.089-0.355c0.396-0.036,0.946-0.082,1.719-0.133l0.108-1.446l-0.059-0.017 c-0.047-0.012-0.092-0.024-0.139-0.035l-0.111-0.021l-0.088-0.017c-0.789-0.159-1.529-0.273-2.264-0.351L34.57,2.925l-0.103-0.011 c-0.84-0.083-1.693-0.127-2.539-0.127c-0.744,0-1.517,0.04-2.361,0.122c-0.13,0.013-0.256,0.025-0.385,0.038 C28.35,3.041,27.62,3.151,26.93,3.292l-0.024,0.002l-0.017,0.003c-0.727,0.149-1.457,0.338-2.232,0.573 c-0.068,0.022-0.139,0.044-0.207,0.067l-0.156,0.052c-0.658,0.212-1.303,0.444-1.92,0.7c-0.051,0.021-0.086,0.032-0.121,0.046 l-0.094,0.038c-0.678,0.288-1.354,0.615-2.028,0.977c-0.073,0.037-0.142,0.079-0.212,0.118l-0.084,0.054 c-0.189,0.103-0.381,0.223-0.569,0.34l-0.244,0.153l-1.345,0.821l1.494,0.499c0.223,0.076,0.463,0.111,0.711,0.111 c0.805,0,1.582-0.395,2.209-0.713c0.252-0.125,0.627-0.317,0.779-0.346c0.182,0.054,0.369,0.082,0.55,0.082 c0.685,0,1.244-0.368,1.739-0.694l0.135-0.087c0.16-0.052,0.434-0.154,0.98-0.359c0.561-0.209,1.58-0.593,1.854-0.658 c0.527-0.005,1.16-0.079,1.609-0.359c0.422,0.07,1.174,0.188,1.945,0.289c-0.057,0.034-0.112,0.07-0.158,0.115 c-0.251,0.232-1.605,0.642-2.02,0.695c-0.779,0.098-1.092,0.49-1.217,0.801c-0.163,0.403-0.064,0.808,0.094,1.139 c-0.295,0.194-0.656,0.41-0.966,0.575c0,0,0.003-0.015,0.005-0.023c0.111-0.622,0.191-1.071-0.11-1.431 c-0.153-0.184-0.38-0.289-0.624-0.289c-0.354,0-0.631,0.22-0.854,0.436c-0.626,0.604-1.004,1.356-1.145,1.641l-0.026,0.052 l-0.023,0.042c-0.271,0.519-0.382,0.887-0.231,2.028c-0.064,0.05-0.264,0.124-0.534,0.124c-0.036,0-0.07-0.001-0.095-0.004 c-0.176-0.189-0.42-0.298-0.693-0.298l0,0c-0.63,0-1.488,0.709-2.551,2.107l-0.342,0.451l0.347,0.446l0.323,0.411 c-5.066,3.918-5.104,4.14-5.157,4.468c-0.009,0.03-0.054,0.165-0.115,0.352c-0.754,2.348-1.174,4.104-0.765,5.044 c0.942,2.179,2.006,4.212,3.383,4.325c0.122,0.01,0.256,0.015,0.398,0.015c1.265,0,3.311-0.382,4.295-0.584 c0.182,0.341,0.402,0.738,0.527,0.956l0.217,0.39l0.445-0.015c0.004,0,0.239-0.009,0.539-0.009c0.342,0,0.573,0.011,0.723,0.021 c0.536,1.571,1.563,5.189,1.373,5.943l-0.004,0.002c-1.732,2.597,0.368,5.982,1.377,7.607c0.078,0.129,0.15,0.244,0.213,0.345 c0.389,1.108,0.861,1.841,1.856,1.841c0.075,0,0.149-0.004,0.227-0.01c0.058-0.002,0.115-0.004,0.175-0.004 c0.109,0,0.189,0.012,0.271,0.042l0.09,0.032l0.097,0.008c0.187,0.016,0.368,0.042,0.544,0.068c0.309,0.042,0.625,0.084,0.947,0.084 c0.868,0,1.555-0.327,2.148-1.028c0.023-0.003,0.044-0.005,0.067-0.008c0.622-0.086,0.854-0.398,0.935-0.678 c0.045-0.047,0.107-0.104,0.157-0.15c0.245-0.226,0.538-0.493,0.739-0.811c0.091-0.054,0.193-0.114,0.311-0.183 c0.2-0.124,0.428-0.26,0.605-0.352c0.157-0.05,0.297-0.142,0.401-0.271c0.251-0.31,0.2-0.659,0.157-0.941 c-0.041-0.291-0.084-0.592,0.072-0.911c0.889-0.428,2.466-1.479,2.721-1.652l-0.002,0.021c-0.016,0.141-0.057,0.517-0.119,0.757 c-0.336,0.335-0.617,0.845-0.704,1.018l-0.06,0.113l-0.018,0.125c-0.023,0.164-0.113,1.021,0.367,1.575 c0.242,0.277,0.59,0.432,0.978,0.432c0.124,0,0.253-0.016,0.384-0.047c1.234-0.279,3.426-3.249,3.604-4.888 c0.086-0.789-0.223-1.409-0.846-1.703l-0.465-0.221l-0.367,0.364l-1.352,1.353c-0.457,0.043-0.814,0.179-1.057,0.393 c0.014-0.578-0.043-1.17-0.104-1.745c-0.186-1.74-0.222-2.848,0.846-3.602l0.054-0.04l0.046-0.047 c0.387-0.392,0.813-0.734,1.264-1.099c1.059-0.85,2.152-1.729,2.804-3.315l0.027-0.067c0.209-0.543,0.524-1.361,0.097-1.984 c-0.107-0.155-0.33-0.395-0.75-0.478c0.556-0.225,0.98-0.399,1.023-0.417l0.129-0.052l0.1-0.097l2.281-2.19l0.334-0.321 l-0.146-0.441c-0.021-0.057-0.144-0.401-0.494-0.897c0.666,0.09,1.236,0.251,1.424,0.393c0.069,0.147,0.207,0.477,0.352,0.822 c2.512,5.918,2.863,6.224,3.518,6.233c0.025,0,0.045,0.002,0.061,0.005c0.055,0.002,0.101,0.004,0.145,0.004 c0.371,0,0.584-0.188,0.677-0.303c0.273-0.328,0.196-0.73,0.169-0.88l-0.01-0.052c-0.031-0.354-0.012-1.946,0.039-3.254 c0.004,0.002,0.004,0.006,0.008,0.011l1.346-0.534L56.406,22.84z M36.622,15.6c-0.104,0.004-0.217,0.009-0.338,0.014 c-0.388,0.02-0.828,0.038-1.268,0.038c-1.147,0-1.409-0.142-1.438-0.157c-0.135-0.1-0.275-0.174-0.42-0.226 c0.26-0.059,0.557-0.259,0.863-0.853c0.303,0.586,0.712,1.104,1.342,1.104c0.171,0,0.332-0.043,0.488-0.122 C36.063,15.401,36.413,15.522,36.622,15.6z M36.17,12.397c-0.086,0-0.156-0.004-0.211-0.009c0.059-0.153,0.129-0.243,0.186-0.293 c0.071,0.111,0.169,0.209,0.277,0.294C36.334,12.395,36.252,12.397,36.17,12.397z M31.6,13.933c0.394,0.771,0.686,1.103,0.916,1.246 c-0.57,0.047-1.001,0.409-1.354,0.752c-0.248-0.081-0.678-0.343-0.808-0.526c-0.075-0.106-0.165-0.199-0.265-0.279 C30.713,14.948,31.262,14.369,31.6,13.933z M29.428,13.366l-0.817-0.039l-2.737-0.134c0.332-0.275,0.65-0.534,0.837-0.686 c0.05-0.018,0.246-0.073,0.728-0.073c0.291,0,0.569,0.021,0.746,0.035L29.428,13.366z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-2106.0845" cy="3754.9141" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="29.4754">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M7.703,27.74c0,0.009,0.001,0.014,0.001,0.022,0,0.747,0.047,1.484,0.112,2.218,0.021,0.236,0.056,0.476,0.083,0.718,0.065,0.5,0.14,0.998,0.228,1.488,0.051,0.258,0.097,0.521,0.152,0.774,0.114,0.508,0.244,1.008,0.386,1.501,0.06,0.204,0.107,0.411,0.169,0.61,0.009,0.023,0.019,0.04,0.023,0.061,0.02-0.189,0.026-0.39,0.02-0.594-0.047-1.44-0.277-1.25-0.277-1.25l1.629-2.19v-1.402l-1.91-1.908c-0.001,0-0.616-0.1-0.617-0.05z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.48">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M7.703,27.745L7.703,27.745c0,0.009,0.001,0.014,0.001,0.022c0,0.747,0.047,1.484,0.112,2.218 c0.021,0.236,0.056,0.476,0.083,0.718c0.065,0.5,0.14,0.998,0.228,1.488c0.051,0.258,0.097,0.521,0.152,0.774 c0.114,0.508,0.244,1.008,0.386,1.501c0.06,0.204,0.107,0.411,0.169,0.61c0.009,0.023,0.019,0.04,0.023,0.061 c0.02-0.189,0.026-0.39,0.02-0.594C8.83,33.103,8.6,33.288,8.6,33.288l1.629-2.19v-1.402l-1.91-1.908 C8.319,27.787,7.704,27.69,7.703,27.745z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="-2106.0928" cy="3754.918" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="29.4765">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M23.04,6.076c0.706,0.233,1.282-0.24,1.939-0.66,0.231-0.049,2.81-1.076,3.089-1.076s1.216-0.036,1.448-0.409,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317-0.066-0.014-0.127-0.036-0.195-0.05-0.064-0.015-0.125-0.023-0.191-0.035-0.75-0.152-1.505-0.272-2.277-0.35-0.008,0-0.012,0-0.02-0.003-0.81-0.082-1.633-0.124-2.467-0.124-0.773,0-1.535,0.045-2.291,0.117-0.133,0.015-0.266,0.025-0.397,0.043-0.731,0.079-1.456,0.186-2.165,0.328-0.013,0.005-0.025,0.005-0.037,0.008-0.736,0.152-1.459,0.34-2.168,0.559-0.121,0.035-0.238,0.077-0.362,0.115-0.626,0.202-1.248,0.427-1.856,0.678-0.071,0.031-0.145,0.057-0.215,0.087-0.67,0.286-1.322,0.602-1.96,0.941-0.097,0.053-0.188,0.108-0.282,0.163-0.271,0.149-0.527,0.32-0.793,0.481,1.32,0.439,2.96-1.198,3.65-0.964z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.47">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M23.042,6.076c0.706,0.233,1.282-0.24,1.939-0.66c0.231-0.049,2.81-1.076,3.089-1.076 s1.216-0.036,1.448-0.409c0,0,4.035,0.702,4.644,0.468c0.33-0.13,1.723-0.24,2.914-0.317c-0.066-0.014-0.127-0.036-0.195-0.05 c-0.064-0.015-0.125-0.023-0.191-0.035c-0.75-0.152-1.505-0.272-2.277-0.35c-0.008,0-0.012,0-0.02-0.003 c-0.81-0.082-1.633-0.124-2.467-0.124c-0.773,0-1.535,0.045-2.291,0.117c-0.133,0.015-0.266,0.025-0.397,0.043 c-0.731,0.079-1.456,0.186-2.165,0.328c-0.013,0.005-0.025,0.005-0.037,0.008c-0.736,0.152-1.459,0.34-2.168,0.559 c-0.121,0.035-0.238,0.077-0.362,0.115c-0.626,0.202-1.248,0.427-1.856,0.678c-0.071,0.031-0.145,0.057-0.215,0.087 c-0.67,0.286-1.322,0.602-1.96,0.941c-0.097,0.053-0.188,0.108-0.282,0.163c-0.271,0.149-0.527,0.32-0.793,0.481 C20.713,7.479,22.349,5.842,23.042,6.076z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-2106.0928" cy="3754.9209" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="29.4743">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M55.68,22.96c-0.026-0.122-0.06-0.237-0.083-0.356-0.127-0.601-0.28-1.19-0.455-1.773-0.045-0.154-0.092-0.316-0.143-0.474-0.211-0.659-0.445-1.31-0.709-1.941-0.047-0.112-0.1-0.223-0.15-0.331-0.242-0.56-0.504-1.104-0.789-1.639-0.066-0.128-0.131-0.259-0.199-0.383-0.336-0.604-0.691-1.194-1.074-1.768-0.064-0.1-0.137-0.192-0.203-0.292-0.35-0.507-0.717-0.997-1.102-1.477-0.078-0.094-0.152-0.192-0.233-0.287-0.442-0.532-0.909-1.044-1.396-1.534-0.082-0.085-0.172-0.17-0.259-0.252-0.444-0.437-0.907-0.857-1.387-1.258-0.079-0.069-0.157-0.139-0.237-0.206-0.537-0.439-1.1-0.857-1.678-1.254-0.1-0.069-0.203-0.135-0.307-0.2-0.531-0.354-1.079-0.686-1.643-0.998-0.074-0.042-0.148-0.087-0.225-0.129-0.625-0.336-1.262-0.642-1.916-0.924-0.117-0.049-0.232-0.096-0.348-0.145-0.254-0.104-0.521-0.188-0.777-0.282-0.306,0.195-1.729,1.001-1.729,1.001s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903-0.376,0.049-1.151,0.247-0.221,1.396-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51-0.195,0.375-0.315,0.554-0.174,1.632,0.142,1.077-1.719,1.07-1.845,0.791-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996s-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984,0.468,1.079,1.652,3.797,2.771,3.888,1.47,0.12,5.032-0.673,5.032-0.673,0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133c0.033,0.063,2.104,6.157,1.422,6.965-1.632,2.444,0.932,6.024,1.645,7.235,0.715,2.08,1.176,1.148,2.115,1.489,1.155,0.101,2.129,0.528,3.111-0.735,0.285-0.235,0.77-0.049,0.77-0.376,0-0.183,0.84-0.718,1.057-1.223,0.226-0.105,0.811-0.498,1.205-0.688,0.36-0.023-0.34-0.986,0.372-2.002,0.769-0.303,2.842-1.7,2.842-1.7,0.095-2.05-1.01-4.581,1.05-6.033,1.326-1.355,3.068-2.126,3.912-4.183,0.232-0.61,0.756-1.854-0.744-1.48-1.41,0.354-2.981,0.435-2.236-0.187-0.086-0.761-1.022-1.12-1.863-1.863-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266,0.186-0.468,1.773,2.609,1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33,0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19s-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361,0.733-0.147,0.565,1.076,1.356,0.47s0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765,0.102,0.13,2.748,6.739,3.271,6.749,0.229,0.002,0.395,0.091,0.32-0.309-0.094-0.188,0-4.338,0.14-5.229,0.354-0.753,0.412-0.002,1.25,1.428,0.02-0.05,0.01-0.08,0-0.12zm-23.28-16.01c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859c0.072,0.298-0.49,0.483-0.554,1.182-0.061,0.694-1.343,0.287-1.447,0.043-0.11-0.243,0.79-0.795,0.98-1.345zm4.59,9.373c-0.795,0-3.18,0.235-3.834-0.234-0.658-0.467-1.168,0.05-1.639,0.52-0.311,0.303-1.434-0.314-1.765-0.782-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335-3.171-0.154-1.802,0.528-1.694,0.05,0.95-0.454,1.181-0.278s1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378s-0.424,1.08-0.611,1.312c0.701-0.047,1.525-1.321,1.525-1.321-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377,0.02,0.012s0.795,1.874,1.127,1.874c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614,0.323-0.177,0.854-0.015,1.462,0.218,0.611,0.235,1.025-0.124,1.521,0.31-0.06,1.91-1.19,1.13-1.52,1.03zm1.25-3.22c-0.818-0.311-3.587,0.704-2.969-0.957,0.33-0.896,1.179-1.083,1.469-0.487,0.076,0.247,0.998,0.625,0.99,0.108-0.006-0.518,0.928-0.791,1.063-0.406-0.5,0.37,1.95,2.23-0.55,1.75zm5.21,1.58c-0.453-0.364,0.205-0.679-0.465-1.252-0.959-0.822-1.708-1.176-0.401-1.841,1.612-0.202,0.263,0.515,0.529,0.943,0.144,0.23,0.956,0.996,1.593,1.938,0.54,0.77-0.8,0.57-1.25,0.21z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-2106" cy="3755" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.47">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M55.685,22.962c-0.026-0.122-0.06-0.237-0.083-0.356c-0.127-0.601-0.28-1.19-0.455-1.773 c-0.045-0.154-0.092-0.316-0.143-0.474c-0.211-0.659-0.445-1.31-0.709-1.941c-0.047-0.112-0.1-0.223-0.15-0.331 c-0.242-0.56-0.504-1.104-0.789-1.639c-0.066-0.128-0.131-0.259-0.199-0.383c-0.336-0.604-0.691-1.194-1.074-1.768 c-0.064-0.1-0.137-0.192-0.203-0.292c-0.35-0.507-0.717-0.997-1.102-1.477c-0.078-0.094-0.152-0.192-0.233-0.287 c-0.442-0.532-0.909-1.044-1.396-1.534c-0.082-0.085-0.172-0.17-0.259-0.252c-0.444-0.437-0.907-0.857-1.387-1.258 c-0.079-0.069-0.157-0.139-0.237-0.206c-0.537-0.439-1.1-0.857-1.678-1.254c-0.1-0.069-0.203-0.135-0.307-0.2 c-0.531-0.354-1.079-0.686-1.643-0.998c-0.074-0.042-0.148-0.087-0.225-0.129c-0.625-0.336-1.262-0.642-1.916-0.924 c-0.117-0.049-0.232-0.096-0.348-0.145c-0.254-0.104-0.521-0.188-0.777-0.282c-0.306,0.195-1.729,1.001-1.729,1.001 s-6.18-0.846-6.602-0.426c-0.423,0.426-2.068,0.854-2.441,0.903c-0.376,0.049-1.151,0.247-0.221,1.396 c-0.139,0.141-2.795,1.99-2.795,1.15s0.594-2.348-0.24-1.54c-0.599,0.577-0.957,1.364-1.034,1.51 c-0.195,0.375-0.315,0.554-0.174,1.632c0.142,1.077-1.719,1.07-1.845,0.791c-0.332-0.746-2.174,1.676-2.174,1.676l0.776,0.996 c0,0-5.421,4.177-5.468,4.456c-0.048,0.282-1.399,3.907-0.93,4.984c0.468,1.079,1.652,3.797,2.771,3.888 c1.47,0.12,5.032-0.673,5.032-0.673c0.097,0.236,0.768,1.43,0.768,1.43s1.747-0.058,1.843,0.133 c0.033,0.063,2.104,6.157,1.422,6.965c-1.632,2.444,0.932,6.024,1.645,7.235c0.715,2.08,1.176,1.148,2.115,1.489 c1.155,0.101,2.129,0.528,3.111-0.735c0.285-0.235,0.77-0.049,0.77-0.376c0-0.183,0.84-0.718,1.057-1.223 c0.226-0.105,0.811-0.498,1.205-0.688c0.36-0.023-0.34-0.986,0.372-2.002c0.769-0.303,2.842-1.7,2.842-1.7 c0.095-2.05-1.01-4.581,1.05-6.033c1.326-1.355,3.068-2.126,3.912-4.183c0.232-0.61,0.756-1.854-0.744-1.48 c-1.41,0.354-2.981,0.435-2.236-0.187c-0.086-0.761-1.022-1.12-1.863-1.863c-0.436-1.028-1.118-2.86-1.118-2.86l-1.491-2.266 l0.186-0.468l1.773,2.609l1.771,2.142c0.65,2.143,1.209,2.33,1.209,2.33c0.98-0.345,3.311-1.305,3.311-1.305l2.281-2.19 c0,0-0.233-0.697-1.16-1.583l-0.703-0.418c-0.152,0.43-0.965,0.59-0.965,0.59l-1.973-2.361l0.733-0.147l0.565,1.076l1.356,0.47 c0,0,0.377-0.274,1.073,0.446c0.568-0.047,2.788,0.108,3.306,0.765c0.102,0.13,2.748,6.739,3.271,6.749 c0.229,0.002,0.395,0.091,0.32-0.309c-0.094-0.188,0-4.338,0.14-5.229c0.354-0.753,0.412-0.002,1.25,1.428 C55.696,23.033,55.692,22.997,55.685,22.962z M32.397,6.947c0.184-0.552,1.258-0.739,1.258-0.739s-0.308,0.568-0.236,0.859 c0.072,0.298-0.49,0.483-0.554,1.182c-0.061,0.694-1.343,0.287-1.447,0.043C31.311,8.049,32.208,7.497,32.397,6.947z M36.993,16.324 c-0.795,0-3.18,0.235-3.834-0.234c-0.658-0.467-1.168,0.05-1.639,0.52c-0.311,0.303-1.434-0.314-1.765-0.782 c-0.325-0.467-1.429-0.434-1.429-0.434l0.251-1.335l-3.171-0.154l-1.802,0.528l-1.694,0.05l0.95-0.454l1.181-0.278 c0,0,1.721-1.414,2.235-1.834c0.435-0.356,2.177-0.155,2.177-0.155l1.91,1.378c0,0-0.424,1.08-0.611,1.312 c0.701-0.047,1.525-1.321,1.525-1.321c-1.488-1.368-1.428-1.832-1.428-1.832l1.963,1.377l0.02,0.012c0,0,0.795,1.874,1.127,1.874 c0.326,0,0.744-1.289,0.744-1.289l0.559-0.142c0.248,0.593,0.715,1.929,1.272,1.614c0.323-0.177,0.854-0.015,1.462,0.218 c0.611,0.235,1.025-0.124,1.521,0.31C38.452,17.195,37.321,16.419,36.993,16.324z M38.239,13.102 c-0.818-0.311-3.587,0.704-2.969-0.957c0.33-0.896,1.179-1.083,1.469-0.487c0.076,0.247,0.998,0.625,0.99,0.108 c-0.006-0.518,0.928-0.791,1.063-0.406C38.293,11.716,40.737,13.58,38.239,13.102z M43.454,14.675 c-0.453-0.364,0.205-0.679-0.465-1.252c-0.959-0.822-1.708-1.176-0.401-1.841c1.612-0.202,0.263,0.515,0.529,0.943 c0.144,0.23,0.956,0.996,1.593,1.938C45.238,15.244,43.905,15.038,43.454,14.675z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-2106.0933" cy="3754.916" gradientTransform="matrix(0.961 0 0 -0.9609 2056.0444 3618.1604)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="29.4698">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M44.1,36.02l-1.555,1.552-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146c1.04-0.24,4.21-4.47,2.61-5.22z" fill="url(#SVGID_9_)"/>
-<path d="M32.02,52.44c1.859,0,3.664-0.209,5.408-0.589-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847-0.685,0-1.324,0.265-1.804,0.751l-1.373,1.418-0.568,0.573-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51s-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083,2.215-0.77c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045-1.386-4.235-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394-2.904,4.096-4.617,9.095-4.617,14.5-0.006,13.85,11.24,25.09,25.1,25.09z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M32.02,52.44c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153c-0.386-0.396-0.912-0.624-1.442-0.624-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42-0.561,0.568-0.51,0.523,0.004,0.005-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45-0.029-0.071s-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614,0,0-0.144-0.406-0.174-0.493l0.085-0.354,2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044-1.373-4.188-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024-2.648,3.98-4.198,8.756-4.198,13.89-0.015,13.82,11.23,25.06,25.09,25.06z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="-2984" cy="4024" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.61">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.8364" stop-color="#ECEFED"/>
-<stop offset="0.8909" stop-color="#ADB2B1"/>
-<stop offset="0.9515" stop-color="#818587"/>
-<stop offset="1" stop-color="#888E8F"/>
+<path d="M44.104,36.019l-1.555,1.552c0,0-0.934,0-0.979,0.378c-0.021,0.159-0.075,0.853-0.23,1.209 c-0.311,0.217-0.684,0.931-0.684,0.931s-0.191,1.382,0.839,1.146C42.526,41.001,45.698,36.77,44.104,36.019z" fill="url(#SVGID_9_)"/>
+<path d="M32.02,52.439c1.859,0,3.664-0.209,5.408-0.589 c-0.047-0.059-0.086-0.12-0.137-0.174l-9.057-9.324c-0.522-0.537-1.239-0.847-1.97-0.847c-0.685,0-1.324,0.265-1.804,0.751 l-1.373,1.418l-0.568,0.573l-0.524,0.537c-1.987-1.927-3.765-4.139-5.697-7.06c-1.067-1.62-1.986-3.592-2.57-4.956l-0.213-0.51 c0,0-0.291-0.718-0.39-0.975l-0.032-0.082c-0.081-0.211-0.153-0.408-0.221-0.601l-0.031-0.083l2.215-0.77 c1.222-0.414,1.915-1.688,1.638-3.071l-0.009-0.045l-1.386-4.235l-2.734-8.158c-0.193-0.582-0.564-1.064-1.032-1.394 c-2.904,4.096-4.617,9.095-4.617,14.496C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M32.02,52.439c1.563,0,3.09-0.15,4.576-0.422l-8.889-9.153 c-0.386-0.396-0.912-0.624-1.442-0.624c-0.485,0-0.936,0.188-1.274,0.531l-1.381,1.42l-0.561,0.568l-0.51,0.523l0.004,0.005 l-0.523,0.535c-2.243-2.087-4.219-4.489-6.334-7.693c-1.095-1.661-2.036-3.678-2.634-5.074l-0.19-0.45l-0.029-0.071 c0,0-0.292-0.723-0.393-0.981l-0.035-0.087c-0.082-0.216-0.156-0.415-0.229-0.614c0,0-0.144-0.406-0.174-0.493l0.085-0.354 l2.731-0.951c0.866-0.294,1.355-1.214,1.161-2.187l-0.008-0.044l-1.373-4.188l-2.734-8.161c-0.144-0.43-0.412-0.781-0.752-1.024 c-2.648,3.98-4.198,8.756-4.198,13.893C6.917,41.205,18.155,52.439,32.02,52.439z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="-2983.5728" cy="4023.543" gradientTransform="matrix(0.9654 -0.0107 -0.0107 -0.9654 2968.4299 3872.1846)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="42.6078">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.8364" style="stop-color:#ECEFED"/>
+<stop offset="0.8909" style="stop-color:#ADB2B1"/>
+<stop offset="0.9515" style="stop-color:#818587"/>
+<stop offset="1" style="stop-color:#888E8F"/>
</radialGradient>
-<path d="M22.05,46.85c-2.873-2.563-5.037-5.372-6.979-8.311-1.865-2.832-3.556-7.079-4.079-8.93l-7.54-10.62c-0.429,0.711-1.107,3.264-0.794,6.717,0.316,3.454,3.534,11.81,7.313,17.54,3.782,5.731,9.389,11.12,11.27,12.31,2.959,1.878,6.523,2.493,7.608,2.439,0,0,1.002-0.118,2.367-0.597,0.58-0.2-9.17-10.55-9.17-10.55z" fill="url(#SVGID_10_)"/>
-<path d="M12.41,33.43c-0.661-1.542-1.174-2.953-1.418-3.827l-7.332-10.33c-0.077,0.108-0.12,0.173-0.12,0.173-0.126,0.207-0.266,0.55-0.406,0.977-0.142,0.722-0.214,1.466-0.202,2.229,0.072,5.4,4.153,9.85,9.48,10.78z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M12.1,32.68c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37c-0.089,0.13-0.137,0.2-0.137,0.2-0.118,0.195-0.25,0.522-0.383,0.925-0.134,0.682-0.202,1.383-0.19,2.105,0.07,5.18,4.034,9.43,9.173,10.22z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M3.443,19.41c-0.105,0.177-0.226,0.472-0.348,0.839-0.123,0.617-0.183,1.256-0.172,1.911,0.064,4.82,3.858,8.755,8.702,9.323-0.278-0.742-0.495-1.39-0.632-1.874l-7.394-10.43c-0.1,0.14-0.153,0.23-0.153,0.23z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="-3022" cy="4027" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.74">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M22.051,46.847c-2.873-2.563-5.037-5.372-6.979-8.311c-1.865-2.832-3.556-7.079-4.079-8.93 l-7.54-10.621c-0.429,0.711-1.107,3.264-0.794,6.717c0.316,3.454,3.534,11.814,7.313,17.545c3.782,5.731,9.389,11.118,11.269,12.311 c2.959,1.878,6.523,2.493,7.608,2.439c0,0,1.002-0.118,2.367-0.597C31.803,57.196,22.051,46.847,22.051,46.847z" fill="url(#SVGID_10_)"/>
+<path d="M12.413,33.434c-0.661-1.542-1.174-2.953-1.418-3.827L3.658,19.27 c-0.077,0.108-0.12,0.173-0.12,0.173c-0.126,0.207-0.266,0.55-0.406,0.977c-0.142,0.722-0.214,1.466-0.202,2.229 C3.002,28.046,7.083,32.497,12.413,33.434z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M12.099,32.685c-0.507-1.242-0.899-2.348-1.104-3.078l-7.363-10.37 C3.548,19.356,3.5,19.429,3.5,19.429c-0.118,0.195-0.25,0.522-0.383,0.925c-0.134,0.682-0.202,1.383-0.19,2.105 C2.997,27.635,6.961,31.889,12.099,32.685z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M3.443,19.407c-0.105,0.177-0.226,0.472-0.348,0.839 c-0.123,0.617-0.183,1.256-0.172,1.911c0.064,4.82,3.858,8.755,8.702,9.323c-0.278-0.742-0.495-1.39-0.632-1.874L3.596,19.185 C3.496,19.325,3.443,19.407,3.443,19.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="-3022.0488" cy="4026.5146" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="14.7389">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M10.99,29.61l1.577-0.554s-3.343-14.95-4.669-14.27c-0.667,0.348-0.66,0.538-1.335,1.026-2.014,1.464-3.112,3.174-3.112,3.174-0.092,0.155-0.197,0.415-0.303,0.737-0.105,0.54-0.161,1.102-0.153,1.672,0.06,4.353,3.581,7.891,8.007,8.225l-0.01-0.01z" fill="url(#SVGID_11_)"/>
-<path d="M21.93,48.33c-0.311,0.874-0.481,1.802-0.47,2.769,0.031,2.291,1.062,4.354,2.695,5.889,2.064,0.771,3.951,1.047,4.689,1.01,0,0,1.002-0.118,2.367-0.597,0.492-0.171-6.277-7.469-8.48-9.823l-0.81,0.75z" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M22.12,47.54c-0.313,0.871-0.481,1.799-0.47,2.766,0.043,3.142,1.947,5.86,4.748,7.363,0.927,0.218,1.705,0.318,2.198,0.331,0.013,0,0.032,0.002,0.045,0,0,0,1-0.115,2.37-0.594,0.508-0.179-6.761-7.982-8.693-10.06l-0.2,0.19z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="-3005" cy="3996" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="15">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M10.993,29.606l1.577-0.554c0,0-3.343-14.954-4.669-14.266c-0.667,0.348-0.66,0.538-1.335,1.026 c-2.014,1.464-3.112,3.174-3.112,3.174c-0.092,0.155-0.197,0.415-0.303,0.737c-0.105,0.54-0.161,1.102-0.153,1.672 c0.06,4.353,3.581,7.891,8.007,8.225C11,29.616,10.995,29.611,10.993,29.606z" fill="url(#SVGID_11_)"/>
+<path d="M21.933,48.33c-0.311,0.874-0.481,1.802-0.47,2.769 c0.031,2.291,1.062,4.354,2.695,5.889c2.064,0.771,3.951,1.047,4.689,1.01c0,0,1.002-0.118,2.367-0.597 c0.492-0.171-6.277-7.469-8.48-9.823L21.933,48.33z" fill-opacity="0.05" stroke-opacity="0.05"/>
+<path d="M22.125,47.537c-0.313,0.871-0.481,1.799-0.47,2.766 c0.043,3.142,1.947,5.86,4.748,7.363c0.927,0.218,1.705,0.318,2.198,0.331c0.013,0,0.032,0.002,0.045,0c0,0,1-0.115,2.37-0.594 c0.508-0.179-6.761-7.982-8.693-10.055L22.125,47.537z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="-3005.0166" cy="3996.4961" gradientTransform="matrix(0.9664 -0.0083 -0.013 -0.9569 2980.2107 3844.9014)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="14.9991">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M33.12,56.56c0.785-0.42,0.984-0.408,1.625-0.887,1.178-0.891-10.62-10.97-10.62-10.97l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648,0.062,4.526,3.869,8.17,8.542,8.24,0.82-0.2,1.86-0.55,2.94-1.14z" fill="url(#SVGID_12_)"/>
-<path d="M11.81,29.31l0.762-0.258s-3.343-14.95-4.669-14.27c-0.35,0.181-0.515,0.322-0.688,0.481l4.597,14.05z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3083" x2="-3078" y1="3928" y2="3912">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#9EA7A5"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M33.125,56.564c0.785-0.42,0.984-0.408,1.625-0.887c1.178-0.891-10.615-10.968-10.615-10.968 l-2.057,2.111c-0.277,0.833-0.428,1.724-0.415,2.648c0.062,4.526,3.869,8.17,8.542,8.24C30.997,57.499,32.036,57.146,33.125,56.564z " fill="url(#SVGID_12_)"/>
+<path d="M11.808,29.311l0.762-0.258c0,0-3.343-14.954-4.669-14.266 c-0.35,0.181-0.515,0.322-0.688,0.481L11.808,29.311z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-3082.8984" x2="-3077.6428" y1="3928.3984" y2="3911.7034">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.4" style="stop-color:#D6D9D7"/>
+<stop offset="0.7333" style="stop-color:#9EA7A5"/>
+<stop offset="1" style="stop-color:#D4DAD7"/>
</linearGradient>
-<path d="M12.57,29.06l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141-2.734-8.162c-0.214-0.641-0.854-1.006-1.43-0.813,0,0-0.515,0.211-1.837,0.898l4.657,14.26z" fill="url(#SVGID_13_)"/>
-<path d="M24.14,44.71l-0.563,0.568,10.52,10.87c0.227-0.158,0.457-0.313,0.662-0.468,1.17-0.9-10.62-10.97-10.62-10.97z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3067" x2="-3056" y1="3898" y2="3886">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.4" stop-color="#D6D9D7"/>
-<stop offset="0.7333" stop-color="#9EA7A5"/>
-<stop offset="1" stop-color="#D4DAD7"/>
+<path d="M12.57,29.056l2.016-0.703c0.523-0.176,0.792-0.756,0.676-1.346l-1.356-4.141l-2.734-8.162 c-0.214-0.641-0.854-1.006-1.43-0.813c0,0-0.515,0.211-1.837,0.898L12.57,29.056z" fill="url(#SVGID_13_)"/>
+<path d="M24.135,44.708l-0.563,0.568l10.516,10.866 c0.227-0.158,0.457-0.313,0.662-0.468C35.928,54.784,24.135,44.708,24.135,44.708z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0111 -0.0111 -0.9999 3135.2356 3906.9067)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-3066.7827" x2="-3055.8347" y1="3897.6836" y2="3885.627">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.4" style="stop-color:#D6D9D7"/>
+<stop offset="0.7333" style="stop-color:#9EA7A5"/>
+<stop offset="1" style="stop-color:#D4DAD7"/>
</linearGradient>
-<path d="M34.75,55.67c1.176-0.889,1.558-1.273,1.558-1.273,0.438-0.448,0.407-1.204-0.071-1.697l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425,10.61,10.97z" fill="url(#SVGID_14_)"/>
+<path d="M34.749,55.673c1.176-0.889,1.558-1.273,1.558-1.273c0.438-0.448,0.407-1.204-0.071-1.697 l-9.057-9.322c-0.478-0.496-1.222-0.544-1.66-0.097l-1.383,1.425L34.749,55.673z" fill="url(#SVGID_14_)"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
@@ -212,4 +214,4 @@
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_camera.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_camera.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,112 +1,116 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-95.9" x2="-86.17" y1="26.21" y2="26.21">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="0.4788" stop-color="#7E8182"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-95.8955" x2="-86.1685" y1="26.209" y2="26.209">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="0.4788" style="stop-color:#7E8182"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M16.42,15.42v-3.748c0-0.885-0.653-1.544-1.453-1.544h-6.846c-0.799,0-1.456,0.659-1.456,1.544v3.748h9.751z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="-92.34" cy="12.17" gradientTransform="matrix(0.931 0 0 -0.9385 97.5175 22.6984)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="3.803">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<path d="M16.419,15.417v-3.748c0-0.885-0.653-1.544-1.453-1.544H8.124c-0.799,0-1.456,0.659-1.456,1.544 v3.748H16.419z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="-92.3433" cy="12.1729" gradientTransform="matrix(0.931 0 0 -0.9385 97.5175 22.6984)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="3.803">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</radialGradient>
-<path d="M14.97,10.12h-6.846c-0.799,0-1.456,0.659-1.456,1.544v0.756c0-0.885,0.657-1.544,1.456-1.544h6.843c0.8,0,1.453,0.659,1.453,1.544v-0.756c0-0.88-0.65-1.54-1.45-1.54z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-72.52" x2="-72.52" y1="28.47" y2="-10.96">
-<stop offset="0" stop-color="#D2D3D2"/>
-<stop offset="0.1212" stop-color="#D2D3D2"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9697" stop-color="#AFB3B2"/>
-<stop offset="0.9697" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M14.967,10.125H8.124c-0.799,0-1.456,0.659-1.456,1.544v0.756c0-0.885,0.657-1.544,1.456-1.544 h6.843c0.8,0,1.453,0.659,1.453,1.544v-0.756C16.419,10.785,15.766,10.125,14.967,10.125z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-72.52" x2="-72.52" y1="28.4741" y2="-10.9595">
+<stop offset="0" style="stop-color:#D2D3D2"/>
+<stop offset="0.1212" style="stop-color:#D2D3D2"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9697" style="stop-color:#AFB3B2"/>
+<stop offset="0.9697" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M55.5,10.56h-34.94c-0.824,0-1.499,0.687-1.499,1.528v1.896h-14.56c-0.824,0-1.5,0.68-1.5,1.52v32.83c0,0.841,0.676,1.528,1.499,1.528h51c0.824,0,1.501-0.688,1.501-1.528v-36.25c0-0.84-0.68-1.53-1.5-1.53z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-53.62" x2="-53.62" y1="25.95" y2="19.48">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M55.499,10.563H20.561c-0.824,0-1.499,0.687-1.499,1.528v1.896H4.5C3.676,13.986,3,14.674,3,15.514 v32.833c0,0.841,0.676,1.528,1.499,1.528h51c0.824,0,1.501-0.688,1.501-1.528V12.09C57,11.248,56.323,10.563,55.499,10.563z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-53.6201" x2="-53.6201" y1="25.9531" y2="19.4839">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="53.96,19.49,43.84,19.49,43.85,13,53.96,13"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-53.62" x2="-53.62" y1="20.07" y2="25.42">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<polygon fill="url(#SVGID_4_)" points="53.955,19.492 43.843,19.491 43.847,12.998 53.957,12.999 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-53.6196" x2="-53.6196" y1="20.0713" y2="25.4231">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="5.401" width="8.838" x="44.48" y="13.54"/>
-<path d="M45.76,31.91c-0.004,8.315-6.746,16.52-15.06,16.51-8.314-0.003-15.05-8.207-15.05-16.52,0.004-8.318,6.746-15.05,15.06-15.05,8.32,0.01,15.06,6.75,15.05,15.06z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-71.81" x2="-71.81" y1="22.78" y2="-7.386">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<rect fill="url(#SVGID_5_)" height="5.401" width="8.838" x="44.481" y="13.544"/>
+<path d="M45.764,31.913c-0.004,8.315-6.746,16.519-15.062,16.514 c-8.314-0.003-15.053-8.207-15.053-16.522c0.004-8.318,6.746-15.053,15.063-15.052C39.028,16.856,45.766,23.597,45.764,31.913z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-71.814" x2="-71.814" y1="22.7822" y2="-7.386">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<path d="M45.71,31.3c-0.001,8.285-6.718,15-15,14.99-8.283-0.002-15-6.721-15-15,0.004-8.286,6.722-15,15.01-15,8.28,0.01,14.99,6.73,14.99,15.01z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-71.81" x2="-71.81" y1="22.13" y2="-6.438">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<path d="M45.706,31.304c-0.001,8.285-6.718,14.998-15.004,14.994c-8.283-0.002-14.997-6.721-14.996-15.003 c0.004-8.286,6.722-14.998,15.007-14.996C38.996,16.304,45.708,23.02,45.706,31.304z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-71.813" x2="-71.813" y1="22.1294" y2="-6.4378">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<path d="M44.96,31.31c-0.003,7.868-6.385,14.24-14.25,14.24-7.874-0.003-14.25-6.382-14.24-14.25,0-7.87,6.381-14.25,14.25-14.25,7.86,0,14.24,6.39,14.24,14.26z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 3.000000e-004 3.000000e-004 -1 101.8093 38.1828)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-79.33" x2="-62.89" y1="15.08" y2="-1.357">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<path d="M44.956,31.308c-0.003,7.868-6.385,14.245-14.254,14.241c-7.874-0.003-14.252-6.382-14.245-14.254 c0-7.87,6.381-14.248,14.253-14.246C38.583,17.054,44.96,23.437,44.956,31.308z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 3.000000e-004 3.000000e-004 -1 101.8093 38.1828)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-79.3252" x2="-62.8855" y1="15.0825" y2="-1.3573">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M42.33,31.3c-0.003,6.42-5.213,11.62-11.63,11.62-6.42-0.001-11.62-5.209-11.62-11.63,0.002-6.423,5.208-11.63,11.62-11.62,6.43,0.01,11.63,5.21,11.63,11.63z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-71.38" cy="23.74" gradientTransform="matrix(0.9226 2.793056e-004 2.793056e-004 -0.9226 97.7313 54.1515)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="13.53">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<path d="M42.332,31.304c-0.003,6.42-5.213,11.621-11.63,11.62c-6.42-0.001-11.623-5.209-11.62-11.627 c0.002-6.423,5.208-11.626,11.624-11.623C37.13,19.677,42.332,24.881,42.332,31.304z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-71.3799" cy="23.7412" gradientTransform="matrix(0.9226 2.793056e-004 2.793056e-004 -0.9226 97.7313 54.1515)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="13.5274">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<circle cx="30.71" cy="31.3" fill="url(#SVGID_9_)" r="10.87"/>
-<radialGradient cx="-77.21" cy="16.41" gradientTransform="matrix(0.9306 0 0 -0.9306 97.6075 39.1861)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.55">
-<stop offset="0" stop-color="#242424"/>
-<stop offset="0.4303" stop-color="#242424"/>
-<stop offset="0.7818" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="30.706" cy="31.3" fill="url(#SVGID_9_)" r="10.874"/>
+<radialGradient cx="-77.2124" cy="16.4063" gradientTransform="matrix(0.9306 0 0 -0.9306 97.6075 39.1861)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="21.5485">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<circle cx="30.71" cy="31.3" fill="url(#SVGID_10_)" r="9"/>
-<radialGradient cx="-77.01" cy="63.88" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.9111 98.5755 77.6866)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="23.64">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<circle cx="30.706" cy="31.299" fill="url(#SVGID_10_)" r="9"/>
+<radialGradient cx="-77.0063" cy="63.8779" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.9111 98.5755 77.6866)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="23.6394">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M38.58,31.3c-0.001,4.35-3.529,7.876-7.879,7.874-4.345-0.002-7.872-3.529-7.872-7.877,0.005-4.351,3.531-7.872,7.875-7.872,4.36,0.01,7.88,3.53,7.88,7.88z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="-74.52" cy="146.8" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.8674 98.575 165.1664)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="9.598">
-<stop offset="0" stop-color="#264932"/>
-<stop offset="0.7879" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M38.581,31.3c-0.001,4.35-3.529,7.876-7.879,7.874c-4.345-0.002-7.872-3.529-7.872-7.877 c0.005-4.351,3.531-7.872,7.875-7.872C35.059,23.427,38.583,26.952,38.581,31.3z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="-74.5239" cy="146.7813" gradientTransform="matrix(0.911 2.793056e-004 2.793056e-004 -0.8674 98.575 165.1664)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="9.5976">
+<stop offset="0" style="stop-color:#264932"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<path d="M38.58,31.58c-0.001,4.14-3.529,7.498-7.879,7.496-4.345-0.001-7.872-3.36-7.872-7.5,0,0,2.698,4.573,7.872,4.573,5.18,0,7.88-4.57,7.88-4.57z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-90.7" x2="-90.7" y1="20.13" y2="14.88">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M38.581,31.575c-0.001,4.14-3.529,7.498-7.879,7.496c-4.345-0.001-7.872-3.36-7.872-7.5 c0,0,2.698,4.573,7.872,4.573C35.879,36.146,38.581,31.575,38.581,31.575z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-90.6953" x2="-90.6953" y1="20.1304" y2="14.8813">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<circle cx="11.82" cy="21.43" fill="url(#SVGID_13_)" r="2.625"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-90.7" x2="-90.7" y1="15.12" y2="19.81">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<circle cx="11.825" cy="21.428" fill="url(#SVGID_13_)" r="2.625"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-90.6958" x2="-90.6958" y1="15.1157" y2="19.8095">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<circle cx="11.82" cy="21.43" fill="url(#SVGID_14_)" r="2.25"/>
-<path d="M11.82,21.66c0.774,0,1.459-0.348,1.931-0.889-0.285-0.796-1.038-1.37-1.931-1.37-0.894,0-1.647,0.573-1.933,1.37,0.473,0.54,1.163,0.89,1.933,0.89z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-<polygon fill="#F1F2F2" fill-opacity="0.2" points="44.7,15.05,53.17,15.08,53.17,13.77,44.7,13.77" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-71.85" x2="-71.85" y1="17.36" y2="7.755">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<circle cx="11.824" cy="21.428" fill="url(#SVGID_14_)" r="2.25"/>
+<path d="M11.825,21.659c0.774,0,1.459-0.348,1.931-0.889 c-0.285-0.796-1.038-1.37-1.931-1.37c-0.894,0-1.647,0.573-1.933,1.37C10.364,21.311,11.05,21.659,11.825,21.659z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<polygon fill="#F1F2F2" fill-opacity="0.2" points="44.699,15.053 53.168,15.085 53.168,13.772 44.699,13.772 " stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-71.854" x2="-71.854" y1="17.3643" y2="7.7548">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M30.67,31.18c3.489,0,6.777-0.529,9.679-1.461-0.823-4.604-4.839-8.102-9.679-8.102-4.843,0-8.856,3.498-9.682,8.101,2.9,0.93,6.19,1.46,9.68,1.46z" fill="url(#SVGID_15_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-72.52" x2="-72.52" y1="28.55" y2="-10.86">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M30.668,31.179c3.489,0,6.777-0.529,9.679-1.461 c-0.823-4.604-4.839-8.102-9.679-8.102c-4.843,0-8.856,3.498-9.682,8.101C23.889,30.649,27.178,31.179,30.668,31.179z" fill="url(#SVGID_15_)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 38.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-72.52" x2="-72.52" y1="28.5479" y2="-10.8621">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M55.5,10.56h-34.94c-0.824,0-1.499,0.687-1.499,1.528v1.896h-14.56c-0.824,0-1.5,0.68-1.5,1.52v32.83c0,0.841,0.676,1.528,1.499,1.528,0,0-0.749-0.414-0.749-1.528v-32.83c0-0.426,0.337-0.772,0.749-0.772h15.31v-2.653c0-0.426,0.337-0.772,0.75-0.772h34.94c0.413,0,0.749,0.346,0.749,0.772v36.26c0,1.208-0.749,1.527-0.749,1.527,0.824,0,1.499-0.688,1.499-1.527v-36.25c0-0.84-0.68-1.53-1.5-1.53z" fill="url(#SVGID_16_)"/>
+<path d="M55.499,10.563H20.561c-0.824,0-1.499,0.687-1.499,1.528v1.896H4.5C3.676,13.986,3,14.674,3,15.514 v32.833c0,0.841,0.676,1.528,1.499,1.528c0,0-0.749-0.414-0.749-1.528V15.514c0-0.426,0.337-0.772,0.749-0.772h14.564h0.749v-0.756 v-1.897c0-0.426,0.337-0.772,0.75-0.772h34.939c0.413,0,0.749,0.346,0.749,0.772v36.256c0,1.208-0.749,1.527-0.749,1.527 c0.824,0,1.499-0.688,1.499-1.527V12.09C57,11.248,56.323,10.563,55.499,10.563z" fill="url(#SVGID_16_)"/>
+</g>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_car.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_car.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12.8" x2="12.8" y1="35.35" y2="50.07">
<stop offset="0" stop-color="#7B7B7B"/>
<stop offset="0.1455" stop-color="#565656"/>
@@ -76,4 +77,5 @@
<path d="M47.27,23.35c-0.226-0.722-2.567-8.243-2.567-8.243s-0.067-0.812-1.081-1.014c-0.992-0.198-5.62-1.284-13.73-1.284-8.106,0-12.52,1.086-13.51,1.284-1.014,0.202-1.081,1.014-1.081,1.014s-2.341,7.521-2.566,8.243c-0.169,0.539,0.473,0.473,0.473,0.473s5.519,0.811,16.6,0.811,16.99-0.811,16.99-0.811,0.65,0.07,0.48-0.47z" fill="url(#SVGID_11_)"/>
<path d="M43.51,14.62l-0.249-0.052c-3.887-0.811-8.385-1.222-13.37-1.222-7.414,0-11.7,0.91-13.1,1.21-0.123,0.025-0.224,0.047-0.304,0.063-0.563,0.112-0.641,0.47-0.649,0.541l-0.009,0.06-0.013,0.043s-0.959,3.078-1.71,5.489l30.53-4.027c-0.271-0.868-0.456-1.462-0.456-1.462l-0.015-0.059-0.006-0.044c0-0.07-0.07-0.43-0.64-0.54z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_cellinfo.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_cellinfo.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,97 +1,97 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g transform="matrix(1 0 0 1 -0.001 0)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="42.84" x2="42.84" y1="14.16" y2="45.84">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="42.8398" x2="42.8398" y1="14.1646" y2="45.8403">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M36.8,40.66l0.643-0.473c3.23-2.377,5.16-6.169,5.16-10.14,0-4.03-1.969-7.854-5.27-10.23l-0.652-0.472,3.785-5.18,0.645,0.466c4.941,3.569,7.893,9.329,7.893,15.41,0,6.022-2.906,11.75-7.771,15.32l-0.646,0.474-3.77-5.18z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43" x2="43" y1="15.28" y2="44.72">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M36.798,40.658l0.643-0.473c3.23-2.377,5.16-6.169,5.16-10.144c0-4.03-1.969-7.854-5.27-10.226 l-0.652-0.472l3.785-5.18l0.645,0.466c4.941,3.569,7.893,9.329,7.893,15.412c0,6.022-2.906,11.752-7.771,15.324l-0.646,0.474 L36.798,40.658z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43" x2="43" y1="15.2793" y2="44.7212">
+<stop offset="0" style="stop-color:#E2E5C2"/>
+<stop offset="0.7455" style="stop-color:#49794A"/>
+<stop offset="1" style="stop-color:#ACB991"/>
</linearGradient>
-<path d="M43.4,30.04c0,4.425-2.166,8.347-5.486,10.79l2.844,3.891c4.512-3.313,7.443-8.652,7.443-14.68,0-6.079-2.982-11.46-7.561-14.76l-2.84,3.887c3.39,2.43,5.61,6.39,5.61,10.87z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="43.15" x2="43.15" y1="16.41" y2="43.59">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M43.399,30.042c0,4.425-2.166,8.347-5.486,10.788l2.844,3.891c4.512-3.313,7.443-8.652,7.443-14.679 c0-6.079-2.982-11.459-7.561-14.763l-2.84,3.887C41.185,21.601,43.399,25.563,43.399,30.042z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="43.1543" x2="43.1543" y1="16.4082" y2="43.5854">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M39.02,40.98c3.26-2.692,5.184-6.725,5.184-10.94,0-4.278-1.965-8.344-5.293-11.04l1.898-2.598c4.145,3.291,6.596,8.328,6.596,13.63,0,5.25-2.41,10.25-6.482,13.54l-1.91-2.59z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.16" x2="17.16" y1="14.16" y2="45.84">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M39.017,40.984c3.26-2.692,5.184-6.725,5.184-10.942c0-4.278-1.965-8.344-5.293-11.036l1.898-2.598 c4.145,3.291,6.596,8.328,6.596,13.634c0,5.25-2.41,10.253-6.482,13.543L39.017,40.984z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.1611" x2="17.1611" y1="14.1646" y2="45.8403">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M18.77,45.37c-4.87-3.58-7.77-9.31-7.77-15.33,0-6.083,2.95-11.84,7.892-15.41l0.646-0.466,3.785,5.18-0.655,0.472c-3.298,2.372-5.267,6.195-5.267,10.23,0,3.975,1.929,7.767,5.16,10.14l0.642,0.473-3.785,5.182-0.63-0.46z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17" x2="17" y1="15.28" y2="44.72">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M18.77,45.366C13.904,41.794,11,36.064,11,30.042c0-6.083,2.95-11.843,7.892-15.412l0.646-0.466 l3.785,5.18l-0.655,0.472c-3.298,2.372-5.267,6.195-5.267,10.226c0,3.975,1.929,7.767,5.16,10.144l0.642,0.473l-3.785,5.182 L18.77,45.366z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.0005" x2="17.0005" y1="15.2793" y2="44.7212">
+<stop offset="0" style="stop-color:#E2E5C2"/>
+<stop offset="0.7455" style="stop-color:#49794A"/>
+<stop offset="1" style="stop-color:#ACB991"/>
</linearGradient>
-<path d="M19.24,44.72l2.842-3.891c-3.318-2.441-5.485-6.363-5.485-10.79,0-4.479,2.216-8.441,5.601-10.88l-2.84-3.887c-4.579,3.304-7.561,8.684-7.561,14.76,0,6.04,2.93,11.38,7.44,14.69z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="16.85" x2="16.85" y1="16.41" y2="43.59">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M19.243,44.721l2.842-3.891c-3.318-2.441-5.485-6.363-5.485-10.788c0-4.479,2.216-8.441,5.601-10.876 l-2.84-3.887c-4.579,3.304-7.561,8.684-7.561,14.763C11.8,36.068,14.731,41.408,19.243,44.721z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="16.8462" x2="16.8462" y1="16.4082" y2="43.5854">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M19.08,43.58c-4.072-3.29-6.481-8.293-6.481-13.54,0-5.306,2.451-10.34,6.595-13.63l1.898,2.598c-3.328,2.691-5.293,6.758-5.293,11.04,0,4.218,1.923,8.25,5.183,10.94l-1.91,2.59z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="50" x2="50" y1="6.896" y2="53.1">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M19.081,43.585c-4.072-3.29-6.481-8.293-6.481-13.543c0-5.306,2.451-10.343,6.595-13.634l1.898,2.598 c-3.328,2.691-5.293,6.758-5.293,11.036c0,4.218,1.923,8.25,5.183,10.942L19.081,43.585z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="49.9961" x2="49.9961" y1="6.896" y2="53.105">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M42.11,47.93l0.643-0.472c5.539-4.067,8.846-10.58,8.846-17.42,0-6.893-3.35-13.44-8.959-17.5l-0.65-0.47,3.781-5.176,0.645,0.468c7.254,5.261,11.58,13.74,11.58,22.68,0,8.881-4.285,17.33-11.46,22.59l-0.646,0.474-3.78-5.17z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="50.16" x2="50.16" y1="8.013" y2="51.98">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M42.112,47.93l0.643-0.472c5.539-4.067,8.846-10.577,8.846-17.417c0-6.893-3.35-13.435-8.959-17.499 l-0.65-0.47l3.781-5.176l0.645,0.468c7.254,5.261,11.584,13.737,11.584,22.677c0,8.881-4.285,17.326-11.463,22.59l-0.646,0.474 L42.112,47.93z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="50.1563" x2="50.1562" y1="8.0127" y2="51.9849">
+<stop offset="0" style="stop-color:#E2E5C2"/>
+<stop offset="0.7455" style="stop-color:#49794A"/>
+<stop offset="1" style="stop-color:#ACB991"/>
</linearGradient>
-<path d="M52.4,30.04c0,7.406-3.615,13.98-9.172,18.06l2.838,3.881c6.75-4.94,11.13-12.93,11.13-21.94,0-9.063-4.436-17.09-11.25-22.03l-2.836,3.883c5.62,4.08,9.29,10.69,9.29,18.15z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="50.31" x2="50.31" y1="9.138" y2="50.86">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M52.399,30.041c0,7.406-3.615,13.98-9.172,18.063l2.838,3.881C52.815,47.035,57.2,39.051,57.2,30.041 c0-9.063-4.436-17.086-11.252-22.028l-2.836,3.883C48.733,15.969,52.399,22.583,52.399,30.041z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="50.3115" x2="50.3115" y1="9.1377" y2="50.856">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M44.34,48.26c5.564-4.389,8.863-11.14,8.863-18.22,0-7.138-3.342-13.92-8.977-18.31l1.893-2.592c6.455,4.986,10.28,12.74,10.28,20.9,0,8.107-3.785,15.83-10.17,20.81l-1.88-2.59z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10" x2="10" y1="6.896" y2="53.1">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M44.337,48.264c5.564-4.389,8.863-11.143,8.863-18.223c0-7.138-3.342-13.922-8.977-18.312 l1.893-2.592c6.455,4.986,10.283,12.739,10.283,20.903c0,8.107-3.785,15.828-10.168,20.814L44.337,48.264z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.0039" x2="10.0039" y1="6.896" y2="53.105">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M13.46,52.63c-7.175-5.26-11.46-13.71-11.46-22.59,0-8.94,4.33-17.42,11.58-22.68l0.646-0.468,3.781,5.176-0.65,0.47c-5.61,4.07-8.96,10.61-8.96,17.5,0,6.84,3.307,13.35,8.845,17.42l0.643,0.472-3.781,5.175-0.64-0.47z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.844" x2="9.844" y1="8.013" y2="51.98">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M13.461,52.631C6.285,47.367,2,38.922,2,30.041c0-8.94,4.33-17.416,11.582-22.677l0.646-0.468 l3.781,5.176l-0.65,0.47C11.749,16.606,8.4,23.148,8.4,30.041c0,6.84,3.307,13.35,8.845,17.417l0.643,0.472l-3.781,5.175 L13.461,52.631z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.8442" x2="9.8442" y1="8.0127" y2="51.9849">
+<stop offset="0" style="stop-color:#E2E5C2"/>
+<stop offset="0.7455" style="stop-color:#49794A"/>
+<stop offset="1" style="stop-color:#ACB991"/>
</linearGradient>
-<path d="M13.94,51.98l2.836-3.881c-5.56-4.08-9.18-10.65-9.18-18.06,0-7.458,3.667-14.07,9.289-18.14l-2.837-3.883c-6.814,4.943-11.25,12.96-11.25,22.02,0,9.01,4.385,17,11.14,21.94z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="9.688" x2="9.688" y1="9.138" y2="50.86">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M13.935,51.984l2.836-3.881C11.215,44.021,7.6,37.447,7.6,30.041c0-7.458,3.667-14.072,9.289-18.145 l-2.837-3.883C7.236,12.955,2.8,20.979,2.8,30.041C2.8,39.051,7.185,47.035,13.935,51.984z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="9.688" x2="9.688" y1="9.1377" y2="50.856">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M13.77,50.86c-6.384-4.99-10.17-12.71-10.17-20.82,0-8.164,3.83-15.92,10.28-20.9l1.894,2.592c-5.63,4.39-8.97,11.17-8.97,18.31,0,7.08,3.299,13.83,8.863,18.22l-1.89,2.6z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30" x2="30" y1="21.26" y2="38.68">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M13.769,50.855C7.386,45.869,3.6,38.148,3.6,30.041c0-8.164,3.83-15.917,10.283-20.903l1.894,2.592 C10.141,16.119,6.8,22.903,6.8,30.041c0,7.08,3.299,13.834,8.863,18.223L13.769,50.855z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="29.9995" x2="29.9995" y1="21.2617" y2="38.6788">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M30,38.8c-4.852,0-8.799-3.947-8.799-8.799,0-4.854,3.948-8.801,8.799-8.801,4.854,0,8.801,3.947,8.801,8.801,0,4.85-3.95,8.8-8.8,8.8z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="30" x2="30" y1="22.06" y2="37.89">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M29.999,38.799c-4.852,0-8.799-3.947-8.799-8.799c0-4.854,3.948-8.801,8.799-8.801 c4.854,0,8.801,3.947,8.801,8.801C38.8,34.852,34.853,38.799,29.999,38.799L29.999,38.799z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="30" x2="30" y1="22.0557" y2="37.8893">
+<stop offset="0" style="stop-color:#E2E5C2"/>
+<stop offset="0.7455" style="stop-color:#49794A"/>
+<stop offset="1" style="stop-color:#ACB991"/>
</linearGradient>
-<path d="M30,38c-4.411,0-8-3.588-8-7.998,0-4.414,3.588-8.001,8-8.001s8.002,3.587,8.002,8.001c0,4.41-3.59,8-8,8z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="30" x2="30" y1="22.85" y2="37.1">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M29.999,37.998c-4.411,0-8-3.588-8-7.998c0-4.414,3.588-8.001,8-8.001 c4.412,0,8.002,3.587,8.002,8.001C38.001,34.41,34.411,37.998,29.999,37.998L29.999,37.998z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="29.9995" x2="29.9995" y1="22.8486" y2="37.1012">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M30,37.2c-3.969,0-7.2-3.23-7.2-7.199,0-3.971,3.23-7.203,7.2-7.203,3.971,0,7.201,3.232,7.201,7.203,0,3.97-3.23,7.2-7.2,7.2z" fill="url(#SVGID_15_)"/>
-<rect fill="none" height="60" width="60"/>
+<path d="M29.999,37.199c-3.969,0-7.2-3.23-7.2-7.199c0-3.971,3.23-7.203,7.2-7.203 c3.971,0,7.201,3.232,7.201,7.203C37.2,33.969,33.97,37.199,29.999,37.199L29.999,37.199z" fill="url(#SVGID_15_)"/>
+<rect fill="none" height="60" width="60.001"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,70 +1,72 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.39" y2="57.74">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.3896" y2="57.7417">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.168" y2="57.1">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.2364" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#6C6F70"/>
+<path d="M29.999,58C14.56,58,2,45.44,2,30C2,14.562,14.56,2,29.999,2C45.44,2,58,14.562,58,30 C58,45.44,45.44,58,29.999,58L29.999,58z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.1675" y2="57.1007">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.2364" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#6C6F70"/>
</linearGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_2_)" r="27.22"/>
-<path d="M30.95,30.95c9.117,0,17.92-0.57,26.26-1.616-0.36-14.72-12.4-26.55-27.21-26.55-14.73,0-26.71,11.69-27.2,26.3,8.89,1.21,18.34,1.87,28.15,1.87z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.036" x2="57.35" y1="16.58" y2="16.58">
-<stop offset="0" stop-color="#C2C5C4"/>
-<stop offset="0.2" stop-color="#F9FDFA"/>
-<stop offset="0.8" stop-color="#F9FDFA"/>
-<stop offset="1" stop-color="#CFD3D1"/>
+<circle cx="29.999" cy="30" fill="url(#SVGID_2_)" r="27.222"/>
+<path d="M30.948,30.95c9.117,0,17.921-0.57,26.256-1.616C56.849,14.609,44.81,2.778,29.999,2.778 C15.274,2.778,3.286,14.472,2.8,29.08C11.691,30.286,21.138,30.95,30.948,30.95z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.0361" x2="57.3516" y1="16.5835" y2="16.5835">
+<stop offset="0" style="stop-color:#C2C5C4"/>
+<stop offset="0.2" style="stop-color:#F9FDFA"/>
+<stop offset="0.8" style="stop-color:#F9FDFA"/>
+<stop offset="1" style="stop-color:#CFD3D1"/>
</linearGradient>
-<path d="M30,3.556c14.9,0,27,11.98,27.21,26.83,0.003-0.129,0.01-0.258,0.01-0.389,0-15.03-12.19-27.22-27.22-27.22-15.04-0.002-27.22,12.19-27.22,27.22,0,0.131,0.009,0.26,0.01,0.389,0.21-14.85,12.31-26.83,27.21-26.83z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="54.5" y2="5.982">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<path d="M29.999,3.556c14.902,0,27.004,11.979,27.212,26.833c0.003-0.129,0.01-0.258,0.01-0.389 c0-15.034-12.188-27.222-27.222-27.222C14.964,2.778,2.776,14.966,2.776,30c0,0.131,0.009,0.26,0.01,0.389 C2.996,15.536,15.097,3.556,29.999,3.556z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="54.4995" y2="5.9818">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M30,54.11c-13.3,0-24.11-10.81-24.11-24.11s10.81-24.11,24.11-24.11,24.11,10.81,24.11,24.11-10.82,24.11-24.11,24.11z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="52.66" y2="6.074">
-<stop offset="0" stop-color="#FAF9F9"/>
-<stop offset="0.4" stop-color="#FAF9F9"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M29.999,54.111C16.704,54.111,5.888,43.295,5.888,30S16.704,5.89,29.999,5.89 S54.109,16.705,54.109,30S43.294,54.111,29.999,54.111L29.999,54.111z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="52.6606" y2="6.0737">
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M30,53.33c-12.87,0-23.33-10.46-23.33-23.33,0-12.86,10.47-23.33,23.33-23.33s23.33,10.47,23.33,23.33c0,12.87-10.47,23.33-23.33,23.33z" fill="url(#SVGID_5_)"/>
-<path d="M30,31.67c7.696,0,15.04-0.647,21.78-1.814-0.084-11.94-9.816-21.63-21.78-21.63s-21.69,9.69-21.77,21.63c6.73,1.16,14.07,1.81,21.77,1.81z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
-<rect fill="#404041" height="4.667" width="1.556" x="29.22" y="8.795"/>
-<rect fill="#404041" height="4.667" width="1.556" x="29.22" y="47.68"/>
-<rect fill="#404041" height="1.556" width="4.667" x="47.11" y="29.8"/>
-<rect fill="#404041" height="1.556" width="4.666" x="8.223" y="29.8"/>
-<rect fill="#404041" height="3.764" transform="matrix(0.4993 0.8664 -0.8664 0.4993 41.5175 -30.1421)" width="1.256" x="46.21" y="18.97"/>
-<rect fill="#404041" height="3.765" transform="matrix(0.4997 0.8662 -0.8662 0.4997 41.4868 8.7601)" width="1.257" x="12.53" y="38.41"/>
-<rect fill="#404041" height="3.766" transform="matrix(0.8662 0.4997 -0.4997 0.8662 12.1761 -18.0101)" width="1.255" x="39.1" y="11.85"/>
-<rect fill="#404041" height="3.765" transform="matrix(0.8661 0.4999 -0.4999 0.8661 26.4169 -3.7873)" width="1.256" x="19.65" y="45.53"/>
-<rect fill="#404041" height="3.766" transform="matrix(0.8666 -0.499 0.499 0.8666 -4.1483 11.9502)" width="1.256" x="19.65" y="11.85"/>
-<rect fill="#404041" height="3.766" transform="matrix(0.8661 -0.4999 0.4999 0.8661 -18.3816 26.2067)" width="1.256" x="39.1" y="45.53"/>
-<rect fill="#404041" height="3.767" transform="matrix(0.4993 -0.8664 0.8664 0.4993 -11.4765 21.8413)" width="1.256" x="12.53" y="18.97"/>
-<rect fill="#404041" height="3.765" transform="matrix(0.4992 -0.8665 0.8665 0.4992 -11.4567 60.7682)" width="1.256" x="46.21" y="38.41"/>
-<path d="M31.9,31.1c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833-2.232-0.678-2.783,9.17c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298l-12.01,12,1.011,1.011,11.96-11.96c0.257,0.126,0.545,0.204,0.853,0.204,0.94,0,1.725-0.667,1.904-1.556h18.32v-0.777h-18.32z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 665.0903 147.1071)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-641.9" x2="-641.9" y1="61.43" y2="73.43">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M29.999,53.333C17.133,53.333,6.667,42.867,6.667,30c0-12.865,10.466-23.333,23.332-23.333 c12.865,0,23.334,10.468,23.334,23.333C53.333,42.867,42.864,53.333,29.999,53.333L29.999,53.333z" fill="url(#SVGID_5_)"/>
+<path d="M29.999,31.667c7.696,0,15.042-0.647,21.777-1.814c-0.084-11.94-9.816-21.63-21.777-21.63 c-11.959,0-21.694,9.69-21.773,21.63C14.959,31.02,22.304,31.667,29.999,31.667z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="8.795"/>
+<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="47.684"/>
+<rect fill="#404041" height="1.556" width="4.667" x="47.11" y="29.795"/>
+<rect fill="#404041" height="1.556" width="4.666" x="8.223" y="29.795"/>
+<rect fill="#404041" height="3.764" transform="matrix(0.4993 0.8664 -0.8664 0.4993 41.5175 -30.1421)" width="1.256" x="46.211" y="18.97"/>
+<rect fill="#404041" height="3.765" transform="matrix(0.4997 0.8662 -0.8662 0.4997 41.4868 8.7601)" width="1.257" x="12.531" y="38.413"/>
+<rect fill="#404041" height="3.766" transform="matrix(0.8662 0.4997 -0.4997 0.8662 12.1761 -18.0101)" width="1.255" x="39.095" y="11.851"/>
+<rect fill="#404041" height="3.765" transform="matrix(0.8661 0.4999 -0.4999 0.8661 26.4169 -3.7873)" width="1.256" x="19.649" y="45.529"/>
+<rect fill="#404041" height="3.766" transform="matrix(0.8666 -0.499 0.499 0.8666 -4.1483 11.9502)" width="1.256" x="19.65" y="11.851"/>
+<rect fill="#404041" height="3.766" transform="matrix(0.8661 -0.4999 0.4999 0.8661 -18.3816 26.2067)" width="1.256" x="39.095" y="45.529"/>
+<rect fill="#404041" height="3.767" transform="matrix(0.4993 -0.8664 0.8664 0.4993 -11.4765 21.8413)" width="1.256" x="12.532" y="18.967"/>
+<rect fill="#404041" height="3.765" transform="matrix(0.4992 -0.8665 0.8665 0.4992 -11.4567 60.7682)" width="1.256" x="46.211" y="38.412"/>
+<path d="M31.904,31.103c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833l-2.232-0.678l-2.783,9.17 c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298L16.18,44.181l1.011,1.011 l11.957-11.959c0.257,0.126,0.545,0.204,0.853,0.204c0.94,0,1.725-0.667,1.904-1.556h18.317v-0.777H31.904z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 665.0903 147.1071)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-641.8813" x2="-641.8813" y1="61.4336" y2="73.4297">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="34.06,20.2,31.83,19.52,28.44,30.69,30.68,31.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="16.76" x2="30.44" y1="43.51" y2="29.83">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<polygon fill="url(#SVGID_6_)" points="34.063,20.202 31.831,19.525 28.442,30.688 30.677,31.366 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="16.7598" x2="30.4403" y1="43.5093" y2="29.8287">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
+</linearGradient>
+<polygon fill="url(#SVGID_7_)" points="30.958,30.321 29.948,29.311 16.18,43.078 17.19,44.088 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.6104" x2="36.6104" y1="29.8896" y2="31.0254">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#763242"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="30.96,30.32,29.95,29.31,16.18,43.08,17.19,44.09"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.61" x2="36.61" y1="29.89" y2="31.03">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#763242"/>
+<path d="M50.222,30H31.904c-0.18-0.887-0.964-1.556-1.904-1.556c-0.942,0-1.726,0.669-1.905,1.556h-5.096 v0.778h5.096c0.18,0.889,0.963,1.556,1.905,1.556c0.94,0,1.725-0.667,1.904-1.556h18.317V30z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.999" x2="29.999" y1="29.1577" y2="31.5575">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="1" style="stop-color:#BC7A73"/>
</linearGradient>
-<path d="M50.22,30h-18.32c-0.18-0.887-0.964-1.556-1.904-1.556-0.942,0-1.726,0.669-1.905,1.556h-5.096v0.778h5.096c0.18,0.889,0.963,1.556,1.905,1.556,0.94,0,1.725-0.667,1.904-1.556h18.32v-0.78z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="29.16" y2="31.56">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="1" stop-color="#BC7A73"/>
-</linearGradient>
-<circle cx="30" cy="30.39" fill="url(#SVGID_9_)" r="1.167"/>
+<circle cx="30" cy="30.389" fill="url(#SVGID_9_)" r="1.167"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,111 +1,113 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.39" y2="57.74">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.3896" y2="57.7417">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.168" y2="57.1">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.2364" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#6C6F70"/>
+<path d="M29.999,58C14.56,58,2,45.44,2,30C2,14.562,14.56,2,29.999,2C45.44,2,58,14.562,58,30 C58,45.44,45.44,58,29.999,58L29.999,58z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.1675" y2="57.1007">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.2364" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#6C6F70"/>
</linearGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_2_)" r="27.22"/>
-<path d="M30.95,30.95c9.117,0,17.92-0.57,26.26-1.616-0.36-14.72-12.4-26.55-27.21-26.55-14.73,0-26.71,11.69-27.2,26.3,8.89,1.21,18.34,1.87,28.15,1.87z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.036" x2="57.35" y1="16.58" y2="16.58">
-<stop offset="0" stop-color="#C2C5C4"/>
-<stop offset="0.2" stop-color="#F9FDFA"/>
-<stop offset="0.8" stop-color="#F9FDFA"/>
-<stop offset="1" stop-color="#CFD3D1"/>
+<circle cx="29.999" cy="30" fill="url(#SVGID_2_)" r="27.222"/>
+<path d="M30.948,30.95c9.117,0,17.921-0.57,26.256-1.616C56.849,14.609,44.81,2.778,29.999,2.778 C15.274,2.778,3.286,14.472,2.8,29.08C11.691,30.286,21.138,30.95,30.948,30.95z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.0361" x2="57.3516" y1="16.5835" y2="16.5835">
+<stop offset="0" style="stop-color:#C2C5C4"/>
+<stop offset="0.2" style="stop-color:#F9FDFA"/>
+<stop offset="0.8" style="stop-color:#F9FDFA"/>
+<stop offset="1" style="stop-color:#CFD3D1"/>
</linearGradient>
-<path d="M30,3.556c14.9,0,27,11.98,27.21,26.83,0.003-0.129,0.01-0.258,0.01-0.389,0-15.03-12.19-27.22-27.22-27.22-15.04-0.002-27.22,12.19-27.22,27.22,0,0.131,0.009,0.26,0.01,0.389,0.21-14.85,12.31-26.83,27.21-26.83z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="54.5" y2="5.982">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<path d="M29.999,3.556c14.902,0,27.004,11.979,27.212,26.833c0.003-0.129,0.01-0.258,0.01-0.389 c0-15.034-12.188-27.222-27.222-27.222C14.964,2.778,2.776,14.966,2.776,30c0,0.131,0.009,0.26,0.01,0.389 C2.996,15.536,15.097,3.556,29.999,3.556z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="54.4995" y2="5.9818">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M30,54.11c-13.3,0-24.11-10.81-24.11-24.11s10.81-24.11,24.11-24.11,24.11,10.81,24.11,24.11-10.82,24.11-24.11,24.11z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="52.66" y2="6.074">
-<stop offset="0" stop-color="#FAF9F9"/>
-<stop offset="0.4" stop-color="#FAF9F9"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M29.999,54.111C16.704,54.111,5.888,43.295,5.888,30S16.704,5.89,29.999,5.89 S54.109,16.705,54.109,30S43.294,54.111,29.999,54.111L29.999,54.111z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="52.6606" y2="6.0737">
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M30,53.33c-12.87,0-23.33-10.46-23.33-23.33,0-12.86,10.47-23.33,23.33-23.33s23.33,10.47,23.33,23.33c0,12.87-10.47,23.33-23.33,23.33z" fill="url(#SVGID_5_)"/>
-<path d="M30,31.67c7.696,0,15.04-0.647,21.78-1.814-0.084-11.94-9.816-21.63-21.78-21.63s-21.69,9.69-21.77,21.63c6.73,1.16,14.07,1.81,21.77,1.81z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
-<rect fill="#404041" height="4.667" width="1.556" x="29.22" y="8.795"/>
-<rect fill="#404041" height="4.667" width="1.556" x="29.22" y="47.68"/>
-<rect fill="#404041" height="1.556" width="4.667" x="47.11" y="29.8"/>
-<rect fill="#404041" height="1.556" width="4.666" x="8.223" y="29.8"/>
-<rect fill="#404041" height="3.764" transform="matrix(0.4993 0.8664 -0.8664 0.4993 41.5175 -30.1421)" width="1.256" x="46.21" y="18.97"/>
-<rect fill="#404041" height="3.765" transform="matrix(0.4997 0.8662 -0.8662 0.4997 41.4868 8.7601)" width="1.257" x="12.53" y="38.41"/>
-<rect fill="#404041" height="3.766" transform="matrix(0.8662 0.4997 -0.4997 0.8662 12.1761 -18.0101)" width="1.255" x="39.1" y="11.85"/>
-<rect fill="#404041" height="3.765" transform="matrix(0.8661 0.4999 -0.4999 0.8661 26.4169 -3.7873)" width="1.256" x="19.65" y="45.53"/>
-<rect fill="#404041" height="3.766" transform="matrix(0.8666 -0.499 0.499 0.8666 -4.1483 11.9502)" width="1.256" x="19.65" y="11.85"/>
-<rect fill="#404041" height="3.766" transform="matrix(0.8661 -0.4999 0.4999 0.8661 -18.3816 26.2067)" width="1.256" x="39.1" y="45.53"/>
-<rect fill="#404041" height="3.767" transform="matrix(0.4993 -0.8664 0.8664 0.4993 -11.4765 21.8413)" width="1.256" x="12.53" y="18.97"/>
-<rect fill="#404041" height="3.765" transform="matrix(0.4992 -0.8665 0.8665 0.4992 -11.4567 60.7682)" width="1.256" x="46.21" y="38.41"/>
-<path d="M31.9,31.1c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833-2.232-0.678-2.783,9.17c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298l-12.01,12,1.011,1.011,11.96-11.96c0.257,0.126,0.545,0.204,0.853,0.204,0.94,0,1.725-0.667,1.904-1.556h18.32v-0.777h-18.32z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 665.0903 147.1071)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-641.9" x2="-641.9" y1="61.43" y2="73.43">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M29.999,53.333C17.133,53.333,6.667,42.867,6.667,30c0-12.865,10.466-23.333,23.332-23.333 c12.865,0,23.334,10.468,23.334,23.333C53.333,42.867,42.864,53.333,29.999,53.333L29.999,53.333z" fill="url(#SVGID_5_)"/>
+<path d="M29.999,31.667c7.696,0,15.042-0.647,21.777-1.814c-0.084-11.94-9.816-21.63-21.777-21.63 c-11.959,0-21.694,9.69-21.773,21.63C14.959,31.02,22.304,31.667,29.999,31.667z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="8.795"/>
+<rect fill="#404041" height="4.667" width="1.556" x="29.221" y="47.684"/>
+<rect fill="#404041" height="1.556" width="4.667" x="47.11" y="29.795"/>
+<rect fill="#404041" height="1.556" width="4.666" x="8.223" y="29.795"/>
+<rect fill="#404041" height="3.764" transform="matrix(0.4993 0.8664 -0.8664 0.4993 41.5175 -30.1421)" width="1.256" x="46.211" y="18.97"/>
+<rect fill="#404041" height="3.765" transform="matrix(0.4997 0.8662 -0.8662 0.4997 41.4868 8.7601)" width="1.257" x="12.531" y="38.413"/>
+<rect fill="#404041" height="3.766" transform="matrix(0.8662 0.4997 -0.4997 0.8662 12.1761 -18.0101)" width="1.255" x="39.095" y="11.851"/>
+<rect fill="#404041" height="3.765" transform="matrix(0.8661 0.4999 -0.4999 0.8661 26.4169 -3.7873)" width="1.256" x="19.649" y="45.529"/>
+<rect fill="#404041" height="3.766" transform="matrix(0.8666 -0.499 0.499 0.8666 -4.1483 11.9502)" width="1.256" x="19.65" y="11.851"/>
+<rect fill="#404041" height="3.766" transform="matrix(0.8661 -0.4999 0.4999 0.8661 -18.3816 26.2067)" width="1.256" x="39.095" y="45.529"/>
+<rect fill="#404041" height="3.767" transform="matrix(0.4993 -0.8664 0.8664 0.4993 -11.4765 21.8413)" width="1.256" x="12.532" y="18.967"/>
+<rect fill="#404041" height="3.765" transform="matrix(0.4992 -0.8665 0.8665 0.4992 -11.4567 60.7682)" width="1.256" x="46.211" y="38.412"/>
+<path d="M31.904,31.103c-0.075-0.374-0.265-0.705-0.521-0.966l2.68-8.833l-2.232-0.678l-2.783,9.17 c-0.484,0.274-0.84,0.745-0.953,1.307h-5.096v0.777h5.096c0.021,0.103,0.052,0.203,0.088,0.298L16.18,44.181l1.011,1.011 l11.957-11.959c0.257,0.126,0.545,0.204,0.853,0.204c0.94,0,1.725-0.667,1.904-1.556h18.317v-0.777H31.904z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 665.0903 147.1071)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-641.8813" x2="-641.8813" y1="61.4336" y2="73.4297">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="34.06,20.2,31.83,19.52,28.44,30.69,30.68,31.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="16.76" x2="30.44" y1="43.51" y2="29.83">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<polygon fill="url(#SVGID_6_)" points="34.063,20.202 31.831,19.525 28.442,30.688 30.677,31.366 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="16.7598" x2="30.4403" y1="43.5093" y2="29.8287">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="30.96,30.32,29.95,29.31,16.18,43.08,17.19,44.09"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.61" x2="36.61" y1="29.89" y2="31.03">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#763242"/>
+<polygon fill="url(#SVGID_7_)" points="30.958,30.321 29.948,29.311 16.18,43.078 17.19,44.088 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.6104" x2="36.6104" y1="29.8896" y2="31.0254">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#763242"/>
</linearGradient>
-<path d="M50.22,30h-18.32c-0.18-0.887-0.964-1.556-1.904-1.556-0.942,0-1.726,0.669-1.905,1.556h-5.096v0.778h5.096c0.18,0.889,0.963,1.556,1.905,1.556,0.94,0,1.725-0.667,1.904-1.556h18.32v-0.78z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="29.16" y2="31.56">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="1" stop-color="#BC7A73"/>
+<path d="M50.222,30H31.904c-0.18-0.887-0.964-1.556-1.904-1.556c-0.942,0-1.726,0.669-1.905,1.556h-5.096 v0.778h5.096c0.18,0.889,0.963,1.556,1.905,1.556c0.94,0,1.725-0.667,1.904-1.556h18.317V30z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.999" x2="29.999" y1="29.1577" y2="31.5575">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="1" style="stop-color:#BC7A73"/>
</linearGradient>
-<circle cx="30" cy="30.39" fill="url(#SVGID_9_)" r="1.167"/>
+<circle cx="30" cy="30.389" fill="url(#SVGID_9_)" r="1.167"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.41,14.41,30.41,0,0.414,0,0.414,14.41,0,14.82,0.414,15.24,0.414,30,30.41,30,30.41,15.24,30.83,14.82"/>
-<path d="M2.749,29.82v-12.25l-2.749-2.75,0.706-0.707c0.507-0.5,12.43-12.46,13.15-13.15,0.387-0.368,0.914-0.786,1.589-0.786,0.687,0,1.172,0.42,1.518,0.785,0.457,0.484,8.802,8.816,13.15,13.15l0.708,0.706-2.747,2.749v12.25h-25.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.42" x2="15.42" y1="28.67" y2="12.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.08,28.82,3.749,28.82,3.749,14.47,15.41,5.489,27.08,14.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.42" x2="15.42" y1="17.31" y2="28.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M15.41,6.668l10.74,8.264v12.96h-21.47v-12.96l10.73-8.264m0-1.179l-11.66,8.981v14.35h23.33v-14.35l-11.67-8.984z" fill="url(#SVGID_2__)"/>
-<polygon fill-opacity="0.2" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,8.99" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,6.655"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.42" x2="15.42" y1="17.99" y2="29.15">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="10.5" width="7.001" x="11.92" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.42" x2="15.42" y1="28.75" y2="18.36">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M17.98,19.26v8.633h-5.133v-8.633h5.13m0.94-0.94h-7.001v10.5h7.001v-10.5-0.002z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.41" x2="15.41" y1="0.0352" y2="17.73">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M15.41,5.489l11.67,11.67,2.333-2.333s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333,11.66-11.66z" fill="url(#SVGID_5__)"/>
-<radialGradient cx="15.3" cy="1.756" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.67">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
+<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M14.55,2.616c0.724-0.688,1.102-0.653,1.689-0.034,0.516,0.549,10.43,10.44,12.7,12.71l0.467-0.468s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l0.467,0.465c2.257-2.25,12.04-12.06,12.67-12.66z" fill="url(#SVGID_6__)"/>
-<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.92" y="18.32"/>
+<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,60 +1,62 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<path d="M30,57.39c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="#343333"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="174" x2="174" y1="218.3" y2="272.3">
-<stop offset="0" stop-color="#989897"/>
-<stop offset="0.24" stop-color="#676767"/>
-<stop offset="1" stop-color="#4E4E4E"/>
+<g>
+<rect fill="none" height="60" width="59.999"/>
+<path d="M29.998,57.387c-15.439,0-28.001-12.561-28.001-28c0-15.438,12.562-28.001,28.001-28.001 c15.44,0,27.999,12.561,27.999,28.001C57.997,44.826,45.438,57.387,29.998,57.387L29.998,57.387z" fill="#343333"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="174.0137" x2="174.0137" y1="218.3223" y2="272.2545">
+<stop offset="0" style="stop-color:#989897"/>
+<stop offset="0.24" style="stop-color:#676767"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</linearGradient>
-<circle cx="30" cy="29.38" fill="url(#SVGID_1_)" r="27.22"/>
-<path d="M30.95,30.34c9.117,0,17.92-0.568,26.26-1.615-0.36-14.72-12.4-26.56-27.21-26.56-14.72,0-26.71,11.7-27.2,26.3,8.89,1.21,18.34,1.88,28.15,1.88z" fill="#4E4E4E" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M30,2.941c14.9,0,27,11.98,27.21,26.83,0-0.129,0.01-0.258,0.01-0.388,0-15.04-12.19-27.22-27.22-27.22s-27.22,12.19-27.22,27.23c0,0.131,0.008,0.259,0.009,0.388,0.21-14.86,12.32-26.84,27.22-26.84z" fill="#B3B2B3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="174" x2="174" y1="269.7" y2="221.1">
-<stop offset="0" stop-color="#BEC0BF"/>
-<stop offset="1" stop-color="#494A4B"/>
+<circle cx="29.998" cy="29.385" fill="url(#SVGID_1_)" r="27.222"/>
+<path d="M30.948,30.335c9.117,0,17.92-0.568,26.256-1.615 C56.847,13.996,44.81,2.165,29.998,2.165c-14.724,0-26.712,11.695-27.2,26.301C11.689,29.67,21.137,30.335,30.948,30.335z" fill="#4E4E4E" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.998,2.941c14.903,0,27.005,11.98,27.212,26.833c0-0.129,0.01-0.258,0.01-0.388 c0-15.035-12.188-27.222-27.222-27.222S2.776,14.352,2.776,29.386c0,0.131,0.008,0.259,0.009,0.388 C2.995,14.92,15.095,2.941,29.998,2.941z" fill="#B3B2B3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="174.0137" x2="174.0137" y1="269.6514" y2="221.1329">
+<stop offset="0" style="stop-color:#BEC0BF"/>
+<stop offset="1" style="stop-color:#494A4B"/>
</linearGradient>
-<path d="M30,53.5c-13.3,0-24.11-10.82-24.11-24.11,0-13.3,10.82-24.11,24.11-24.11s24.11,10.82,24.11,24.11-10.82,24.11-24.11,24.11z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="174" cy="287.1" gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="84.78">
-<stop offset="0" stop-color="#343333"/>
-<stop offset="0.4" stop-color="#343333"/>
-<stop offset="1" stop-color="#4E4E4E"/>
+<path d="M29.998,53.496c-13.295,0-24.111-10.816-24.111-24.111c0-13.296,10.815-24.113,24.111-24.113 c13.294,0,24.114,10.817,24.114,24.113C54.112,42.68,43.292,53.496,29.998,53.496L29.998,53.496z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="174.0127" cy="287.1436" gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="84.7752">
+<stop offset="0" style="stop-color:#343333"/>
+<stop offset="0.4" style="stop-color:#343333"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</radialGradient>
-<path d="M30,52.72c-12.86,0-23.33-10.47-23.33-23.33s10.47-23.33,23.33-23.33c12.87,0,23.33,10.47,23.33,23.33s-10.47,23.33-23.33,23.33z" fill="url(#SVGID_3_)"/>
-<path d="M30,31.05c7.696,0,15.04-0.647,21.78-1.813-0.09-11.94-9.82-21.63-21.78-21.63s-21.69,9.689-21.78,21.63c6.74,1.16,14.08,1.81,21.78,1.81z" fill="#676767" fill-opacity="0.7" stroke-opacity="0.7"/>
-<rect fill="#F3F2F2" height="4.668" width="1.554" x="29.22" y="8.179"/>
-<rect fill="#F3F2F2" height="4.667" width="1.554" x="29.22" y="47.07"/>
-<rect fill="#F3F2F2" height="1.555" width="4.668" x="47.11" y="29.18"/>
-<rect fill="#F3F2F2" height="1.555" width="4.667" x="8.22" y="29.18"/>
-<rect fill="#F3F2F2" height="3.766" transform="matrix(-0.4992 -0.8665 0.8665 -0.4992 52.6823 70.936)" width="1.256" x="46.21" y="18.36"/>
-<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.4991 -0.8666 0.8666 -0.4991 -14.667 70.8857)" width="1.254" x="12.53" y="37.8"/>
-<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8657 -0.5006 0.5006 -0.8657 67.5346 44.3631)" width="1.254" x="39.09" y="11.24"/>
-<rect fill="#F3F2F2" height="3.764" transform="matrix(-0.8659 -0.5002 0.5002 -0.8659 14.4172 97.4599)" width="1.255" x="19.64" y="44.92"/>
-<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8662 0.4997 -0.4997 -0.8662 44.4025 14.3518)" width="1.254" x="19.65" y="11.24"/>
-<rect fill="#F3F2F2" height="3.763" transform="matrix(-0.8665 0.4992 -0.4992 -0.8665 97.4898 67.514)" width="1.258" x="39.09" y="44.91"/>
-<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5002 0.8659 -0.8659 -0.5002 37.2642 18.9665)" width="1.255" x="12.53" y="18.36"/>
-<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5008 0.8656 -0.8656 -0.5008 104.6477 19.0248)" width="1.256" x="46.21" y="37.81"/>
-<path d="M31.9,30.49c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833-2.234-0.677-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298l-12.01,11.99,1.008,1.01,11.96-11.96c0.257,0.127,0.543,0.203,0.851,0.203,0.941,0,1.725-0.667,1.906-1.558h18.32v-0.775l-18.33,0.01z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="177.1" x2="173.6" y1="234.7" y2="246.2">
-<stop offset="0" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#989897"/>
+<path d="M29.998,52.719c-12.864,0-23.332-10.466-23.332-23.333c0-12.865,10.468-23.333,23.332-23.333 c12.866,0,23.331,10.469,23.331,23.333C53.329,42.253,42.864,52.719,29.998,52.719L29.998,52.719z" fill="url(#SVGID_3_)"/>
+<path d="M29.998,31.052c7.696,0,15.042-0.647,21.776-1.813 C51.692,17.3,41.958,7.609,29.998,7.609c-11.958,0-21.694,9.689-21.775,21.629C14.958,30.405,22.302,31.052,29.998,31.052z" fill="#676767" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#F3F2F2" height="4.668" width="1.554" x="29.223" y="8.179"/>
+<rect fill="#F3F2F2" height="4.667" width="1.554" x="29.223" y="47.069"/>
+<rect fill="#F3F2F2" height="1.555" width="4.668" x="47.108" y="29.182"/>
+<rect fill="#F3F2F2" height="1.555" width="4.667" x="8.22" y="29.182"/>
+<rect fill="#F3F2F2" height="3.766" transform="matrix(-0.4992 -0.8665 0.8665 -0.4992 52.6823 70.936)" width="1.256" x="46.214" y="18.36"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.4991 -0.8666 0.8666 -0.4991 -14.667 70.8857)" width="1.254" x="12.528" y="37.799"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8657 -0.5006 0.5006 -0.8657 67.5346 44.3631)" width="1.254" x="39.092" y="11.238"/>
+<rect fill="#F3F2F2" height="3.764" transform="matrix(-0.8659 -0.5002 0.5002 -0.8659 14.4172 97.4599)" width="1.255" x="19.645" y="44.915"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8662 0.4997 -0.4997 -0.8662 44.4025 14.3518)" width="1.254" x="19.653" y="11.237"/>
+<rect fill="#F3F2F2" height="3.763" transform="matrix(-0.8665 0.4992 -0.4992 -0.8665 97.4898 67.514)" width="1.258" x="39.087" y="44.913"/>
+<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5002 0.8659 -0.8659 -0.5002 37.2642 18.9665)" width="1.255" x="12.531" y="18.355"/>
+<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5008 0.8656 -0.8656 -0.5008 104.6477 19.0248)" width="1.256" x="46.21" y="37.806"/>
+<path d="M31.903,30.489c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833 l-2.234-0.677l-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298 L16.178,43.564l1.008,1.01l11.961-11.957c0.257,0.127,0.543,0.203,0.851,0.203c0.941,0,1.725-0.667,1.906-1.558h18.318v-0.775 L31.903,30.489L31.903,30.489z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="177.0596" x2="173.5786" y1="234.6855" y2="246.1574">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="34.06,19.59,31.83,18.91,28.44,30.07,30.68,30.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="160.8" x2="174.4" y1="258.7" y2="245">
-<stop offset="0" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#989897"/>
+<polygon fill="url(#SVGID_4_)" points="34.062,19.587 31.829,18.911 28.442,30.074 30.675,30.75 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="160.7793" x2="174.448" y1="258.6592" y2="244.9778">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="30.956,29.708 29.947,28.696 16.179,42.464 17.188,43.474 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="180.625" x2="180.625" y1="245.041" y2="246.1719">
+<stop offset="0" style="stop-color:#AF635F"/>
+<stop offset="1" style="stop-color:#7E474F"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="30.96,29.71,29.95,28.7,16.18,42.46,17.19,43.47"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="180.6" x2="180.6" y1="245" y2="246.2">
-<stop offset="0" stop-color="#AF635F"/>
-<stop offset="1" stop-color="#7E474F"/>
+<path d="M50.222,29.386H31.903c-0.182-0.887-0.965-1.556-1.906-1.556c-0.942,0-1.725,0.668-1.905,1.556 h-5.096v0.777h5.096c0.181,0.888,0.963,1.556,1.905,1.556c0.941,0,1.725-0.668,1.906-1.556h18.318V29.386z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="174.0137" x2="174.0137" y1="244.3047" y2="246.7054">
+<stop offset="0" style="stop-color:#F1EBE3"/>
+<stop offset="1" style="stop-color:#BA7A73"/>
</linearGradient>
-<path d="M50.22,29.39h-18.32c-0.182-0.887-0.965-1.556-1.906-1.556-0.942,0-1.725,0.668-1.905,1.556h-5.096v0.777h5.096c0.181,0.888,0.963,1.556,1.905,1.556,0.941,0,1.725-0.668,1.906-1.556h18.32v-0.784z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="174" x2="174" y1="244.3" y2="246.7">
-<stop offset="0" stop-color="#F1EBE3"/>
-<stop offset="1" stop-color="#BA7A73"/>
-</linearGradient>
-<circle cx="30" cy="29.77" fill="url(#SVGID_7_)" r="1.166"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<circle cx="29.998" cy="29.774" fill="url(#SVGID_7_)" r="1.166"/>
+<rect fill="none" height="59.996" width="59.995"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_clock_night_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,101 +1,103 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<path d="M30,57.39c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="#343333"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="174" x2="174" y1="218.3" y2="272.3">
-<stop offset="0" stop-color="#989897"/>
-<stop offset="0.24" stop-color="#676767"/>
-<stop offset="1" stop-color="#4E4E4E"/>
+<g>
+<rect fill="none" height="60" width="59.999"/>
+<path d="M29.998,57.387c-15.439,0-28.001-12.561-28.001-28c0-15.438,12.562-28.001,28.001-28.001 c15.44,0,27.999,12.561,27.999,28.001C57.997,44.826,45.438,57.387,29.998,57.387L29.998,57.387z" fill="#343333"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="174.0137" x2="174.0137" y1="218.3223" y2="272.2545">
+<stop offset="0" style="stop-color:#989897"/>
+<stop offset="0.24" style="stop-color:#676767"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</linearGradient>
-<circle cx="30" cy="29.38" fill="url(#SVGID_1_)" r="27.22"/>
-<path d="M30.95,30.34c9.117,0,17.92-0.568,26.26-1.615-0.36-14.72-12.4-26.56-27.21-26.56-14.72,0-26.71,11.7-27.2,26.3,8.89,1.21,18.34,1.88,28.15,1.88z" fill="#4E4E4E" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M30,2.941c14.9,0,27,11.98,27.21,26.83,0-0.129,0.01-0.258,0.01-0.388,0-15.04-12.19-27.22-27.22-27.22s-27.22,12.19-27.22,27.23c0,0.131,0.008,0.259,0.009,0.388,0.21-14.86,12.32-26.84,27.22-26.84z" fill="#B3B2B3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="174" x2="174" y1="269.7" y2="221.1">
-<stop offset="0" stop-color="#BEC0BF"/>
-<stop offset="1" stop-color="#494A4B"/>
+<circle cx="29.998" cy="29.385" fill="url(#SVGID_1_)" r="27.222"/>
+<path d="M30.948,30.335c9.117,0,17.92-0.568,26.256-1.615 C56.847,13.996,44.81,2.165,29.998,2.165c-14.724,0-26.712,11.695-27.2,26.301C11.689,29.67,21.137,30.335,30.948,30.335z" fill="#4E4E4E" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.998,2.941c14.903,0,27.005,11.98,27.212,26.833c0-0.129,0.01-0.258,0.01-0.388 c0-15.035-12.188-27.222-27.222-27.222S2.776,14.352,2.776,29.386c0,0.131,0.008,0.259,0.009,0.388 C2.995,14.92,15.095,2.941,29.998,2.941z" fill="#B3B2B3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="174.0137" x2="174.0137" y1="269.6514" y2="221.1329">
+<stop offset="0" style="stop-color:#BEC0BF"/>
+<stop offset="1" style="stop-color:#494A4B"/>
</linearGradient>
-<path d="M30,53.5c-13.3,0-24.11-10.82-24.11-24.11,0-13.3,10.82-24.11,24.11-24.11s24.11,10.82,24.11,24.11-10.82,24.11-24.11,24.11z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="174" cy="287.1" gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="84.78">
-<stop offset="0" stop-color="#343333"/>
-<stop offset="0.4" stop-color="#343333"/>
-<stop offset="1" stop-color="#4E4E4E"/>
+<path d="M29.998,53.496c-13.295,0-24.111-10.816-24.111-24.111c0-13.296,10.815-24.113,24.111-24.113 c13.294,0,24.114,10.817,24.114,24.113C54.112,42.68,43.292,53.496,29.998,53.496L29.998,53.496z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="174.0127" cy="287.1436" gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="84.7752">
+<stop offset="0" style="stop-color:#343333"/>
+<stop offset="0.4" style="stop-color:#343333"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</radialGradient>
-<path d="M30,52.72c-12.86,0-23.33-10.47-23.33-23.33s10.47-23.33,23.33-23.33c12.87,0,23.33,10.47,23.33,23.33s-10.47,23.33-23.33,23.33z" fill="url(#SVGID_3_)"/>
-<path d="M30,31.05c7.696,0,15.04-0.647,21.78-1.813-0.09-11.94-9.82-21.63-21.78-21.63s-21.69,9.689-21.78,21.63c6.74,1.16,14.08,1.81,21.78,1.81z" fill="#676767" fill-opacity="0.7" stroke-opacity="0.7"/>
-<rect fill="#F3F2F2" height="4.668" width="1.554" x="29.22" y="8.179"/>
-<rect fill="#F3F2F2" height="4.667" width="1.554" x="29.22" y="47.07"/>
-<rect fill="#F3F2F2" height="1.555" width="4.668" x="47.11" y="29.18"/>
-<rect fill="#F3F2F2" height="1.555" width="4.667" x="8.22" y="29.18"/>
-<rect fill="#F3F2F2" height="3.766" transform="matrix(-0.4992 -0.8665 0.8665 -0.4992 52.6823 70.936)" width="1.256" x="46.21" y="18.36"/>
-<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.4991 -0.8666 0.8666 -0.4991 -14.667 70.8857)" width="1.254" x="12.53" y="37.8"/>
-<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8657 -0.5006 0.5006 -0.8657 67.5346 44.3631)" width="1.254" x="39.09" y="11.24"/>
-<rect fill="#F3F2F2" height="3.764" transform="matrix(-0.8659 -0.5002 0.5002 -0.8659 14.4172 97.4599)" width="1.255" x="19.64" y="44.92"/>
-<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8662 0.4997 -0.4997 -0.8662 44.4025 14.3518)" width="1.254" x="19.65" y="11.24"/>
-<rect fill="#F3F2F2" height="3.763" transform="matrix(-0.8665 0.4992 -0.4992 -0.8665 97.4898 67.514)" width="1.258" x="39.09" y="44.91"/>
-<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5002 0.8659 -0.8659 -0.5002 37.2642 18.9665)" width="1.255" x="12.53" y="18.36"/>
-<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5008 0.8656 -0.8656 -0.5008 104.6477 19.0248)" width="1.256" x="46.21" y="37.81"/>
-<path d="M31.9,30.49c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833-2.234-0.677-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298l-12.01,11.99,1.008,1.01,11.96-11.96c0.257,0.127,0.543,0.203,0.851,0.203,0.941,0,1.725-0.667,1.906-1.558h18.32v-0.775l-18.33,0.01z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="177.1" x2="173.6" y1="234.7" y2="246.2">
-<stop offset="0" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#989897"/>
+<path d="M29.998,52.719c-12.864,0-23.332-10.466-23.332-23.333c0-12.865,10.468-23.333,23.332-23.333 c12.866,0,23.331,10.469,23.331,23.333C53.329,42.253,42.864,52.719,29.998,52.719L29.998,52.719z" fill="url(#SVGID_3_)"/>
+<path d="M29.998,31.052c7.696,0,15.042-0.647,21.776-1.813 C51.692,17.3,41.958,7.609,29.998,7.609c-11.958,0-21.694,9.689-21.775,21.629C14.958,30.405,22.302,31.052,29.998,31.052z" fill="#676767" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#F3F2F2" height="4.668" width="1.554" x="29.223" y="8.179"/>
+<rect fill="#F3F2F2" height="4.667" width="1.554" x="29.223" y="47.069"/>
+<rect fill="#F3F2F2" height="1.555" width="4.668" x="47.108" y="29.182"/>
+<rect fill="#F3F2F2" height="1.555" width="4.667" x="8.22" y="29.182"/>
+<rect fill="#F3F2F2" height="3.766" transform="matrix(-0.4992 -0.8665 0.8665 -0.4992 52.6823 70.936)" width="1.256" x="46.214" y="18.36"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.4991 -0.8666 0.8666 -0.4991 -14.667 70.8857)" width="1.254" x="12.528" y="37.799"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8657 -0.5006 0.5006 -0.8657 67.5346 44.3631)" width="1.254" x="39.092" y="11.238"/>
+<rect fill="#F3F2F2" height="3.764" transform="matrix(-0.8659 -0.5002 0.5002 -0.8659 14.4172 97.4599)" width="1.255" x="19.645" y="44.915"/>
+<rect fill="#F3F2F2" height="3.767" transform="matrix(-0.8662 0.4997 -0.4997 -0.8662 44.4025 14.3518)" width="1.254" x="19.653" y="11.237"/>
+<rect fill="#F3F2F2" height="3.763" transform="matrix(-0.8665 0.4992 -0.4992 -0.8665 97.4898 67.514)" width="1.258" x="39.087" y="44.913"/>
+<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5002 0.8659 -0.8659 -0.5002 37.2642 18.9665)" width="1.255" x="12.531" y="18.355"/>
+<rect fill="#F3F2F2" height="3.765" transform="matrix(-0.5008 0.8656 -0.8656 -0.5008 104.6477 19.0248)" width="1.256" x="46.21" y="37.806"/>
+<path d="M31.903,30.489c-0.078-0.374-0.264-0.705-0.521-0.967l2.68-8.833 l-2.234-0.677l-2.781,9.17c-0.484,0.275-0.84,0.744-0.954,1.307h-5.095v0.779h5.096c0.023,0.102,0.052,0.201,0.088,0.298 L16.178,43.564l1.008,1.01l11.961-11.957c0.257,0.127,0.543,0.203,0.851,0.203c0.941,0,1.725-0.667,1.906-1.558h18.318v-0.775 L31.903,30.489L31.903,30.489z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="177.0596" x2="173.5786" y1="234.6855" y2="246.1574">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="34.06,19.59,31.83,18.91,28.44,30.07,30.68,30.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="160.8" x2="174.4" y1="258.7" y2="245">
-<stop offset="0" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#989897"/>
+<polygon fill="url(#SVGID_4_)" points="34.062,19.587 31.829,18.911 28.442,30.074 30.675,30.75 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="160.7793" x2="174.448" y1="258.6592" y2="244.9778">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#989897"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="30.96,29.71,29.95,28.7,16.18,42.46,17.19,43.47"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="180.6" x2="180.6" y1="245" y2="246.2">
-<stop offset="0" stop-color="#AF635F"/>
-<stop offset="1" stop-color="#7E474F"/>
+<polygon fill="url(#SVGID_5_)" points="30.956,29.708 29.947,28.696 16.179,42.464 17.188,43.474 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="180.625" x2="180.625" y1="245.041" y2="246.1719">
+<stop offset="0" style="stop-color:#AF635F"/>
+<stop offset="1" style="stop-color:#7E474F"/>
</linearGradient>
-<path d="M50.22,29.39h-18.32c-0.182-0.887-0.965-1.556-1.906-1.556-0.942,0-1.725,0.668-1.905,1.556h-5.096v0.777h5.096c0.181,0.888,0.963,1.556,1.905,1.556,0.941,0,1.725-0.668,1.906-1.556h18.32v-0.784z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="174" x2="174" y1="244.3" y2="246.7">
-<stop offset="0" stop-color="#F1EBE3"/>
-<stop offset="1" stop-color="#BA7A73"/>
+<path d="M50.222,29.386H31.903c-0.182-0.887-0.965-1.556-1.906-1.556c-0.942,0-1.725,0.668-1.905,1.556 h-5.096v0.777h5.096c0.181,0.888,0.963,1.556,1.905,1.556c0.941,0,1.725-0.668,1.906-1.556h18.318V29.386z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -144.0156 -215.7637)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="174.0137" x2="174.0137" y1="244.3047" y2="246.7054">
+<stop offset="0" style="stop-color:#F1EBE3"/>
+<stop offset="1" style="stop-color:#BA7A73"/>
</linearGradient>
-<circle cx="30" cy="29.77" fill="url(#SVGID_7_)" r="1.166"/>
-<rect fill="none" height="60" width="60"/>
+<circle cx="29.998" cy="29.774" fill="url(#SVGID_7_)" r="1.166"/>
+<rect fill="none" height="59.996" width="59.995"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.41,14.41,30.41,0,0.414,0,0.414,14.41,0,14.82,0.414,15.24,0.414,30,30.41,30,30.41,15.24,30.83,14.82"/>
-<path d="M2.749,29.82v-12.25l-2.749-2.75,0.706-0.707c0.507-0.5,12.43-12.46,13.15-13.15,0.387-0.368,0.914-0.786,1.589-0.786,0.687,0,1.172,0.42,1.518,0.785,0.457,0.484,8.802,8.816,13.15,13.15l0.708,0.706-2.747,2.749v12.25h-25.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.42" x2="15.42" y1="28.67" y2="12.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.08,28.82,3.749,28.82,3.749,14.47,15.41,5.489,27.08,14.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.42" x2="15.42" y1="17.31" y2="28.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M15.41,6.668l10.74,8.264v12.96h-21.47v-12.96l10.73-8.264m0-1.179l-11.66,8.981v14.35h23.33v-14.35l-11.67-8.984z" fill="url(#SVGID_2__)"/>
-<polygon fill-opacity="0.2" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,8.99" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,6.655"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.42" x2="15.42" y1="17.99" y2="29.15">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="10.5" width="7.001" x="11.92" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.42" x2="15.42" y1="28.75" y2="18.36">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M17.98,19.26v8.633h-5.133v-8.633h5.13m0.94-0.94h-7.001v10.5h7.001v-10.5-0.002z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.41" x2="15.41" y1="0.0352" y2="17.73">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M15.41,5.489l11.67,11.67,2.333-2.333s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333,11.66-11.66z" fill="url(#SVGID_5__)"/>
-<radialGradient cx="15.3" cy="1.756" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.67">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
+</linearGradient>
+<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
+<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M14.55,2.616c0.724-0.688,1.102-0.653,1.689-0.034,0.516,0.549,10.43,10.44,12.7,12.71l0.467-0.468s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l0.467,0.465c2.257-2.25,12.04-12.06,12.67-12.66z" fill="url(#SVGID_6__)"/>
-<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.92" y="18.32"/>
+<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_computer.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_computer.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,67 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.912" x2="50.09" y1="30" y2="30">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
-</linearGradient>
-<path d="M48.54,2h-37.08c-0.854,0-1.551,0.69-1.551,1.536v54.46h40.17v-54.46c0-0.846-0.7-1.536-1.55-1.536z" fill="url(#SVGID_1_)"/>
-<path d="M48.54,2c0.851,0,1.547,0.69,1.547,1.536v54.46h-40.18v-54.46c0-0.846,0.698-1.536,1.548-1.536h37.08m0.001,1.218h-37.08c-0.181,0-0.333,0.146-0.333,0.318v53.25h37.74v-53.24c0-0.172-0.15-0.318-0.33-0.318z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.09" y2="9.551">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9121" x2="50.0859" y1="30" y2="30">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="9.738" width="33.27" x="13.36" y="9.353"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.218" stroke-opacity="0.25" width="33.27" x="13.36" y="19.09"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="10.62" y2="17.83">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<path d="M48.539,2H11.463c-0.854,0-1.551,0.69-1.551,1.536V58h40.174V3.536C50.086,2.69,49.39,2,48.539,2z" fill="url(#SVGID_1_)"/>
+<path d="M48.539,2c0.851,0,1.547,0.69,1.547,1.536V58H9.912V3.536C9.912,2.69,10.609,2,11.463,2 H48.539 M48.539,3.218H11.463c-0.181,0-0.333,0.146-0.333,0.318v53.246h37.739V3.536C48.869,3.364,48.717,3.218,48.539,3.218 L48.539,3.218z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="19.0908" y2="9.5508">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="7.305" width="30.83" x="14.58" y="10.57"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="11.54" y2="16.66">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_2_)" height="9.738" width="33.269" x="13.365" y="9.353"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.218" stroke-opacity="0.25" width="33.269" x="13.365" y="19.091"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="10.6196" y2="17.8277">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="4.869" width="28.4" x="15.8" y="11.79"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.04" x2="20.04" y1="12.88" y2="15.44">
-<stop offset="0" stop-color="#5DA9B9"/>
-<stop offset="1" stop-color="#313C62"/>
+<rect fill="url(#SVGID_3_)" height="7.305" width="30.831" x="14.585" y="10.569"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="11.542" y2="16.6561">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="4.869" width="28.397" x="15.802" y="11.787"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.0391" x2="20.0391" y1="12.8813" y2="15.4384">
+<stop offset="0" style="stop-color:#5DA9B9"/>
+<stop offset="1" style="stop-color:#313C62"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="2.435" width="6.125" x="16.98" y="13"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.218" stroke-opacity="0.25" width="6.125" x="16.98" y="13"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.98" x2="42.98" y1="25.06" y2="32.6">
-<stop offset="0" stop-color="#5C5F62"/>
-<stop offset="1" stop-color="#C4C4C4"/>
+<rect fill="url(#SVGID_5_)" height="2.435" width="6.125" x="16.977" y="13.004"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.218" stroke-opacity="0.25" width="6.125" x="16.977" y="13.004"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.9824" x2="42.9824" y1="25.0635" y2="32.5999">
+<stop offset="0" style="stop-color:#5C5F62"/>
+<stop offset="1" style="stop-color:#C4C4C4"/>
</linearGradient>
-<path d="M42.98,32.48c-2.014,0-3.651-1.638-3.651-3.652s1.638-3.652,3.651-3.652c2.015,0,3.652,1.639,3.652,3.652,0,2.01-1.63,3.65-3.65,3.65z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="42.98" x2="42.98" y1="26.32" y2="31.34">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M42.981,32.482c-2.014,0-3.651-1.638-3.651-3.652c0-2.014,1.638-3.652,3.651-3.652 c2.015,0,3.652,1.639,3.652,3.652C46.634,30.845,44.996,32.482,42.981,32.482L42.981,32.482z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="42.9814" x2="42.9814" y1="26.3193" y2="31.3429">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<circle cx="42.98" cy="28.83" fill="url(#SVGID_7_)" r="2.435"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="53.29" y2="48.57">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<circle cx="42.981" cy="28.83" fill="url(#SVGID_7_)" r="2.435"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="53.2866" y2="48.5696">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="4.869" width="25.56" x="17.22" y="48.54"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="22.7" x2="22.7" y1="52.13" y2="49.77">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_8_)" height="4.869" width="25.565" x="17.217" y="48.544"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="22.6953" x2="22.6953" y1="52.1328" y2="49.7734">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
+</linearGradient>
+<rect fill="url(#SVGID_9_)" height="2.436" width="6.087" x="19.651" y="49.761"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="52.1328" y2="49.7734">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2.436" width="6.087" x="19.65" y="49.76"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="52.13" y2="49.77">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_10_)" height="2.436" width="6.087" x="26.956" y="49.761"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.3037" x2="37.3037" y1="52.2217" y2="49.7861">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="2.436" width="6.087" x="26.96" y="49.76"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.3" x2="37.3" y1="52.22" y2="49.79">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
-</linearGradient>
-<rect fill="url(#SVGID_11_)" height="2.436" width="6.088" x="34.26" y="49.76"/>
+<rect fill="url(#SVGID_11_)" height="2.436" width="6.088" x="34.26" y="49.761"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_corrupted.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_corrupted.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,55 +1,57 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.2" x2="291.3" y1="-352.2" y2="-361.1">
-<stop offset="0" stop-color="#553737"/>
-<stop offset="0.4909" stop-color="#553737"/>
-<stop offset="1" stop-color="#C39072"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.21" x2="291.3099" y1="-352.2012" y2="-361.051">
+<stop offset="0" style="stop-color:#553737"/>
+<stop offset="0.4909" style="stop-color:#553737"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="54.75,6.15,32.14,6.15,43.03,45,31.79,54.72,31.4,55.65,54.75,55.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="18.74" x2="18.74" y1="54.61" y2="3.232">
-<stop offset="0" stop-color="#553737"/>
-<stop offset="0.4909" stop-color="#553737"/>
-<stop offset="1" stop-color="#C39072"/>
+<polygon fill="url(#SVGID_1_)" points="54.751,6.15 32.141,6.15 43.029,45.005 31.788,54.724 31.402,55.649 54.751,55.649 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="18.7417" x2="18.7417" y1="54.6143" y2="3.2317">
+<stop offset="0" style="stop-color:#553737"/>
+<stop offset="0.4909" style="stop-color:#553737"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M32.23,43.2l-7.049-8.898,7.051-11.1v-1l-7.051-8.3,3.358-8.555v-1l-23.29,33.4c0,0.988,0.571,2.373,1.273,3.072l11.85,11.85c0.699,0.699,2.081,1.271,3.072,1.271h6.728l4.054-9.744v-0.996z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="294.7" x2="294.7" y1="-308.9" y2="-357.7">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#834849"/>
+<path d="M32.23,43.204l-7.049-8.898l7.051-11.1v-1l-7.051-8.3l3.358-8.555v-1L5.25,37.751 c0,0.988,0.571,2.373,1.273,3.072l11.854,11.854c0.699,0.699,2.081,1.271,3.072,1.271h6.728l4.054-9.744V43.204z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="294.7412" x2="294.7412" y1="-308.9053" y2="-357.6842">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#834849"/>
</linearGradient>
-<path d="M25.18,33.31l7.051-11.1-7.051-9.3,3.358-8.555h-23.29v32.4c0,0.988,0.571,2.373,1.273,3.072l11.85,11.85c0.699,0.699,2.081,1.271,3.072,1.271h6.728l4.054-9.744-7.04-9.9z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="317.8" x2="317.8" y1="-310.7" y2="-359.5">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#834849"/>
+<path d="M25.181,33.306l7.051-11.1l-7.051-9.3l3.358-8.555H5.25v32.4c0,0.988,0.571,2.373,1.273,3.072 l11.854,11.854c0.699,0.699,2.081,1.271,3.072,1.271h6.728l4.054-9.744L25.181,33.306z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="317.7656" x2="317.7656" y1="-310.7061" y2="-359.4865">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#834849"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="54.75,6.15,32.14,6.15,28.78,14.71,35.83,24.01,28.78,35.1,35.83,45,31.78,54.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="292.9" x2="292.9" y1="-309.4" y2="-357.8">
-<stop offset="0" stop-color="#D4C0AF"/>
-<stop offset="1" stop-color="#926C63"/>
+<polygon fill="url(#SVGID_4_)" points="54.751,6.15 32.141,6.15 28.781,14.706 35.831,24.007 28.781,35.105 35.831,45.005 31.777,54.751 54.751,54.751 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="292.9004" x2="292.9004" y1="-309.3506" y2="-357.7997">
+<stop offset="0" style="stop-color:#D4C0AF"/>
+<stop offset="1" style="stop-color:#926C63"/>
</linearGradient>
-<path d="M21.45,52.05c-0.747,0-1.91-0.479-2.437-1.008l-11.85-11.85c-0.529-0.53-1.009-1.69-1.009-2.44v-31.5h22.04l0.354-0.9h-23.29v32.4c0,0.988,0.571,2.373,1.273,3.072l11.85,11.85c0.699,0.699,2.081,1.271,3.072,1.271h6.728l0.375-0.899-7.09,0.01z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="319.3" x2="319.3" y1="-311" y2="-359.4">
-<stop offset="0" stop-color="#D4C0AF"/>
-<stop offset="1" stop-color="#926C63"/>
+<path d="M21.45,52.05c-0.747,0-1.91-0.479-2.437-1.008L7.159,39.187C6.63,38.659,6.15,37.497,6.15,36.751 V5.25h22.036l0.354-0.9H5.25v32.4c0,0.988,0.571,2.373,1.273,3.072l11.854,11.854c0.699,0.699,2.081,1.271,3.072,1.271h6.728 l0.375-0.899L21.45,52.05L21.45,52.05z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="319.2637" x2="319.2637" y1="-311.0068" y2="-359.3975">
+<stop offset="0" style="stop-color:#D4C0AF"/>
+<stop offset="1" style="stop-color:#926C63"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="54.75,6.15,32.14,6.15,31.79,7.051,53.85,7.051,53.85,53.85,32.15,53.85,31.78,54.75"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="18.92" x2="12.62" y1="39.77" y2="46.06">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#FFFFFF"/>
-<stop offset="0.5576" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<polygon fill="url(#SVGID_6_)" points="54.751,6.15 32.141,6.15 31.786,7.051 53.852,7.051 53.852,53.851 32.152,53.851 31.777,54.751 54.751,54.751 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="18.916" x2="12.6232" y1="39.7666" y2="46.0594">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M6.909,40.21c-0.373-0.414-1.068-0.83-1.547-2.609,0,0,0.788,3.648,11.59,0.05,0,15.3,4.5,15.3,4.5,15.3-0.992,0-2.373-0.572-3.072-1.271l-11.47-11.47z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="308.8" x2="308.8" y1="-310.7" y2="-359.5">
-<stop offset="0" stop-color="#D4C0AF"/>
-<stop offset="1" stop-color="#926C63"/>
+<path d="M6.909,40.21c-0.373-0.414-1.068-0.83-1.547-2.609c0,0,0.788,3.648,11.588,0.05 c0,15.3,4.5,15.3,4.5,15.3c-0.992,0-2.373-0.572-3.072-1.271L6.909,40.21z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="308.7559" x2="308.7559" y1="-310.7061" y2="-359.4865">
+<stop offset="0" style="stop-color:#D4C0AF"/>
+<stop offset="1" style="stop-color:#926C63"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="29.68,35.1,36.73,24.01,29.68,14.71,33.04,6.15,32.14,6.15,28.78,14.71,35.83,24.01,28.78,35.1,35.83,45,31.78,54.75,32.68,54.75,36.73,45"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="304.3" x2="304.3" y1="-308.9" y2="-357.7">
-<stop offset="0" stop-color="#D4C0AF"/>
-<stop offset="1" stop-color="#926C63"/>
+<polygon fill="url(#SVGID_8_)" points="29.682,35.105 36.73,24.007 29.682,14.706 33.038,6.15 32.141,6.15 28.781,14.706 35.831,24.007 28.781,35.105 35.831,45.005 31.777,54.751 32.68,54.751 36.73,45.005 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="304.2559" x2="304.2559" y1="-308.9053" y2="-357.6842">
+<stop offset="0" style="stop-color:#D4C0AF"/>
+<stop offset="1" style="stop-color:#926C63"/>
</linearGradient>
-<polygon fill="url(#SVGID_9_)" points="32.23,22.21,25.18,12.91,28.54,4.351,27.64,4.351,24.28,12.91,31.33,22.21,24.28,33.31,31.33,43.21,27.28,52.95,28.18,52.95,32.23,43.21,25.18,33.31"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_9_)" points="32.23,22.206 25.181,12.907 28.539,4.351 27.639,4.351 24.281,12.907 31.331,22.206 24.281,33.306 31.331,43.206 27.277,52.95 28.178,52.95 32.23,43.206 25.181,33.306 "/>
+<rect fill="none" height="60" width="60.001"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_custom.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_custom.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="24.88" x2="24.88" y1="7.58" y2="43.1">
<stop offset="0" stop-color="#F5EFE8"/>
@@ -34,4 +35,5 @@
<stop offset="1" stop-color="#7B4E54"/>
</linearGradient>
<path d="M42.73,31.54l3.465,7.188,0.109,0.227,0.229,0.11,7.188,3.466-7.2,3.46-0.229,0.11-0.109,0.227-3.465,7.187-3.465-7.187-0.109-0.227-0.22-0.11-7.188-3.465,7.188-3.466,0.229-0.11,0.109-0.227,3.46-7.19m0-1.66l-4.117,8.54-8.539,4.116,8.539,4.115,4.117,8.541,4.115-8.541,8.539-4.115-8.539-4.116-4.11-8.54z" fill="url(#SVGID_6)"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_data_import.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_data_import.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="18.98" x2="18.98" y1="7.81" y2="45.46">
<stop offset="0" stop-color="#D3D7D5"/>
@@ -195,4 +196,5 @@
<polygon fill="url(#SVGID_33)" points="25.51,39.07,34,30.89,25.5,22.64,25.5,27.09,17.34,27.09,17.34,34.71,25.5,34.71"/>
<polygon fill="#FFFFFF" points="34,30.89,25.5,22.64,25.5,23.25,33.68,31.2"/>
<polygon fill="#FFFFFF" points="17.34,27.7,25.5,27.7,25.5,27.09,17.34,27.09,17.34,34.71,17.34,34.71"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_date_time.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,169 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<rect fill="none" height="60" width="60" x="0"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="301.0195" x2="301.0195" y1="-240.6152" y2="-287.0708">
+<stop offset="0" style="stop-color:#EFF2F0"/>
+<stop offset="0.2" style="stop-color:#EFF2F0"/>
+<stop offset="0.8606" style="stop-color:#828586"/>
+<stop offset="1" style="stop-color:#B3B8B7"/>
+</linearGradient>
+<path d="M55.501,8.382H4.5C3.673,8.382,3,9.054,3,9.883v43.162c0,0.826,0.673,1.498,1.5,1.498h51.001 c0.826,0,1.5-0.672,1.5-1.498V9.883C57.001,9.054,56.327,8.382,55.501,8.382L55.501,8.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="301.0195" x2="301.0195" y1="-241.6206" y2="-285.9926">
+<stop offset="0" style="stop-color:#E0E3E1"/>
+<stop offset="0.2364" style="stop-color:#CBCFCD"/>
+<stop offset="0.9636" style="stop-color:#8D9292"/>
+<stop offset="1" style="stop-color:#8D9292"/>
+</linearGradient>
+<path d="M4.5,53.785c-0.409,0-0.742-0.334-0.742-0.74V9.883c0-0.411,0.333-0.743,0.742-0.743h51.001 c0.41,0,0.742,0.333,0.742,0.743v43.162c0,0.406-0.332,0.74-0.742,0.74H4.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="300.9824" x2="300.9824" y1="-243.6255" y2="-284.2258">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.4" height="41.061" stroke-opacity="0.4" width="48.965" x="5.48" y="10.892"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="291.541" x2="282.9478" y1="-278.6968" y2="-287.29">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="0.2485" style="stop-color:#737373"/>
+<stop offset="0.703" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="27.873" width="46.164" x="6.905" y="22.815"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="301.0195" x2="301.0195" y1="-255.1953" y2="-283.0328">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
+</linearGradient>
+<path d="M53.081,50.625c0,0-30.833,0-32.895,0c-1.003,0-6.479-6.617-6.479-6.617s-6.788-5.709-6.788-6.063 c0-0.688,0-15.191,0-15.191h46.162V50.625z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="293.7813" x2="293.7813" y1="-278.7661" y2="-259.8767">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<path d="M28.694,46.221H16.827v-2.05h4.31V30.482l-4.31,0.805v-2.049l5.934-1.958h1.624v16.891h4.31 L28.694,46.221L28.694,46.221z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="308.2676" x2="308.2676" y1="-278.7661" y2="-259.8762">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
+</linearGradient>
+<path d="M43.173,46.221H31.32v-1.486c0-1.266,0.285-2.49,0.857-3.674c0.57-1.185,2.061-2.677,4.469-4.478 c1.396-1.043,2.289-1.858,2.681-2.451c0.389-0.592,0.584-1.182,0.584-1.769c0-0.94-0.339-1.684-1.011-2.224 c-0.674-0.541-1.545-0.811-2.616-0.811c-0.902,0-2.455,0.207-4.66,0.621V27.75c1.883-0.395,3.53-0.592,4.946-0.592 c2.074,0,3.693,0.458,4.857,1.375c1.162,0.916,1.744,2.162,1.744,3.74c0,0.688-0.141,1.397-0.424,2.133 c-0.283,0.732-0.727,1.404-1.328,2.01c-0.602,0.607-1.471,1.342-2.604,2.201c-1.285,0.961-2.17,1.707-2.656,2.238 c-0.484,0.531-0.854,1.088-1.107,1.67c-0.252,0.582-0.389,1.141-0.41,1.678h8.529L43.173,46.221L43.173,46.221z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="301.0195" x2="301.0195" y1="-244.7197" y2="-255.0341">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<rect fill="url(#SVGID_8_)" height="10.453" width="46.162" x="6.919" y="12.301"/>
+<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="41.637" y="8.382"/>
+<rect fill="#222021" fill-opacity="0.4" height="7.614" stroke-opacity="0.4" width="6.012" x="12.63" y="8.382"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="312.6953" x2="318.8543" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
+</linearGradient>
+<ellipse cx="44.676" cy="17.082" fill="url(#SVGID_9_)" rx="3.051" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="283.6484" x2="289.8074" y1="-249.5625" y2="-249.5625">
+<stop offset="0" style="stop-color:#C39179"/>
+<stop offset="0.497" style="stop-color:#E2CEBB"/>
+<stop offset="1" style="stop-color:#C39179"/>
+</linearGradient>
+<ellipse cx="15.629" cy="17.082" fill="url(#SVGID_10_)" rx="3.049" ry="2.87"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="315.6953" x2="315.6953" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
+</linearGradient>
+<path d="M47.727,16.346c0,1.686-1.367,3.05-3.049,3.05c-1.685,0-3.052-1.364-3.052-3.05 c0-1.681,1.367-3.048,3.052-3.048C46.357,13.297,47.727,14.665,47.727,16.346z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="313.5303" x2="317.8512" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
+</linearGradient>
+<path d="M44.678,5.458c-1.201,0-2.179,0.977-2.179,2.178v8.494c0,1.202,0.978,2.177,2.179,2.177 c1.198,0,2.178-0.975,2.178-2.177V7.636C46.854,6.435,45.876,5.458,44.678,5.458z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.6484" x2="286.6484" y1="-246.5366" y2="-251.6692">
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
+</linearGradient>
+<path d="M18.678,16.346c0,1.686-1.366,3.05-3.05,3.05s-3.048-1.364-3.048-3.05 c0-1.681,1.365-3.048,3.048-3.048C17.312,13.297,18.678,14.665,18.678,16.346z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -271.0195 -232.4805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="284.4844" x2="288.8053" y1="-244.3633" y2="-244.3633">
+<stop offset="0" style="stop-color:#B5B5B5"/>
+<stop offset="0.1152" style="stop-color:#FEFDFD"/>
+<stop offset="0.6788" style="stop-color:#595959"/>
+<stop offset="0.9455" style="stop-color:#D4D3D3"/>
+<stop offset="1" style="stop-color:#D4D3D3"/>
+</linearGradient>
+<path d="M15.628,5.458c-1.202,0-2.175,0.977-2.175,2.178v8.494c0,1.202,0.973,2.177,2.175,2.177 s2.18-0.975,2.18-2.177V7.636C17.808,6.435,16.83,5.458,15.628,5.458z" fill="url(#SVGID_14_)"/>
+<polygon fill="#55313A" points="53.081,23.051 6.919,23.051 6.919,22.455 53.081,22.455 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -528.0195 -588.4805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="546.5391" x2="540.9523" y1="627.8145" y2="633.4014">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
+</linearGradient>
+<path d="M8.216,39.958c-0.314-0.347-0.896-0.692-1.297-2.185c0,0,0.66,3.056,9.701,0.041 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.063L8.216,39.958z" fill="url(#SVGID_15_)"/>
+<path d="M6.932,37.82c-0.004-0.016-0.009-0.029-0.013-0.045C6.919,37.775,6.923,37.792,6.932,37.82z" fill="#FFFFFF"/>
+<path d="M15.776,38.941c0,6.371,1.427,9.572,2.861,11.182c0.529,0.277,1.13,0.467,1.644,0.49 c-0.609-0.115-3.662-1.266-3.662-12.797c-8.417,2.805-9.568,0.354-9.688,0.004c0.13,0.469,0.277,0.816,0.429,1.092 C8.604,39.878,11.029,40.523,15.776,38.941z" fill="#FFFFFF" fill-opacity="0.75"/>
+</g>
+<g transform="matrix(1 0 0 1 30 30)">
+<rect fill="none" height="30" width="30"/>
+<path d="M14.999,30C6.729,30,0,23.271,0,15S6.729,0,14.999,0C23.271,0,30,6.729,30,15S23.271,30,14.999,30L14.999,30 z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1.1948" y2="28.8709">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
+</linearGradient>
+<path d="M14.999,29C7.281,29,1,22.72,1,15S7.281,1,14.999,1C22.72,1,29,7.28,29,15S22.72,29,14.999,29 L14.999,29z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.5835" y2="28.5506">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.2364" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#6C6F70"/>
+</linearGradient>
+<circle cx="15" cy="15" fill="url(#SVGID_2__)" r="13.611"/>
+<path d="M15.474,15.476c4.559,0,8.961-0.286,13.127-0.81C28.425,7.305,22.406,1.389,14.999,1.389 c-7.36,0-13.357,5.847-13.6,13.151C5.846,15.143,10.568,15.476,15.474,15.476z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="1.5186" x2="28.6768" y1="8.2915" y2="8.2915">
+<stop offset="0" style="stop-color:#C2C5C4"/>
+<stop offset="0.2" style="stop-color:#F9FDFA"/>
+<stop offset="0.8" style="stop-color:#F9FDFA"/>
+<stop offset="1" style="stop-color:#CFD3D1"/>
+</linearGradient>
+<path d="M14.999,1.778c7.453,0,13.503,5.99,13.605,13.416c0.002-0.063,0.007-0.129,0.007-0.194 c0-7.517-6.095-13.611-13.612-13.611C7.482,1.389,1.389,7.483,1.389,15c0,0.065,0.003,0.131,0.005,0.194 C1.498,7.769,7.548,1.778,14.999,1.778z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="27.249" y2="2.9914">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
+</linearGradient>
+<path d="M14.999,27.055C8.352,27.055,2.944,21.648,2.944,15S8.352,2.945,14.999,2.945 c6.648,0,12.056,5.406,12.056,12.055S21.647,27.055,14.999,27.055L14.999,27.055z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.001" x2="15.001" y1="26.3296" y2="3.0368">
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#818283"/>
+</linearGradient>
+<path d="M14.999,26.666C8.566,26.666,3.333,21.432,3.333,15S8.566,3.334,14.999,3.334S26.668,8.568,26.668,15 S21.432,26.666,14.999,26.666L14.999,26.666z" fill="url(#SVGID_5__)"/>
+<path d="M14.999,15.832c3.849,0,7.521-0.322,10.89-0.905C25.848,8.956,20.98,4.111,14.999,4.111 c-5.979,0-10.846,4.845-10.886,10.815C7.479,15.51,11.15,15.832,14.999,15.832z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#404041" height="2.335" width="0.777" x="14.611" y="4.396"/>
+<rect fill="#404041" height="2.333" width="0.777" x="14.611" y="23.842"/>
+<rect fill="#404041" height="0.779" width="2.333" x="23.556" y="14.896"/>
+<rect fill="#404041" height="0.779" width="2.332" x="4.111" y="14.896"/>
+<rect fill="#404041" height="1.88" transform="matrix(0.4993 0.8664 -0.8664 0.4993 20.7592 -15.0708)" width="0.628" x="23.106" y="9.486"/>
+<rect fill="#404041" height="1.88" transform="matrix(0.4968 0.8679 -0.8679 0.4968 20.7962 4.4286)" width="0.629" x="6.265" y="19.208"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.8671 0.4981 -0.4981 0.8671 6.0604 -8.9813)" width="0.627" x="19.548" y="5.926"/>
+<rect fill="#404041" height="1.884" transform="matrix(0.8674 0.4977 -0.4977 0.8674 13.1416 -1.9014)" width="0.626" x="9.825" y="22.763"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.8675 -0.4975 0.4975 0.8675 -2.0724 5.954)" width="0.628" x="9.825" y="5.926"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.8678 -0.497 0.497 0.8678 -9.1555 13.0056)" width="0.627" x="19.548" y="22.766"/>
+<rect fill="#404041" height="1.884" transform="matrix(0.497 -0.8678 0.8678 0.497 -5.7368 10.9541)" width="0.627" x="6.267" y="9.483"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.4991 -0.8665 0.8665 0.4991 -5.7273 30.3844)" width="0.63" x="23.105" y="19.206"/>
+<path d="M15.953,15.552c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418l-1.117-0.34l-1.392,4.587 c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148L8.091,22.09l0.505,0.506l5.978-5.979 c0.129,0.063,0.273,0.102,0.427,0.102c0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389H15.953z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 409.6663 189.0642)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="-428.2788" x2="-428.2788" y1="-57.4336" y2="-51.435">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6__)" points="17.032,10.101 15.915,9.763 14.22,15.344 15.339,15.684 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="8.3799" x2="15.2201" y1="21.7544" y2="14.9142">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
+</linearGradient>
+<polygon fill="url(#SVGID_7__)" points="15.479,15.16 14.974,14.655 8.091,21.539 8.596,22.044 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="18.3057" x2="18.3057" y1="14.9443" y2="15.5124">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#763242"/>
+</linearGradient>
+<path d="M25.111,15h-9.158c-0.091-0.442-0.482-0.778-0.953-0.778S14.138,14.558,14.049,15h-2.55v0.389h2.55 c0.089,0.443,0.48,0.778,0.951,0.778s0.862-0.335,0.953-0.778h9.158V15z" fill="url(#SVGID_8__)"/>
+<circle cx="15" cy="15.194" fill="#DABEB1" r="0.583"/>
+<rect fill="none" height="30" width="30"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_default_server.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_default_server.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,172 +1,176 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.39" x2="29.39" y1="52.66" y2="57.61">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.3877" x2="29.3877" y1="52.6611" y2="57.6064">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M52.04,56.94c0,0.339-0.274,0.612-0.612,0.612h-44.08c-0.338,0-0.612-0.273-0.612-0.612v-3.673c0-0.339,0.274-0.612,0.612-0.612h44.08c0.338,0,0.612,0.273,0.612,0.612v3.668z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.41" x2="49.59" y1="22.65" y2="22.65">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<path d="M52.041,56.938c0,0.339-0.274,0.612-0.612,0.612H7.347c-0.338,0-0.612-0.273-0.612-0.612v-3.673 c0-0.339,0.274-0.612,0.612-0.612h44.082c0.338,0,0.612,0.273,0.612,0.612V56.938z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.4082" x2="49.5918" y1="22.6533" y2="22.6533">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M48.11,2.449h-36.22c-0.815,0-1.48,0.668-1.48,1.485v38.92h39.18v-38.92c0-0.818-0.66-1.486-1.48-1.486z" fill="url(#SVGID_2_)"/>
-<path d="M48.11,2.449c0.813,0,1.479,0.668,1.479,1.485v38.92h-39.18v-38.92c0-0.817,0.666-1.485,1.48-1.485h36.22m-0.003,1.176h-36.22c-0.173,0-0.318,0.142-0.318,0.309v37.75h36.86v-37.74c0-0.167-0.15-0.309-0.32-0.309z" fill="#FFFFFF"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.59" y2="6.374">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<path d="M48.113,2.449H11.889c-0.815,0-1.48,0.668-1.48,1.485v38.923h39.184V3.935 C49.592,3.117,48.926,2.449,48.113,2.449z" fill="url(#SVGID_2_)"/>
+<path d="M48.113,2.449c0.813,0,1.479,0.668,1.479,1.485v38.923H10.408V3.935c0-0.817,0.666-1.485,1.48-1.485H48.113 M48.113,3.626H11.889c-0.173,0-0.318,0.142-0.318,0.309v37.747H48.43V3.935C48.43,3.768,48.285,3.626,48.113,3.626L48.113,3.626z" fill="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.5947" y2="6.3742">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.7" y="6.183"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.7" y="15.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="7.408" y2="14.37">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.705" y="6.183"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.705" y="15.595"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0015" x2="30.0015" y1="7.4082" y2="14.3725">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="7.058" width="30.26" x="14.87" y="7.359"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="8.297" y2="13.24">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
-</linearGradient>
-<rect fill="url(#SVGID_5_)" height="4.706" width="27.94" x="16.03" y="8.534"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.08" x2="20.08" y1="9.593" y2="12.06">
-<stop offset="0" stop-color="#5DA9B9"/>
-<stop offset="1" stop-color="#313C62"/>
+<rect fill="url(#SVGID_4_)" height="7.058" width="30.263" x="14.87" y="7.359"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="8.2974" y2="13.2402">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.15" y="9.711"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.15" y="9.711"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28" y2="18.78">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<rect fill="url(#SVGID_5_)" height="4.706" width="27.939" x="16.031" y="8.534"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.0767" x2="20.0767" y1="9.5928" y2="12.0647">
+<stop offset="0" style="stop-color:#5DA9B9"/>
+<stop offset="1" style="stop-color:#313C62"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.7" y="18.59"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.7" y="28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="19.82" y2="26.78">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.153" y="9.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.153" y="9.711"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28.0029" y2="18.7824">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="7.06" width="30.26" x="14.87" y="19.77"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="20.71" y2="25.65">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.705" y="18.591"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.705" y="28.003"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.0015" x2="30.0015" y1="19.8154" y2="26.7816">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="4.706" width="27.94" x="16.03" y="20.94"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.96" x2="31.92" y1="50.51" y2="50.51">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_8_)" height="7.06" width="30.263" x="14.87" y="19.767"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0005" x2="30.0005" y1="20.7056" y2="25.6484">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<path d="M26.94,48.37v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612v-3.674h-4.891z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.96" x2="31.92" y1="48.67" y2="48.67">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_9_)" height="4.706" width="27.939" x="16.031" y="20.942"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.957" x2="31.9189" y1="50.5098" y2="50.5098">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.94" y="48.37"/>
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="48.93" y2="42.98">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<path d="M26.939,48.367v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612 v-3.674H26.939z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.9565" x2="31.918" y1="48.6738" y2="48.6738">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="6.122" width="38" x="11" y="42.86"/>
-<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="42.86"/>
-<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="38" x="11" y="43.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.86" x2="12.86" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.938" y="48.367"/>
+<g>
+<rect fill="none" height="60" width="60"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="48.9316" y2="42.9805">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.62" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.81" x2="17.81" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_12_)" height="6.122" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="37.996" x="11.002" y="43.47"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.8589" x2="12.8589" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.57" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.76" x2="22.76" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.621" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.8115" x2="17.8115" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.53" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.72" x2="27.72" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.574" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.7642" x2="22.7642" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.48" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.67" x2="32.67" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.526" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.7158" x2="27.7158" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.62" x2="37.62" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.478" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.668" x2="32.668" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.38" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.57" x2="42.57" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.6211" x2="37.6211" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.33" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.53" x2="47.53" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.383" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.5723" x2="42.5723" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
+</linearGradient>
+<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.334" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.5254" x2="47.5254" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.29" y="44.08"/>
-<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="48.37"/>
-<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="47.76"/>
-<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.94" y="48.98"/>
-<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.94" y="49.59"/>
-<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.98" y="52.65"/>
-<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.18" y="52.65"/>
-<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.37" y="52.65"/>
-<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.8" y="52.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.39" x2="29.39" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.287" y="44.082"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="48.367"/>
+<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="47.755"/>
+<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.938" y="48.979"/>
+<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.938" y="49.592"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.979" y="52.653"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.184" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.367" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.796" y="52.653"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.3872" x2="29.3872" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_21_)" height="6.122" width="18.37" x="20.2" y="52.04"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9" x2="19.9" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_21_)" height="6.122" width="18.367" x="20.204" y="52.041"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.8979" x2="19.8979" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M19.59,52.65v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122c-0.33,0-0.61,0.27-0.61,0.61z" fill="url(#SVGID_22_)"/>
-<path d="M19.59,52.65v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122c-0.33,0-0.61,0.27-0.61,0.61z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.88" x2="38.88" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122 C19.866,52.041,19.592,52.314,19.592,52.653z" fill="url(#SVGID_22_)"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.877" x2="38.877" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M38.57,52.04v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897c0-0.34-0.27-0.61-0.61-0.61z" fill="url(#SVGID_23_)"/>
-<path d="M38.57,52.04v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897c0-0.34-0.27-0.61-0.61-0.61z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897 C39.184,52.314,38.91,52.041,38.571,52.041z" fill="url(#SVGID_23_)"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" fill-opacity="0.3" stroke-opacity="0.3"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.35" points="0.175,15.93,5.351,10.76,11.16,16.57,24.65,3.086,29.82,8.264,11.15,26.91" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="3.084" y2="22.15">
-<stop offset="0" stop-color="#DCE3BF"/>
-<stop offset="0.7758" stop-color="#769365"/>
-<stop offset="1" stop-color="#AFBE95"/>
+<polygon fill-opacity="0.35" points="0.175,15.934 5.351,10.756 11.164,16.568 24.647,3.086 29.824,8.264 11.154,26.914 " stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="3.0845" y2="22.1505">
+<stop offset="0" style="stop-color:#DCE3BF"/>
+<stop offset="0.7758" style="stop-color:#769365"/>
+<stop offset="1" style="stop-color:#AFBE95"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="28.41,8.264,24.65,4.5,11.16,17.98,5.351,12.17,1.589,15.93,11.15,25.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="4.622" y2="21.23">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<polygon fill="url(#SVGID_1__)" points="28.41,8.264 24.647,4.5 11.164,17.982 5.351,12.17 1.589,15.934 11.154,25.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.999" x2="14.999" y1="4.6216" y2="21.2281">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="2.943,15.93,5.351,13.52,11.16,19.34,24.65,5.854,27.06,8.263,11.15,24.15"/>
+<polygon fill="url(#SVGID_2__)" points="2.943,15.934 5.351,13.524 11.164,19.337 24.647,5.854 27.055,8.263 11.154,24.146 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_lock.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_lock.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,149 +1,153 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,0,0,30,4.358,30,25.64,30,30,30,30,0"/>
+<polygon fill="none" points="0,0 0,30 4.358,30 25.643,30 30,30 30,0 "/>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71v-14.54c0-0.943,0.767-1.711,1.709-1.711h0.663v-2.061c0.078-5.508,4.609-9.979,10.1-9.979s10.02,4.471,10.1,9.966v2.07h0.42c0.941,0,1.709,0.768,1.709,1.711v14.54c0,0.942-0.768,1.71-1.709,1.71h-21.28zm15.78-17.96v-2.061c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035h10.04z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="273.6" x2="291.6" y1="-368.7" y2="-368.7">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.5333" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#808080"/>
+</g>
+<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="273.6377" x2="291.5699" y1="-368.7476" y2="-368.7476">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M15.12,1c-4.984,0-9.03,4.009-9.101,8.979v3.338h3.081v-3.341c0.069-3.266,2.74-5.9,6.021-5.9s5.951,2.635,6.021,5.9v4.477h3.078v-4.481c-0.07-4.97-4.11-8.979-9.1-8.979z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="274.2" x2="291" y1="-369" y2="-369">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.5152" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<path d="M15.122,1c-4.984,0-9.03,4.009-9.101,8.979v3.338H9.1V9.979c0.069-3.266,2.74-5.9,6.021-5.9 s5.951,2.635,6.021,5.9v4.477h3.078V9.979C24.152,5.009,20.107,1,15.122,1z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="274.1973" x2="291.0081" y1="-369.0322" y2="-369.0322">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M21.71,13.89v-3.911c-0.077-3.574-3.032-6.469-6.592-6.469-3.559,0-6.514,2.895-6.592,6.458v4.488h-1.937v-4.481c0.065-4.636,3.893-8.41,8.531-8.41,4.64,0,8.465,3.774,8.53,8.418v3.9h-1.94z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="274.5" x2="290.7" y1="-369" y2="-369">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M21.714,13.888V9.979c-0.077-3.574-3.032-6.469-6.592-6.469c-3.559,0-6.514,2.895-6.592,6.458v4.488 H6.591V9.979c0.065-4.636,3.893-8.41,8.531-8.41c4.64,0,8.465,3.774,8.53,8.418v3.9L21.714,13.888L21.714,13.888z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="274.5469" x2="290.6592" y1="-369.0322" y2="-369.0322">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M6.945,14.1v-4.121c0.063-4.44,3.731-8.055,8.177-8.055s8.11,3.618,8.18,8.066v3.541h-1.231v-3.551c-0.08-3.767-3.196-6.824-6.945-6.824-3.75,0-6.865,3.053-6.946,6.805v4.142h-1.229z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="271.1" x2="293.8" y1="-382" y2="-382">
-<stop offset="0" stop-color="#AA8250"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="0.8667" stop-color="#BCA162"/>
-<stop offset="1" stop-color="#AA8250"/>
+<path d="M6.945,14.102V9.979c0.063-4.44,3.731-8.055,8.177-8.055S23.234,5.542,23.3,9.99v3.541h-1.231V9.979 c-0.08-3.767-3.196-6.824-6.945-6.824c-3.75,0-6.865,3.053-6.946,6.805v4.142H6.945z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="271.1289" x2="293.832" y1="-382.0376" y2="-382.0376">
+<stop offset="0" style="stop-color:#AA8250"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="0.8667" style="stop-color:#BCA162"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M26.35,28.29c0,0.392-0.317,0.71-0.709,0.71h-21.28c-0.392,0-0.709-0.318-0.709-0.71v-14.54c0-0.392,0.317-0.711,0.709-0.711h21.28c0.393,0,0.709,0.319,0.709,0.711v14.54h0.002z" fill="url(#SVGID_4__)"/>
-<path d="M25.64,13.04h-21.28c-0.392,0-0.709,0.319-0.709,0.711v0.709c0-0.392,0.317-0.709,0.709-0.709h21.28c0.393,0,0.709,0.317,0.709,0.709v-0.709c0-0.39-0.32-0.71-0.71-0.71z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M25.64,29h-21.28c-0.392,0-0.709-0.318-0.709-0.71v-0.709c0,0.392,0.317,0.709,0.709,0.709h21.28c0.393,0,0.709-0.317,0.709-0.709v0.709c0,0.39-0.32,0.71-0.71,0.71z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838c-0.769-0.441-1.25-1.256-1.25-2.162,0-1.379,1.122-2.5,2.5-2.5,1.379,0,2.5,1.121,2.5,2.5,0,0.904-0.48,1.721-1.25,2.162v1.838c0,0.69-0.56,1.25-1.25,1.25z" fill="#DED7B2" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="282.5" x2="282.5" y1="-386.1" y2="-379.7">
-<stop offset="0" stop-color="#8D7B6B"/>
-<stop offset="1" stop-color="#492C2A"/>
+<path d="M26.352,28.29c0,0.392-0.317,0.71-0.709,0.71H4.358c-0.392,0-0.709-0.318-0.709-0.71V13.747 c0-0.392,0.317-0.711,0.709-0.711h21.283c0.393,0,0.709,0.319,0.709,0.711V28.29H26.352z" fill="url(#SVGID_4__)"/>
+<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" fill="#DED7B2" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="282.4805" x2="282.4805" y1="-386.0986" y2="-379.7186">
+<stop offset="0" style="stop-color:#8D7B6B"/>
+<stop offset="1" style="stop-color:#492C2A"/>
</linearGradient>
-<path d="M17,20.57c0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148c0.73-0.3,1.25-1.01,1.25-1.85z" fill="url(#SVGID_5__)"/>
+<path d="M17,20.57c0-1.104-0.896-2-2-2c-1.104,0-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148 c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148C16.482,22.125,17,21.409,17,20.57z" fill="url(#SVGID_5__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_update.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_device_update.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,130 +1,132 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.1,0,0.096,0,0.096,14.83,0,14.83,0.096,14.93,0.096,30,14.6,30,15.02,30.44,15.45,30,30.1,30,30.1,14.96,30.22,14.84,30.1,14.84"/>
-<polygon fill-opacity="0.35" points="0,14.83,3.596,14.83,3.625,14.86,8.375,14.86,8.375,0,21.73,0.001,21.73,14.84,30.22,14.84,15.02,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2985" y2="2957">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="2.846,15.86,15.02,28.58,27.4,15.84,20.73,15.84,20.73,1.292,9.375,1.291,9.375,15.86"/>
-<line fill="none" x1="20.73" x2="9.375" y1="1.297" y2="1.296"/>
-<polygon fill="#E4EACE" points="9.375,1,20.73,1.001,20.73,1.593,9.375,1.592"/>
-<polygon fill="#E4EACE" points="20.56,15.87,27.53,15.87,27,16.46,20.56,16.46"/>
-<polygon fill="#E4EACE" points="2.459,15.86,9.365,15.86,9.365,16.45,3.08,16.45"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2166" x2="-2188" y1="2963" y2="2963">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
+<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
+<polygon fill="#E4EACE" points="9.375,1 20.729,1.001 20.727,1.593 9.375,1.592 "/>
+<polygon fill="#E4EACE" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
+<polygon fill="#E4EACE" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
+<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="27.02,15.84,15.02,28.15,3.172,15.83,2.348,15.83,15.02,29,27.84,15.84"/>
+<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialer.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialer.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="17.17" x2="17.17" y1="5.67" y2="54.05">
<stop offset="0" stop-color="#B4DCCA"/>
@@ -43,4 +44,5 @@
<path d="M33.9,45.12v7.978h-7.97v-7.978h7.975m1.225-1.22h-10.42v10.43h10.42v-10.43z" fill="url(#SVGID_19)"/>
<path d="M46.81,32.22v7.975h-7.976v-7.975h7.98m1.22-1.23h-10.42v10.42h10.42v-10.42z" fill="url(#SVGID_17)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialled_voice_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dialled_voice_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<g>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2303.3008)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6116.3018" x2="6116.3018" y1="4610.5996" y2="4709.6021">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.15" style="stop-color:#7DC7BB"/>
+<stop offset="0.56" style="stop-color:#6292A3"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_1_)" points="47.517,26.58 26.813,5.055 5.899,26.58 17.177,26.58 17.177,51.16 36.474,51.16 36.474,26.58 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2303.3008)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6116.3955" x2="6116.3955" y1="4615.6016" y2="4661.0015">
+<stop offset="0" style="stop-color:#CAE8D4"/>
+<stop offset="0.42" style="stop-color:#CAE8D4"/>
+<stop offset="1" style="stop-color:#83B4B4"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<polygon fill="url(#SVGID_2_)" points="6.548,26.58 26.813,5.777 46.954,26.58 48.356,26.58 26.813,4.34 5.153,26.58 "/>
+<polygon fill="#659BA9" points="36.497,51.66 17.177,51.66 17.177,50.66 36.497,50.66 "/>
<rect fill="none" height="60" width="60"/>
-<polygon fill="none" points="30.15,0.436,15.61,0.436,15.19,0,14.76,0.436,0.152,0.436,0.152,15.44,0,15.59,0.152,15.59,0.152,30.44,30.15,30.44,30.15,15.59,30.3,15.59,30.15,15.45"/>
-<polygon fill-opacity="0.35" points="8.484,30.43,8.48,15.59,0.4,15.59,0,15.59,15.19,0,30.3,15.59,21.91,15.59,21.92,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2986" y2="2956">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="1" stop-color="#455188"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.44,14.59,15.18,1.861,2.814,14.59,9.48,14.59,9.484,29.14,20.91,29.14,20.91,14.59"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2176" x2="-2176" y1="2984" y2="2971">
-<stop offset="0" stop-color="#CAE8D4"/>
-<stop offset="0.4182" stop-color="#CAE8D4"/>
-<stop offset="1" stop-color="#83B4B4"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="3.195,14.59,15.18,2.286,27.11,14.59,27.93,14.59,15.18,1.436,2.37,14.59"/>
-<line fill="none" x1="9.484" x2="20.91" y1="29.14" y2="29.14"/>
-<polygon fill="#659BA9" points="20.91,29.44,9.484,29.43,9.484,28.84,20.91,28.84"/>
-<rect fill="none" height="30" width="30" x="0.152" y="0.436"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dictionary.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_dictionary.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.76" x2="31.76" y1="4.304" y2="55.96">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="31.7607" x2="31.7607" y1="4.3042" y2="55.9593">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M54.46,54.34c0,1.435-0.699,1.874-1.564,1.874h-42.27c-0.863,0-1.565-0.699-1.565-1.564v-49.3c0-0.863,0.702-1.564,1.565-1.564h42.26c0.865,0,1.564,0.408,1.564,1.713,0.01-0.001,0.01,47.41,0.01,48.84z" fill="url(#SVGID_1_)"/>
-<rect fill="#404041" fill-opacity="0.2" height="52.44" stroke-opacity="0.2" width="18" x="34.5" y="3.782"/>
-<rect fill="#404041" fill-opacity="0.2" height="52.44" stroke-opacity="0.2" width="18" x="33.72" y="3.782"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="28.24" x2="28.24" y1="3" y2="56.75">
-<stop offset="0" stop-color="#8BCDCA"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M54.456,54.343c0,1.435-0.699,1.874-1.564,1.874H10.63c-0.863,0-1.565-0.699-1.565-1.564V5.347 c0-0.863,0.702-1.564,1.565-1.564h42.262c0.865,0,1.564,0.408,1.564,1.713C54.456,5.495,54.456,52.908,54.456,54.343z" fill="url(#SVGID_1_)"/>
+<rect fill="#404041" fill-opacity="0.2" height="52.435" stroke-opacity="0.2" width="18" x="34.501" y="3.782"/>
+<rect fill="#404041" fill-opacity="0.2" height="52.435" stroke-opacity="0.2" width="18" x="33.718" y="3.782"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="28.2397" x2="28.2397" y1="3" y2="56.75">
+<stop offset="0" style="stop-color:#8BCDCA"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M50.94,55.44c0,0.86-0.7,1.56-1.57,1.56h-42.26c-0.863,0-1.565-0.7-1.565-1.565v-50.88c0-0.863,0.702-1.564,1.565-1.564h42.26c0.865,0,1.566,0.701,1.566,1.564v50.87z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.98" x2="30.98" y1="2.739" y2="70.96">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#2B2A54"/>
+<path d="M50.937,55.435C50.937,56.3,50.235,57,49.37,57H7.109c-0.863,0-1.565-0.7-1.565-1.565V4.564 C5.544,3.701,6.246,3,7.109,3H49.37c0.865,0,1.566,0.701,1.566,1.564V55.435z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.979" x2="30.979" y1="2.7393" y2="70.9575">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#2B2A54"/>
</linearGradient>
-<path d="M49.37,3.782c0.434,0,0.783,0.351,0.783,0.782v50.87c0,0.433-0.35,0.782-0.783,0.782h-37.56v-52.43h37.56m0-0.782h-38.35v54h38.35c0.865,0,1.566-0.7,1.566-1.565v-50.88c0-0.863-0.7-1.564-1.57-1.564z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.283" x2="8.283" y1="2.739" y2="57.78">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#A0A0A0"/>
+<path d="M49.37,3.782c0.434,0,0.783,0.351,0.783,0.782v50.87c0,0.433-0.35,0.782-0.783,0.782H11.805V3.782 H49.37 M49.37,3H11.022v54H49.37c0.865,0,1.566-0.7,1.566-1.565V4.564C50.937,3.701,50.235,3,49.37,3L49.37,3z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.2832" x2="8.2832" y1="2.7393" y2="57.7841">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#A0A0A0"/>
</linearGradient>
-<path d="M7.109,3c-0.863,0-1.565,0.701-1.565,1.564v50.87c0,0.87,0.702,1.57,1.565,1.57h3.913v-54h-3.911z" fill="url(#SVGID_4_)"/>
-<rect fill="#737373" height="54" width="0.783" x="10.24" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="9.848" x2="9.848" y1="2.739" y2="57.78">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M7.109,3C6.246,3,5.544,3.701,5.544,4.564v50.87C5.544,56.3,6.246,57,7.109,57h3.913V3H7.109z" fill="url(#SVGID_4_)"/>
+<rect fill="#737373" height="54" width="0.783" x="10.239" y="3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="9.8481" x2="9.8481" y1="2.7393" y2="57.7841">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="54" width="0.782" x="9.457" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="17.1" x2="42.31" y1="29.33" y2="29.33">
-<stop offset="0" stop-color="#384568"/>
-<stop offset="0.0434" stop-color="#38466A"/>
-<stop offset="0.3599" stop-color="#3A4B76"/>
-<stop offset="0.6785" stop-color="#3B4E7D"/>
-<stop offset="1" stop-color="#3B4F80"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="17.0967" x2="42.3057" y1="29.3286" y2="29.3286">
+<stop offset="0" style="stop-color:#384568"/>
+<stop offset="0.0434" style="stop-color:#38466A"/>
+<stop offset="0.3599" style="stop-color:#3A4B76"/>
+<stop offset="0.6785" style="stop-color:#3B4E7D"/>
+<stop offset="1" style="stop-color:#3B4F80"/>
</linearGradient>
-<path d="M17.1,21.18h11.28v-6.39h2.521v6.39h11.4v13.37h-2.402v-1.582h-9.001v10.9h-2.521v-10.91h-8.88v1.582h-2.404v-13.37zm2.4,9.62h8.88v-7.446h-8.88v7.445zm20.4-7.45h-9.001v7.446h9.001v-7.451z" fill="url(#SVGID_6_)"/>
-<path d="M18.1,22.18h11.29v-6.392h2.521v6.392h11.4v13.37h-2.402v-1.584h-9v10.91h-2.521v-10.92h-8.883v1.584h-2.403v-13.37zm2.4,9.61h8.883v-7.445h-8.883v7.454zm20.4-7.44h-9v7.445h9v-7.451z" fill="#FFFFFF"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<path d="M17.097,21.179h11.284v-6.39h2.521v6.39h11.403v13.367h-2.402v-1.582h-9.001v10.904h-2.521V32.964 h-8.88v1.582h-2.404V21.179z M19.501,30.795h8.88v-7.446h-8.88V30.795z M39.903,23.349h-9.001v7.446h9.001V23.349z" fill="url(#SVGID_6_)"/>
+<path d="M18.096,22.18h11.286v-6.392h2.521v6.392h11.402v13.367h-2.402v-1.584h-9v10.906h-2.521V33.963h-8.883v1.584 h-2.403V22.18z M20.499,31.794h8.883v-7.445h-8.883V31.794z M40.903,24.349h-9v7.445h9V24.349z" fill="#FFFFFF"/>
+<rect fill="none" height="60" width="60.001"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,25 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.5" x2="312.5" y1="-347.9" y2="-403.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.25" stop-color="#708A9C"/>
-<stop offset="0.73" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#708A9C"/>
+<stop offset="0.73" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="312.2" cy="-354" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.39">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.15" stop-color="#B4DCCA"/>
-<stop offset="0.75" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="0.15" style="stop-color:#B4DCCA"/>
+<stop offset="0.75" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</radialGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.5" x2="312.5" y1="-357" y2="-394.2">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M30,48.54c-5.093,0-9.503-1.832-13.1-5.451-3.609-3.623-5.436-8.038-5.436-13.12,0-5.058,1.832-9.457,5.446-13.08,3.621-3.612,8.026-5.441,13.09-5.441,5.093,0,9.503,1.827,13.11,5.43,3.604,3.604,5.436,8.005,5.436,13.09,0,2.963-0.612,5.579-1.812,7.774-1.537,2.821-3.797,4.262-6.723,4.262-2.53,0-4.466-1.123-5.768-3.338-1.409,1.153-3.133,1.736-5.143,1.736-2.812,0-5.106-1.098-6.817-3.253-1.549-1.952-2.334-4.358-2.334-7.156,0-2.812,0.789-5.208,2.345-7.125,1.679-2.096,3.973-3.162,6.806-3.162,1.447,0,2.702,0.278,3.753,0.827v-0.4h5.344v13.71c0,2.966,1.27,2.966,1.813,2.966,0.39,0,1.587,0,2.543-2.438,0.522-1.359,0.789-2.841,0.789-4.397,0-3.666-1.279-6.715-3.925-9.331-2.603-2.575-5.772-3.881-9.419-3.881-3.71,0-6.776,1.26-9.374,3.85-2.595,2.592-3.858,5.655-3.858,9.36,0,3.712,1.271,6.78,3.876,9.384,2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305h-0.802,0.002zm-0.9-23.58c-1.16,0-2.03,0.509-2.665,1.547-0.594,0.959-0.894,2.133-0.894,3.488,0,4.619,2.029,5.152,3.558,5.152,1.513,0,3.529-0.549,3.529-5.321-0.01-4.36-2.03-4.87-3.54-4.87z" fill="url(#SVGID_3_)"/>
-<path d="M47.74,29.97c0,2.843-0.572,5.306-1.715,7.387-1.39,2.563-3.396,3.846-6.018,3.846-2.552,0-4.395-1.282-5.543-3.846-1.383,1.496-3.175,2.247-5.366,2.247-2.57,0-4.629-0.982-6.188-2.95-1.44-1.818-2.164-4.029-2.164-6.659,0-2.641,0.726-4.844,2.164-6.617,1.539-1.917,3.601-2.871,6.188-2.871,1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.91c0,2.511,0.868,3.767,2.613,3.767,1.424,0,2.519-0.985,3.287-2.947,0.562-1.462,0.847-3.022,0.847-4.691,0-3.859-1.388-7.156-4.164-9.899-2.771-2.744-6.101-4.111-9.982-4.111-3.896,0-7.209,1.36-9.939,4.083-2.726,2.726-4.091,6.03-4.091,9.928,0,3.892,1.366,7.212,4.109,9.95,2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.54-5.216-3.468-3.483-5.203-7.674-5.203-12.56,0-4.87,1.738-9.034,5.214-12.51,3.481-3.467,7.65-5.205,12.53-5.205,4.892,0,9.075,1.728,12.54,5.199,3.48,3.47,5.21,7.65,5.21,12.53zm-14.31-0.14c0-3.78-1.444-5.665-4.33-5.665-1.443,0-2.563,0.64-3.346,1.932-0.68,1.087-1.01,2.386-1.01,3.901,0,3.971,1.449,5.954,4.354,5.954,2.89,0.01,4.34-2.02,4.34-6.11z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
+<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.5" x2="312.5" y1="-347.9" y2="-403.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.25" stop-color="#708A9C"/>
-<stop offset="0.73" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#708A9C"/>
+<stop offset="0.73" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="312.2" cy="-354" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.39">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.15" stop-color="#B4DCCA"/>
-<stop offset="0.75" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="0.15" style="stop-color:#B4DCCA"/>
+<stop offset="0.75" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</radialGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.5" x2="312.5" y1="-357" y2="-394.2">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M30,48.54c-5.093,0-9.503-1.832-13.1-5.451-3.609-3.623-5.436-8.038-5.436-13.12,0-5.058,1.832-9.457,5.446-13.08,3.621-3.612,8.026-5.441,13.09-5.441,5.093,0,9.503,1.827,13.11,5.43,3.604,3.604,5.436,8.005,5.436,13.09,0,2.963-0.612,5.579-1.812,7.774-1.537,2.821-3.797,4.262-6.723,4.262-2.53,0-4.466-1.123-5.768-3.338-1.409,1.153-3.133,1.736-5.143,1.736-2.812,0-5.106-1.098-6.817-3.253-1.549-1.952-2.334-4.358-2.334-7.156,0-2.812,0.789-5.208,2.345-7.125,1.679-2.096,3.973-3.162,6.806-3.162,1.447,0,2.702,0.278,3.753,0.827v-0.4h5.344v13.71c0,2.966,1.27,2.966,1.813,2.966,0.39,0,1.587,0,2.543-2.438,0.522-1.359,0.789-2.841,0.789-4.397,0-3.666-1.279-6.715-3.925-9.331-2.603-2.575-5.772-3.881-9.419-3.881-3.71,0-6.776,1.26-9.374,3.85-2.595,2.592-3.858,5.655-3.858,9.36,0,3.712,1.271,6.78,3.876,9.384,2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305h-0.802,0.002zm-0.9-23.58c-1.16,0-2.03,0.509-2.665,1.547-0.594,0.959-0.894,2.133-0.894,3.488,0,4.619,2.029,5.152,3.558,5.152,1.513,0,3.529-0.549,3.529-5.321-0.01-4.36-2.03-4.87-3.54-4.87z" fill="url(#SVGID_3_)"/>
-<path d="M47.74,29.97c0,2.843-0.572,5.306-1.715,7.387-1.39,2.563-3.396,3.846-6.018,3.846-2.552,0-4.395-1.282-5.543-3.846-1.383,1.496-3.175,2.247-5.366,2.247-2.57,0-4.629-0.982-6.188-2.95-1.44-1.818-2.164-4.029-2.164-6.659,0-2.641,0.726-4.844,2.164-6.617,1.539-1.917,3.601-2.871,6.188-2.871,1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.91c0,2.511,0.868,3.767,2.613,3.767,1.424,0,2.519-0.985,3.287-2.947,0.562-1.462,0.847-3.022,0.847-4.691,0-3.859-1.388-7.156-4.164-9.899-2.771-2.744-6.101-4.111-9.982-4.111-3.896,0-7.209,1.36-9.939,4.083-2.726,2.726-4.091,6.03-4.091,9.928,0,3.892,1.366,7.212,4.109,9.95,2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.54-5.216-3.468-3.483-5.203-7.674-5.203-12.56,0-4.87,1.738-9.034,5.214-12.51,3.481-3.467,7.65-5.205,12.53-5.205,4.892,0,9.075,1.728,12.54,5.199,3.48,3.47,5.21,7.65,5.21,12.53zm-14.31-0.14c0-3.78-1.444-5.665-4.33-5.665-1.443,0-2.563,0.64-3.346,1.932-0.68,1.087-1.01,2.386-1.01,3.901,0,3.971,1.449,5.954,4.354,5.954,2.89,0.01,4.34-2.02,4.34-6.11z" fill="#FFFFFF"/>
+<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
+<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_group.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_group.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.5" x2="312.5" y1="-347.9" y2="-403.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.25" stop-color="#708A9C"/>
-<stop offset="0.73" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#708A9C"/>
+<stop offset="0.73" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="312.2" cy="-354" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.39">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.15" stop-color="#B4DCCA"/>
-<stop offset="0.75" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="0.15" style="stop-color:#B4DCCA"/>
+<stop offset="0.75" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</radialGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.5" x2="312.5" y1="-357" y2="-394.2">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M30,48.54c-5.093,0-9.503-1.832-13.1-5.451-3.609-3.623-5.436-8.038-5.436-13.12,0-5.058,1.832-9.457,5.446-13.08,3.621-3.612,8.026-5.441,13.09-5.441,5.093,0,9.503,1.827,13.11,5.43,3.604,3.604,5.436,8.005,5.436,13.09,0,2.963-0.612,5.579-1.812,7.774-1.537,2.821-3.797,4.262-6.723,4.262-2.53,0-4.466-1.123-5.768-3.338-1.409,1.153-3.133,1.736-5.143,1.736-2.812,0-5.106-1.098-6.817-3.253-1.549-1.952-2.334-4.358-2.334-7.156,0-2.812,0.789-5.208,2.345-7.125,1.679-2.096,3.973-3.162,6.806-3.162,1.447,0,2.702,0.278,3.753,0.827v-0.4h5.344v13.71c0,2.966,1.27,2.966,1.813,2.966,0.39,0,1.587,0,2.543-2.438,0.522-1.359,0.789-2.841,0.789-4.397,0-3.666-1.279-6.715-3.925-9.331-2.603-2.575-5.772-3.881-9.419-3.881-3.71,0-6.776,1.26-9.374,3.85-2.595,2.592-3.858,5.655-3.858,9.36,0,3.712,1.271,6.78,3.876,9.384,2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305h-0.802,0.002zm-0.9-23.58c-1.16,0-2.03,0.509-2.665,1.547-0.594,0.959-0.894,2.133-0.894,3.488,0,4.619,2.029,5.152,3.558,5.152,1.513,0,3.529-0.549,3.529-5.321-0.01-4.36-2.03-4.87-3.54-4.87z" fill="url(#SVGID_3_)"/>
-<path d="M47.74,29.97c0,2.843-0.572,5.306-1.715,7.387-1.39,2.563-3.396,3.846-6.018,3.846-2.552,0-4.395-1.282-5.543-3.846-1.383,1.496-3.175,2.247-5.366,2.247-2.57,0-4.629-0.982-6.188-2.95-1.44-1.818-2.164-4.029-2.164-6.659,0-2.641,0.726-4.844,2.164-6.617,1.539-1.917,3.601-2.871,6.188-2.871,1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.91c0,2.511,0.868,3.767,2.613,3.767,1.424,0,2.519-0.985,3.287-2.947,0.562-1.462,0.847-3.022,0.847-4.691,0-3.859-1.388-7.156-4.164-9.899-2.771-2.744-6.101-4.111-9.982-4.111-3.896,0-7.209,1.36-9.939,4.083-2.726,2.726-4.091,6.03-4.091,9.928,0,3.892,1.366,7.212,4.109,9.95,2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.54-5.216-3.468-3.483-5.203-7.674-5.203-12.56,0-4.87,1.738-9.034,5.214-12.51,3.481-3.467,7.65-5.205,12.53-5.205,4.892,0,9.075,1.728,12.54,5.199,3.48,3.47,5.21,7.65,5.21,12.53zm-14.31-0.14c0-3.78-1.444-5.665-4.33-5.665-1.443,0-2.563,0.64-3.346,1.932-0.68,1.087-1.01,2.386-1.01,3.901,0,3.971,1.449,5.954,4.354,5.954,2.89,0.01,4.34-2.02,4.34-6.11z" fill="#FFFFFF"/>
+<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
+<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<radialGradient cx="669.4" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="11.1">
@@ -67,13 +69,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M19.11,11.16s1.818,2.389,5.512,2.384-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
+<path d="M19.11,11.16s1.818,2.389,5.512,2.384c0,0-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="663.1" x2="663.1" y1="-572" y2="-577.3">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M18.68,9.836s-1.78,0.106-1.12,3.123-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
+<path d="M18.68,9.836s-1.78,0.106-1.12,3.123c0,0-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="670.2" x2="670" y1="-569.9" y2="-572.3">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -122,13 +124,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M6.936,11.16s1.818,2.389,5.513,2.384-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
+<path d="M6.936,11.16s1.818,2.389,5.513,2.384c0,0-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="638.7" x2="638.8" y1="-572.3" y2="-577.7">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M6.498,9.836s-1.779,0.106-1.119,3.123-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
+<path d="M6.498,9.836s-1.779,0.106-1.119,3.123c0,0-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="645.9" x2="645.6" y1="-569.9" y2="-572.3">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -188,7 +190,7 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M12.11,8.272s2.658,3.492,8.059,3.485-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
+<path d="M12.11,8.272s2.658,3.492,8.059,3.485c0,0-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="648.1" x2="648.2" y1="-565.2" y2="-573">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
@@ -202,4 +204,4 @@
<path d="M16.06,6.946c-1.212-0.173-3.263-1.247-4.065-0.863,0,0,2.63-3,7.271,0.415,0,0-1.11,0.747-3.21,0.448z" fill="url(#SVGID_28_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,66 +1,68 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.5" x2="312.5" y1="-347.9" y2="-403.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.25" stop-color="#708A9C"/>
-<stop offset="0.73" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#708A9C"/>
+<stop offset="0.73" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="312.2" cy="-354" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.39">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.15" stop-color="#B4DCCA"/>
-<stop offset="0.75" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="0.15" style="stop-color:#B4DCCA"/>
+<stop offset="0.75" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</radialGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.5" x2="312.5" y1="-357" y2="-394.2">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
-</linearGradient>
-<path d="M30,48.54c-5.093,0-9.503-1.832-13.1-5.451-3.609-3.623-5.436-8.038-5.436-13.12,0-5.058,1.832-9.457,5.446-13.08,3.621-3.612,8.026-5.441,13.09-5.441,5.093,0,9.503,1.827,13.11,5.43,3.604,3.604,5.436,8.005,5.436,13.09,0,2.963-0.612,5.579-1.812,7.774-1.537,2.821-3.797,4.262-6.723,4.262-2.53,0-4.466-1.123-5.768-3.338-1.409,1.153-3.133,1.736-5.143,1.736-2.812,0-5.106-1.098-6.817-3.253-1.549-1.952-2.334-4.358-2.334-7.156,0-2.812,0.789-5.208,2.345-7.125,1.679-2.096,3.973-3.162,6.806-3.162,1.447,0,2.702,0.278,3.753,0.827v-0.4h5.344v13.71c0,2.966,1.27,2.966,1.813,2.966,0.39,0,1.587,0,2.543-2.438,0.522-1.359,0.789-2.841,0.789-4.397,0-3.666-1.279-6.715-3.925-9.331-2.603-2.575-5.772-3.881-9.419-3.881-3.71,0-6.776,1.26-9.374,3.85-2.595,2.592-3.858,5.655-3.858,9.36,0,3.712,1.271,6.78,3.876,9.384,2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305h-0.802,0.002zm-0.9-23.58c-1.16,0-2.03,0.509-2.665,1.547-0.594,0.959-0.894,2.133-0.894,3.488,0,4.619,2.029,5.152,3.558,5.152,1.513,0,3.529-0.549,3.529-5.321-0.01-4.36-2.03-4.87-3.54-4.87z" fill="url(#SVGID_3_)"/>
-<path d="M47.74,29.97c0,2.843-0.572,5.306-1.715,7.387-1.39,2.563-3.396,3.846-6.018,3.846-2.552,0-4.395-1.282-5.543-3.846-1.383,1.496-3.175,2.247-5.366,2.247-2.57,0-4.629-0.982-6.188-2.95-1.44-1.818-2.164-4.029-2.164-6.659,0-2.641,0.726-4.844,2.164-6.617,1.539-1.917,3.601-2.871,6.188-2.871,1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.91c0,2.511,0.868,3.767,2.613,3.767,1.424,0,2.519-0.985,3.287-2.947,0.562-1.462,0.847-3.022,0.847-4.691,0-3.859-1.388-7.156-4.164-9.899-2.771-2.744-6.101-4.111-9.982-4.111-3.896,0-7.209,1.36-9.939,4.083-2.726,2.726-4.091,6.03-4.091,9.928,0,3.892,1.366,7.212,4.109,9.95,2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.54-5.216-3.468-3.483-5.203-7.674-5.203-12.56,0-4.87,1.738-9.034,5.214-12.51,3.481-3.467,7.65-5.205,12.53-5.205,4.892,0,9.075,1.728,12.54,5.199,3.48,3.47,5.21,7.65,5.21,12.53zm-14.31-0.14c0-3.78-1.444-5.665-4.33-5.665-1.443,0-2.563,0.64-3.346,1.932-0.68,1.087-1.01,2.386-1.01,3.901,0,3.971,1.449,5.954,4.354,5.954,2.89,0.01,4.34-2.02,4.34-6.11z" fill="#FFFFFF"/>
-<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.41,14.41,30.41,0,0.414,0,0.414,14.41,0,14.82,0.414,15.24,0.414,30,30.41,30,30.41,15.24,30.83,14.82"/>
-<path d="M2.749,29.82v-12.25l-2.749-2.75,0.706-0.707c0.507-0.5,12.43-12.46,13.15-13.15,0.387-0.368,0.914-0.786,1.589-0.786,0.687,0,1.172,0.42,1.518,0.785,0.457,0.484,8.802,8.816,13.15,13.15l0.708,0.706-2.747,2.749v12.25h-25.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.42" x2="15.42" y1="28.67" y2="12.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.08,28.82,3.749,28.82,3.749,14.47,15.41,5.489,27.08,14.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.42" x2="15.42" y1="17.31" y2="28.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
+<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
+</g>
+<g transform="matrix(1 0 0 1 30 30)">
+<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M15.41,6.668l10.74,8.264v12.96h-21.47v-12.96l10.73-8.264m0-1.179l-11.66,8.981v14.35h23.33v-14.35l-11.67-8.984z" fill="url(#SVGID_2__)"/>
-<polygon fill-opacity="0.2" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,8.99" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,6.655"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.42" x2="15.42" y1="17.99" y2="29.15">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="10.5" width="7.001" x="11.92" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.42" x2="15.42" y1="28.75" y2="18.36">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
+</linearGradient>
+<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M17.98,19.26v8.633h-5.133v-8.633h5.13m0.94-0.94h-7.001v10.5h7.001v-10.5-0.002z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.41" x2="15.41" y1="0.0352" y2="17.73">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M15.41,5.489l11.67,11.67,2.333-2.333s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333,11.66-11.66z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="15.3" cy="1.756" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="18.67">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="18.6679">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M14.55,2.616c0.724-0.688,1.102-0.653,1.689-0.034,0.516,0.549,10.43,10.44,12.7,12.71l0.467-0.468s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l0.467,0.465c2.257-2.25,12.04-12.06,12.67-12.66z" fill="url(#SVGID_6_)"/>
-<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.92" y="18.32"/>
+<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6_)"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_setup.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_setup.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,48 +1,50 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.5" x2="312.5" y1="-347.9" y2="-403.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.25" stop-color="#708A9C"/>
-<stop offset="0.73" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#708A9C"/>
+<stop offset="0.73" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="312.2" cy="-354" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.39">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.15" stop-color="#B4DCCA"/>
-<stop offset="0.75" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="0.15" style="stop-color:#B4DCCA"/>
+<stop offset="0.75" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</radialGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.5" x2="312.5" y1="-357" y2="-394.2">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M30,48.54c-5.093,0-9.503-1.832-13.1-5.451-3.609-3.623-5.436-8.038-5.436-13.12,0-5.058,1.832-9.457,5.446-13.08,3.621-3.612,8.026-5.441,13.09-5.441,5.093,0,9.503,1.827,13.11,5.43,3.604,3.604,5.436,8.005,5.436,13.09,0,2.963-0.612,5.579-1.812,7.774-1.537,2.821-3.797,4.262-6.723,4.262-2.53,0-4.466-1.123-5.768-3.338-1.409,1.153-3.133,1.736-5.143,1.736-2.812,0-5.106-1.098-6.817-3.253-1.549-1.952-2.334-4.358-2.334-7.156,0-2.812,0.789-5.208,2.345-7.125,1.679-2.096,3.973-3.162,6.806-3.162,1.447,0,2.702,0.278,3.753,0.827v-0.4h5.344v13.71c0,2.966,1.27,2.966,1.813,2.966,0.39,0,1.587,0,2.543-2.438,0.522-1.359,0.789-2.841,0.789-4.397,0-3.666-1.279-6.715-3.925-9.331-2.603-2.575-5.772-3.881-9.419-3.881-3.71,0-6.776,1.26-9.374,3.85-2.595,2.592-3.858,5.655-3.858,9.36,0,3.712,1.271,6.78,3.876,9.384,2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305h-0.802,0.002zm-0.9-23.58c-1.16,0-2.03,0.509-2.665,1.547-0.594,0.959-0.894,2.133-0.894,3.488,0,4.619,2.029,5.152,3.558,5.152,1.513,0,3.529-0.549,3.529-5.321-0.01-4.36-2.03-4.87-3.54-4.87z" fill="url(#SVGID_3_)"/>
-<path d="M47.74,29.97c0,2.843-0.572,5.306-1.715,7.387-1.39,2.563-3.396,3.846-6.018,3.846-2.552,0-4.395-1.282-5.543-3.846-1.383,1.496-3.175,2.247-5.366,2.247-2.57,0-4.629-0.982-6.188-2.95-1.44-1.818-2.164-4.029-2.164-6.659,0-2.641,0.726-4.844,2.164-6.617,1.539-1.917,3.601-2.871,6.188-2.871,1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.91c0,2.511,0.868,3.767,2.613,3.767,1.424,0,2.519-0.985,3.287-2.947,0.562-1.462,0.847-3.022,0.847-4.691,0-3.859-1.388-7.156-4.164-9.899-2.771-2.744-6.101-4.111-9.982-4.111-3.896,0-7.209,1.36-9.939,4.083-2.726,2.726-4.091,6.03-4.091,9.928,0,3.892,1.366,7.212,4.109,9.95,2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.54-5.216-3.468-3.483-5.203-7.674-5.203-12.56,0-4.87,1.738-9.034,5.214-12.51,3.481-3.467,7.65-5.205,12.53-5.205,4.892,0,9.075,1.728,12.54,5.199,3.48,3.47,5.21,7.65,5.21,12.53zm-14.31-0.14c0-3.78-1.444-5.665-4.33-5.665-1.443,0-2.563,0.64-3.346,1.932-0.68,1.087-1.01,2.386-1.01,3.901,0,3.971,1.449,5.954,4.354,5.954,2.89,0.01,4.34-2.02,4.34-6.11z" fill="#FFFFFF"/>
+<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
+<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M15,29.5c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854l-0.37-0.49,0.616-1.23c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157l-0.557-1.35c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434-0.083-0.594c-0.096-0.68-0.144-1.36-0.144-2.03s0.048-1.34,0.144-2.02l0.083-0.594,1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224l-0.48-0.485c-0.385-0.386-0.857-1.041-1.098-1.524l-0.615-1.229,0.361-0.479c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362,1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017,0.064-0.014,1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16v-0.676c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304,0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143,0.662,0,1.342,0.048,2.02,0.143l0.595,0.083,0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551,0.098,0.031c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613,0.476,0.36c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479-0.66,1.346c-0.253,0.506-0.391,0.758-1.04,1.407l-0.49,0.487c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156h0.678c0.544,0,1.343,0.13,1.854,0.302l1.303,0.433,0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021,0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593-1.303,0.434c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226-0.36,0.479c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017-0.066,0.015-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306-0.595,0.082c-0.68,0.11-1.36,0.15-2.02,0.15zm0-18.29c-2.094,0-3.798,1.704-3.798,3.798s1.704,3.798,3.798,3.798,3.797-1.704,3.797-3.798c0-2.1-1.71-3.8-3.8-3.8z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.5" x2="282.5" y1="-361.5" y2="-388.4">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1" stop-color="#FFFFFF"/>
-<stop offset="0.74" stop-color="#939595"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.4795" x2="282.4795" y1="-361.4912" y2="-388.438">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1" style="stop-color:#FFFFFF"/>
+<stop offset="0.74" style="stop-color:#939595"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<path d="M26.12,12.62h-0.69c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486c-0.31,0.309-0.882,0.401-1.271,0.203l-1.29-0.525c-0.417-0.137-0.755-0.608-0.755-1.044v-0.687c0-0.437-0.113-1.134-0.251-1.548l-0.246-0.735c-0.61-0.087-1.24-0.134-1.88-0.134-0.641,0-1.27,0.047-1.886,0.133l-0.24,0.735c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53c-0.39,0.199-0.96,0.107-1.269-0.201l-0.487-0.486c-0.309-0.309-0.882-0.721-1.271-0.917l-0.695-0.348c-1.007,0.761-1.905,1.659-2.666,2.667l0.347,0.694c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286c-0.136,0.415-0.605,0.754-1.042,0.754h-0.687c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886,0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271l-0.347,0.68c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134,0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885,0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245c-0.41-0.14-1.11-0.26-1.54-0.26zm-11.12,7.15c-2.632,0-4.765-2.133-4.765-4.765,0-2.631,2.132-4.765,4.765-4.765,2.63,0,4.764,2.134,4.764,4.765,0,2.64-2.13,4.77-4.76,4.77z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.7" x2="287.3" y1="-377.2" y2="-377.2">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M26.116,12.624H25.43c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285 c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695 c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486 c-0.31,0.309-0.882,0.401-1.271,0.203L18.138,5.62c-0.417-0.137-0.755-0.608-0.755-1.044V3.889c0-0.437-0.113-1.134-0.251-1.548 l-0.246-0.735C16.269,1.519,15.641,1.472,15,1.472c-0.641,0-1.27,0.047-1.886,0.133L12.869,2.34 c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53C10.19,6.346,9.62,6.254,9.311,5.946 L8.824,5.46C8.515,5.151,7.942,4.739,7.553,4.543L6.858,4.195C5.851,4.956,4.953,5.854,4.192,6.862l0.347,0.694 c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286 c-0.136,0.415-0.605,0.754-1.042,0.754H3.884c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886 c0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284 c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271L4.19,23.146 c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485 c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549 l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134c0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549 v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485 c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693 c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284 c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885 c0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245C27.249,12.736,26.553,12.624,26.116,12.624z M15,19.771 c-2.632,0-4.765-2.133-4.765-4.765c0-2.631,2.132-4.765,4.765-4.765c2.63,0,4.764,2.134,4.764,4.765 C19.764,17.638,17.63,19.771,15,19.771z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.6816" x2="287.2746" y1="-377.2241" y2="-377.2241">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M15,19.77c2.63,0,4.764-2.133,4.764-4.765,0-0.125-0.01-0.246-0.018-0.367-0.188,2.459-2.239,4.398-4.746,4.398-2.508,0-4.558-1.939-4.746-4.398-0.01,0.122-0.019,0.243-0.019,0.367,0.02,2.64,2.15,4.77,4.78,4.77z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.5" x2="282.5" y1="-383.1" y2="-366.8">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.52" stop-color="#C8C8C8"/>
-<stop offset="1" stop-color="#939595"/>
+<path d="M15,19.771c2.63,0,4.764-2.133,4.764-4.765c0-0.125-0.01-0.246-0.018-0.367 c-0.188,2.459-2.239,4.398-4.746,4.398c-2.508,0-4.558-1.939-4.746-4.398c-0.01,0.122-0.019,0.243-0.019,0.367 C10.235,17.638,12.367,19.771,15,19.771z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.4805" x2="282.4805" y1="-383.0635" y2="-366.7921">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.52" style="stop-color:#C8C8C8"/>
+<stop offset="1" style="stop-color:#939595"/>
</linearGradient>
-<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486,8.487-3.799,8.487-8.486-3.8-8.49-8.49-8.49zm0,15.04c-3.621,0-6.559-2.935-6.559-6.557s2.937-6.558,6.559-6.558c3.62,0,6.557,2.936,6.557,6.558,0,3.63-2.94,6.56-6.56,6.56z" fill="url(#SVGID_3__)"/>
+<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486s8.487-3.799,8.487-8.486 S19.687,6.52,15,6.52z M15,21.563c-3.621,0-6.559-2.935-6.559-6.557c0-3.622,2.937-6.558,6.559-6.558 c3.62,0,6.557,2.936,6.557,6.558C21.557,18.629,18.619,21.563,15,21.563z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_email_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.5" x2="312.5" y1="-347.9" y2="-403.9">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.25" stop-color="#708A9C"/>
-<stop offset="0.73" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="312.4795" x2="312.4795" y1="-347.8892" y2="-403.8838">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.25" style="stop-color:#708A9C"/>
+<stop offset="0.73" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="312.2" cy="-354" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.39">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="0.15" stop-color="#B4DCCA"/>
-<stop offset="0.75" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M30,57.997C14.562,57.997,2,45.439,2,30C2,14.564,14.562,2.002,30,2.002 c15.437,0,28,12.561,28,27.998C58,45.439,45.437,57.997,30,57.997L30,57.997z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="312.2188" cy="-353.9521" gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.3861">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="0.15" style="stop-color:#B4DCCA"/>
+<stop offset="0.75" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</radialGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.5" x2="312.5" y1="-357" y2="-394.2">
-<stop offset="0" stop-color="#5385B2"/>
-<stop offset="1" stop-color="#7DC4BD"/>
+<path d="M57.198,30c0,15.023-12.18,27.198-27.198,27.198C14.979,57.198,2.802,45.023,2.802,30 C2.802,14.982,14.979,2.802,30,2.802C45.019,2.802,57.198,14.982,57.198,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="312.4805" x2="312.4805" y1="-357.0225" y2="-394.2217">
+<stop offset="0" style="stop-color:#5385B2"/>
+<stop offset="1" style="stop-color:#7DC4BD"/>
</linearGradient>
-<path d="M30,48.54c-5.093,0-9.503-1.832-13.1-5.451-3.609-3.623-5.436-8.038-5.436-13.12,0-5.058,1.832-9.457,5.446-13.08,3.621-3.612,8.026-5.441,13.09-5.441,5.093,0,9.503,1.827,13.11,5.43,3.604,3.604,5.436,8.005,5.436,13.09,0,2.963-0.612,5.579-1.812,7.774-1.537,2.821-3.797,4.262-6.723,4.262-2.53,0-4.466-1.123-5.768-3.338-1.409,1.153-3.133,1.736-5.143,1.736-2.812,0-5.106-1.098-6.817-3.253-1.549-1.952-2.334-4.358-2.334-7.156,0-2.812,0.789-5.208,2.345-7.125,1.679-2.096,3.973-3.162,6.806-3.162,1.447,0,2.702,0.278,3.753,0.827v-0.4h5.344v13.71c0,2.966,1.27,2.966,1.813,2.966,0.39,0,1.587,0,2.543-2.438,0.522-1.359,0.789-2.841,0.789-4.397,0-3.666-1.279-6.715-3.925-9.331-2.603-2.575-5.772-3.881-9.419-3.881-3.71,0-6.776,1.26-9.374,3.85-2.595,2.592-3.858,5.655-3.858,9.36,0,3.712,1.271,6.78,3.876,9.384,2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305h-0.802,0.002zm-0.9-23.58c-1.16,0-2.03,0.509-2.665,1.547-0.594,0.959-0.894,2.133-0.894,3.488,0,4.619,2.029,5.152,3.558,5.152,1.513,0,3.529-0.549,3.529-5.321-0.01-4.36-2.03-4.87-3.54-4.87z" fill="url(#SVGID_3_)"/>
-<path d="M47.74,29.97c0,2.843-0.572,5.306-1.715,7.387-1.39,2.563-3.396,3.846-6.018,3.846-2.552,0-4.395-1.282-5.543-3.846-1.383,1.496-3.175,2.247-5.366,2.247-2.57,0-4.629-0.982-6.188-2.95-1.44-1.818-2.164-4.029-2.164-6.659,0-2.641,0.726-4.844,2.164-6.617,1.539-1.917,3.601-2.871,6.188-2.871,1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.91c0,2.511,0.868,3.767,2.613,3.767,1.424,0,2.519-0.985,3.287-2.947,0.562-1.462,0.847-3.022,0.847-4.691,0-3.859-1.388-7.156-4.164-9.899-2.771-2.744-6.101-4.111-9.982-4.111-3.896,0-7.209,1.36-9.939,4.083-2.726,2.726-4.091,6.03-4.091,9.928,0,3.892,1.366,7.212,4.109,9.95,2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.54-5.216-3.468-3.483-5.203-7.674-5.203-12.56,0-4.87,1.738-9.034,5.214-12.51,3.481-3.467,7.65-5.205,12.53-5.205,4.892,0,9.075,1.728,12.54,5.199,3.48,3.47,5.21,7.65,5.21,12.53zm-14.31-0.14c0-3.78-1.444-5.665-4.33-5.665-1.443,0-2.563,0.64-3.346,1.932-0.68,1.087-1.01,2.386-1.01,3.901,0,3.971,1.449,5.954,4.354,5.954,2.89,0.01,4.34-2.02,4.34-6.11z" fill="#FFFFFF"/>
+<path d="M29.998,48.545c-5.093,0-9.503-1.832-13.104-5.451c-3.609-3.623-5.436-8.038-5.436-13.12 c0-5.058,1.832-9.457,5.446-13.076c3.621-3.612,8.026-5.441,13.093-5.441c5.093,0,9.503,1.827,13.109,5.43 c3.604,3.604,5.436,8.005,5.436,13.087c0,2.963-0.612,5.579-1.812,7.774c-1.537,2.821-3.797,4.262-6.723,4.262 c-2.53,0-4.466-1.123-5.768-3.338c-1.409,1.153-3.133,1.736-5.143,1.736c-2.812,0-5.106-1.098-6.817-3.253 c-1.549-1.952-2.334-4.358-2.334-7.156c0-2.812,0.789-5.208,2.345-7.125c1.679-2.096,3.973-3.162,6.806-3.162 c1.447,0,2.702,0.278,3.753,0.827V20.13h5.344v13.714c0,2.966,1.27,2.966,1.813,2.966c0.39,0,1.587,0,2.543-2.438 c0.522-1.359,0.789-2.841,0.789-4.397c0-3.666-1.279-6.715-3.925-9.331c-2.603-2.575-5.772-3.881-9.419-3.881 c-3.71,0-6.776,1.26-9.374,3.85c-2.595,2.592-3.858,5.655-3.858,9.36c0,3.712,1.271,6.78,3.876,9.384 c2.57,2.581,5.713,3.884,9.355,3.884h0.798v5.305H29.998L29.998,48.545z M29.1,24.964c-1.16,0-2.03,0.509-2.665,1.547 c-0.594,0.959-0.894,2.133-0.894,3.488c0,4.619,2.029,5.152,3.558,5.152c1.513,0,3.529-0.549,3.529-5.321 C32.629,25.467,30.613,24.964,29.1,24.964L29.1,24.964z" fill="url(#SVGID_3_)"/>
+<path d="M47.741,29.974c0,2.843-0.572,5.306-1.715,7.387c-1.39,2.563-3.396,3.846-6.018,3.846 c-2.552,0-4.395-1.282-5.543-3.846c-1.383,1.496-3.175,2.247-5.366,2.247c-2.57,0-4.629-0.982-6.188-2.95 c-1.44-1.818-2.164-4.029-2.164-6.659c0-2.641,0.726-4.844,2.164-6.617c1.539-1.917,3.601-2.871,6.188-2.871 c1.929,0,3.448,0.523,4.554,1.577v-1.156h3.741v12.913c0,2.511,0.868,3.767,2.613,3.767c1.424,0,2.519-0.985,3.287-2.947 c0.562-1.462,0.847-3.022,0.847-4.691c0-3.859-1.388-7.156-4.164-9.899c-2.771-2.744-6.101-4.111-9.982-4.111 c-3.896,0-7.209,1.36-9.939,4.083c-2.726,2.726-4.091,6.03-4.091,9.928c0,3.892,1.366,7.212,4.109,9.95 c2.733,2.745,6.045,4.118,9.922,4.118v3.703c-4.892,0-9.074-1.74-12.538-5.216c-3.468-3.483-5.203-7.674-5.203-12.555 c0-4.87,1.738-9.034,5.214-12.512c3.481-3.467,7.65-5.205,12.527-5.205c4.892,0,9.075,1.728,12.542,5.199 C46.006,20.913,47.741,25.087,47.741,29.974z M33.43,29.832c0-3.78-1.444-5.665-4.33-5.665c-1.443,0-2.563,0.64-3.346,1.932 c-0.68,1.087-1.01,2.386-1.01,3.901c0,3.971,1.449,5.954,4.354,5.954C31.985,35.954,33.43,33.915,33.43,29.832z" fill="#FFFFFF"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
@@ -127,4 +129,4 @@
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_end_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_end_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,39 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-1374" cy="2709" gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.26">
-<stop offset="0" stop-color="#C0A26F"/>
-<stop offset="0.297" stop-color="#C0A26F"/>
-<stop offset="0.6667" stop-color="#954749"/>
-<stop offset="0.7939" stop-color="#BE8A6B"/>
-<stop offset="1" stop-color="#BE8A6B"/>
+<g>
+<radialGradient cx="-1374.2305" cy="2708.6123" gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2612">
+<stop offset="0" style="stop-color:#C0A26F"/>
+<stop offset="0.297" style="stop-color:#C0A26F"/>
+<stop offset="0.6667" style="stop-color:#954749"/>
+<stop offset="0.7939" style="stop-color:#BE8A6B"/>
+<stop offset="1" style="stop-color:#BE8A6B"/>
</radialGradient>
-<path d="M17.88,35.42c0.413-0.078,0.579-0.318,0.603-0.895,0.027-0.721,0.29-3.172,0.431-3.764,0.124-0.521,0.342-0.805,0.941-0.98,0.75-0.22,3.188-1.037,10.14-1.038,6.954,0,9.393,0.807,10.14,1.038,0.651,0.201,0.777,0.389,0.941,0.98,0.162,0.586,0.402,3.043,0.431,3.764,0.024,0.576,0.16,0.82,0.577,0.883,0.731,0.113,13.29,2.238,14.6,2.502,0.794,0.16,1.237,0.045,1.292-0.705,0.231-3.012-2.009-7.641-3.005-9.067-0.887-1.274-1.687-2.667-3.82-3.557-2.028-0.845-12.13-2.548-21.16-2.548-9.026-0.001-19.13,1.704-21.16,2.548-2.133,0.889-2.935,2.282-3.82,3.555-0.995,1.429-3.237,6.055-3.006,9.069,0.058,0.748,0.5,0.863,1.292,0.703,1.334-0.25,13.88-2.34,14.59-2.47z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1384" x2="-1383" y1="2721" y2="2718">
-<stop offset="0" stop-color="#905A46"/>
-<stop offset="1" stop-color="#6B2E36"/>
+<path d="M17.884,35.418c0.413-0.078,0.579-0.318,0.603-0.895c0.027-0.721,0.29-3.172,0.431-3.764 c0.124-0.521,0.342-0.805,0.941-0.98c0.75-0.22,3.188-1.037,10.143-1.038c6.954,0,9.393,0.807,10.141,1.038 c0.651,0.201,0.777,0.389,0.941,0.98c0.162,0.586,0.402,3.043,0.431,3.764c0.024,0.576,0.16,0.82,0.577,0.883 c0.731,0.113,13.291,2.238,14.601,2.502c0.794,0.16,1.237,0.045,1.292-0.705c0.231-3.012-2.009-7.641-3.005-9.067 c-0.887-1.274-1.687-2.667-3.82-3.557c-2.028-0.845-12.133-2.548-21.158-2.548c-9.026-0.001-19.132,1.704-21.159,2.548 c-2.133,0.889-2.935,2.282-3.82,3.555c-0.995,1.429-3.237,6.055-3.006,9.069c0.058,0.748,0.5,0.863,1.292,0.703 C4.62,37.645,17.169,35.549,17.884,35.418z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1383.7373" x2="-1383.3947" y1="2721.2969" y2="2718.4587">
+<stop offset="0" style="stop-color:#905A46"/>
+<stop offset="1" style="stop-color:#6B2E36"/>
</linearGradient>
-<path d="M40.14,29.78c0.65,0.202,0.775,0.39,0.94,0.981,0.162,0.584,0.401,3.043,0.431,3.762,0.024,0.578,0.16,0.82,0.576,0.885,0.046,0.008,0.062,0.01,0.063,0.01,0.244,0.039,0.993,0.164,2.039,0.342-0.026-0.258-0.37-3.525-1.036-4.357-1.21-1.51-3.01-1.61-3.01-1.61z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -3579.3215 1416.3782)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1384" x2="-1383" y1="-3596" y2="-3599">
-<stop offset="0" stop-color="#905A46"/>
-<stop offset="1" stop-color="#6B2E36"/>
+<path d="M40.145,29.779c0.65,0.202,0.775,0.39,0.94,0.981c0.162,0.584,0.401,3.043,0.431,3.762 c0.024,0.578,0.16,0.82,0.576,0.885c0.046,0.008,0.062,0.01,0.063,0.01c0.244,0.039,0.993,0.164,2.039,0.342 c-0.026-0.258-0.37-3.525-1.036-4.357C41.938,29.877,40.145,29.779,40.145,29.779z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -3579.3215 1416.3782)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1383.7422" x2="-1383.3992" y1="-3596.1938" y2="-3599.0347">
+<stop offset="0" style="stop-color:#905A46"/>
+<stop offset="1" style="stop-color:#6B2E36"/>
</linearGradient>
-<path d="M19.84,29.78c-0.654,0.203-0.778,0.39-0.942,0.981-0.163,0.586-0.404,3.045-0.433,3.766-0.021,0.574-0.158,0.818-0.574,0.883-0.047,0.008-0.061,0.01-0.061,0.01-0.245,0.039-0.994,0.164-2.041,0.338,0.028-0.254,0.371-3.523,1.036-4.355,1.2-1.52,3-1.62,3-1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="78.53" x2="43.33" y1="-72.92" y2="-108.1">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M19.841,29.779c-0.654,0.203-0.778,0.39-0.942,0.981c-0.163,0.586-0.404,3.045-0.433,3.766 c-0.021,0.574-0.158,0.818-0.574,0.883c-0.047,0.008-0.061,0.01-0.061,0.01c-0.245,0.039-0.994,0.164-2.041,0.338 c0.028-0.254,0.371-3.523,1.036-4.355C18.043,29.876,19.841,29.779,19.841,29.779z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="78.5283" x2="43.332" y1="-72.9224" y2="-108.1187">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M5.021,28.75c0.887-1.275,1.688-2.668,3.819-3.555,2.029-0.846,12.13-2.55,21.16-2.549,9.027-0.001,19.13,1.703,21.16,2.549,2.131,0.888,2.933,2.28,3.819,3.554,0.912,1.311,2.875,5.32,3.009,8.3,0.146-3.016-2.031-7.511-3.009-8.915-0.888-1.274-1.688-2.666-3.82-3.556-2.028-0.845-12.13-2.548-21.16-2.549-9.027,0.001-19.13,1.706-21.16,2.55-2.133,0.889-2.935,2.282-3.82,3.555-0.979,1.404-3.158,5.899-3.009,8.915,0.135-2.99,2.097-7,3.01-8.31z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="82.89" x2="42.85" y1="-73.09" y2="-113.1">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M5.021,28.75c0.887-1.275,1.688-2.668,3.819-3.555 c2.029-0.846,12.134-2.55,21.16-2.549c9.027-0.001,19.13,1.703,21.161,2.549c2.131,0.888,2.933,2.28,3.819,3.554 c0.912,1.311,2.875,5.32,3.009,8.3c0.146-3.016-2.031-7.511-3.009-8.915c-0.888-1.274-1.688-2.666-3.82-3.556 c-2.028-0.845-12.134-2.548-21.158-2.549c-9.027,0.001-19.133,1.706-21.16,2.55c-2.133,0.889-2.935,2.282-3.82,3.555 c-0.979,1.404-3.158,5.899-3.009,8.915C2.146,34.068,4.108,30.06,5.021,28.75z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="82.8936" x2="42.849" y1="-73.0874" y2="-113.132">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M17.88,35.42c0.413-0.078,0.579-0.318,0.603-0.895,0.027-0.721,0.29-3.172,0.431-3.764,0.124-0.521,0.342-0.805,0.941-0.98,0.75-0.22,3.188-1.037,10.14-1.038,6.954,0,9.393,0.807,10.14,1.038,0.651,0.201,0.777,0.389,0.941,0.98,0.162,0.586,0.402,3.043,0.431,3.764,0.024,0.576,0.16,0.82,0.577,0.883,0.731,0.113,13.29,2.238,14.6,2.502,0.794,0.16,1.237,0.045,1.292-0.705,0.027-0.354,0.018-0.73-0.017-1.119-0.094,0.643-0.526,0.748-1.276,0.594-1.311-0.262-13.87-2.385-14.6-2.5-0.418-0.064-0.553-0.307-0.576-0.883-0.029-0.719-0.27-3.177-0.433-3.765-0.163-0.59-0.287-0.777-0.941-0.979-0.746-0.229-3.188-1.039-10.14-1.037-6.954,0-9.393,0.817-10.14,1.037-0.599,0.176-0.816,0.459-0.94,0.981-0.141,0.59-0.403,3.042-0.433,3.763-0.022,0.576-0.189,0.816-0.603,0.893-0.7,0.15-13.25,2.24-14.56,2.51-0.751,0.15-1.183,0.049-1.275-0.596-0.036,0.389-0.044,0.766-0.018,1.119,0.058,0.748,0.5,0.861,1.292,0.703,1.312-0.26,13.86-2.35,14.57-2.48z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2702.5007 1379.2039)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1353" x2="-1353" y1="2757" y2="2708">
-<stop offset="0" stop-color="#885F4A"/>
-<stop offset="0.5" stop-color="#4F2430"/>
-<stop offset="1" stop-color="#885F4A"/>
+<path d="M17.884,35.418c0.413-0.078,0.579-0.318,0.603-0.895 c0.027-0.721,0.29-3.172,0.431-3.764c0.124-0.521,0.342-0.805,0.941-0.98c0.75-0.22,3.188-1.037,10.143-1.038 c6.954,0,9.393,0.807,10.141,1.038c0.651,0.201,0.777,0.389,0.941,0.98c0.162,0.586,0.402,3.043,0.431,3.764 c0.024,0.576,0.16,0.82,0.577,0.883c0.731,0.113,13.291,2.238,14.601,2.502c0.794,0.16,1.237,0.045,1.292-0.705 c0.027-0.354,0.018-0.73-0.017-1.119c-0.094,0.643-0.526,0.748-1.276,0.594c-1.311-0.262-13.869-2.385-14.6-2.5 c-0.418-0.064-0.553-0.307-0.576-0.883c-0.029-0.719-0.27-3.177-0.433-3.765c-0.163-0.59-0.287-0.777-0.941-0.979 c-0.746-0.229-3.188-1.039-10.14-1.037c-6.954,0-9.393,0.817-10.143,1.037c-0.599,0.176-0.816,0.459-0.94,0.981 c-0.141,0.59-0.403,3.042-0.433,3.763c-0.022,0.576-0.189,0.816-0.603,0.893C17.168,34.32,4.62,36.414,3.309,36.68 c-0.751,0.15-1.183,0.049-1.275-0.596c-0.036,0.389-0.044,0.766-0.018,1.119c0.058,0.748,0.5,0.861,1.292,0.703 C4.62,37.645,17.169,35.549,17.884,35.418z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0 1 1 0 -2702.5007 1379.2039)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1353.1973" x2="-1353.1973" y1="2756.7813" y2="2707.613">
+<stop offset="0" style="stop-color:#885F4A"/>
+<stop offset="0.5" style="stop-color:#4F2430"/>
+<stop offset="1" style="stop-color:#885F4A"/>
</linearGradient>
-<path d="M6.355,27.33c2.275-0.843,14.1-2.529,23.65-2.53,9.552,0,21.37,1.687,23.65,2.53,0.431,0.161,0.804,0.343,1.144,0.531-0.233-0.341-0.472-0.685-0.733-1.024-0.069-0.028-0.127-0.056-0.196-0.082-2.309-0.856-14.24-2.568-23.86-2.568-9.616,0-21.55,1.71-23.86,2.566-0.07,0.028-0.128,0.058-0.198,0.085-0.26,0.339-0.5,0.685-0.733,1.023,0.345-0.19,0.715-0.37,1.146-0.53z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-</svg>
\ No newline at end of file
+<path d="M6.355,27.326c2.275-0.843,14.095-2.529,23.646-2.53 c9.552,0,21.371,1.687,23.646,2.53c0.431,0.161,0.804,0.343,1.144,0.531c-0.233-0.341-0.472-0.685-0.733-1.024 c-0.069-0.028-0.127-0.056-0.196-0.082c-2.309-0.856-14.245-2.568-23.858-2.568c-9.616,0-21.553,1.71-23.862,2.566 c-0.07,0.028-0.128,0.058-0.198,0.085c-0.26,0.339-0.5,0.685-0.733,1.023C5.554,27.667,5.924,27.487,6.355,27.326z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_fail.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_fail.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.908" y2="51.57">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.9082" y2="51.5718">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M30,8.67c-11.78,0-21.33,9.55-21.33,21.33s9.551,21.33,21.33,21.33,21.33-9.55,21.33-21.33c0-11.78-9.55-21.33-21.33-21.33z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.002" y2="57.81">
-<stop offset="0" stop-color="#D9BEA6"/>
-<stop offset="0.7939" stop-color="#5D323C"/>
-<stop offset="1" stop-color="#C8A592"/>
+<path d="M30,8.67C18.217,8.67,8.666,18.218,8.666,30c0,11.783,9.551,21.334,21.334,21.334 S51.334,41.783,51.334,30C51.334,18.218,41.783,8.67,30,8.67z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.002" y2="57.8059">
+<stop offset="0" style="stop-color:#D9BEA6"/>
+<stop offset="0.7939" style="stop-color:#5D323C"/>
+<stop offset="1" style="stop-color:#C8A592"/>
</linearGradient>
-<path d="M30,2.002c-15.46,0-28,12.53-28,28s12.54,28,28,28,28-12.53,28-28-12.54-28-28-28zm0,7.305c3.941,0,7.619,1.127,10.76,3.047l-28.4,28.41c-1.93-3.14-3.055-6.81-3.055-10.76,0-11.41,9.285-20.69,20.7-20.69zm0,41.39c-3.943,0-7.615-1.128-10.76-3.048l28.4-28.41c1.922,3.141,3.051,6.817,3.051,10.76,0.01,11.41-9.28,20.7-20.69,20.7z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="2.752" y2="57.06">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<path d="M30,2.002C14.535,2.002,2,14.534,2,30s12.535,28.002,28,28.002S58,45.466,58,30 S45.465,2.002,30,2.002z M30,9.307c3.941,0,7.619,1.127,10.758,3.047L12.355,40.763C10.43,37.623,9.305,33.948,9.305,30 C9.305,18.591,18.588,9.307,30,9.307z M30,50.697c-3.943,0-7.615-1.128-10.756-3.048l28.4-28.408 c1.922,3.141,3.051,6.817,3.051,10.759C50.695,41.413,41.41,50.697,30,50.697z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="2.752" y2="57.0611">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<path d="M30,57.25c-15.02,0-27.25-12.22-27.25-27.25,0-15.02,12.23-27.25,27.25-27.25s27.25,12.23,27.25,27.25c0,15.03-12.23,27.25-27.25,27.25zm-11.96-9.46l0.813,0.496c3.381,2.066,7.234,3.158,11.15,3.158,11.82,0,21.44-9.621,21.44-21.45,0-3.914-1.094-7.77-3.162-11.15l-0.496-0.812-29.74,29.75zm11.96-39.23c-11.83,0-21.44,9.623-21.44,21.44,0,3.923,1.094,7.781,3.16,11.16l0.498,0.811,29.75-29.75-0.813-0.497c-3.39-2.071-7.24-3.163-11.16-3.163z" fill="url(#SVGID_3_)"/>
+<path d="M30,57.252C14.975,57.252,2.75,45.026,2.75,30C2.75,14.976,14.975,2.752,30,2.752 S57.25,14.976,57.25,30C57.25,45.026,45.025,57.252,30,57.252L30,57.252z M18.039,47.793l0.813,0.496 c3.381,2.066,7.234,3.158,11.148,3.158c11.824,0,21.445-9.621,21.445-21.447c0-3.914-1.094-7.77-3.162-11.15l-0.496-0.812 L18.039,47.793z M30,8.557C18.174,8.557,8.555,18.176,8.555,30c0,3.923,1.094,7.781,3.16,11.155l0.498,0.811l29.748-29.754 l-0.813-0.497C37.771,9.649,33.916,8.557,30,8.557L30,8.557z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_favourites.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_favourites.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<polygon fill="url(#SVGID_1_)" points="30.3,46.86,13.11,56.17,16.17,36.86,2.002,23.39,21.31,20.34,29.75,2.696,38.62,20.12,58,22.69,44.17,36.51,47.72,55.74"/>
-<radialGradient cx="-2195" cy="4635" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="45.79">
-<stop offset="0" stop-color="#D3CA99"/>
-<stop offset="0.1394" stop-color="#D3CA99"/>
-<stop offset="0.5515" stop-color="#B39C4D"/>
-<stop offset="0.7273" stop-color="#AC8A4A"/>
-<stop offset="1" stop-color="#C3B475"/>
+<polygon fill="url(#SVGID_1_)" points="30.299,46.857 13.109,56.171 16.172,36.861 2.002,23.39 21.313,20.336 29.746,2.696 38.617,20.121 58.002,22.689 44.172,36.51 47.719,55.738 "/>
+<radialGradient cx="-2195.2817" cy="4635.3013" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="45.7877">
+<stop offset="0" style="stop-color:#D3CA99"/>
+<stop offset="0.1394" style="stop-color:#D3CA99"/>
+<stop offset="0.5515" style="stop-color:#B39C4D"/>
+<stop offset="0.7273" style="stop-color:#AC8A4A"/>
+<stop offset="1" style="stop-color:#C3B475"/>
</radialGradient>
-<polygon fill="url(#SVGID_2_)" points="17.67,36.35,5.021,24.33,22.26,21.6,29.79,5.86,37.7,21.41,55.01,23.7,42.66,36.04,45.83,53.2,30.28,45.27,14.94,53.59"/>
-<radialGradient cx="-2195" cy="4600" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="16.4">
-<stop offset="0" stop-color="#CDC18B"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_2_)" points="17.67,36.354 5.021,24.329 22.26,21.604 29.787,5.86 37.705,21.411 55.006,23.705 42.662,36.041 45.828,53.201 30.281,45.274 14.936,53.589 "/>
+<radialGradient cx="-2194.7852" cy="4599.8726" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="16.3968">
+<stop offset="0" style="stop-color:#CDC18B"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<polygon fill="url(#SVGID_3_)" points="30.28,43.88,15.18,52.06,14.94,53.59,30.28,45.27,45.83,53.2,45.54,51.66"/>
-<radialGradient cx="-2195" cy="4630" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="63.64">
-<stop offset="0" stop-color="#F0EDDC"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_3_)" points="30.281,43.875 15.18,52.056 14.936,53.589 30.281,45.274 45.828,53.201 45.543,51.656 "/>
+<radialGradient cx="-2194.771" cy="4629.7397" gradientTransform="matrix(0.9721 0 0 -0.9721 2163.7463 4516.3262)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="63.637">
+<stop offset="0" style="stop-color:#F0EDDC"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<polygon fill="url(#SVGID_4_)" points="22.96,23,29.79,8.661,37.01,22.81,53.76,24.94,55.01,23.7,37.7,21.41,29.79,5.86,22.26,21.6,5.021,24.33,6.292,25.54"/>
+<polygon fill="url(#SVGID_4_)" points="22.959,23.005 29.787,8.661 37.006,22.811 53.764,24.945 55.006,23.705 37.705,21.411 29.787,5.86 22.26,21.604 5.021,24.329 6.292,25.537 "/>
<rect fill="none" height="60" width="60"/>
<defs>
-<linearGradient gradientTransform="matrix(0.9999 -0.0125 -0.0125 -0.9999 2215.6172 4551.269)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2129" x2="-2129" y1="4576" y2="4523">
-<stop offset="0" stop-color="#C2B282"/>
-<stop offset="0.3576" stop-color="#C2B282"/>
-<stop offset="0.8909" stop-color="#9B6943"/>
-<stop offset="1" stop-color="#AD8F60"/>
+<linearGradient gradientTransform="matrix(0.9999 -0.0125 -0.0125 -0.9999 2215.6172 4551.269)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2128.8872" x2="-2128.8872" y1="4575.7925" y2="4523.3677">
+<stop offset="0" style="stop-color:#C2B282"/>
+<stop offset="0.3576" style="stop-color:#C2B282"/>
+<stop offset="0.8909" style="stop-color:#9B6943"/>
+<stop offset="1" style="stop-color:#AD8F60"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_filemgr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_filemgr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,90 +1,92 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="3" y2="57.18">
-<stop offset="0" stop-color="#9A9C9C"/>
-<stop offset="0.8182" stop-color="#464648"/>
-<stop offset="1" stop-color="#5F5F61"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.9995" y2="57.1831">
+<stop offset="0" style="stop-color:#9A9C9C"/>
+<stop offset="0.8182" style="stop-color:#464648"/>
+<stop offset="1" style="stop-color:#5F5F61"/>
</linearGradient>
-<path d="M53.58,55.48c0,0.839-0.68,1.521-1.521,1.521h-44.12c-0.84,0-1.521-0.681-1.521-1.521v-50.96c0-0.841,0.682-1.521,1.521-1.521h44.11c0.842,0,1.521,0.681,1.521,1.521v50.96z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3" y2="57.18">
-<stop offset="0" stop-color="#DADEDC"/>
-<stop offset="0.8182" stop-color="#626266"/>
-<stop offset="1" stop-color="#7F8083"/>
+<path d="M53.578,55.479c0,0.839-0.68,1.521-1.521,1.521H7.943c-0.84,0-1.521-0.681-1.521-1.521V4.521 C6.422,3.68,7.104,3,7.943,3h44.113c0.842,0,1.521,0.681,1.521,1.521V55.479z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.9995" y2="57.1831">
+<stop offset="0" style="stop-color:#DADEDC"/>
+<stop offset="0.8182" style="stop-color:#626266"/>
+<stop offset="1" style="stop-color:#7F8083"/>
</linearGradient>
-<path d="M52.06,3h-44.12c-0.839,0-1.521,0.68-1.521,1.521v50.96c0,0.84,0.682,1.52,1.521,1.52h44.11c0.842,0,1.521-0.681,1.521-1.521v-50.96c0-0.841-0.68-1.521-1.52-1.521zm0.76,52.48c0,0.419-0.34,0.76-0.76,0.76h-44.12c-0.42,0-0.76-0.341-0.76-0.76v-50.96c0-0.42,0.34-0.76,0.76-0.76h44.11c0.42,0,0.76,0.34,0.76,0.76v50.96z" fill="url(#SVGID_2_)"/>
-<path d="M49.77,26.58c0,0.839-0.68,1.521-1.52,1.521h-36.5c-0.84,0-1.52-0.682-1.52-1.521v-18.26c0-0.84,0.68-1.521,1.52-1.521h36.51c0.84,0,1.52,0.68,1.52,1.521v18.26z" fill="url(#SVGID_3_)"/>
-<path d="M11.75,28.86c-1.258,0-2.281-1.023-2.281-2.281v-18.26c0-1.258,1.023-2.281,2.281-2.281h36.51c1.258,0,2.281,1.023,2.281,2.281v18.25c0,1.258-1.023,2.281-2.281,2.281h-36.51z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M49.77,26.58c0,0.839-0.68,1.521-1.52,1.521h-36.5c-0.84,0-1.52-0.682-1.52-1.521v-18.26c0-0.84,0.68-1.521,1.52-1.521h36.51c0.84,0,1.52,0.68,1.52,1.521v18.26z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="14.41" y2="22.04">
-<stop offset="0" stop-color="#5B5B5B"/>
-<stop offset="1" stop-color="#B0B0B0"/>
+<path d="M52.057,3H7.943C7.104,3,6.422,3.68,6.422,4.521v50.958C6.422,56.318,7.104,57,7.943,57h44.113 c0.842,0,1.521-0.681,1.521-1.521V4.521C53.578,3.68,52.898,3,52.057,3z M52.816,55.479c0,0.419-0.34,0.76-0.76,0.76H7.943 c-0.42,0-0.76-0.341-0.76-0.76V4.521c0-0.42,0.34-0.76,0.76-0.76h44.113c0.42,0,0.76,0.34,0.76,0.76V55.479z" fill="url(#SVGID_2_)"/>
+<path d="M49.773,26.578c0,0.839-0.68,1.521-1.52,1.521H11.746c-0.84,0-1.52-0.682-1.52-1.521V8.323 c0-0.84,0.68-1.521,1.52-1.521h36.508c0.84,0,1.52,0.68,1.52,1.521V26.578z" fill="url(#SVGID_3_)"/>
+<path d="M11.746,28.859c-1.258,0-2.281-1.023-2.281-2.281V8.323c0-1.258,1.023-2.281,2.281-2.281 h36.508c1.258,0,2.281,1.023,2.281,2.281v18.254c0,1.258-1.023,2.281-2.281,2.281H11.746z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M49.773,26.578c0,0.839-0.68,1.521-1.52,1.521H11.746c-0.84,0-1.52-0.682-1.52-1.521V8.323 c0-0.84,0.68-1.521,1.52-1.521h36.508c0.84,0,1.52,0.68,1.52,1.521V26.578z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="14.4082" y2="22.0395">
+<stop offset="0" style="stop-color:#5B5B5B"/>
+<stop offset="1" style="stop-color:#B0B0B0"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="7.605" width="12.17" x="23.92" y="14.41"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="15.17" y2="21.27">
-<stop offset="0" stop-color="#E8E8E8"/>
-<stop offset="1" stop-color="#828282"/>
+<rect fill="url(#SVGID_5_)" height="7.605" width="12.168" x="23.916" y="14.408"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="15.1685" y2="21.2736">
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="1" style="stop-color:#828282"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="6.084" width="10.65" x="24.68" y="15.17"/>
-<path d="M48.25,6.803h-36.5c-0.84,0-1.52,0.68-1.52,1.521v18.25c0,0.839,0.68,1.521,1.52,1.521h36.51c0.84,0,1.52-0.682,1.52-1.521v-18.26c-0.01-0.84-0.69-1.52-1.53-1.52zm0.76,19.78c0,0.418-0.34,0.761-0.76,0.761h-36.5c-0.42,0-0.76-0.342-0.76-0.761v-18.26c0-0.419,0.34-0.76,0.76-0.76h36.51c0.42,0,0.76,0.34,0.76,0.76v18.26z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="23.92,22.01,36.08,22.01,35.32,21.25,23.92,21.25" stroke-opacity="0.6"/>
-<path d="M10.23,36.46v-15.12c0-1.757,1.346-3.133,3.066-3.133h13.94c2.424,0,2.928,2.088,3.094,2.775l-0.025,0.006c0.133,0.336,0.297,0.863,0.549,1.69,0.023,0.003,0.049,0.005,0.074,0.005l15.7-0.001c1.738,0,3.15,1.404,3.15,3.131v10.65h-39.54z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10.99,35.7v-14.36c0-1.331,1.012-2.373,2.307-2.373h13.94c1.824,0,2.182,1.479,2.354,2.193,0,0,0.408,1.323,0.633,2.06,0.1,0.144,0.43,0.223,0.705,0.223l15.7-0.002c1.318,0,2.391,1.064,2.391,2.371v9.887h-38.02z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="18.2" y2="34.35">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.3273" stop-color="#D3CC9B"/>
-<stop offset="0.6485" stop-color="#B5A366"/>
-<stop offset="1" stop-color="#A18046"/>
+<rect fill="url(#SVGID_6_)" height="6.084" width="10.648" x="24.676" y="15.168"/>
+<path d="M48.254,6.803H11.746c-0.84,0-1.52,0.68-1.52,1.521v18.254c0,0.839,0.68,1.521,1.52,1.521 h36.508c0.84,0,1.52-0.682,1.52-1.521V8.323C49.773,7.483,49.094,6.803,48.254,6.803z M49.014,26.578c0,0.418-0.34,0.761-0.76,0.761 H11.746c-0.42,0-0.76-0.342-0.76-0.761V8.323c0-0.419,0.34-0.76,0.76-0.76h36.508c0.42,0,0.76,0.34,0.76,0.76V26.578z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="23.916,22.014 36.084,22.014 35.324,21.253 23.916,21.253 " stroke-opacity="0.6"/>
+<path d="M10.227,36.464v-15.12c0-1.757,1.346-3.133,3.066-3.133h13.936 c2.424,0,2.928,2.088,3.094,2.775l-0.025,0.006c0.133,0.336,0.297,0.863,0.549,1.69c0.023,0.003,0.049,0.005,0.074,0.005 l15.703-0.001c1.738,0,3.15,1.404,3.15,3.131v10.647H10.227z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.986,35.704v-14.36c0-1.331,1.012-2.373,2.307-2.373h13.936 c1.824,0,2.182,1.479,2.354,2.193c0,0,0.408,1.323,0.633,2.06c0.1,0.144,0.43,0.223,0.705,0.223l15.703-0.002 c1.318,0,2.391,1.064,2.391,2.371v9.887H10.986z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="18.1982" y2="34.3475">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="0.3273" style="stop-color:#D3CC9B"/>
+<stop offset="0.6485" style="stop-color:#B5A366"/>
+<stop offset="1" style="stop-color:#A18046"/>
</linearGradient>
-<path d="M46.62,23.45h-15.63s-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17-0.219-0.919-0.506-1.611-1.613-1.611h-13.94c-0.881,0-1.547,0.722-1.547,1.611v13.6h36.51v-9.126c-0.01-0.89-0.76-1.61-1.64-1.61z" fill="url(#SVGID_7_)"/>
-<path d="M46.62,23.45h-15.63s-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17-0.219-0.919-0.506-1.611-1.613-1.611h-13.94c-0.881,0-1.547,0.722-1.547,1.611v0.761c0-0.89,0.666-1.612,1.547-1.612h13.94c1.107,0,1.395,0.693,1.613,1.612,0,0,0.445,1.44,0.666,2.17,0.35,0.76,1.484,0.692,1.484,0.692h15.63c0.879,0,1.631,0.722,1.631,1.61v-0.761c-0.01-0.89-0.76-1.61-1.64-1.61z" fill="#EFEDDD" fill-opacity="0.8" stroke-opacity="0.8"/>
-<path d="M50.54,52.44c0,0.839-0.682,1.521-1.521,1.521h-38.03c-0.84,0-1.521-0.682-1.521-1.521v-19.02c0-0.84,0.682-1.52,1.521-1.52h38.03c0.84,0,1.521,0.68,1.521,1.52v19.02z" fill="url(#SVGID_8_)"/>
-<path d="M10.99,56.24c-1.678,0-3.043-1.365-3.043-3.042v-19.02c0-1.678,1.365-3.042,3.043-3.042h38.03c1.678,0,3.043,1.364,3.043,3.042v19.01c0,1.677-1.365,3.042-3.043,3.042h-38.03z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10.99,55.48c-1.26,0-2.283-1.023-2.283-2.282v-19.02c0-1.258,1.023-2.281,2.283-2.281h38.03c1.258,0,2.283,1.023,2.283,2.281v19.01c0,1.259-1.025,2.282-2.283,2.282h-38.03z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M50.54,52.44c0,0.839-0.682,1.521-1.521,1.521h-38.03c-0.84,0-1.521-0.682-1.521-1.521v-19.02c0-0.84,0.682-1.52,1.521-1.52h38.03c0.84,0,1.521,0.68,1.521,1.52v19.02z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="40.27" y2="48.66">
-<stop offset="0" stop-color="#5B5B5B"/>
-<stop offset="1" stop-color="#B0B0B0"/>
+<path d="M46.623,23.446H30.992c0,0-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17 c-0.219-0.919-0.506-1.611-1.613-1.611H13.293c-0.881,0-1.547,0.722-1.547,1.611v13.6h36.508v-9.126 C48.254,24.168,47.502,23.446,46.623,23.446z" fill="url(#SVGID_7_)"/>
+<path d="M46.623,23.446H30.992c0,0-1.135,0.069-1.484-0.693c-0.221-0.728-0.666-2.17-0.666-2.17 c-0.219-0.919-0.506-1.611-1.613-1.611H13.293c-0.881,0-1.547,0.722-1.547,1.611v0.761c0-0.89,0.666-1.612,1.547-1.612h13.936 c1.107,0,1.395,0.693,1.613,1.612c0,0,0.445,1.44,0.666,2.17c0.35,0.76,1.484,0.692,1.484,0.692h15.631 c0.879,0,1.631,0.722,1.631,1.61v-0.761C48.254,24.168,47.502,23.446,46.623,23.446z" fill="#EFEDDD" fill-opacity="0.8" stroke-opacity="0.8"/>
+<path d="M50.535,52.436c0,0.839-0.682,1.521-1.521,1.521H10.986c-0.84,0-1.521-0.682-1.521-1.521V33.421 c0-0.84,0.682-1.52,1.521-1.52h38.027c0.84,0,1.521,0.68,1.521,1.52V52.436z" fill="url(#SVGID_8_)"/>
+<path d="M10.986,56.239c-1.678,0-3.043-1.365-3.043-3.042V34.183c0-1.678,1.365-3.042,3.043-3.042 h38.027c1.678,0,3.043,1.364,3.043,3.042v19.014c0,1.677-1.365,3.042-3.043,3.042H10.986z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.986,55.479c-1.26,0-2.283-1.023-2.283-2.282V34.183c0-1.258,1.023-2.281,2.283-2.281 h38.027c1.258,0,2.283,1.023,2.283,2.281v19.014c0,1.259-1.025,2.282-2.283,2.282H10.986z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M50.535,52.436c0,0.839-0.682,1.521-1.521,1.521H10.986c-0.84,0-1.521-0.682-1.521-1.521V33.421 c0-0.84,0.682-1.52,1.521-1.52h38.027c0.84,0,1.521,0.68,1.521,1.52V52.436z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="30" x2="30" y1="40.2671" y2="48.6622">
+<stop offset="0" style="stop-color:#5B5B5B"/>
+<stop offset="1" style="stop-color:#B0B0B0"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="8.367" width="13.69" x="23.15" y="40.27"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="41.03" y2="47.9">
-<stop offset="0" stop-color="#E8E8E8"/>
-<stop offset="1" stop-color="#828282"/>
+<rect fill="url(#SVGID_10_)" height="8.367" width="13.691" x="23.154" y="40.267"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="41.0278" y2="47.8963">
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="1" style="stop-color:#828282"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="6.845" width="12.17" x="23.92" y="41.03"/>
-<path d="M49.01,31.9h-38.02c-0.84,0-1.521,0.68-1.521,1.52v19.02c0,0.839,0.682,1.521,1.521,1.521h38.03c0.84,0,1.521-0.682,1.521-1.521v-19.02c0-0.841-0.69-1.521-1.53-1.521zm0.76,20.54c0,0.419-0.34,0.761-0.76,0.761h-38.02c-0.42,0-0.76-0.341-0.76-0.761v-19.02c0-0.419,0.34-0.759,0.76-0.759h38.03c0.42,0,0.76,0.34,0.76,0.759v19.02z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<polygon fill="#FFFFFF" points="20.81,31.9,22.64,37.23,37.36,37.23,39.18,31.9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="31.9" y2="36.48">
-<stop offset="0" stop-color="#9A9C9C"/>
-<stop offset="0.8182" stop-color="#464648"/>
-<stop offset="1" stop-color="#5F5F61"/>
+<rect fill="url(#SVGID_11_)" height="6.845" width="12.168" x="23.916" y="41.028"/>
+<path d="M49.014,31.901H10.986c-0.84,0-1.521,0.68-1.521,1.52v19.015c0,0.839,0.682,1.521,1.521,1.521 h38.027c0.84,0,1.521-0.682,1.521-1.521V33.421C50.535,32.581,49.854,31.901,49.014,31.901z M49.773,52.436 c0,0.419-0.34,0.761-0.76,0.761H10.986c-0.42,0-0.76-0.341-0.76-0.761V33.421c0-0.419,0.34-0.759,0.76-0.759h38.027 c0.42,0,0.76,0.34,0.76,0.759V52.436z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" points="20.814,31.901 22.639,37.226 37.359,37.226 39.184,31.901 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="31.9014" y2="36.4799">
+<stop offset="0" style="stop-color:#9A9C9C"/>
+<stop offset="0.8182" style="stop-color:#464648"/>
+<stop offset="1" style="stop-color:#5F5F61"/>
</linearGradient>
-<polygon fill="url(#SVGID_12_)" points="36.85,36.46,23.15,36.46,21.64,31.9,38.36,31.9"/>
-<polygon fill="#FFFFFF" points="21.58,6.803,23.4,11.37,36.6,11.37,38.42,6.803"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30" x2="30" y1="6.803" y2="10.62">
-<stop offset="0" stop-color="#9A9C9C"/>
-<stop offset="0.8182" stop-color="#464648"/>
-<stop offset="1" stop-color="#5F5F61"/>
+<polygon fill="url(#SVGID_12_)" points="36.846,36.464 23.154,36.464 21.635,31.901 38.365,31.901 "/>
+<polygon fill="#FFFFFF" points="21.576,6.803 23.4,11.366 36.6,11.366 38.424,6.803 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30" x2="30" y1="6.8027" y2="10.6184">
+<stop offset="0" style="stop-color:#9A9C9C"/>
+<stop offset="0.8182" style="stop-color:#464648"/>
+<stop offset="1" style="stop-color:#5F5F61"/>
</linearGradient>
-<polygon fill="url(#SVGID_13_)" points="36.08,10.6,23.92,10.6,22.4,6.803,37.6,6.803"/>
-<rect fill="#020202" fill-opacity="0.2" height="1.522" stroke-opacity="0.2" width="36.51" x="11.75" y="30.38"/>
-<rect fill="#020202" fill-opacity="0.1" height="0.76" stroke-opacity="0.1" width="36.51" x="11.75" y="29.62"/>
-<rect fill="#020202" fill-opacity="0.05" height="0.761" stroke-opacity="0.05" width="36.51" x="11.75" y="28.86"/>
-<polygon fill="#FFFFFF" fill-opacity="0.8" points="36.85,48.63,23.15,48.63,23.92,47.87,36.08,47.87" stroke-opacity="0.8"/>
+<polygon fill="url(#SVGID_13_)" points="36.084,10.605 23.916,10.605 22.395,6.803 37.605,6.803 "/>
+<rect fill="#020202" fill-opacity="0.2" height="1.522" stroke-opacity="0.2" width="36.508" x="11.746" y="30.379"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.76" stroke-opacity="0.1" width="36.508" x="11.746" y="29.62"/>
+<rect fill="#020202" fill-opacity="0.05" height="0.761" stroke-opacity="0.05" width="36.508" x="11.746" y="28.859"/>
+<polygon fill="#FFFFFF" fill-opacity="0.8" points="36.846,48.634 23.154,48.634 23.916,47.873 36.084,47.873 " stroke-opacity="0.8"/>
<rect fill="none" height="60" width="60"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.803" y2="28.17">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.7879" stop-color="#A6A6A6"/>
-<stop offset="1" stop-color="#B1B1B1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.8027" y2="28.1705">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.7879" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
</defs>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="31.9" y2="54.03">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.7879" stop-color="#A6A6A6"/>
-<stop offset="1" stop-color="#B1B1B1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="31.9014" y2="54.0325">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.7879" style="stop-color:#A6A6A6"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_folder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_folder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="4093" y2="4081">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="0.6182" stop-color="#673F3A"/>
-<stop offset="1" stop-color="#4E2224"/>
+<g>
+<rect fill="none" height="59.999" width="60"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2163.8232" x2="-2163.8232" y1="4093.1855" y2="4081.4014">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="0.6182" style="stop-color:#673F3A"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v14.44h49.81v-9.968c0-0.86-0.61-1.49-1.43-1.49z" fill="url(#SVGID_1_)"/>
-<path d="M53.65,12.36h-22.84c-0.463,0-1.002-0.202-1.332-1.01-0.207-0.705-0.764-2.297-0.764-2.297-0.211-0.652-0.494-1.234-1.436-1.234h-20.58c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.58c0.941,0,1.225,0.584,1.436,1.236,0,0,0.557,1.591,0.764,2.296,0.33,0.806,0.869,1.011,1.332,1.011h22.84c0.826,0,1.439,0.628,1.439,1.489v-0.728c0-0.86-0.61-1.49-1.43-1.49z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="8.728" width="46.91" x="6.73" y="15.82"/>
-<rect fill="#F2F2F2" height="7.271" width="45.45" x="7.457" y="16.54"/>
-<polygon fill="#222021" fill-opacity="0.4" points="55.08,22.36,5.27,22.36,5.27,21.64,55.08,21.64" stroke-opacity="0.4"/>
-<polygon fill="#222021" fill-opacity="0.15" points="55.08,21.64,5.27,21.64,5.27,20.91,55.08,20.91" stroke-opacity="0.15"/>
-<polygon fill="#222021" fill-opacity="0.05" points="55.08,20.91,5.27,20.91,5.27,20.18,55.08,20.18" stroke-opacity="0.05"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4049" y2="4079">
-<stop offset="0" stop-color="#8C673C"/>
-<stop offset="0.0303" stop-color="#8C673C"/>
-<stop offset="0.0364" stop-color="#E4E0C1"/>
-<stop offset="0.3273" stop-color="#D3CC9B"/>
-<stop offset="0.6727" stop-color="#B5A366"/>
-<stop offset="1" stop-color="#A18046"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0c-0.463,0-1.002-0.202-1.332-1.01 c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697c-0.824,0-1.428,0.7-1.428,1.562v14.438h49.814 v-9.968C55.084,12.989,54.473,12.358,53.646,12.358z" fill="url(#SVGID_1_)"/>
+<path d="M53.646,12.358c0,0-22.377,0-22.842,0 c-0.463,0-1.002-0.202-1.332-1.01c-0.207-0.705-0.764-2.297-0.764-2.297c-0.211-0.652-0.494-1.234-1.436-1.234H6.697 c-0.824,0-1.428,0.7-1.428,1.562v0.727c0-0.861,0.604-1.562,1.428-1.562h20.576c0.941,0,1.225,0.584,1.436,1.236 c0,0,0.557,1.591,0.764,2.296c0.33,0.806,0.869,1.011,1.332,1.011c0.465,0,22.842,0,22.842,0c0.826,0,1.439,0.628,1.439,1.489 v-0.728C55.084,12.989,54.473,12.358,53.646,12.358z" fill="#FCFAF8" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect height="8.728" width="46.906" x="6.73" y="15.817"/>
+<rect fill="#F2F2F2" height="7.271" width="45.451" x="7.457" y="16.545"/>
+<polygon fill="#222021" fill-opacity="0.4" points="55.084,22.362 5.27,22.362 5.27,21.636 55.084,21.636 " stroke-opacity="0.4"/>
+<polygon fill="#222021" fill-opacity="0.15" points="55.084,21.636 5.27,21.636 5.27,20.908 55.084,20.908 " stroke-opacity="0.15"/>
+<polygon fill="#222021" fill-opacity="0.05" points="55.084,20.908 5.27,20.908 5.27,20.182 55.084,20.182 " stroke-opacity="0.05"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="4048.7861" y2="4078.6064">
+<stop offset="0" style="stop-color:#8C673C"/>
+<stop offset="0.0303" style="stop-color:#8C673C"/>
+<stop offset="0.0364" style="stop-color:#E4E0C1"/>
+<stop offset="0.3273" style="stop-color:#D3CC9B"/>
+<stop offset="0.6727" style="stop-color:#B5A366"/>
+<stop offset="1" style="stop-color:#A18046"/>
</linearGradient>
-<path d="M56.27,22.36h-52.54c-1.536,0-1.727,1.7-1.727,1.7l2.549,25.93c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l2.55-25.93s-0.19-1.7-1.73-1.7z" fill="url(#SVGID_2_)"/>
-<path d="M3.727,23.09h52.55c1.178,0,1.563,0.995,1.68,1.464l0.05-0.49s-0.191-1.703-1.727-1.703h-52.54c-1.536,0-1.727,1.7-1.727,1.7l0.047,0.489c0.117-0.46,0.502-1.46,1.68-1.46z" fill="#EFEDDD"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="4049" y2="4053">
-<stop offset="0" stop-color="#CDC18D"/>
-<stop offset="1" stop-color="#BA9D5D"/>
+<path d="M56.273,22.362H3.727C2.191,22.362,2,24.065,2,24.065l2.549,25.934 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184L58,24.065 C58,24.065,57.809,22.362,56.273,22.362z" fill="url(#SVGID_2_)"/>
+<path d="M3.727,23.091h52.547c1.178,0,1.563,0.995,1.68,1.464L58,24.065c0,0-0.191-1.703-1.727-1.703H3.727 C2.191,22.362,2,24.065,2,24.065l0.047,0.489C2.164,24.086,2.549,23.091,3.727,23.091z" fill="#EFEDDD"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 4100.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0166" x2="-2164.0166" y1="4048.7861" y2="4053.1504">
+<stop offset="0" style="stop-color:#CDC18D"/>
+<stop offset="1" style="stop-color:#BA9D5D"/>
</linearGradient>
-<path d="M4.334,47.82l0.215,2.181c0.307,2.028,1.822,2.184,2.182,2.184h46.54c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181h-51.3z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<path d="M4.334,47.818l0.215,2.181 c0.307,2.028,1.822,2.184,2.182,2.184c0.072,0,46.465,0,46.539,0c0.357,0,1.875-0.155,2.18-2.184l0.184-2.181H4.334z" fill="url(#SVGID_3_)" fill-opacity="0.25" stroke-opacity="0.25"/>
+<rect fill="none" height="59.999" width="60"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friend.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friend.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,74 +1,76 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M6.917,52.78v-1.5c0-4.818,2.172-8.519,6.283-10.7,1.059-0.564,3.787-1.602,6.194-2.518,0.87-0.33,1.66-0.631,2.299-0.881l0.986-0.43c0.268-0.776,0.156-2.01-0.009-2.316l-0.609-0.99,0.006-0.005c-0.477-0.811-0.928-1.653-1.347-2.516-1.481-0.104-2.916-1.358-3.614-3.185-0.731-1.911-0.45-3.901,0.643-4.98-0.984-4.118-0.784-7.288,0.595-9.426,0.821-1.273,2.087-2.172,3.585-2.55,1.423-1.708,3.591-3.575,7.675-3.575,4.679,0.156,8.319,1.761,10.55,4.641,2.173,2.806,2.864,6.706,1.954,11,1.044,1.116,1.256,3.072,0.488,4.962-0.677,1.671-1.935,2.824-3.292,3.062-0.272,0.561-0.566,1.127-0.875,1.689-0.381,0.694-0.74,1.304-1.099,1.863-0.177,0.303-0.299,1.717,0.037,2.46l1.25,0.499,1.473,0.547c2.69,0.999,5.678,2.108,6.696,2.639,1.05,0.547,6.29,3.635,6.289,10.71v1.5h-46.15z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M7.667,52.03v-0.75c0-4.523,2.035-7.994,5.884-10.04,1.021-0.544,3.739-1.577,6.136-2.489,0.844-0.32,1.638-0.622,2.279-0.873l1.283-0.559c0.522-1,0.371-2.794,0.048-3.299l-0.151-0.245-0.104-0.169s-1.311-2.285-1.853-3.443c-0.088,0.012-0.178,0.017-0.268,0.017-1.243,0-2.495-1.089-3.115-2.71-0.702-1.834-0.35-3.688,0.783-4.433-1.058-4.136-0.93-7.262,0.384-9.298,0.764-1.185,1.954-1.988,3.373-2.283,1.427-1.767,3.432-3.499,7.257-3.499,4.433,0.148,7.868,1.652,9.958,4.351,2.067,2.669,2.696,6.425,1.771,10.58,0,0-0.016,0.081-0.049,0.229,1.057,0.794,1.344,2.627,0.617,4.417-0.635,1.568-1.874,2.625-3.092,2.64-0.316,0.673-0.664,1.354-1.037,2.032-0.373,0.68-0.724,1.274-1.073,1.82-0.352,0.6-0.471,2.557,0.146,3.464l1.495,0.596,1.488,0.554c2.507,0.931,5.627,2.088,6.611,2.601s5.887,3.408,5.886,10.04v0.75h-44.68z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<g>
+<path d="M6.917,52.783v-1.5c0-4.818,2.172-8.519,6.283-10.699 c1.059-0.564,3.787-1.602,6.194-2.518c0.87-0.33,1.66-0.631,2.299-0.881l0.986-0.43c0.268-0.776,0.156-2.01-0.009-2.316l-0.609-0.99 l0.006-0.005c-0.477-0.811-0.928-1.653-1.347-2.516c-1.481-0.104-2.916-1.358-3.614-3.185c-0.731-1.911-0.45-3.901,0.643-4.98 c-0.984-4.118-0.784-7.288,0.595-9.426c0.821-1.273,2.087-2.172,3.585-2.55c1.423-1.708,3.591-3.575,7.675-3.575 c4.679,0.156,8.319,1.761,10.55,4.641c2.173,2.806,2.864,6.706,1.954,11.001c1.044,1.116,1.256,3.072,0.488,4.962 c-0.677,1.671-1.935,2.824-3.292,3.062c-0.272,0.561-0.566,1.127-0.875,1.689c-0.381,0.694-0.74,1.304-1.099,1.863 c-0.177,0.303-0.299,1.717,0.037,2.46l1.25,0.499l1.473,0.547c2.69,0.999,5.678,2.108,6.696,2.639 c1.05,0.547,6.29,3.635,6.289,10.707v1.5H6.917z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M7.667,52.033v-0.75c0-4.523,2.035-7.994,5.884-10.037 c1.021-0.544,3.739-1.577,6.136-2.489c0.844-0.32,1.638-0.622,2.279-0.873l1.283-0.559c0.522-1,0.371-2.794,0.048-3.299 l-0.151-0.245l-0.104-0.169c0,0-1.311-2.285-1.853-3.443c-0.088,0.012-0.178,0.017-0.268,0.017c-1.243,0-2.495-1.089-3.115-2.71 c-0.702-1.834-0.35-3.688,0.783-4.433c-1.058-4.136-0.93-7.262,0.384-9.298c0.764-1.185,1.954-1.988,3.373-2.283 c1.427-1.767,3.432-3.499,7.257-3.499c4.433,0.148,7.868,1.652,9.958,4.351c2.067,2.669,2.696,6.425,1.771,10.577 c0,0-0.016,0.081-0.049,0.229c1.057,0.794,1.344,2.627,0.617,4.417c-0.635,1.568-1.874,2.625-3.092,2.64 c-0.316,0.673-0.664,1.354-1.037,2.032c-0.373,0.68-0.724,1.274-1.073,1.82c-0.352,0.6-0.471,2.557,0.146,3.464l1.495,0.596 l1.488,0.554c2.507,0.931,5.627,2.088,6.611,2.601s5.887,3.408,5.886,10.042v0.75H7.667z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
<rect fill="none" height="60" width="60"/>
-<path d="M34.99,27.07c0.014-0.011,0.029-0.026,0.041-0.038,0.002,0.009,0.005,0.016,0.008,0.026-0.02,0-0.03,0.01-0.05,0.01zm3.53-4.41c-0.018-0.003-0.041-0.014-0.061-0.015,0.02,0.01,0.04,0.02,0.06,0.02z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<radialGradient cx="297.8" cy="-375.7" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.23">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.96" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M34.994,27.07c0.014-0.011,0.029-0.026,0.041-0.038 c0.002,0.009,0.005,0.016,0.008,0.026C35.025,27.061,35.012,27.068,34.994,27.07z M38.518,22.661L38.518,22.661 c-0.018-0.003-0.041-0.014-0.061-0.015C38.477,22.646,38.499,22.657,38.518,22.661z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<radialGradient cx="297.79" cy="-375.7397" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.2293">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.96" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M36.91,38.52c-1.525-0.664-1.477-3.914-0.848-4.897,0.108-0.171,0.209-0.345,0.314-0.515h-12.76c0.105,0.17,0.204,0.344,0.314,0.515,0.63,0.983,0.679,4.233-0.848,4.897-1.527,0.662,7.098,6.437,7.098,6.437s8.26-5.78,6.73-6.44z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.5" x2="297.5" y1="-367.9" y2="-381.3">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.39" stop-color="#5F8BA1"/>
-<stop offset="0.89" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M36.914,38.52c-1.525-0.664-1.477-3.914-0.848-4.897c0.108-0.171,0.209-0.345,0.314-0.515H23.614 c0.105,0.17,0.204,0.344,0.314,0.515c0.63,0.983,0.679,4.233-0.848,4.897c-1.527,0.662,7.098,6.437,7.098,6.437 S38.441,39.182,36.914,38.52z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4756" x2="297.4756" y1="-367.9355" y2="-381.3027">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.39" style="stop-color:#5F8BA1"/>
+<stop offset="0.89" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M46.09,41.91c-1.605-0.834-9.564-3.621-9.715-3.795l-6.08,5.04-6.531-5.247c-0.18,0.27-8.046,3.023-9.866,3.992-2.083,1.105-5.486,3.646-5.486,9.375h43.16c0.01-5.72-3.87-8.54-5.48-9.37z" fill="url(#SVGID_2_)"/>
-<polygon fill="#020202" fill-opacity="0.3" points="22.28,38.56,30.3,44.96,37.83,38.7,36.38,38.11,30.3,43.16,23.77,37.92" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.572" x2="22.66" y1="45.08" y2="45.08">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M46.094,41.906c-1.605-0.834-9.564-3.621-9.715-3.795L30.3,43.163l-6.531-5.247 c-0.18,0.27-8.046,3.023-9.866,3.992c-2.083,1.105-5.486,3.646-5.486,9.375h43.158C51.576,45.555,47.695,42.742,46.094,41.906z" fill="url(#SVGID_2_)"/>
+<polygon fill="#020202" fill-opacity="0.3" points="22.282,38.564 30.3,44.955 37.832,38.695 36.379,38.111 30.3,43.163 23.77,37.916 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.5718" x2="22.6592" y1="45.0781" y2="45.0781">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M22.66,39.58s-11.44,2.987-11.44,11c0,0-1.635,0.001-1.647,0-0.001-4.93,3.847-8.76,13.09-11z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="37.19" x2="50.27" y1="44.89" y2="44.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M22.659,39.577c0,0-11.44,2.987-11.44,11.002c0,0-1.635,0.001-1.647,0 C9.572,45.65,13.418,41.818,22.659,39.577z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="37.1855" x2="50.2734" y1="44.8936" y2="44.8936">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M37.19,39.39s11.44,2.986,11.44,11h1.646c-0.01-4.93-3.85-8.76-13.09-11z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5" x2="297.5" y1="-375.6" y2="-368.2">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M37.186,39.393c0,0,11.441,2.986,11.441,11.002c0,0,1.637,0,1.646,0 C50.273,45.465,46.428,41.633,37.186,39.393z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5371" x2="297.5371" y1="-375.5508" y2="-368.1697">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="30.3,44.96,22.28,38.56,21.82,38.77,30.3,45.53,38.3,38.88,37.83,38.69"/>
-<radialGradient cx="298.6" cy="-345.8" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.78">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.51" stop-color="#E8D9CA"/>
-<stop offset="0.76" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_5_)" points="30.3,44.955 22.281,38.564 21.815,38.77 30.3,45.531 38.3,38.879 37.834,38.691 "/>
+<radialGradient cx="298.5801" cy="-345.8398" gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="21.7801">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.51" style="stop-color:#E8D9CA"/>
+<stop offset="0.76" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M40.58,23.57c-0.055-0.026-0.113-0.03-0.17-0.046v-0.002c-0.012-0.002-0.021-0.004-0.033-0.007-0.084-0.021-0.168-0.041-0.256-0.045-10.66-1.854-15.55-7.759-15.92-6.195-0.294,1.244-3.281,3.935-4.847,5.276,0.013,0.06,0.02,0.114,0.034,0.174,0,0,0.056,0.275,0.174,0.744-0.125,0.013-0.246,0.039-0.365,0.089-0.995,0.42-1.308,2.053-0.698,3.647s1.913,2.548,2.909,2.13c0.061-0.027,0.113-0.071,0.169-0.107,0.579,1.301,1.289,2.697,2.159,4.094,1.458,1.731,3.691,3.766,6.157,3.766,2.983,0,4.808-1.633,6.063-3.278,0.031-0.068,0.063-0.133,0.103-0.189,0.931-1.453,1.684-2.911,2.293-4.268,0.975,0.337,2.226-0.569,2.846-2.102,0.67-1.56,0.39-3.21-0.6-3.66z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="293.6" x2="302.8" y1="-368.1" y2="-359">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M40.584,23.573c-0.055-0.026-0.113-0.03-0.17-0.046c0-0.001,0-0.002,0-0.002 c-0.012-0.002-0.021-0.004-0.033-0.007c-0.084-0.021-0.168-0.041-0.256-0.045c-10.658-1.854-15.548-7.759-15.916-6.195 c-0.294,1.244-3.281,3.935-4.847,5.276c0.013,0.06,0.02,0.114,0.034,0.174c0,0,0.056,0.275,0.174,0.744 c-0.125,0.013-0.246,0.039-0.365,0.089c-0.995,0.42-1.308,2.053-0.698,3.647c0.61,1.594,1.913,2.548,2.909,2.13 c0.061-0.027,0.113-0.071,0.169-0.107c0.579,1.301,1.289,2.697,2.159,4.094c1.458,1.731,3.691,3.766,6.157,3.766 c2.983,0,4.808-1.633,6.063-3.278c0.031-0.068,0.063-0.133,0.103-0.189c0.931-1.453,1.684-2.911,2.293-4.268 c0.975,0.337,2.226-0.569,2.846-2.102C41.85,25.666,41.57,24.017,40.584,23.573z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="293.6279" x2="302.8386" y1="-368.1089" y2="-358.9682">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M29.46,36.25c-1.816,0-3.646-0.846-4.993-2.121,1.425,1.498,3.343,2.957,5.432,2.957,2.982,0,4.809-1.633,6.064-3.279,0.031-0.067,0.063-0.133,0.101-0.188,0.932-1.453,1.684-2.911,2.295-4.268-3.39,5.93-5.91,6.9-8.9,6.9z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.3" x2="297.3" y1="-338.9" y2="-352.5">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.38" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.463,36.254c-1.816,0-3.646-0.846-4.993-2.121c1.425,1.498,3.343,2.957,5.432,2.957 c2.982,0,4.809-1.633,6.064-3.279c0.031-0.067,0.063-0.133,0.101-0.188c0.932-1.453,1.684-2.911,2.295-4.268 C34.967,35.283,32.447,36.254,29.463,36.254z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.2969" x2="297.2969" y1="-338.9307" y2="-352.4902">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.38" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M29.6,8.713c-3.695,0-5.473,1.68-6.845,3.436-2.23,0.345-5.768,2.39-3.27,11.35,1.565-1.341,4.427-4.978,4.722-6.222,0.371-1.577,5.343,4.451,16.2,6.248,0.127-0.501,0.185-0.797,0.185-0.797,1.7-7.65-2.01-13.72-11-14.02z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="301.9" x2="289.7" y1="-351.9" y2="-344.6">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.36" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.603,8.713c-3.695,0-5.473,1.68-6.845,3.436c-2.23,0.345-5.768,2.39-3.27,11.35 c1.565-1.341,4.427-4.978,4.722-6.222c0.371-1.577,5.343,4.451,16.205,6.248c0.127-0.501,0.185-0.797,0.185-0.797 C42.305,15.077,38.594,9.014,29.603,8.713z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="301.9326" x2="289.6528" y1="-351.9048" y2="-344.6049">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.36" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M24.22,16.54s5.316,6.983,16.12,6.971c0,0-5.09-0.79-16.12-6.97z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5" x2="288.6" y1="-343.2" y2="-351">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.38" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M24.221,16.543c0,0,5.316,6.983,16.117,6.971C40.338,23.514,35.251,22.716,24.221,16.543z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="288.5391" x2="288.6491" y1="-343.1895" y2="-350.9899">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.38" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M22.94,12.67s-5.204,0.312-3.273,9.132c0,0-0.64-6.04,3.27-9.13z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="299" x2="298.6" y1="-340.1" y2="-343.6">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M22.943,12.668c0,0-5.204,0.312-3.273,9.132C19.67,21.8,19.034,15.76,22.943,12.668z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="299.0225" x2="298.6326" y1="-340.0913" y2="-343.6304">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M32.13,13.89c-2.423-0.346-6.521-2.493-8.129-1.726,0,0,5.26-6,14.54,0.831,0,0.01-2.21,1.5-6.41,0.9z" fill="url(#SVGID_11_)"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<path d="M32.126,13.891c-2.423-0.346-6.521-2.493-8.129-1.726c0,0,5.26-6,14.538,0.831 C38.535,12.997,36.326,14.489,32.126,13.891z" fill="url(#SVGID_11_)"/>
+<rect fill="none" height="59.996" width="59.996"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friends.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_friends.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,202 +1,204 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-70.49" cy="-5.022" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="12.78">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<radialGradient cx="-70.4854" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="12.778">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M48.2,37.92c-1.123-0.489-1.088-2.883-0.625-3.606,0.08-0.126,0.152-0.253,0.23-0.381h-9.4c0.076,0.128,0.148,0.255,0.23,0.381,0.465,0.724,0.5,3.117-0.623,3.606-1.125,0.487,5.227,4.738,5.227,4.738s6.08-4.26,4.95-4.74z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.11" x2="43.11" y1="37.47" y2="47.31">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M48.205,37.917c-1.123-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.152-0.253,0.23-0.381h-9.4 c0.076,0.128,0.148,0.255,0.23,0.381c0.465,0.724,0.5,3.117-0.623,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S49.328,38.404,48.205,37.917z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.1104" x2="43.1104" y1="37.4727" y2="47.3145">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M54.96,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722-4.811-3.864c-0.133,0.198-5.924,2.227-7.264,2.938-1.535,0.815-4.039,2.687-4.039,6.904h31.78c0-4.22-2.86-6.3-4.04-6.91z" fill="url(#SVGID_2_)"/>
-<polygon fill="#020202" fill-opacity="0.3" points="37.43,37.95,43.33,42.66,48.88,38.05,47.81,37.62,43.33,41.34,38.52,37.47" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="28.07" x2="37.71" y1="42.75" y2="42.75">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M54.961,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.924,2.227-7.264,2.938c-1.535,0.815-4.039,2.687-4.039,6.904H59C59,43.097,56.145,41.025,54.961,40.41z" fill="url(#SVGID_2_)"/>
+<polygon fill="#020202" fill-opacity="0.3" points="37.43,37.952 43.334,42.655 48.879,38.047 47.811,37.615 43.334,41.337 38.523,37.473 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="28.0684" x2="37.707" y1="42.7466" y2="42.7466">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M37.71,38.7s-8.424,2.199-8.424,8.1c0,0-1.205,0.002-1.215,0-0.01-3.63,2.82-6.45,9.63-8.1z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4" x2="58.04" y1="42.61" y2="42.61">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M37.707,38.696c0,0-8.424,2.199-8.424,8.1c0,0-1.205,0.002-1.215,0 C28.068,43.167,30.902,40.347,37.707,38.696z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4043" x2="58.041" y1="42.6099" y2="42.6099">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M48.4,38.56s8.424,2.199,8.424,8.101h1.213c0.01-3.63-2.82-6.45-9.63-8.1z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="43.16" x2="43.16" y1="43.08" y2="37.64">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M48.404,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.203,0,1.213,0 C58.041,43.029,55.209,40.211,48.404,38.56z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="43.1553" x2="43.1553" y1="43.0781" y2="37.6438">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="43.33,42.66,37.43,37.95,37.09,38.1,43.33,43.08,49.22,38.18,48.88,38.04"/>
-<radialGradient cx="-69.86" cy="-28.65" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="17.15">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_5_)" points="43.334,42.655 37.428,37.952 37.086,38.1 43.334,43.078 49.225,38.182 48.881,38.042 "/>
+<radialGradient cx="-69.8633" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="17.154">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M50.91,26.91c-0.039-0.017-0.084-0.02-0.125-0.033v-0.002c-0.008-0.002-0.014-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.186-0.034-7.85-1.364-11.45-5.712-11.72-4.563-0.217,0.918-2.416,2.9-3.568,3.886,0.008,0.047,0.016,0.086,0.023,0.129,0,0,0.043,0.203,0.129,0.548-0.092,0.01-0.182,0.029-0.268,0.066-0.732,0.308-0.963,1.511-0.514,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.047-0.019,0.084-0.051,0.123-0.078,0.428,0.957,0.951,1.985,1.594,3.013,1.074,1.279,2.717,2.775,4.531,2.775,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.047-0.101,0.074-0.141,0.684-1.071,1.24-2.146,1.689-3.144,0.717,0.248,1.637-0.419,2.094-1.547,0.49-1.21,0.28-2.42-0.44-2.75z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.28" x2="47.06" y1="37.6" y2="30.87">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M50.906,26.909c-0.039-0.017-0.084-0.02-0.125-0.033v-0.002c-0.008-0.002-0.014-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.186-0.034c-7.85-1.364-11.451-5.712-11.723-4.563c-0.217,0.918-2.416,2.9-3.568,3.886 c0.008,0.047,0.016,0.086,0.023,0.129c0,0,0.043,0.203,0.129,0.548c-0.092,0.01-0.182,0.029-0.268,0.066 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.594,3.013c1.074,1.279,2.717,2.775,4.531,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144c0.717,0.248,1.637-0.419,2.094-1.547 C51.838,28.452,51.633,27.236,50.906,26.909z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.2764" x2="47.0569" y1="37.6001" y2="30.8725">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M42.72,36.25c-1.34,0-2.686-0.624-3.68-1.562,1.051,1.103,2.463,2.177,4,2.177,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.047-0.101,0.074-0.141,0.684-1.071,1.24-2.146,1.689-3.144-2.5,4.35-4.36,5.07-6.55,5.07z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="42.98" x2="42.98" y1="16.11" y2="26.1">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M42.719,36.249c-1.34,0-2.686-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144 C46.77,35.533,44.914,36.249,42.719,36.249z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="42.9766" x2="42.9766" y1="16.1133" y2="26.0988">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M42.82,15.97c-2.721,0-4.029,1.238-5.039,2.53-1.645,0.254-4.246,1.762-2.408,8.359,1.152-0.988,3.26-3.666,3.477-4.584,0.273-1.16,3.936,3.278,11.93,4.602,0.094-0.368,0.137-0.587,0.137-0.587,1.25-5.64-1.48-10.1-8.1-10.32z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="46.39" x2="37.34" y1="25.67" y2="20.3">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M42.818,15.967c-2.721,0-4.029,1.238-5.039,2.53c-1.645,0.254-4.246,1.762-2.408,8.359 c1.152-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.094-0.368,0.137-0.587,0.137-0.587 C52.172,20.654,49.439,16.188,42.818,15.967z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="46.3916" x2="37.3443" y1="25.6675" y2="20.2965">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M38.86,21.73s3.916,5.142,11.87,5.133c-0.01,0.01-3.75-0.58-11.87-5.13z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.53" x2="36.61" y1="19.25" y2="25">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M38.855,21.734c0,0,3.916,5.142,11.869,5.133C50.725,26.867,46.98,26.279,38.855,21.734z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.5283" x2="36.6077" y1="19.2515" y2="24.9963">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M37.92,18.88s-3.834,0.23-2.412,6.725c-0.01,0-0.47-4.44,2.41-6.72z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.24" x2="43.96" y1="16.97" y2="19.57">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M37.916,18.881c0,0-3.834,0.23-2.412,6.725C35.504,25.605,35.037,21.157,37.916,18.881z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.2432" x2="43.9615" y1="16.9707" y2="19.5749">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M44.68,19.78c-1.785-0.255-4.803-1.836-5.986-1.272,0,0,3.873-4.417,10.7,0.612,0.01,0-1.62,1.1-4.71,0.66z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="-98.53" cy="-5.022" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="12.78">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M44.678,19.781c-1.785-0.255-4.803-1.836-5.986-1.272c0,0,3.873-4.417,10.705,0.612 C49.396,19.121,47.77,20.221,44.678,19.781z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="-98.5264" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="12.778">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M21.98,37.92c-1.125-0.489-1.088-2.883-0.625-3.606,0.08-0.126,0.154-0.253,0.234-0.381h-9.402c0.076,0.128,0.15,0.255,0.23,0.381,0.465,0.724,0.498,3.117-0.625,3.606-1.125,0.487,5.227,4.738,5.227,4.738s6.08-4.26,4.95-4.74z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="16.89" x2="16.89" y1="37.47" y2="47.31">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M21.984,37.917c-1.125-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.154-0.253,0.234-0.381h-9.402 c0.076,0.128,0.15,0.255,0.23,0.381c0.465,0.724,0.498,3.117-0.625,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S23.109,38.404,21.984,37.917z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="16.8906" x2="16.8906" y1="37.4727" y2="47.3145">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M28.74,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722-4.811-3.864c-0.133,0.198-5.926,2.227-7.266,2.938-1.528,0.81-4.034,2.68-4.034,6.89h31.78c0-4.21-2.86-6.29-4.04-6.9z" fill="url(#SVGID_13_)"/>
-<polygon fill="#020202" fill-opacity="0.3" points="11.21,37.95,17.12,42.66,22.66,38.05,21.59,37.62,17.12,41.34,12.3,37.47" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1.85" x2="11.49" y1="42.75" y2="42.75">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M28.742,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.926,2.227-7.266,2.938C3.506,41.226,1,43.097,1,47.314h31.781C32.781,43.097,29.924,41.025,28.742,40.41z" fill="url(#SVGID_13_)"/>
+<polygon fill="#020202" fill-opacity="0.3" points="11.209,37.952 17.115,42.655 22.66,38.047 21.592,37.615 17.115,41.337 12.305,37.473 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1.8496" x2="11.4883" y1="42.7466" y2="42.7466">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M11.49,38.7s-8.426,2.199-8.426,8.1c0,0-1.203,0.002-1.213,0-0.001-3.63,2.831-6.45,9.639-8.1z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.18" x2="31.82" y1="42.61" y2="42.61">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M11.488,38.696c0,0-8.426,2.199-8.426,8.1c0,0-1.203,0.002-1.213,0 C1.85,43.167,4.682,40.347,11.488,38.696z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.1836" x2="31.8223" y1="42.6099" y2="42.6099">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M22.18,38.56s8.424,2.199,8.424,8.101h1.215c0-3.63-2.83-6.45-9.64-8.1z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.93" x2="16.93" y1="43.08" y2="37.64">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M22.184,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.205,0,1.215,0 C31.822,43.029,28.99,40.211,22.184,38.56z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.9346" x2="16.9346" y1="43.0781" y2="37.6438">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<polygon fill="url(#SVGID_16_)" points="17.12,42.66,11.21,37.95,10.86,38.1,17.12,43.08,23,38.18,22.66,38.04"/>
-<radialGradient cx="-97.9" cy="-28.65" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="17.15">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_16_)" points="17.115,42.655 11.209,37.952 10.865,38.1 17.115,43.078 23.004,38.182 22.662,38.042 "/>
+<radialGradient cx="-97.9023" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="17.154">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M24.69,26.91c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.188-0.034-7.848-1.364-11.45-5.712-11.72-4.563-0.217,0.918-2.416,2.9-3.57,3.886,0.01,0.047,0.016,0.086,0.025,0.129,0,0,0.041,0.203,0.127,0.548-0.09,0.01-0.18,0.029-0.268,0.066-0.73,0.308-0.963,1.511-0.512,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.045-0.019,0.084-0.051,0.123-0.078,0.428,0.957,0.951,1.985,1.59,3.013,1.076,1.279,2.719,2.775,4.535,2.775,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.045-0.101,0.072-0.141,0.684-1.071,1.242-2.146,1.689-3.144,0.719,0.248,1.637-0.419,2.096-1.547,0.47-1.21,0.26-2.42-0.46-2.75z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.06" x2="20.84" y1="37.6" y2="30.87">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M24.686,26.909c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-7.848-1.364-11.451-5.712-11.721-4.563c-0.217,0.918-2.416,2.9-3.57,3.886 c0.01,0.047,0.016,0.086,0.025,0.129c0,0,0.041,0.203,0.127,0.548c-0.09,0.01-0.18,0.029-0.268,0.066 c-0.73,0.308-0.963,1.511-0.512,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.045-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.59,3.013c1.076,1.279,2.719,2.775,4.535,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144c0.719,0.248,1.637-0.419,2.096-1.547 C25.617,28.452,25.414,27.236,24.686,26.909z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.0576" x2="20.8372" y1="37.5996" y2="30.873">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M16.5,36.25c-1.34,0-2.688-0.624-3.68-1.562,1.051,1.103,2.463,2.177,4,2.177,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.045-0.101,0.072-0.141,0.684-1.071,1.242-2.146,1.689-3.144-2.5,4.35-4.35,5.07-6.55,5.07z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.76" x2="16.76" y1="16.11" y2="26.1">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M16.5,36.249c-1.34,0-2.688-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144 C20.551,35.533,18.695,36.249,16.5,36.249z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.7578" x2="16.7578" y1="16.1133" y2="26.0988">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M16.6,15.97c-2.721,0-4.031,1.238-5.039,2.53-1.645,0.254-4.25,1.762-2.408,8.359,1.15-0.988,3.26-3.666,3.477-4.584,0.273-1.16,3.936,3.278,11.93,4.602,0.092-0.368,0.137-0.587,0.137-0.587,1.26-5.64-1.48-10.1-8.1-10.32z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="20.17" x2="11.12" y1="25.67" y2="20.3">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M16.6,15.967c-2.721,0-4.031,1.238-5.039,2.53c-1.645,0.254-4.25,1.762-2.408,8.359 c1.15-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.092-0.368,0.137-0.587,0.137-0.587 C25.955,20.654,23.221,16.188,16.6,15.967z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="20.1719" x2="11.1239" y1="25.6675" y2="20.2961">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M12.64,21.73s3.914,5.142,11.87,5.133c0,0.01-3.75-0.58-11.87-5.13z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="10.31" x2="10.39" y1="19.25" y2="25">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M12.637,21.734c0,0,3.914,5.142,11.869,5.133C24.506,26.867,20.762,26.279,12.637,21.734z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="10.3096" x2="10.389" y1="19.2515" y2="24.9963">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M11.7,18.88s-3.834,0.23-2.412,6.725c-0.003,0-0.47-4.44,2.412-6.72z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="18.02" x2="17.74" y1="16.97" y2="19.58">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M11.697,18.881c0,0-3.834,0.23-2.412,6.725C9.285,25.605,8.818,21.157,11.697,18.881z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="18.0244" x2="17.7427" y1="16.9707" y2="19.5754">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M18.46,19.78c-1.783-0.255-4.803-1.836-5.984-1.272,0,0,3.873-4.417,10.7,0.612,0,0-1.63,1.1-4.72,0.66z" fill="url(#SVGID_22_)"/>
-<path d="M47.92,41.69c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569-0.273-0.11-0.359-0.139-0.686-0.275-0.424,0.186s-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458-0.385,0.206-0.832,0.477-1.283,0.835-0.475-0.392-0.914-0.667-1.234-0.835-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069-0.004,0.005-0.752-0.304-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715-2.535,1.346-4.359,3.248-5.438,5.615h46.63c-1.71-3.52-4.61-5.23-5.38-5.63z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M17.19,22.32c-1.205,1.026-1.531,3.083-0.748,5.124,0.732,1.925,2.256,3.218,3.783,3.218h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965s0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418,0.719,0.248,1.637-0.419,2.096-1.547,0.473-1.168,0.27-2.384-0.459-2.711-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.188-0.034-0.014-0.002-0.027-0.006-0.041-0.008-0.029-0.006-0.07-0.015-0.105-0.023,0.121,0.023,0.232,0.049,0.359,0.07,0.092-0.368,0.137-0.587,0.137-0.587,1.256-5.633-1.479-10.1-8.1-10.32-0.012,0-0.021,0.003-0.033,0.003-0.15,1.8,0.04,3.92,0.64,6.36z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M37.78,18.5c-1.645,0.254-4.246,1.76-2.41,8.354-0.068,0.01-0.139,0.023-0.205,0.051-0.732,0.308-0.963,1.511-0.514,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.047-0.019,0.084-0.051,0.123-0.078,0.359,0.799,0.787,1.648,1.289,2.504,0.564-0.949,1.1-1.934,1.586-2.947,1.395-0.166,2.754-1.375,3.457-3.109,0.801-1.979,0.545-4.035-0.584-5.104,0.504-2.285,0.584-4.463,0.252-6.444-0.033-0.002-0.063-0.006-0.096-0.009-2.72,0-4.03,1.23-5.04,2.53zm-2.4,8.35c0.014-0.014,0.029-0.027,0.043-0.041,0.002,0.01,0.004,0.018,0.008,0.027-0.02,0-0.03,0-0.05,0.01zm3.79-4.75c-0.02-0.004-0.047-0.015-0.066-0.018,0.03,0.01,0.05,0.02,0.07,0.02z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M47.62,42.26c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574-0.264-0.108-0.369-0.142-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16-1.826,0.708-4.971,1.86-5.914,2.361-0.385,0.206-0.832,0.477-1.283,0.835-0.475-0.392-0.914-0.667-1.234-0.835-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037-1.285,0.56c-0.689,0.271-1.549,0.597-2.461,0.943-2.59,0.986-5.525,2.101-6.619,2.681-2.309,1.226-4,2.936-5.035,5.057h45.22c-1.62-3.14-4.25-4.67-4.96-5.04z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M17.04,27.22c0.641,1.68,1.924,2.807,3.191,2.807,0.131,0,0.264-0.012,0.391-0.037,0.432,0.934,0.9,1.844,1.398,2.719h-0.02l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785,0.719,0.248,1.637-0.419,2.096-1.547,0.473-1.168,0.27-2.384-0.459-2.711-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.188-0.034-0.014-0.002-0.027-0.006-0.041-0.008-0.029-0.006-0.07-0.015-0.105-0.023,0.121,0.023,0.232,0.049,0.359,0.07,0.092-0.368,0.137-0.587,0.137-0.587,1.215-5.457-1.322-9.807-7.5-10.27-0.182,1.82,0.049,4.01,0.717,6.578-1.24,0.71-1.63,2.68-0.88,4.63z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M37.78,18.5c-1.645,0.254-4.246,1.76-2.41,8.354-0.068,0.01-0.139,0.023-0.205,0.051-0.732,0.308-0.963,1.511-0.514,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.047-0.019,0.084-0.051,0.123-0.078,0.268,0.6,0.576,1.224,0.924,1.861,0.551-0.946,1.072-1.918,1.541-2.922,0.025,0.002,0.055,0.002,0.082,0.002,1.25,0,2.533-1.101,3.195-2.734,0.773-1.902,0.453-3.844-0.701-4.617,0.053-0.229,0.078-0.355,0.078-0.355,0.502-2.247,0.574-4.381,0.238-6.312-2.33,0.15-3.54,1.29-4.48,2.49zm-2.4,8.35c0.014-0.014,0.029-0.027,0.043-0.041,0.002,0.01,0.004,0.018,0.008,0.027-0.02,0-0.03,0-0.05,0.01zm3.79-4.75c-0.02-0.004-0.047-0.015-0.066-0.018,0.03,0.01,0.05,0.02,0.07,0.02z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-84.4" cy="-1.04" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="18.68">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M18.457,19.781c-1.783-0.255-4.803-1.836-5.984-1.272c0,0,3.873-4.417,10.705,0.612 C23.178,19.121,21.549,20.221,18.457,19.781z" fill="url(#SVGID_22_)"/>
+<path d="M47.916,41.694c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569l-0.273-0.11l-0.359-0.139 l-0.686-0.275l-0.424,0.186c0,0-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458 c-0.385,0.206-0.832,0.477-1.283,0.835c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069 l-0.004,0.005l-0.752-0.304l-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715 c-2.535,1.346-4.359,3.248-5.438,5.615h20.582h5.561h20.494C51.592,43.797,48.686,42.094,47.916,41.694z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M17.193,22.325c-1.205,1.026-1.531,3.083-0.748,5.124c0.732,1.925,2.256,3.218,3.783,3.218 h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965c0,0,0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418 c0.719,0.248,1.637-0.419,2.096-1.547c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002 c-0.012-0.002-0.016-0.002-0.025-0.005c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008 c-0.029-0.006-0.07-0.015-0.105-0.023c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587 c1.256-5.633-1.479-10.1-8.1-10.32c-0.012,0-0.021,0.003-0.033,0.003C16.395,17.765,16.594,19.881,17.193,22.325z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.359,0.799,0.787,1.648,1.289,2.504c0.564-0.949,1.1-1.934,1.586-2.947c1.395-0.166,2.754-1.375,3.457-3.109 c0.801-1.979,0.545-4.035-0.584-5.104c0.504-2.285,0.584-4.463,0.252-6.444c-0.033-0.002-0.063-0.006-0.096-0.009 C40.098,15.967,38.789,17.205,37.779,18.497z M35.381,26.849c0.014-0.014,0.029-0.027,0.043-0.041 c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101 c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M47.621,42.258c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574l-0.264-0.108l-0.369-0.142 l-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16c-1.826,0.708-4.971,1.86-5.914,2.361c-0.385,0.206-0.832,0.477-1.283,0.835 c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037l-1.285,0.56 c-0.689,0.271-1.549,0.597-2.461,0.943c-2.59,0.986-5.525,2.101-6.619,2.681c-2.309,1.226-4,2.936-5.035,5.057h19.881h5.561h19.785 C50.957,44.163,48.33,42.626,47.621,42.258z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M17.037,27.223c0.641,1.68,1.924,2.807,3.191,2.807c0.131,0,0.264-0.012,0.391-0.037 c0.432,0.934,0.9,1.844,1.398,2.719H22l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785c0.719,0.248,1.637-0.419,2.096-1.547 c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008c-0.029-0.006-0.07-0.015-0.105-0.023 c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587c1.215-5.457-1.322-9.807-7.5-10.273 c-0.182,1.82,0.049,4.01,0.717,6.578C16.682,23.301,16.289,25.27,17.037,27.223z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.268,0.6,0.576,1.224,0.924,1.861c0.551-0.946,1.072-1.918,1.541-2.922c0.025,0.002,0.055,0.002,0.082,0.002 c1.25,0,2.533-1.101,3.195-2.734c0.773-1.902,0.453-3.844-0.701-4.617c0.053-0.229,0.078-0.355,0.078-0.355 c0.502-2.247,0.574-4.381,0.238-6.312C39.926,16.158,38.717,17.299,37.779,18.497z M35.381,26.849 c0.014-0.014,0.029-0.027,0.043-0.041c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-84.3965" cy="-1.04" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="18.6813">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M37.45,39.17c-1.643-0.715-1.59-4.214-0.912-5.273,0.117-0.186,0.225-0.37,0.338-0.554h-13.75c0.113,0.184,0.219,0.368,0.338,0.554,0.678,1.06,0.73,4.559-0.914,5.273-1.645,0.713,7.641,6.929,7.641,6.929s8.89-6.21,7.25-6.93z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="30" x2="30" y1="38.52" y2="52.91">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#88444B"/>
+<path d="M37.447,39.174c-1.643-0.715-1.59-4.214-0.912-5.273c0.117-0.186,0.225-0.37,0.338-0.554H23.129 c0.113,0.184,0.219,0.368,0.338,0.554c0.678,1.06,0.73,4.559-0.914,5.273c-1.645,0.713,7.641,6.929,7.641,6.929 S39.092,39.887,37.447,39.174z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="30.001" x2="30.001" y1="38.5244" y2="52.9141">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#88444B"/>
</linearGradient>
-<path d="M47.33,42.82c-1.729-0.9-10.3-3.901-10.46-4.089l-6.545,5.439-7.031-5.648c-0.193,0.289-8.662,3.257-10.62,4.298-2.242,1.189-5.906,3.925-5.906,10.09h46.47c0-6.16-4.17-9.19-5.9-10.09z" fill="url(#SVGID_24_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="30.07" x2="30.07" y1="37.58" y2="46">
-<stop offset="0" stop-color="#8C4C54"/>
-<stop offset="1" stop-color="#53343E"/>
+<path d="M47.33,42.822c-1.729-0.9-10.297-3.901-10.459-4.089l-6.545,5.439l-7.031-5.648 c-0.193,0.289-8.662,3.257-10.621,4.298c-2.242,1.189-5.906,3.925-5.906,10.092h46.467C53.234,46.747,49.057,43.719,47.33,42.822z" fill="url(#SVGID_24_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="30.0654" x2="30.0654" y1="37.5811" y2="45.9985">
+<stop offset="0" style="stop-color:#8C4C54"/>
+<stop offset="1" style="stop-color:#53343E"/>
</linearGradient>
-<polygon fill="url(#SVGID_25_)" points="21.7,39.22,30.33,46.1,38.44,39.36,36.87,38.73,30.33,44.17,23.3,38.52"/>
-<path d="M22.1,40.31s-12.32,3.215-12.32,11.84c0,0-1.76,0.002-1.775,0,0.003-5.3,4.145-9.43,14.1-11.84z" fill="#CCA089"/>
-<path d="M37.74,40.11s12.32,3.218,12.32,11.84h1.775c-0.01-5.3-4.15-9.43-14.1-11.84z" fill="#CCA089"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="30.06" x2="30.06" y1="46.72" y2="38.77">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<polygon fill="url(#SVGID_25_)" points="21.695,39.225 30.326,46.103 38.436,39.365 36.871,38.733 30.326,44.173 23.295,38.524 "/>
+<path d="M22.1,40.313c0,0-12.316,3.215-12.316,11.844c0,0-1.76,0.002-1.775,0C8.008,46.851,12.15,42.725,22.1,40.313 z" fill="#CCA089"/>
+<path d="M37.74,40.113c0,0,12.316,3.218,12.316,11.844c0,0,1.762,0,1.775,0C51.832,46.65,47.689,42.525,37.74,40.113 z" fill="#CCA089"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="30.0645" x2="30.0645" y1="46.7217" y2="38.7736">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</linearGradient>
-<polygon fill="url(#SVGID_26_)" points="30.33,46.1,21.69,39.22,21.19,39.44,30.33,46.72,38.94,39.56,38.44,39.36"/>
-<radialGradient cx="-83.48" cy="-35.59" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_27_" r="25.08">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_26_)" points="30.326,46.103 21.691,39.225 21.191,39.445 30.326,46.722 38.938,39.561 38.438,39.358 "/>
+<radialGradient cx="-83.4844" cy="-35.5879" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_27_" r="25.0781">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M41.4,23.08c-0.059-0.027-0.125-0.031-0.184-0.051-0.012-0.002-0.023-0.004-0.035-0.006-0.092-0.023-0.182-0.045-0.275-0.051-11.48-1.996-16.74-8.354-17.14-6.67-0.316,1.34-3.535,4.236-5.219,5.682,0.014,0.064,0.021,0.121,0.035,0.188,0,0,0.063,0.296,0.188,0.801-0.135,0.014-0.264,0.041-0.393,0.094-1.07,0.454-1.406,2.21-0.75,3.928,0.658,1.716,2.059,2.744,3.131,2.294,0.066-0.029,0.121-0.078,0.182-0.115,0.625,1.4,1.389,2.901,2.326,4.406,1.568,1.865,3.973,4.055,6.627,4.055,3.213,0,5.18-1.758,6.529-3.53,0.033-0.074,0.068-0.144,0.109-0.204,1.002-1.564,1.813-3.135,2.471-4.594,1.047,0.361,2.395-0.612,3.063-2.263,0.69-1.7,0.39-3.48-0.67-3.96z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="25.86" x2="35.77" y1="38.71" y2="28.87">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M41.398,23.083c-0.059-0.027-0.125-0.031-0.184-0.051V23.03c-0.012-0.002-0.023-0.004-0.035-0.006 c-0.092-0.023-0.182-0.045-0.275-0.051c-11.475-1.996-16.738-8.354-17.135-6.67c-0.316,1.34-3.535,4.236-5.219,5.682 c0.014,0.064,0.021,0.121,0.035,0.188c0,0,0.063,0.296,0.188,0.801c-0.135,0.014-0.264,0.041-0.393,0.094 c-1.07,0.454-1.406,2.21-0.75,3.928c0.658,1.716,2.059,2.744,3.131,2.294c0.066-0.029,0.121-0.078,0.182-0.115 c0.625,1.4,1.389,2.901,2.326,4.406c1.568,1.865,3.973,4.055,6.627,4.055c3.213,0,5.18-1.758,6.529-3.53 c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594c1.047,0.361,2.395-0.612,3.063-2.263 C42.76,25.336,42.461,23.561,41.398,23.083z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="25.8574" x2="35.7696" y1="38.709" y2="28.8743">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M29.43,36.73c-1.955,0-3.926-0.91-5.377-2.283,1.535,1.612,3.6,3.184,5.848,3.184,3.213,0,5.18-1.758,6.529-3.53,0.033-0.074,0.068-0.144,0.109-0.204,1.002-1.564,1.813-3.135,2.471-4.594-3.66,6.38-6.37,7.42-9.58,7.42z" fill="url(#SVGID_28_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="29.8" x2="29.8" y1="7.3" y2="21.9">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.426,36.734c-1.955,0-3.926-0.91-5.377-2.283c1.535,1.612,3.6,3.184,5.848,3.184 c3.213,0,5.18-1.758,6.529-3.53c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594 C35.352,35.689,32.639,36.734,29.426,36.734z" fill="url(#SVGID_28_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="29.8047" x2="29.8047" y1="7.3003" y2="21.8973">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M29.57,7.086c-3.977,0-5.891,1.809-7.369,3.699-2.4,0.37-6.209,2.57-3.52,12.22,1.684-1.444,4.768-5.359,5.084-6.699,0.398-1.697,5.75,4.792,17.44,6.727,0.137-0.541,0.197-0.857,0.197-0.857,1.85-8.23-2.14-14.76-11.83-15.08z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.8" x2="21.57" y1="21.27" y2="13.41">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.574,7.086c-3.977,0-5.891,1.809-7.369,3.699c-2.4,0.37-6.209,2.57-3.52,12.218 c1.684-1.444,4.768-5.359,5.084-6.699c0.398-1.697,5.75,4.792,17.445,6.727c0.137-0.541,0.197-0.857,0.197-0.857 C43.25,13.937,39.256,7.407,29.574,7.086z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.7979" x2="21.5721" y1="21.2656" y2="13.414">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M23.78,15.52s5.723,7.517,17.35,7.504c0,0-5.47-0.86-17.35-7.5z" fill="url(#SVGID_30_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="20.38" x2="20.5" y1="11.89" y2="20.28">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M23.783,15.516c0,0,5.723,7.517,17.35,7.504C41.133,23.02,35.656,22.159,23.783,15.516z" fill="url(#SVGID_30_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="20.3789" x2="20.495" y1="11.8853" y2="20.2845">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M22.41,11.34s-5.604,0.334-3.525,9.831c0,0.01-0.68-6.5,3.53-9.83z" fill="url(#SVGID_31_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="31.66" x2="31.25" y1="8.55" y2="12.36">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M22.406,11.344c0,0-5.604,0.334-3.525,9.831C18.881,21.175,18.195,14.67,22.406,11.344z" fill="url(#SVGID_31_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="31.6582" x2="31.2464" y1="8.5503" y2="12.3578">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M32.29,12.66c-2.609-0.375-7.02-2.686-8.75-1.859,0,0,5.662-6.459,15.65,0.895,0,0-2.38,1.6-6.9,0.96z" fill="url(#SVGID_32_)"/>
+<path d="M32.291,12.66c-2.609-0.375-7.02-2.686-8.75-1.859c0,0,5.662-6.459,15.65,0.895 C39.191,11.695,36.813,13.303,32.291,12.66z" fill="url(#SVGID_32_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ftu.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ftu.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,112 +1,114 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
+</linearGradient>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
-</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -576.9805 -204.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-595" x2="-595" y1="208" y2="226">
@@ -152,4 +154,4 @@
</linearGradient>
<path d="M9.052,15.77l1.732,3.594,0.055,0.115,0.114,0.055,3.594,1.73-3.594,1.731-0.114,0.055-0.055,0.115-1.728,3.58-1.732-3.59-0.055-0.115-0.115-0.06-3.594-1.732,3.594-1.729,0.114-0.056,0.055-0.114,1.733-3.6m0-0.83l-2.058,4.27-4.27,2.057,4.27,2.062,2.058,4.271,2.058-4.271,4.27-2.062-4.27-2.057-2.058-4.27z" fill="url(#SVGID_8__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_games.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_games.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,157 +1,159 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.75" x2="37.71" y1="18.63" y2="19.39">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="1" stop-color="#A8A8A8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.752" x2="37.7069" y1="18.6255" y2="19.3878">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<path d="M27.66,5.649l5.785,0.394,1.092,2.745-2.3,0.97,2.959,1.516,0.109,5.178-3.068-0.485,3.068,2.237s-5.514,8.872-1.639,11.19l-4.416,2.117s-5.463-3.121-1.531-9.217c3.93-6.09-0.05-16.64-0.05-16.64z" fill="url(#SVGID_1_)"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,11.27,35.19,12.79,35.27,16.45,35.3,16.45,35.19,11.27,33.85,10.59" stroke-opacity="0.5"/>
-<path d="M33.44,7.556l0.578,1.448,0.514-0.217-1.092-2.745-5.785-0.394s0.219,0.582,0.504,1.547l5.28,0.361z" fill="#FFFFFF"/>
-<path d="M32.23,17.48l2.457,1.791c0.357-0.659,0.611-1.067,0.611-1.067l-0.42-0.306-2.65-0.41z" fill="#FFFFFF"/>
-<path d="M32.33,27.23c-0.115,0.987-0.037,1.904,0.348,2.633l0.982-0.471c-0.81-0.48-1.2-1.25-1.33-2.16z" fill="#FFFFFF"/>
-<path d="M33.44,6.936l0.787,1.979,0.305-0.128-1.092-2.745-5.785-0.394s0.125,0.335,0.309,0.913l5.47,0.375z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,10.65,35.19,12.17,35.28,16.45,35.3,16.45,35.19,11.27,33.19,10.25" stroke-opacity="0.5"/>
-<path d="M32.3,26.96c-0.076,1.082,0.098,2.057,0.691,2.762l0.67-0.321c-0.89-0.54-1.28-1.41-1.36-2.44z" fill="#FFFFFF"/>
-<path d="M32.23,16.86l2.701,1.97c0.223-0.394,0.367-0.625,0.367-0.625l-1.504-1.098-1.57-0.24z" fill="#FFFFFF"/>
-<path d="M32.88,12.97c0.137-1.023,0.125-1.99-0.025-2.895l-0.63-0.322,0.521-0.22c-0.266-1.135-0.76-2.168-1.496-3.093-0.164-0.205-0.342-0.4-0.52-0.587l-3.08-0.209s3.988,10.55,0.057,16.65c-3.932,6.096,1.531,9.217,1.531,9.217l0.713-0.34c-2.512-3.189-1.322-6.021,0.35-9.96,0.674-1.581,1.402-3.31,1.939-5.234l-0.016-0.011,0.02,0.002c0.28-0.96,0.5-1.95,0.64-3.01z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.69" x2="27.56" y1="21.59" y2="2.106">
-<stop offset="0" stop-color="#2F2F2F"/>
-<stop offset="0.6545" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#4F4F51"/>
+<path d="M27.656,5.649l5.785,0.394l1.092,2.745L32.23,9.758l2.959,1.516l0.109,5.178l-3.068-0.485 l3.068,2.237c0,0-5.514,8.872-1.639,11.192l-4.416,2.117c0,0-5.463-3.121-1.531-9.217C31.645,16.203,27.656,5.649,27.656,5.649z" fill="url(#SVGID_1_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,11.271 35.189,12.787 35.268,16.447 35.299,16.452 35.189,11.273 33.85,10.588 " stroke-opacity="0.5"/>
+<path d="M33.441,7.556l0.578,1.448l0.514-0.217l-1.092-2.745l-5.785-0.394c0,0,0.219,0.582,0.504,1.547L33.441,7.556 z" fill="#FFFFFF"/>
+<path d="M32.23,17.48l2.457,1.791c0.357-0.659,0.611-1.067,0.611-1.067l-0.42-0.306L32.23,17.48z" fill="#FFFFFF"/>
+<path d="M32.33,27.233c-0.115,0.987-0.037,1.904,0.348,2.633l0.982-0.471C32.854,28.914,32.457,28.143,32.33,27.233z " fill="#FFFFFF"/>
+<path d="M33.441,6.936l0.787,1.979l0.305-0.128l-1.092-2.745l-5.785-0.394 c0,0,0.125,0.335,0.309,0.913L33.441,6.936z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="32.23,10.651 35.189,12.167 35.279,16.449 35.299,16.452 35.189,11.273 33.186,10.248 " stroke-opacity="0.5"/>
+<path d="M32.299,26.955c-0.076,1.082,0.098,2.057,0.691,2.762l0.67-0.321C32.773,28.864,32.381,27.989,32.299,26.955 z" fill="#FFFFFF"/>
+<path d="M32.23,16.86l2.701,1.97c0.223-0.394,0.367-0.625,0.367-0.625l-1.504-1.098L32.23,16.86z" fill="#FFFFFF"/>
+<path d="M32.883,12.973c0.137-1.023,0.125-1.99-0.025-2.895L32.23,9.758l0.521-0.22 c-0.266-1.135-0.76-2.168-1.496-3.093c-0.164-0.205-0.342-0.4-0.52-0.587l-3.08-0.209c0,0,3.988,10.554,0.057,16.647 c-3.932,6.096,1.531,9.217,1.531,9.217l0.713-0.34c-2.512-3.189-1.322-6.021,0.35-9.96c0.674-1.581,1.402-3.31,1.939-5.234 l-0.016-0.011l0.02,0.002C32.516,15.021,32.74,14.026,32.883,12.973z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6943" x2="27.5643" y1="21.5898" y2="2.1062">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M32.13,12.87c1.213-8.979-9.904-10.01-9.904-10.01l-4.64-0.86s-0.477,1.282,2.004,2.599c-4.35,2.931-12.63,8.781-13.04,11.14-0.271,1.542,4.236,7.189,5.402,3.09,0.777-2.747,5.494-1.03,6.773-1.84,1.045-0.661,2.186,0.291,2.186,0.291-9.029,8.198-9.834,16.51-9.834,16.51v11.35h20.43v-11.36c-8.2-6.665-0.64-11.58,0.61-20.92z" fill="url(#SVGID_2_)"/>
-<path d="M17.92,10.74l3.496-2.382c0-0.001-0.17,5.052-3.5,2.382z" fill="#FCFCFC" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.67" x2="19.67" y1="7.102" y2="11.15">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4E4E4E"/>
+<path d="M32.131,12.872c1.213-8.979-9.904-10.008-9.904-10.008L17.592,2c0,0-0.477,1.282,2.004,2.599 C15.244,7.53,6.963,13.376,6.555,15.737c-0.271,1.542,4.236,7.189,5.402,3.09c0.777-2.747,5.494-1.03,6.773-1.84 c1.045-0.661,2.186,0.291,2.186,0.291c-9.029,8.198-9.834,16.507-9.834,16.507v11.351h20.432V33.785 C23.324,27.117,30.877,22.202,32.131,12.872z" fill="url(#SVGID_2_)"/>
+<path d="M17.922,10.739l3.496-2.382C21.418,8.357,21.248,13.408,17.922,10.739z" fill="#FCFCFC" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.6699" x2="19.6699" y1="7.1016" y2="11.1458">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4E4E4E"/>
</linearGradient>
-<path d="M17.92,10.38l3.496-2.243c0,0.005-0.75,3.883-3.5,2.243z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.57" x2="33.03" y1="46.65" y2="46.65">
-<stop offset="0" stop-color="#363636"/>
-<stop offset="0.6545" stop-color="#8A8B8B"/>
-<stop offset="1" stop-color="#58595A"/>
+<path d="M17.922,10.385l3.496-2.243C21.418,8.142,20.67,12.024,17.922,10.385z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.5703" x2="33.0273" y1="46.6494" y2="46.6494">
+<stop offset="0" style="stop-color:#363636"/>
+<stop offset="0.6545" style="stop-color:#8A8B8B"/>
+<stop offset="1" style="stop-color:#58595A"/>
</linearGradient>
-<path d="M33.03,46.65c0,0.838-0.672,1.516-1.514,1.516h-20.56c-0.842,0-1.395-0.678-1.395-1.516,0-0.835,0.553-1.511,1.395-1.511h20.55c0.85,0,1.52,0.67,1.52,1.51z" fill="url(#SVGID_4_)"/>
-<path d="M10.96,45.89h20.55c0.709,0,1.293,0.483,1.461,1.135,0.031-0.121,0.053-0.249,0.053-0.379,0-0.835-0.672-1.511-1.514-1.511h-20.54c-0.842,0-1.395,0.676-1.395,1.511,0,0.13,0.016,0.258,0.043,0.379,0.143-0.64,0.647-1.13,1.347-1.13z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.2" x2="34.2" y1="20.56" y2="5.97">
-<stop offset="0" stop-color="#2F2F2F"/>
-<stop offset="0.6545" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#4F4F51"/>
+<path d="M33.027,46.647c0,0.838-0.672,1.516-1.514,1.516H10.965c-0.842,0-1.395-0.678-1.395-1.516l0,0 c0-0.835,0.553-1.511,1.395-1.511h20.549C32.355,45.136,33.027,45.812,33.027,46.647L33.027,46.647z" fill="url(#SVGID_4_)"/>
+<path d="M10.965,45.892h20.549c0.709,0,1.293,0.483,1.461,1.135c0.031-0.121,0.053-0.249,0.053-0.379 c0-0.835-0.672-1.511-1.514-1.511H10.965c-0.842,0-1.395,0.676-1.395,1.511c0,0.13,0.016,0.258,0.043,0.379 C9.756,46.375,10.256,45.892,10.965,45.892z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.2041" x2="34.1982" y1="20.5649" y2="5.97">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M29.07,5.392l-9.162,11.4c0.576,0.123,1.012,0.483,1.012,0.483-0.455,0.413-0.875,0.825-1.289,1.238l0.043,0.192,12.48-5.991c0.43-3.556-1.11-5.852-3.08-7.318z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.56" x2="32.46" y1="20.15" y2="24.99">
-<stop offset="0" stop-color="#2F2F2F"/>
-<stop offset="0.6545" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#4F4F51"/>
+<path d="M29.066,5.392l-9.162,11.402c0.576,0.123,1.012,0.483,1.012,0.483 c-0.455,0.413-0.875,0.825-1.289,1.238l0.043,0.192l12.477-5.991C32.576,9.154,31.045,6.858,29.066,5.392z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.5635" x2="32.4584" y1="20.1465" y2="24.9896">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.6545" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M32.13,12.87c0.129-0.939,0.113-1.786-0.002-2.559-4.604,1.772-10.77,6.632-11.32,7.071-8.918,8.165-9.723,16.4-9.723,16.4v0.008l20.43-0.008c-8.2-6.66-0.64-11.58,0.61-20.91z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11.08" x2="31.51" y1="39.46" y2="39.46">
-<stop offset="0" stop-color="#363636"/>
-<stop offset="0.6545" stop-color="#8A8B8B"/>
-<stop offset="1" stop-color="#58595A"/>
+<path d="M32.131,12.872c0.129-0.939,0.113-1.786-0.002-2.559c-4.604,1.772-10.771,6.632-11.324,7.071 c-8.918,8.165-9.723,16.401-9.723,16.401v0.008l20.432-0.008C23.324,27.117,30.877,22.202,32.131,12.872z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11.082" x2="31.5137" y1="39.4644" y2="39.4644">
+<stop offset="0" style="stop-color:#363636"/>
+<stop offset="0.6545" style="stop-color:#8A8B8B"/>
+<stop offset="1" style="stop-color:#58595A"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="11.34" width="20.43" x="11.08" y="33.79"/>
-<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.71" x2="33.22" y1="33.52" y2="32">
-<stop offset="0" stop-color="#2F2F2F"/>
-<stop offset="0.0545" stop-color="#2F2F2F"/>
-<stop offset="0.7333" stop-color="#8F8F8F"/>
-<stop offset="1" stop-color="#4F4F51"/>
+<rect fill="url(#SVGID_7_)" height="11.343" width="20.432" x="11.082" y="33.792"/>
+<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.707" x2="33.2224" y1="33.5234" y2="32.0012">
+<stop offset="0" style="stop-color:#2F2F2F"/>
+<stop offset="0.0545" style="stop-color:#2F2F2F"/>
+<stop offset="0.7333" style="stop-color:#8F8F8F"/>
+<stop offset="1" style="stop-color:#4F4F51"/>
</linearGradient>
-<path d="M11.08,33.78h20.43c-2.48-2.008-3.729-3.008-9.955-3.008-7.78,0.01-10.48,3.01-10.48,3.01z" fill="url(#SVGID_8_)"/>
-<rect fill="#222021" fill-opacity="0.5" height="0.758" stroke-opacity="0.5" width="20.43" x="11.08" y="44.38"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.756" stroke-opacity="0.3" width="20.43" x="11.08" y="33.78"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="0.758" stroke-opacity="0.2" width="20.43" x="11.08" y="34.54"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="0.755" stroke-opacity="0.1" width="20.43" x="11.08" y="35.3"/>
-<rect fill="#222021" fill-opacity="0.3" height="0.755" stroke-opacity="0.3" width="20.43" x="11.08" y="43.62"/>
-<rect fill="#222021" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.43" x="11.08" y="42.86"/>
-<path d="M27.8,28.04c-0.25,2.393,0.572,4.693,3.715,7.255v-1.514c-2.48-2.02-3.51-3.88-3.72-5.75z" fill="#FFFFFF"/>
-<path d="M22.23,4.377s9.34,0.87,9.957,7.938c0.684-8.461-9.957-9.451-9.957-9.451l-4.64-0.869s-0.266,0.718,0.639,1.633l4,0.744z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M11.08,33.78v1.514s0.805-8.31,9.834-16.51c0,0-0.469-0.386-1.078-0.493-8,7.86-8.75,15.49-8.75,15.49z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M19.6,6.112c-0.479-0.254-0.846-0.504-1.127-0.748-4.51,3.088-11.54,8.206-11.92,10.38-0.043,0.241,0.033,0.586,0.195,0.978,1.336-2.62,8.79-7.88,12.85-10.61z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M11.08,33.78v0.756s0.805-8.309,9.834-16.51c0,0-0.195-0.157-0.49-0.297-8.56,8.05-9.34,16.05-9.34,16.05z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M22.23,3.621s9.664,0.897,9.984,8.3c0.328-8.1-9.984-9.058-9.984-9.058l-4.64-0.862s-0.111,0.305,0.061,0.768l4.58,0.853z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M27.77,27.69c-0.119,2.25,0.777,4.435,3.744,6.851v-0.756c-2.63-2.14-3.63-4.1-3.74-6.09z" fill="#FFFFFF"/>
-<path d="M19.6,5.356c-0.225-0.119-0.416-0.237-0.594-0.355-4.48,3.033-12.06,8.479-12.46,10.74-0.027,0.152-0.008,0.343,0.051,0.56,0.798-2.48,8.754-8.092,12.99-10.94z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.91" x2="55.87" y1="28.46" y2="29.23">
-<stop offset="0" stop-color="#8B8E8E"/>
-<stop offset="1" stop-color="#C9C9C9"/>
+<path d="M11.082,33.785h20.432c-2.48-2.008-3.729-3.008-9.955-3.008 C13.785,30.777,11.082,33.785,11.082,33.785z" fill="url(#SVGID_8_)"/>
+<rect fill="#222021" fill-opacity="0.5" height="0.758" stroke-opacity="0.5" width="20.432" x="11.082" y="44.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.756" stroke-opacity="0.3" width="20.432" x="11.082" y="33.785"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.758" stroke-opacity="0.2" width="20.432" x="11.082" y="34.541"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="0.755" stroke-opacity="0.1" width="20.432" x="11.082" y="35.299"/>
+<rect fill="#222021" fill-opacity="0.3" height="0.755" stroke-opacity="0.3" width="20.432" x="11.082" y="43.623"/>
+<rect fill="#222021" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.432" x="11.082" y="42.864"/>
+<path d="M27.799,28.044c-0.25,2.393,0.572,4.693,3.715,7.255v-1.514C29.037,31.77,28.006,29.913,27.799,28.044z" fill="#FFFFFF"/>
+<path d="M22.227,4.377c0,0,9.34,0.87,9.957,7.938c0.684-8.461-9.957-9.451-9.957-9.451L17.592,2 c0,0-0.266,0.718,0.639,1.633L22.227,4.377z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.082,33.785v1.514c0,0,0.805-8.31,9.834-16.508c0,0-0.469-0.386-1.078-0.493 C11.826,26.152,11.082,33.785,11.082,33.785z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19.596,6.112c-0.479-0.254-0.846-0.504-1.127-0.748C13.955,8.452,6.932,13.567,6.555,15.737 c-0.043,0.241,0.033,0.586,0.195,0.978C8.086,14.098,15.545,8.84,19.596,6.112z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.082,33.785v0.756c0,0,0.805-8.309,9.834-16.507c0,0-0.195-0.157-0.49-0.297 C11.863,25.782,11.082,33.785,11.082,33.785z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.227,3.621c0,0,9.664,0.897,9.984,8.3c0.328-8.1-9.984-9.058-9.984-9.058L17.592,2 c0,0-0.111,0.305,0.061,0.768L22.227,3.621z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M27.77,27.689c-0.119,2.25,0.777,4.435,3.744,6.851v-0.756C28.879,31.639,27.881,29.676,27.77,27.689z" fill="#FFFFFF"/>
+<path d="M19.596,5.356c-0.225-0.119-0.416-0.237-0.594-0.355C14.533,8.034,6.945,13.48,6.555,15.737 c-0.027,0.152-0.008,0.343,0.051,0.56C7.404,13.822,15.361,8.208,19.596,5.356z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.9121" x2="55.8671" y1="28.4629" y2="29.2252">
+<stop offset="0" style="stop-color:#8B8E8E"/>
+<stop offset="1" style="stop-color:#C9C9C9"/>
</linearGradient>
-<path d="M45.82,15.49l5.787,0.393,1.094,2.745-2.303,0.97,2.957,1.516,0.107,5.178-3.064-0.485,3.064,2.238s-5.514,8.872-1.639,11.19l-4.416,2.117s-5.461-3.122-1.529-9.217c3.92-6.09-0.06-16.64-0.06-16.64z" fill="url(#SVGID_9_)"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.4,21.11,53.35,22.62,53.43,26.28,53.46,26.29,53.35,21.11,52.01,20.42" stroke-opacity="0.5"/>
-<path d="M51.6,17.39l0.576,1.449,0.518-0.217-1.094-2.745-5.787-0.393s0.221,0.584,0.506,1.547l5.27,0.35z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M50.4,27.32l2.455,1.792c0.355-0.659,0.609-1.067,0.609-1.067l-0.42-0.307-2.65-0.41z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M50.49,37.07c-0.115,0.988-0.037,1.905,0.346,2.634l0.982-0.47c-0.81-0.48-1.2-1.25-1.33-2.16z" fill="#FFFFFF"/>
-<path d="M51.6,16.77l0.789,1.979,0.305-0.127-1.094-2.745-5.787-0.393s0.125,0.335,0.313,0.912l5.47,0.37z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.4,20.49,53.35,22,53.44,26.29,53.46,26.29,53.35,21.11,51.35,20.08" stroke-opacity="0.5"/>
-<path d="M50.46,36.79c-0.076,1.082,0.1,2.057,0.691,2.762l0.668-0.321c-0.89-0.53-1.28-1.4-1.36-2.44z" fill="#FFFFFF"/>
-<path d="M50.4,26.7l2.697,1.97c0.227-0.394,0.367-0.625,0.367-0.625l-1.504-1.099-1.57-0.24z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M51.8,22.91c0.119-0.9,0.127-1.758,0.043-2.579l-1.443-0.739,1.232-0.519c-0.297-1.192-0.838-2.284-1.617-3.264-0.012-0.015-0.025-0.029-0.039-0.043l-4.154-0.282s3.988,10.55,0.059,16.65c-3.932,6.095,1.529,9.217,1.529,9.217l1.41-0.676c-2.369-2.885-1.332-5.364,0.352-9.328,0.65-1.533,1.355-3.199,1.898-5.053l-0.67-0.49,0.77,0.121c0.26-0.96,0.48-1.96,0.63-3.02z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M51.04,22.81c0.141-1.024,0.125-1.987-0.023-2.895l-0.625-0.321,0.521-0.22c-0.27-1.134-0.764-2.168-1.5-3.092-0.164-0.205-0.338-0.4-0.52-0.586l-3.08-0.21s3.988,10.55,0.059,16.65c-3.932,6.095,1.529,9.217,1.529,9.217l0.713-0.341c-2.51-3.188-1.32-6.021,0.354-9.958,0.672-1.584,1.398-3.312,1.939-5.237l-0.016-0.012,0.018,0.002c0.27-0.95,0.49-1.95,0.63-3z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M28.69,31.64c0.158,0,0.375-0.017,0.619-0.072-0.018-0.021-0.037-0.043-0.055-0.065l1.316-0.63c0.396-0.384,0.758-0.951,1-1.798,0.039-0.138,0.135-0.432,1.217-0.519-1.998-3.107,2.508-10.35,2.508-10.35l-2.74-1.999c-7.863,5.659-9.123,7.896-9.336,9.108-0.271,1.575,1.242,3.525,1.709,4.085,0.86,1.02,2.21,2.24,3.75,2.24z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M34.33,11.31c-0.064,0.176-0.518,1.574,0.83,3.061-0.857,0.591-1.65,1.149-2.391,1.678l2.527,0.4-0.109-5.178-0.707-0.362-0.15,0.4z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M33.03,46.65c0-0.835-0.672-1.511-1.514-1.511v-11.36s-0.002-0.004-0.006-0.007c-3.328,5.372-3.754,9.555-3.777,9.845v4.541h3.783c0.85,0,1.52-0.68,1.52-1.51z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M35.23,13.17l-0.039-1.893-0.027-0.015-0.119,0.317c-0.04,0.11-0.24,0.75,0.19,1.59z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M28.69,30.89c0.59,0,1.654-0.263,2.152-2.015,0.168-0.599,0.658-0.923,1.613-1.043-1.039-3.379,2.84-9.625,2.84-9.625l-2.096-1.528c-5.842,4.191-8.951,7.136-9.234,8.768-0.174,0.997,0.725,2.489,1.543,3.467,0.63,0.72,1.87,1.96,3.19,1.96z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M33.03,46.65c0-0.835-0.672-1.511-1.514-1.511v-9.898c-2.627,4.633-3.004,8.114-3.027,8.385v4.541h3.027c0.84,0,1.51-0.68,1.51-1.51z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M35.3,16.45l-0.027-1.233c-0.492,0.34-0.971,0.676-1.432,1.001l1.46,0.23z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="39.86" x2="45.73" y1="31.43" y2="11.94">
-<stop offset="0" stop-color="#8C8E8E"/>
-<stop offset="0.6545" stop-color="#C2C2C2"/>
-<stop offset="1" stop-color="#A3A8A7"/>
+<path d="M45.816,15.486l5.787,0.393l1.094,2.745l-2.303,0.97l2.957,1.516l0.107,5.178l-3.064-0.485 l3.064,2.238c0,0-5.514,8.872-1.639,11.192l-4.416,2.117c0,0-5.461-3.122-1.529-9.217C49.805,26.041,45.816,15.486,45.816,15.486z" fill="url(#SVGID_9_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.395,21.109 53.352,22.625 53.428,26.284 53.459,26.289 53.352,21.111 52.014,20.425 " stroke-opacity="0.5"/>
+<path d="M51.604,17.393l0.576,1.449l0.518-0.217l-1.094-2.745l-5.787-0.393 c0,0,0.221,0.584,0.506,1.547L51.604,17.393z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M50.395,27.317l2.455,1.792c0.355-0.659,0.609-1.067,0.609-1.067l-0.42-0.307L50.395,27.317z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M50.492,37.07c-0.115,0.988-0.037,1.905,0.346,2.634l0.982-0.47C51.014,38.75,50.619,37.98,50.492,37.07z" fill="#FFFFFF"/>
+<path d="M51.604,16.773l0.789,1.979l0.305-0.127l-1.094-2.745l-5.787-0.393 c0,0,0.125,0.335,0.313,0.912L51.604,16.773z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="50.395,20.488 53.352,22.003 53.441,26.287 53.459,26.289 53.352,21.111 51.35,20.085 " stroke-opacity="0.5"/>
+<path d="M50.461,36.793c-0.076,1.082,0.1,2.057,0.691,2.762l0.668-0.321C50.934,38.703,50.543,37.826,50.461,36.793z " fill="#FFFFFF"/>
+<path d="M50.395,26.697l2.697,1.97c0.227-0.394,0.367-0.625,0.367-0.625l-1.504-1.099L50.395,26.697z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M51.795,22.912c0.119-0.9,0.127-1.758,0.043-2.579l-1.443-0.739l1.232-0.519 c-0.297-1.192-0.838-2.284-1.617-3.264c-0.012-0.015-0.025-0.029-0.039-0.043l-4.154-0.282c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l1.41-0.676c-2.369-2.885-1.332-5.364,0.352-9.328c0.65-1.533,1.355-3.199,1.898-5.053 l-0.67-0.49l0.77,0.121C51.428,24.971,51.652,23.974,51.795,22.912z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M51.043,22.811c0.141-1.024,0.125-1.987-0.023-2.895l-0.625-0.321l0.521-0.22 c-0.27-1.134-0.764-2.168-1.5-3.092c-0.164-0.205-0.338-0.4-0.52-0.586l-3.08-0.21c0,0,3.988,10.554,0.059,16.647 c-3.932,6.095,1.529,9.217,1.529,9.217l0.713-0.341c-2.51-3.188-1.32-6.021,0.354-9.958c0.672-1.584,1.398-3.312,1.939-5.237 l-0.016-0.012l0.018,0.002C50.68,24.857,50.9,23.863,51.043,22.811z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.693,31.644c0.158,0,0.375-0.017,0.619-0.072c-0.018-0.021-0.037-0.043-0.055-0.065 l1.316-0.63c0.396-0.384,0.758-0.951,1-1.798c0.039-0.138,0.135-0.432,1.217-0.519c-1.998-3.107,2.508-10.354,2.508-10.354 l-2.74-1.999c-7.863,5.659-9.123,7.896-9.336,9.108c-0.271,1.575,1.242,3.525,1.709,4.085 C25.795,30.422,27.146,31.644,28.693,31.644z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M34.332,11.312c-0.064,0.176-0.518,1.574,0.83,3.061c-0.857,0.591-1.65,1.149-2.391,1.678 l2.527,0.4l-0.109-5.178l-0.707-0.362L34.332,11.312z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511V33.785c0,0-0.002-0.004-0.006-0.007 c-3.328,5.372-3.754,9.555-3.777,9.845v4.541h3.783C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#222021" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M35.229,13.167l-0.039-1.893l-0.027-0.015l-0.119,0.317 C35.002,11.689,34.799,12.333,35.229,13.167z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M28.693,30.888c0.59,0,1.654-0.263,2.152-2.015c0.168-0.599,0.658-0.923,1.613-1.043 c-1.039-3.379,2.84-9.625,2.84-9.625l-2.096-1.528c-5.842,4.191-8.951,7.136-9.234,8.768c-0.174,0.997,0.725,2.489,1.543,3.467 C26.133,29.65,27.371,30.888,28.693,30.888z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M33.027,46.647c0-0.835-0.672-1.511-1.514-1.511v-9.898c-2.627,4.633-3.004,8.114-3.027,8.385 v4.541h3.027C32.355,48.163,33.027,47.485,33.027,46.647z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M35.299,16.452l-0.027-1.233c-0.492,0.34-0.971,0.676-1.432,1.001L35.299,16.452z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="39.8555" x2="45.7253" y1="31.4277" y2="11.9445">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<path d="M50.3,22.71c1.209-8.98-9.908-10.01-9.908-10.01l-4.635-0.864s-0.475,1.282,2.004,2.598c-4.35,2.931-12.63,8.778-13.04,11.14-0.27,1.543,4.24,7.189,5.402,3.091,0.779-2.748,5.498-1.031,6.777-1.84,1.043-0.661,2.184,0.289,2.184,0.289-9.029,8.199-9.834,16.51-9.834,16.51v11.35h20.43v-11.36c-8.19-6.663-0.64-11.58,0.62-20.91z" fill="url(#SVGID_10_)"/>
-<path d="M36.09,20.58l3.492-2.383s-0.17,5.04-3.49,2.38z" fill="#FCFCFC" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.83" x2="37.83" y1="16.94" y2="20.98">
-<stop offset="0" stop-color="#292929"/>
-<stop offset="1" stop-color="#868686"/>
+<path d="M50.295,22.709c1.209-8.98-9.908-10.006-9.908-10.006l-4.635-0.864c0,0-0.475,1.282,2.004,2.598 c-4.35,2.931-12.631,8.778-13.041,11.138c-0.27,1.543,4.24,7.189,5.402,3.091c0.779-2.748,5.498-1.031,6.777-1.84 c1.043-0.661,2.184,0.289,2.184,0.289c-9.029,8.199-9.834,16.508-9.834,16.508v11.351h20.432V43.623 C41.486,36.955,49.037,32.04,50.295,22.709z" fill="url(#SVGID_10_)"/>
+<path d="M36.086,20.578l3.492-2.383C39.578,18.195,39.412,23.245,36.086,20.578z" fill="#FCFCFC" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="37.832" x2="37.832" y1="16.939" y2="20.9847">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="1" style="stop-color:#868686"/>
</linearGradient>
-<path d="M36.09,20.22l3.492-2.243s-0.75,3.88-3.49,2.24z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="27.73" x2="51.19" y1="56.49" y2="56.49">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.6545" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<path d="M36.086,20.223l3.492-2.243C39.578,17.98,38.832,21.864,36.086,20.223z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="27.7305" x2="51.1914" y1="56.4868" y2="56.4868">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<path d="M51.19,56.48c0,0.84-0.674,1.516-1.516,1.516h-20.54c-0.846,0-1.398-0.676-1.398-1.516,0-0.835,0.553-1.511,1.398-1.511h20.55c0.84,0,1.51,0.68,1.51,1.51z" fill="url(#SVGID_12_)"/>
-<path d="M29.13,55.73h20.55c0.711,0,1.293,0.482,1.461,1.134,0.029-0.121,0.055-0.246,0.055-0.379,0-0.835-0.674-1.511-1.516-1.511h-20.55c-0.846,0-1.398,0.676-1.398,1.511,0,0.133,0.02,0.258,0.043,0.379,0.15-0.65,0.65-1.13,1.36-1.13z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.36" x2="52.36" y1="30.4" y2="15.81">
-<stop offset="0" stop-color="#8C8E8E"/>
-<stop offset="0.6545" stop-color="#C2C2C2"/>
-<stop offset="1" stop-color="#A3A8A7"/>
+<path d="M51.191,56.484c0,0.84-0.674,1.516-1.516,1.516H29.129c-0.846,0-1.398-0.676-1.398-1.516l0,0 c0-0.835,0.553-1.511,1.398-1.511h20.547C50.518,54.973,51.191,55.649,51.191,56.484L51.191,56.484z" fill="url(#SVGID_12_)"/>
+<path d="M29.129,55.729h20.547c0.711,0,1.293,0.482,1.461,1.134c0.029-0.121,0.055-0.246,0.055-0.379 c0-0.835-0.674-1.511-1.516-1.511H29.129c-0.846,0-1.398,0.676-1.398,1.511c0,0.133,0.02,0.258,0.043,0.379 C27.916,56.211,28.416,55.729,29.129,55.729z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.3633" x2="52.3587" y1="30.4033" y2="15.8073">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<path d="M47.23,15.23l-9.158,11.4c0.576,0.121,1.01,0.48,1.01,0.48-0.455,0.413-0.875,0.826-1.287,1.241l0.039,0.191,12.48-5.992c0.43-3.56-1.1-5.85-3.08-7.32z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="32.9" x2="50.8" y1="30.03" y2="34.88">
-<stop offset="0" stop-color="#8C8E8E"/>
-<stop offset="0.6545" stop-color="#C2C2C2"/>
-<stop offset="1" stop-color="#A3A8A7"/>
+<path d="M47.227,15.23l-9.158,11.404c0.576,0.121,1.01,0.48,1.01,0.48c-0.455,0.413-0.875,0.826-1.287,1.241 l0.039,0.191l12.477-5.992C50.736,18.991,49.209,16.696,47.227,15.23z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="32.9014" x2="50.7963" y1="30.0332" y2="34.8763">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#C2C2C2"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
+</linearGradient>
+<path d="M50.295,22.709c0.125-0.939,0.111-1.787-0.006-2.556c-4.604,1.769-10.771,6.629-11.32,7.068 c-8.92,8.164-9.725,16.401-9.725,16.401v0.007l20.432-0.007C41.486,36.955,49.037,32.04,50.295,22.709z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="29.2441" x2="49.6758" y1="49.3013" y2="49.3013">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<path d="M50.3,22.71c0.125-0.939,0.111-1.787-0.006-2.556-4.604,1.769-10.77,6.629-11.32,7.068-8.92,8.164-9.725,16.4-9.725,16.4v0.007l20.43-0.007c-8.18-6.66-0.63-11.58,0.63-20.91z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="29.24" x2="49.68" y1="49.3" y2="49.3">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.6545" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<rect fill="url(#SVGID_15_)" height="11.344" width="20.432" x="29.244" y="43.629"/>
+<rect fill="#222021" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.432" x="29.244" y="54.215"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.755" stroke-opacity="0.5" width="20.432" x="29.244" y="43.623"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.432" x="29.244" y="44.378"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="0.756" stroke-opacity="0.1" width="20.432" x="29.244" y="45.136"/>
+<rect fill="#222021" fill-opacity="0.2" height="0.755" stroke-opacity="0.2" width="20.432" x="29.244" y="53.459"/>
+<rect fill="#222021" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.432" x="29.244" y="52.702"/>
+<path d="M45.961,37.882c-0.248,2.392,0.57,4.695,3.715,7.254v-1.513C47.199,41.606,46.166,39.75,45.961,37.882z" fill="#FFFFFF"/>
+<path d="M40.387,14.214c0,0,9.34,0.869,9.961,7.937c0.682-8.461-9.961-9.449-9.961-9.449l-4.635-0.864 c0,0-0.266,0.719,0.643,1.634L40.387,14.214z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M29.244,43.623v1.513c0,0,0.805-8.31,9.834-16.507c0,0-0.467-0.386-1.078-0.492 C29.988,35.989,29.244,43.623,29.244,43.623z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M37.756,15.949c-0.479-0.253-0.842-0.504-1.127-0.748 c-4.512,3.087-11.537,8.203-11.914,10.373c-0.041,0.241,0.035,0.587,0.195,0.978C26.248,23.936,33.705,18.678,37.756,15.949z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M29.244,43.623v0.755c0,0,0.805-8.31,9.834-16.508c0,0-0.195-0.157-0.488-0.296 C30.025,35.62,29.244,43.623,29.244,43.623z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M40.387,13.458c0,0,9.664,0.898,9.988,8.3c0.328-8.099-9.988-9.055-9.988-9.055l-4.635-0.864 c0,0-0.111,0.304,0.061,0.768L40.387,13.458z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M45.93,37.527c-0.115,2.25,0.777,4.435,3.746,6.851v-0.755C47.041,41.477,46.041,39.514,45.93,37.527z" fill="#FFFFFF"/>
+<path d="M37.756,15.194c-0.225-0.118-0.414-0.236-0.594-0.355 c-4.467,3.032-12.057,8.479-12.447,10.735c-0.025,0.153-0.004,0.343,0.051,0.56C25.564,23.66,33.521,18.045,37.756,15.194z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="33.5625" x2="53.7416" y1="42.9795" y2="41.7184">
+<stop offset="0" style="stop-color:#8C8E8E"/>
+<stop offset="0.6545" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#A3A8A7"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="11.34" width="20.43" x="29.24" y="43.63"/>
-<rect fill="#222021" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.43" x="29.24" y="54.22"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="0.755" stroke-opacity="0.5" width="20.43" x="29.24" y="43.62"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.758" stroke-opacity="0.3" width="20.43" x="29.24" y="44.38"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="0.756" stroke-opacity="0.1" width="20.43" x="29.24" y="45.14"/>
-<rect fill="#222021" fill-opacity="0.2" height="0.755" stroke-opacity="0.2" width="20.43" x="29.24" y="53.46"/>
-<rect fill="#222021" fill-opacity="0.1" height="0.758" stroke-opacity="0.1" width="20.43" x="29.24" y="52.7"/>
-<path d="M45.96,37.88c-0.248,2.392,0.57,4.695,3.715,7.254v-1.513c-2.48-2.01-3.51-3.87-3.72-5.74z" fill="#FFFFFF"/>
-<path d="M40.39,14.21s9.34,0.869,9.961,7.937c0.682-8.461-9.961-9.449-9.961-9.449l-4.635-0.864s-0.266,0.719,0.643,1.634l3.99,0.74z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M29.24,43.62v1.513s0.805-8.31,9.834-16.51c0,0-0.467-0.386-1.078-0.492-8,7.86-8.75,15.49-8.75,15.49z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M37.76,15.95c-0.479-0.253-0.842-0.504-1.127-0.748-4.512,3.087-11.54,8.203-11.91,10.37-0.041,0.241,0.035,0.587,0.195,0.978,1.33-2.61,8.78-7.87,12.84-10.6z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M29.24,43.62v0.755s0.805-8.31,9.834-16.51c0,0-0.195-0.157-0.488-0.296-8.56,8.05-9.34,16.05-9.34,16.05z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M40.39,13.46s9.664,0.898,9.988,8.3c0.328-8.099-9.988-9.055-9.988-9.055l-4.635-0.864s-0.111,0.304,0.061,0.768l4.57,0.85z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M45.93,37.53c-0.115,2.25,0.777,4.435,3.746,6.851v-0.755c-2.64-2.14-3.64-4.11-3.75-6.09z" fill="#FFFFFF"/>
-<path d="M37.76,15.19c-0.225-0.118-0.414-0.236-0.594-0.355-4.467,3.032-12.06,8.479-12.45,10.74-0.025,0.153-0.004,0.343,0.051,0.56,0.79-2.48,8.75-8.1,12.99-10.95z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1.0123 0 0 1 -4.0079 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="33.56" x2="53.74" y1="42.98" y2="41.72">
-<stop offset="0" stop-color="#8C8E8E"/>
-<stop offset="0.6545" stop-color="#DEDEDE"/>
-<stop offset="1" stop-color="#A3A8A7"/>
-</linearGradient>
-<path d="M29.24,43.6h20.43c-2.48-2.009-3.729-3.006-9.957-3.006-7.77,0.01-10.47,3.01-10.47,3.01z" fill="url(#SVGID_16_)"/>
+<path d="M29.244,43.601h20.432c-2.48-2.009-3.729-3.006-9.957-3.006 C31.945,40.595,29.244,43.601,29.244,43.601z" fill="url(#SVGID_16_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_audio.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_audio.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,126 +1,128 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="280.7" x2="307" y1="-333.5" y2="-333.5">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="280.6641" x2="306.9727" y1="-333.5469" y2="-333.5469">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M29.53,6.518h-23.42c-0.795,0-1.445,0.643-1.445,1.431v42.63h26.31v-42.63c0-0.788-0.65-1.43-1.44-1.43z" fill="url(#SVGID_1_)"/>
-<path d="M29.53,6.518c0.795,0,1.443,0.643,1.443,1.431v42.63h-26.31v-42.63c0-0.788,0.65-1.431,1.445-1.431l23.42,0.001m0,1.133h-23.42c-0.168,0-0.313,0.136-0.313,0.297v41.49h24.04v-41.49c0-0.161-0.14-0.297-0.31-0.297z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="278.4" x2="309.1" y1="-352.6" y2="-352.6">
-<stop offset="0" stop-color="#6D98AD"/>
-<stop offset="0.2545" stop-color="#B4DCCA"/>
-<stop offset="0.7091" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M29.529,6.518H6.109c-0.795,0-1.445,0.643-1.445,1.431v42.626h26.309V7.948 C30.973,7.16,30.324,6.518,29.529,6.518z" fill="url(#SVGID_1_)"/>
+<path d="M29.529,6.518c0.795,0,1.443,0.643,1.443,1.431v42.626H4.664V7.948 c0-0.788,0.65-1.431,1.445-1.431L29.529,6.518 M29.529,7.651H6.109c-0.168,0-0.313,0.136-0.313,0.297v41.489h24.042V7.948 C29.839,7.787,29.696,7.651,29.529,7.651L29.529,7.651z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="278.3945" x2="309.0776" y1="-352.5684" y2="-352.5684">
+<stop offset="0" style="stop-color:#6D98AD"/>
+<stop offset="0.2545" style="stop-color:#B4DCCA"/>
+<stop offset="0.7091" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="6.012" width="30.85" x="2.395" y="44.56"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.129" stroke-opacity="0.4" width="30.85" x="2.395" y="44.56"/>
-<rect fill-opacity="0.15" height="1.129" stroke-opacity="0.15" width="26.31" x="4.664" y="43.44"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="293.8" x2="293.8" y1="-342" y2="-320.8">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A8A8A8"/>
+<rect fill="url(#SVGID_2_)" height="6.012" width="30.848" x="2.395" y="44.563"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.129" stroke-opacity="0.4" width="30.848" x="2.395" y="44.563"/>
+<rect fill-opacity="0.15" height="1.129" stroke-opacity="0.15" width="26.309" x="4.664" y="43.436"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="293.8184" x2="293.8184" y1="-341.9766" y2="-320.7682">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<path d="M17.82,36.98c-5.853,0-10.62-4.765-10.62-10.62,0-5.854,4.768-10.62,10.62-10.62,5.854,0,10.62,4.764,10.62,10.62,0,5.85-4.77,10.62-10.62,10.62z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="903.1" cy="-142.9" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="16.33">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.3333" stop-color="#808080"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<path d="M17.819,36.977c-5.853,0-10.62-4.765-10.62-10.618c0-5.854,4.768-10.618,10.62-10.618 c5.854,0,10.618,4.764,10.618,10.618C28.438,32.212,23.674,36.977,17.819,36.977L17.819,36.977z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="903.1143" cy="-142.9111" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="16.3333">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</radialGradient>
-<circle cx="17.82" cy="26.36" fill="url(#SVGID_4_)" r="9.999"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="293.8" x2="293.8" y1="-338.9" y2="-323.7">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#313131"/>
+<circle cx="17.821" cy="26.358" fill="url(#SVGID_4_)" r="9.999"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="293.8193" x2="293.8193" y1="-338.9326" y2="-323.6798">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#313131"/>
</linearGradient>
-<circle cx="17.82" cy="26.36" fill="url(#SVGID_5_)" r="7.788"/>
-<radialGradient cx="903" cy="-143.5" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="12.23">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#696969"/>
+<circle cx="17.819" cy="26.358" fill="url(#SVGID_5_)" r="7.788"/>
+<radialGradient cx="903.0488" cy="-143.4668" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="12.2251">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M24.09,30.96l-2.57-2.281h-6.926l-2.948,2.406c1.424,1.854,3.657,3.056,6.176,3.056,2.58-0.01,4.85-1.26,6.27-3.19z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M22.87,27.6c0,2.788-2.26,5.048-5.047,5.048s-5.044-2.26-5.044-5.048c0-2.785,2.257-5.046,5.044-5.046,2.79,0.01,5.05,2.27,5.05,5.05z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<radialGradient cx="903.1" cy="-140.7" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="9.28">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M24.088,30.964l-2.57-2.281h-6.926l-2.948,2.406 c1.424,1.854,3.657,3.056,6.176,3.056C20.396,34.145,22.671,32.889,24.088,30.964z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.866,27.604c0,2.788-2.26,5.048-5.047,5.048 c-2.787,0-5.044-2.26-5.044-5.048c0-2.785,2.257-5.046,5.044-5.046C20.606,22.558,22.866,24.819,22.866,27.604z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<radialGradient cx="903.1455" cy="-140.748" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="9.2803">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<circle cx="17.82" cy="26.36" fill="url(#SVGID_7_)" r="5.045"/>
-<circle cx="17.82" cy="26.36" fill="none" fill-opacity="0.15" r="4.385" stroke="#EBEBEB" stroke-opacity="0.15"/>
-<path d="M30.97,50.57h2.27v-6.012h-2.27v-31.85h-8.271c-1.479,0-2.683,1.198-2.683,2.669v35.2h10.95z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.3" x2="323.6" y1="-341" y2="-341">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<circle cx="17.821" cy="26.358" fill="url(#SVGID_7_)" r="5.045"/>
+<circle cx="17.822" cy="26.358" fill="none" fill-opacity="0.15" r="4.385" stroke="#EBEBEB" stroke-opacity="0.15"/>
+<path d="M30.973,50.574h2.27v-4.883v-1.129h-2.27v-1.129V12.705h-8.271 c-1.479,0-2.683,1.198-2.683,2.669v35.2H30.973z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="297.2568" x2="323.5664" y1="-340.9707" y2="-340.9707">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M46.12,13.94h-23.42c-0.796,0-1.445,0.644-1.445,1.432v42.62h26.31v-42.63c-0.01-0.784-0.65-1.434-1.45-1.434z" fill="url(#SVGID_8_)"/>
-<path d="M46.12,13.94c0.796,0,1.442,0.644,1.442,1.432v42.62h-26.3v-42.63c0-0.788,0.649-1.432,1.445-1.432h23.42m-0.002,1.14h-23.42c-0.169,0-0.312,0.137-0.312,0.298v41.49h24.04v-41.5c0-0.164-0.14-0.294-0.31-0.294z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="295" x2="325.7" y1="-360" y2="-360">
-<stop offset="0" stop-color="#6D98AD"/>
-<stop offset="0.2545" stop-color="#B4DCCA"/>
-<stop offset="0.7091" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M46.122,13.942h-23.42c-0.796,0-1.445,0.644-1.445,1.432v42.625h26.31V15.374 C47.564,14.586,46.918,13.942,46.122,13.942z" fill="url(#SVGID_8_)"/>
+<path d="M46.122,13.942c0.796,0,1.442,0.644,1.442,1.432v42.625H21.257V15.374 c0-0.788,0.649-1.432,1.445-1.432H46.122 M46.122,15.076h-23.42c-0.169,0-0.312,0.137-0.312,0.298v41.489h24.042V15.374 C46.432,15.213,46.289,15.076,46.122,15.076L46.122,15.076z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="294.9863" x2="325.6694" y1="-359.9941" y2="-359.9941">
+<stop offset="0" style="stop-color:#6D98AD"/>
+<stop offset="0.2545" style="stop-color:#B4DCCA"/>
+<stop offset="0.7091" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="6.01" width="30.85" x="18.99" y="51.99"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.129" stroke-opacity="0.4" width="30.85" x="18.99" y="51.99"/>
-<rect fill-opacity="0.15" height="1.13" stroke-opacity="0.15" width="26.31" x="21.26" y="50.86"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="310.4" x2="310.4" y1="-349.4" y2="-328.2">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A8A8A8"/>
+<rect fill="url(#SVGID_9_)" height="6.01" width="30.849" x="18.986" y="51.989"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.129" stroke-opacity="0.4" width="30.849" x="18.986" y="51.989"/>
+<rect fill-opacity="0.15" height="1.13" stroke-opacity="0.15" width="26.31" x="21.257" y="50.859"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="310.4102" x2="310.4102" y1="-349.4004" y2="-328.192">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<path d="M34.41,44.4c-5.854,0-10.62-4.764-10.62-10.62,0-5.854,4.767-10.62,10.62-10.62,5.854,0,10.62,4.765,10.62,10.62,0,5.86-4.76,10.62-10.62,10.62z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="930.2" cy="-155" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.33">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.3333" stop-color="#808080"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<path d="M34.412,44.4c-5.854,0-10.62-4.764-10.62-10.616c0-5.854,4.767-10.619,10.62-10.619 c5.854,0,10.617,4.765,10.617,10.619C45.029,39.639,40.268,44.4,34.412,44.4L34.412,44.4z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="930.2168" cy="-155.041" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.333">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</radialGradient>
-<circle cx="34.41" cy="33.78" fill="url(#SVGID_11_)" r="9.999"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="310.4" x2="310.4" y1="-346.4" y2="-331.1">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#313131"/>
+<circle cx="34.413" cy="33.784" fill="url(#SVGID_11_)" r="9.999"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="310.4121" x2="310.4121" y1="-346.3584" y2="-331.1061">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#313131"/>
</linearGradient>
-<circle cx="34.41" cy="33.78" fill="url(#SVGID_12_)" r="7.788"/>
-<radialGradient cx="930.2" cy="-155.6" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="12.23">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#696969"/>
+<circle cx="34.412" cy="33.784" fill="url(#SVGID_12_)" r="7.788"/>
+<radialGradient cx="930.1533" cy="-155.5962" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_13_" r="12.2251">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M40.68,38.39l-2.57-2.279h-6.926l-2.949,2.406c1.425,1.854,3.658,3.055,6.176,3.055,2.58-0.01,4.85-1.27,6.27-3.19z" fill="url(#SVGID_13_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<circle cx="34.41" cy="35.03" fill-opacity="0.15" r="5.046" stroke-opacity="0.15"/>
-<radialGradient cx="930.2" cy="-152.9" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="9.28">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M40.682,38.389l-2.57-2.279h-6.926l-2.949,2.406 c1.425,1.854,3.658,3.055,6.176,3.055C36.988,41.57,39.264,40.314,40.682,38.389z" fill="url(#SVGID_13_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="34.413" cy="35.03" fill-opacity="0.15" r="5.046" stroke-opacity="0.15"/>
+<radialGradient cx="930.249" cy="-152.8774" gradientTransform="matrix(0.6122 0 0 -0.6122 -535.0661 -61.1312)" gradientUnits="userSpaceOnUse" id="SVGID_14_" r="9.28">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<circle cx="34.41" cy="33.78" fill="url(#SVGID_14_)" r="5.046"/>
-<circle cx="34.41" cy="33.78" fill="none" fill-opacity="0.15" r="4.385" stroke="#EBEBEB" stroke-opacity="0.15"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="329.1" x2="329.1" y1="-307.6" y2="-334.9">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<circle cx="34.413" cy="33.784" fill="url(#SVGID_14_)" r="5.046"/>
+<circle cx="34.414" cy="33.784" fill="none" fill-opacity="0.15" r="4.385" stroke="#EBEBEB" stroke-opacity="0.15"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="329.0576" x2="329.0576" y1="-307.5635" y2="-334.9076">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M52.84,1.999l-4.33,2.773c2.588,3.613,3.951,7.799,3.951,12.58,0,4.217-1.031,8.032-3.092,11.39l4.419,2.49c0.126-0.201,3.817-5.979,3.817-13.88-0.01-5.89-1.58-10.89-4.77-15.35z" fill="url(#SVGID_15_)"/>
-<path d="M47.82,15.06c0-0.788-0.647-1.431-1.443-1.431h-4.771c0.306,1.081,0.44,2.276,0.44,3.714,0,2.583-0.452,4.328-1.608,6.229l-0.612,1.002,6.471,3.647,0.573-0.933c0.206-0.339,0.563-0.971,0.952-1.842v-10.39z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="320.7" x2="320.7" y1="-312.8" y2="-330.3">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M52.841,1.999L48.51,4.772c2.588,3.613,3.951,7.799,3.951,12.575c0,4.217-1.031,8.032-3.092,11.386 l4.419,2.49c0.126-0.201,3.817-5.979,3.817-13.875C57.605,11.46,56.031,6.457,52.841,1.999z" fill="url(#SVGID_15_)"/>
+<path d="M47.822,15.064c0-0.788-0.647-1.431-1.443-1.431h-4.771 c0.306,1.081,0.44,2.276,0.44,3.714c0,2.583-0.452,4.328-1.608,6.229l-0.612,1.002l6.471,3.647l0.573-0.933 c0.206-0.339,0.563-0.971,0.952-1.842L47.822,15.064L47.822,15.064z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="320.6797" x2="320.6797" y1="-312.7827" y2="-330.3271">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M45.26,6.974l-4.3,2.793c1.66,2.317,2.226,4.52,2.226,7.581,0,2.683-0.473,4.681-1.775,6.819l4.494,2.533c1.78-2.93,4.89-10.95-0.65-19.73z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="329.1" x2="329.1" y1="-306.8" y2="-336.2">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<path d="M45.258,6.974l-4.3,2.793c1.66,2.317,2.226,4.52,2.226,7.581c0,2.683-0.473,4.681-1.775,6.819 l4.494,2.533C47.691,23.772,50.796,15.748,45.258,6.974z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="329.0576" x2="329.0576" y1="-306.832" y2="-336.1659">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M52.67,2.851c2.896,4.244,4.305,8.992,4.305,14.5,0,6.409-2.488,11.4-3.414,13.03l-3.328-1.875c1.892-3.304,2.853-7.053,2.853-11.15,0-4.587-1.243-8.755-3.694-12.4l3.27-2.099m0.17-0.852l-4.33,2.773c2.588,3.613,3.951,7.799,3.951,12.58,0,4.217-1.031,8.032-3.092,11.39l4.419,2.49c0.126-0.201,3.817-5.979,3.817-13.88-0.01-5.89-1.58-10.89-4.77-15.35z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="320.7" x2="320.7" y1="-312.4" y2="-331.5">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2545" stop-color="#708A9C"/>
-<stop offset="0.7333" stop-color="#314172"/>
-<stop offset="1" stop-color="#91CBCE"/>
+<path d="M52.674,2.851c2.896,4.244,4.305,8.992,4.305,14.497c0,6.409-2.488,11.396-3.414,13.028 l-3.328-1.875c1.892-3.304,2.853-7.053,2.853-11.153c0-4.587-1.243-8.755-3.694-12.399L52.674,2.851 M52.841,1.999L48.51,4.772 c2.588,3.613,3.951,7.799,3.951,12.575c0,4.217-1.031,8.032-3.092,11.386l4.419,2.49c0.126-0.201,3.817-5.979,3.817-13.875 C57.605,11.46,56.031,6.457,52.841,1.999L52.841,1.999z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="320.6797" x2="320.6797" y1="-312.3647" y2="-331.4919">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2545" style="stop-color:#708A9C"/>
+<stop offset="0.7333" style="stop-color:#314172"/>
+<stop offset="1" style="stop-color:#91CBCE"/>
</linearGradient>
-<path d="M45.06,7.849c4.98,8.402,1.881,15.67,0.608,18l-3.401-1.917c1.09-1.979,1.543-3.935,1.543-6.585,0-3.063-0.578-5.261-1.975-7.405l3.22-2.086m0.2-0.875l-4.3,2.793c1.66,2.317,2.226,4.52,2.226,7.581,0,2.683-0.473,4.681-1.775,6.819l4.494,2.533c1.78-2.93,4.89-10.95-0.65-19.73z" fill="url(#SVGID_18_)"/>
+<path d="M45.061,7.849c4.98,8.402,1.881,15.669,0.608,18.001l-3.401-1.917 c1.09-1.979,1.543-3.935,1.543-6.585c0-3.063-0.578-5.261-1.975-7.405L45.061,7.849 M45.258,6.974l-4.3,2.793 c1.66,2.317,2.226,4.52,2.226,7.581c0,2.683-0.473,4.681-1.775,6.819l4.494,2.533C47.691,23.772,50.796,15.748,45.258,6.974 L45.258,6.974z" fill="url(#SVGID_18_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_bluetooth.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_generic_bluetooth.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,29 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="283.1" x2="328.9" y1="-335" y2="-335">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<g>
+<rect fill="none" height="59.999" width="60"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="283.0508" x2="328.9473" y1="-335" y2="-335">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M51.18,3h-42.36c-0.976,0-1.771,0.788-1.771,1.754v52.25h45.9v-52.25c0-0.966-0.8-1.754-1.77-1.754z" fill="url(#SVGID_1_)"/>
-<path d="M51.18,3c0.973,0,1.769,0.788,1.769,1.754v52.25h-45.9v-52.25c0-0.966,0.795-1.754,1.771-1.754h42.36m0,1.389h-42.36c-0.207,0-0.382,0.168-0.382,0.365v50.85h43.12v-50.86c0-0.197-0.18-0.365-0.38-0.365z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="280.3" x2="331.5" y1="-358.3" y2="-358.3">
-<stop offset="0" stop-color="#6D98AD"/>
-<stop offset="0.2545" stop-color="#B4DCCA"/>
-<stop offset="0.7091" stop-color="#3D568F"/>
-<stop offset="1" stop-color="#416D98"/>
+<path d="M51.18,3H8.822C7.846,3,7.051,3.788,7.051,4.754V57h45.896V4.754C52.947,3.788,52.152,3,51.18,3z" fill="url(#SVGID_1_)"/>
+<path d="M51.18,3c0.973,0,1.769,0.788,1.769,1.754V57H7.051V4.754C7.051,3.788,7.846,3,8.822,3H51.18 M51.18,4.389H8.822c-0.207,0-0.382,0.168-0.382,0.365v50.854h43.119V4.754C51.559,4.557,51.385,4.389,51.18,4.389L51.18,4.389z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="280.2695" x2="331.4557" y1="-358.3159" y2="-358.3159">
+<stop offset="0" style="stop-color:#6D98AD"/>
+<stop offset="0.2545" style="stop-color:#B4DCCA"/>
+<stop offset="0.7091" style="stop-color:#3D568F"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="7.368" width="51.46" x="4.27" y="49.63"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.384" stroke-opacity="0.4" width="51.46" x="4.27" y="49.63"/>
-<rect fill-opacity="0.15" height="1.384" stroke-opacity="0.15" width="45.9" x="7.051" y="48.25"/>
-<path d="M38.48,21.46l-9.881-10.12v13.33l-5.431-5.558-1.983,2.022,6.826,7.002-6.826,6.998,1.979,2.021,5.436-5.556v13.33l9.882-10.11-6.526-6.679,6.52-6.67zm-3.94,0.02l-3.156,3.227-0.004-6.457,3.16,3.23zm0,13.32l-3.16,3.223,0.004-6.453,3.16,3.23z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="305.8" x2="305.8" y1="-348.3" y2="-316.8">
-<stop offset="0" stop-color="#5A82A7"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="7.368" width="51.46" x="4.27" y="49.632"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.384" stroke-opacity="0.4" width="51.46" x="4.27" y="49.632"/>
+<rect fill-opacity="0.15" height="1.384" stroke-opacity="0.15" width="45.896" x="7.051" y="48.248"/>
+<path d="M38.482,21.464l-9.881-10.119v13.33l-5.431-5.558l-1.983,2.022 l6.826,7.002l-6.826,6.998l1.979,2.021l5.436-5.556v13.33l9.882-10.113l-6.526-6.679L38.482,21.464z M34.537,21.484l-3.156,3.227 l-0.004-6.457L34.537,21.484z M34.537,34.801l-3.16,3.223l0.004-6.453L34.537,34.801z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -305)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="305.8359" x2="305.8359" y1="-348.332" y2="-316.7938">
+<stop offset="0" style="stop-color:#5A82A7"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M38.48,19.86l-9.88-10.12v13.33l-5.431-5.559-1.983,2.024,6.826,7-6.826,6.998,1.979,2.021,5.436-5.555v13.33l9.881-10.11-6.525-6.681,6.52-6.68zm-3.94,0.02l-3.156,3.226-0.004-6.456,3.16,3.23zm0,13.32l-3.16,3.222,0.004-6.454,3.16,3.23z" fill="url(#SVGID_3_)"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<path d="M38.482,19.863l-9.88-10.119v13.331l-5.431-5.559l-1.983,2.024l6.826,7l-6.826,6.998l1.979,2.021 l5.436-5.555v13.328l9.881-10.111l-6.525-6.681L38.482,19.863z M34.537,19.885l-3.156,3.226l-0.004-6.456L34.537,19.885z M34.537,33.201l-3.16,3.222l0.004-6.454L34.537,33.201z" fill="url(#SVGID_3_)"/>
+<rect fill="none" height="59.999" width="60"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_group_feeds.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_group_feeds.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,223 +1,225 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-70.49" cy="-5.022" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="12.78">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<radialGradient cx="-70.4854" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="12.778">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M48.2,37.92c-1.123-0.489-1.088-2.883-0.625-3.606,0.08-0.126,0.152-0.253,0.23-0.381h-9.4c0.076,0.128,0.148,0.255,0.23,0.381,0.465,0.724,0.5,3.117-0.623,3.606-1.125,0.487,5.227,4.738,5.227,4.738s6.08-4.26,4.95-4.74z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.11" x2="43.11" y1="37.47" y2="47.31">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M48.205,37.917c-1.123-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.152-0.253,0.23-0.381h-9.4 c0.076,0.128,0.148,0.255,0.23,0.381c0.465,0.724,0.5,3.117-0.623,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S49.328,38.404,48.205,37.917z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="43.1104" x2="43.1104" y1="37.4727" y2="47.3145">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M54.96,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722-4.811-3.864c-0.133,0.198-5.924,2.227-7.264,2.938-1.535,0.815-4.039,2.687-4.039,6.904h31.78c0-4.22-2.86-6.3-4.04-6.91z" fill="url(#SVGID_2_)"/>
-<polygon fill="#020202" fill-opacity="0.3" points="37.43,37.95,43.33,42.66,48.88,38.05,47.81,37.62,43.33,41.34,38.52,37.47" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="28.07" x2="37.71" y1="42.75" y2="42.75">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M54.961,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.924,2.227-7.264,2.938c-1.535,0.815-4.039,2.687-4.039,6.904H59C59,43.097,56.145,41.025,54.961,40.41z" fill="url(#SVGID_2_)"/>
+<polygon fill="#020202" fill-opacity="0.3" points="37.43,37.952 43.334,42.655 48.879,38.047 47.811,37.615 43.334,41.337 38.523,37.473 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="28.0684" x2="37.707" y1="42.7466" y2="42.7466">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M37.71,38.7s-8.424,2.199-8.424,8.1c0,0-1.205,0.002-1.215,0-0.01-3.63,2.82-6.45,9.63-8.1z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4" x2="58.04" y1="42.61" y2="42.61">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M37.707,38.696c0,0-8.424,2.199-8.424,8.1c0,0-1.205,0.002-1.215,0 C28.068,43.167,30.902,40.347,37.707,38.696z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4043" x2="58.041" y1="42.6099" y2="42.6099">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M48.4,38.56s8.424,2.199,8.424,8.101h1.213c0.01-3.63-2.82-6.45-9.63-8.1z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="43.16" x2="43.16" y1="43.08" y2="37.64">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M48.404,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.203,0,1.213,0 C58.041,43.029,55.209,40.211,48.404,38.56z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="43.1553" x2="43.1553" y1="43.0781" y2="37.6438">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="43.33,42.66,37.43,37.95,37.09,38.1,43.33,43.08,49.22,38.18,48.88,38.04"/>
-<radialGradient cx="-69.86" cy="-28.65" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="17.15">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_5_)" points="43.334,42.655 37.428,37.952 37.086,38.1 43.334,43.078 49.225,38.182 48.881,38.042 "/>
+<radialGradient cx="-69.8633" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="17.154">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M50.91,26.91c-0.039-0.017-0.084-0.02-0.125-0.033v-0.002c-0.008-0.002-0.014-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.186-0.034-7.85-1.364-11.45-5.712-11.72-4.563-0.217,0.918-2.416,2.9-3.568,3.886,0.008,0.047,0.016,0.086,0.023,0.129,0,0,0.043,0.203,0.129,0.548-0.092,0.01-0.182,0.029-0.268,0.066-0.732,0.308-0.963,1.511-0.514,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.047-0.019,0.084-0.051,0.123-0.078,0.428,0.957,0.951,1.985,1.594,3.013,1.074,1.279,2.717,2.775,4.531,2.775,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.047-0.101,0.074-0.141,0.684-1.071,1.24-2.146,1.689-3.144,0.717,0.248,1.637-0.419,2.094-1.547,0.49-1.21,0.28-2.42-0.44-2.75z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.28" x2="47.06" y1="37.6" y2="30.87">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M50.906,26.909c-0.039-0.017-0.084-0.02-0.125-0.033v-0.002c-0.008-0.002-0.014-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.186-0.034c-7.85-1.364-11.451-5.712-11.723-4.563c-0.217,0.918-2.416,2.9-3.568,3.886 c0.008,0.047,0.016,0.086,0.023,0.129c0,0,0.043,0.203,0.129,0.548c-0.092,0.01-0.182,0.029-0.268,0.066 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.594,3.013c1.074,1.279,2.717,2.775,4.531,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144c0.717,0.248,1.637-0.419,2.094-1.547 C51.838,28.452,51.633,27.236,50.906,26.909z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="40.2764" x2="47.0569" y1="37.6001" y2="30.8725">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M42.72,36.25c-1.34,0-2.686-0.624-3.68-1.562,1.051,1.103,2.463,2.177,4,2.177,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.047-0.101,0.074-0.141,0.684-1.071,1.24-2.146,1.689-3.144-2.5,4.35-4.36,5.07-6.55,5.07z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="42.98" x2="42.98" y1="16.11" y2="26.1">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M42.719,36.249c-1.34,0-2.686-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.047-0.101,0.074-0.141c0.684-1.071,1.24-2.146,1.689-3.144 C46.77,35.533,44.914,36.249,42.719,36.249z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="42.9766" x2="42.9766" y1="16.1133" y2="26.0988">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M42.82,15.97c-2.721,0-4.029,1.238-5.039,2.53-1.645,0.254-4.246,1.762-2.408,8.359,1.152-0.988,3.26-3.666,3.477-4.584,0.273-1.16,3.936,3.278,11.93,4.602,0.094-0.368,0.137-0.587,0.137-0.587,1.25-5.64-1.48-10.1-8.1-10.32z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="46.39" x2="37.34" y1="25.67" y2="20.3">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M42.818,15.967c-2.721,0-4.029,1.238-5.039,2.53c-1.645,0.254-4.246,1.762-2.408,8.359 c1.152-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.094-0.368,0.137-0.587,0.137-0.587 C52.172,20.654,49.439,16.188,42.818,15.967z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="46.3916" x2="37.3443" y1="25.6675" y2="20.2965">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M38.86,21.73s3.916,5.142,11.87,5.133c-0.01,0.01-3.75-0.58-11.87-5.13z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.53" x2="36.61" y1="19.25" y2="25">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M38.855,21.734c0,0,3.916,5.142,11.869,5.133C50.725,26.867,46.98,26.279,38.855,21.734z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.5283" x2="36.6077" y1="19.2515" y2="24.9963">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M37.92,18.88s-3.834,0.23-2.412,6.725c-0.01,0-0.47-4.44,2.41-6.72z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.24" x2="43.96" y1="16.97" y2="19.57">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M37.916,18.881c0,0-3.834,0.23-2.412,6.725C35.504,25.605,35.037,21.157,37.916,18.881z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.2432" x2="43.9615" y1="16.9707" y2="19.5749">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M44.68,19.78c-1.785-0.255-4.803-1.836-5.986-1.272,0,0,3.873-4.417,10.7,0.612,0.01,0-1.62,1.1-4.71,0.66z" fill="url(#SVGID_11_)"/>
-<radialGradient cx="-98.53" cy="-5.022" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="12.78">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M44.678,19.781c-1.785-0.255-4.803-1.836-5.986-1.272c0,0,3.873-4.417,10.705,0.612 C49.396,19.121,47.77,20.221,44.678,19.781z" fill="url(#SVGID_11_)"/>
+<radialGradient cx="-98.5264" cy="-5.0225" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_12_" r="12.778">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M21.98,37.92c-1.125-0.489-1.088-2.883-0.625-3.606,0.08-0.126,0.154-0.253,0.234-0.381h-9.402c0.076,0.128,0.15,0.255,0.23,0.381,0.465,0.724,0.498,3.117-0.625,3.606-1.125,0.487,5.227,4.738,5.227,4.738s6.08-4.26,4.95-4.74z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="16.89" x2="16.89" y1="37.47" y2="47.31">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M21.984,37.917c-1.125-0.489-1.088-2.883-0.625-3.606c0.08-0.126,0.154-0.253,0.234-0.381h-9.402 c0.076,0.128,0.15,0.255,0.23,0.381c0.465,0.724,0.498,3.117-0.625,3.606c-1.125,0.487,5.227,4.738,5.227,4.738 S23.109,38.404,21.984,37.917z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="16.8906" x2="16.8906" y1="37.4727" y2="47.3145">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M28.74,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722-4.811-3.864c-0.133,0.198-5.926,2.227-7.266,2.938-1.528,0.81-4.034,2.68-4.034,6.89h31.78c0-4.21-2.86-6.29-4.04-6.9z" fill="url(#SVGID_13_)"/>
-<polygon fill="#020202" fill-opacity="0.3" points="11.21,37.95,17.12,42.66,22.66,38.05,21.59,37.62,17.12,41.34,12.3,37.47" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1.85" x2="11.49" y1="42.75" y2="42.75">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M28.742,40.41c-1.182-0.614-7.041-2.667-7.15-2.795l-4.477,3.722l-4.811-3.864 c-0.133,0.198-5.926,2.227-7.266,2.938C3.506,41.226,1,43.097,1,47.314h31.781C32.781,43.097,29.924,41.025,28.742,40.41z" fill="url(#SVGID_13_)"/>
+<polygon fill="#020202" fill-opacity="0.3" points="11.209,37.952 17.115,42.655 22.66,38.047 21.592,37.615 17.115,41.337 12.305,37.473 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="1.8496" x2="11.4883" y1="42.7466" y2="42.7466">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M11.49,38.7s-8.426,2.199-8.426,8.1c0,0-1.203,0.002-1.213,0-0.001-3.63,2.831-6.45,9.639-8.1z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.18" x2="31.82" y1="42.61" y2="42.61">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M11.488,38.696c0,0-8.426,2.199-8.426,8.1c0,0-1.203,0.002-1.213,0 C1.85,43.167,4.682,40.347,11.488,38.696z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.1836" x2="31.8223" y1="42.6099" y2="42.6099">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M22.18,38.56s8.424,2.199,8.424,8.101h1.215c0-3.63-2.83-6.45-9.64-8.1z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.93" x2="16.93" y1="43.08" y2="37.64">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M22.184,38.56c0,0,8.424,2.199,8.424,8.101c0,0,1.205,0,1.215,0 C31.822,43.029,28.99,40.211,22.184,38.56z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="16.9346" x2="16.9346" y1="43.0781" y2="37.6438">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<polygon fill="url(#SVGID_16_)" points="17.12,42.66,11.21,37.95,10.86,38.1,17.12,43.08,23,38.18,22.66,38.04"/>
-<radialGradient cx="-97.9" cy="-28.65" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="17.15">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_16_)" points="17.115,42.655 11.209,37.952 10.865,38.1 17.115,43.078 23.004,38.182 22.662,38.042 "/>
+<radialGradient cx="-97.9023" cy="-28.6533" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_17_" r="17.154">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M24.69,26.91c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.188-0.034-7.848-1.364-11.45-5.712-11.72-4.563-0.217,0.918-2.416,2.9-3.57,3.886,0.01,0.047,0.016,0.086,0.025,0.129,0,0,0.041,0.203,0.127,0.548-0.09,0.01-0.18,0.029-0.268,0.066-0.73,0.308-0.963,1.511-0.512,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.045-0.019,0.084-0.051,0.123-0.078,0.428,0.957,0.951,1.985,1.59,3.013,1.076,1.279,2.719,2.775,4.535,2.775,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.045-0.101,0.072-0.141,0.684-1.071,1.242-2.146,1.689-3.144,0.719,0.248,1.637-0.419,2.096-1.547,0.47-1.21,0.26-2.42-0.46-2.75z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.06" x2="20.84" y1="37.6" y2="30.87">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M24.686,26.909c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-7.848-1.364-11.451-5.712-11.721-4.563c-0.217,0.918-2.416,2.9-3.57,3.886 c0.01,0.047,0.016,0.086,0.025,0.129c0,0,0.041,0.203,0.127,0.548c-0.09,0.01-0.18,0.029-0.268,0.066 c-0.73,0.308-0.963,1.511-0.512,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.045-0.019,0.084-0.051,0.123-0.078 c0.428,0.957,0.951,1.985,1.59,3.013c1.076,1.279,2.719,2.775,4.535,2.775c2.197,0,3.541-1.204,4.467-2.413 c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144c0.719,0.248,1.637-0.419,2.096-1.547 C25.617,28.452,25.414,27.236,24.686,26.909z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.0576" x2="20.8372" y1="37.5996" y2="30.873">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M16.5,36.25c-1.34,0-2.688-0.624-3.68-1.562,1.051,1.103,2.463,2.177,4,2.177,2.197,0,3.541-1.204,4.467-2.413,0.023-0.053,0.045-0.101,0.072-0.141,0.684-1.071,1.242-2.146,1.689-3.144-2.5,4.35-4.35,5.07-6.55,5.07z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.76" x2="16.76" y1="16.11" y2="26.1">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M16.5,36.249c-1.34,0-2.688-0.624-3.68-1.562c1.051,1.103,2.463,2.177,4,2.177 c2.197,0,3.541-1.204,4.467-2.413c0.023-0.053,0.045-0.101,0.072-0.141c0.684-1.071,1.242-2.146,1.689-3.144 C20.551,35.533,18.695,36.249,16.5,36.249z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="16.7578" x2="16.7578" y1="16.1133" y2="26.0988">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M16.6,15.97c-2.721,0-4.031,1.238-5.039,2.53-1.645,0.254-4.25,1.762-2.408,8.359,1.15-0.988,3.26-3.666,3.477-4.584,0.273-1.16,3.936,3.278,11.93,4.602,0.092-0.368,0.137-0.587,0.137-0.587,1.26-5.64-1.48-10.1-8.1-10.32z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="20.17" x2="11.12" y1="25.67" y2="20.3">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M16.6,15.967c-2.721,0-4.031,1.238-5.039,2.53c-1.645,0.254-4.25,1.762-2.408,8.359 c1.15-0.988,3.26-3.666,3.477-4.584c0.273-1.16,3.936,3.278,11.934,4.602c0.092-0.368,0.137-0.587,0.137-0.587 C25.955,20.654,23.221,16.188,16.6,15.967z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="20.1719" x2="11.1239" y1="25.6675" y2="20.2961">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M12.64,21.73s3.914,5.142,11.87,5.133c0,0.01-3.75-0.58-11.87-5.13z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="10.31" x2="10.39" y1="19.25" y2="25">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M12.637,21.734c0,0,3.914,5.142,11.869,5.133C24.506,26.867,20.762,26.279,12.637,21.734z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="10.3096" x2="10.389" y1="19.2515" y2="24.9963">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M11.7,18.88s-3.834,0.23-2.412,6.725c-0.003,0-0.47-4.44,2.412-6.72z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="18.02" x2="17.74" y1="16.97" y2="19.58">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M11.697,18.881c0,0-3.834,0.23-2.412,6.725C9.285,25.605,8.818,21.157,11.697,18.881z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="18.0244" x2="17.7427" y1="16.9707" y2="19.5754">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M18.46,19.78c-1.783-0.255-4.803-1.836-5.984-1.272,0,0,3.873-4.417,10.7,0.612,0,0-1.63,1.1-4.72,0.66z" fill="url(#SVGID_22_)"/>
-<path d="M47.92,41.69c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569-0.273-0.11-0.359-0.139-0.686-0.275-0.424,0.186s-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458-0.385,0.206-0.832,0.477-1.283,0.835-0.475-0.392-0.914-0.667-1.234-0.835-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069-0.004,0.005-0.752-0.304-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715-2.535,1.346-4.359,3.248-5.438,5.615h46.63c-1.71-3.52-4.61-5.23-5.38-5.63z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M17.19,22.32c-1.205,1.026-1.531,3.083-0.748,5.124,0.732,1.925,2.256,3.218,3.783,3.218h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965s0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418,0.719,0.248,1.637-0.419,2.096-1.547,0.473-1.168,0.27-2.384-0.459-2.711-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.188-0.034-0.014-0.002-0.027-0.006-0.041-0.008-0.029-0.006-0.07-0.015-0.105-0.023,0.121,0.023,0.232,0.049,0.359,0.07,0.092-0.368,0.137-0.587,0.137-0.587,1.256-5.633-1.479-10.1-8.1-10.32-0.012,0-0.021,0.003-0.033,0.003-0.15,1.8,0.04,3.92,0.64,6.36z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M37.78,18.5c-1.645,0.254-4.246,1.76-2.41,8.354-0.068,0.01-0.139,0.023-0.205,0.051-0.732,0.308-0.963,1.511-0.514,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.047-0.019,0.084-0.051,0.123-0.078,0.359,0.799,0.787,1.648,1.289,2.504,0.564-0.949,1.1-1.934,1.586-2.947,1.395-0.166,2.754-1.375,3.457-3.109,0.801-1.979,0.545-4.035-0.584-5.104,0.504-2.285,0.584-4.463,0.252-6.444-0.033-0.002-0.063-0.006-0.096-0.009-2.72,0-4.03,1.23-5.04,2.53zm-2.4,8.35c0.014-0.014,0.029-0.027,0.043-0.041,0.002,0.01,0.004,0.018,0.008,0.027-0.02,0-0.03,0-0.05,0.01zm3.79-4.75c-0.02-0.004-0.047-0.015-0.066-0.018,0.03,0.01,0.05,0.02,0.07,0.02z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M47.62,42.26c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574-0.264-0.108-0.369-0.142-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16-1.826,0.708-4.971,1.86-5.914,2.361-0.385,0.206-0.832,0.477-1.283,0.835-0.475-0.392-0.914-0.667-1.234-0.835-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037-1.285,0.56c-0.689,0.271-1.549,0.597-2.461,0.943-2.59,0.986-5.525,2.101-6.619,2.681-2.309,1.226-4,2.936-5.035,5.057h45.22c-1.62-3.14-4.25-4.67-4.96-5.04z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M17.04,27.22c0.641,1.68,1.924,2.807,3.191,2.807,0.131,0,0.264-0.012,0.391-0.037,0.432,0.934,0.9,1.844,1.398,2.719h-0.02l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785,0.719,0.248,1.637-0.419,2.096-1.547,0.473-1.168,0.27-2.384-0.459-2.711-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005-0.061-0.017-0.123-0.029-0.188-0.034-0.014-0.002-0.027-0.006-0.041-0.008-0.029-0.006-0.07-0.015-0.105-0.023,0.121,0.023,0.232,0.049,0.359,0.07,0.092-0.368,0.137-0.587,0.137-0.587,1.215-5.457-1.322-9.807-7.5-10.27-0.182,1.82,0.049,4.01,0.717,6.578-1.24,0.71-1.63,2.68-0.88,4.63z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M37.78,18.5c-1.645,0.254-4.246,1.76-2.41,8.354-0.068,0.01-0.139,0.023-0.205,0.051-0.732,0.308-0.963,1.511-0.514,2.687,0.447,1.174,1.406,1.876,2.141,1.566,0.047-0.019,0.084-0.051,0.123-0.078,0.268,0.6,0.576,1.224,0.924,1.861,0.551-0.946,1.072-1.918,1.541-2.922,0.025,0.002,0.055,0.002,0.082,0.002,1.25,0,2.533-1.101,3.195-2.734,0.773-1.902,0.453-3.844-0.701-4.617,0.053-0.229,0.078-0.355,0.078-0.355,0.502-2.247,0.574-4.381,0.238-6.312-2.33,0.15-3.54,1.29-4.48,2.49zm-2.4,8.35c0.014-0.014,0.029-0.027,0.043-0.041,0.002,0.01,0.004,0.018,0.008,0.027-0.02,0-0.03,0-0.05,0.01zm3.79-4.75c-0.02-0.004-0.047-0.015-0.066-0.018,0.03,0.01,0.05,0.02,0.07,0.02z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-84.4" cy="-1.04" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="18.68">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M18.457,19.781c-1.783-0.255-4.803-1.836-5.984-1.272c0,0,3.873-4.417,10.705,0.612 C23.178,19.121,21.549,20.221,18.457,19.781z" fill="url(#SVGID_22_)"/>
+<path d="M47.916,41.694c-1.092-0.569-4.482-1.827-7.205-2.838l-1.533-0.569l-0.273-0.11l-0.359-0.139 l-0.686-0.275l-0.424,0.186c0,0-0.006,0.002-0.008,0.004h-0.002c-1.777,0.695-5.18,1.935-6.166,2.458 c-0.385,0.206-0.832,0.477-1.283,0.835c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.17-0.069 l-0.004,0.005l-0.752-0.304l-0.684,0.299c-0.668,0.263-1.492,0.576-2.373,0.911l-0.08,0.031c-2.607,0.99-5.561,2.113-6.693,2.715 c-2.535,1.346-4.359,3.248-5.438,5.615h20.582h5.561h20.494C51.592,43.797,48.686,42.094,47.916,41.694z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M17.193,22.325c-1.205,1.026-1.531,3.083-0.748,5.124c0.732,1.925,2.256,3.218,3.783,3.218 h0.002c0.23,0.475,0.467,0.945,0.713,1.408h-0.07l0.584,0.965c0,0,0.15,0.248,0.33,0.545c0.486-0.827,0.914-1.646,1.262-2.418 c0.719,0.248,1.637-0.419,2.096-1.547c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002 c-0.012-0.002-0.016-0.002-0.025-0.005c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008 c-0.029-0.006-0.07-0.015-0.105-0.023c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587 c1.256-5.633-1.479-10.1-8.1-10.32c-0.012,0-0.021,0.003-0.033,0.003C16.395,17.765,16.594,19.881,17.193,22.325z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.359,0.799,0.787,1.648,1.289,2.504c0.564-0.949,1.1-1.934,1.586-2.947c1.395-0.166,2.754-1.375,3.457-3.109 c0.801-1.979,0.545-4.035-0.584-5.104c0.504-2.285,0.584-4.463,0.252-6.444c-0.033-0.002-0.063-0.006-0.096-0.009 C40.098,15.967,38.789,17.205,37.779,18.497z M35.381,26.849c0.014-0.014,0.029-0.027,0.043-0.041 c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101 c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#222021" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M47.621,42.258c-1.053-0.549-4.424-1.8-7.133-2.807l-1.549-0.574l-0.264-0.108l-0.369-0.142 l-1.045-0.418c-0.033-0.047-0.057-0.107-0.088-0.16c-1.826,0.708-4.971,1.86-5.914,2.361c-0.385,0.206-0.832,0.477-1.283,0.835 c-0.475-0.392-0.914-0.667-1.234-0.835c-0.85-0.439-4.098-1.619-5.91-2.299l-0.092-0.037l-1.285,0.56 c-0.689,0.271-1.549,0.597-2.461,0.943c-2.59,0.986-5.525,2.101-6.619,2.681c-2.309,1.226-4,2.936-5.035,5.057h19.881h5.561h19.785 C50.957,44.163,48.33,42.626,47.621,42.258z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M17.037,27.223c0.641,1.68,1.924,2.807,3.191,2.807c0.131,0,0.264-0.012,0.391-0.037 c0.432,0.934,0.9,1.844,1.398,2.719H22l0.146,0.241c0.334-0.609,0.645-1.212,0.902-1.785c0.719,0.248,1.637-0.419,2.096-1.547 c0.473-1.168,0.27-2.384-0.459-2.711c-0.039-0.017-0.084-0.02-0.123-0.033v-0.002c-0.012-0.002-0.016-0.002-0.025-0.005 c-0.061-0.017-0.123-0.029-0.188-0.034c-0.014-0.002-0.027-0.006-0.041-0.008c-0.029-0.006-0.07-0.015-0.105-0.023 c0.121,0.023,0.232,0.049,0.359,0.07c0.092-0.368,0.137-0.587,0.137-0.587c1.215-5.457-1.322-9.807-7.5-10.273 c-0.182,1.82,0.049,4.01,0.717,6.578C16.682,23.301,16.289,25.27,17.037,27.223z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M37.779,18.497c-1.645,0.254-4.246,1.76-2.41,8.354c-0.068,0.01-0.139,0.023-0.205,0.051 c-0.732,0.308-0.963,1.511-0.514,2.687c0.447,1.174,1.406,1.876,2.141,1.566c0.047-0.019,0.084-0.051,0.123-0.078 c0.268,0.6,0.576,1.224,0.924,1.861c0.551-0.946,1.072-1.918,1.541-2.922c0.025,0.002,0.055,0.002,0.082,0.002 c1.25,0,2.533-1.101,3.195-2.734c0.773-1.902,0.453-3.844-0.701-4.617c0.053-0.229,0.078-0.355,0.078-0.355 c0.502-2.247,0.574-4.381,0.238-6.312C39.926,16.158,38.717,17.299,37.779,18.497z M35.381,26.849 c0.014-0.014,0.029-0.027,0.043-0.041c0.002,0.01,0.004,0.018,0.008,0.027C35.414,26.837,35.396,26.845,35.381,26.849z M39.174,22.101L39.174,22.101c-0.02-0.004-0.047-0.015-0.066-0.018C39.127,22.086,39.152,22.097,39.174,22.101z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-84.3965" cy="-1.04" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_23_" r="18.6813">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</radialGradient>
-<path d="M37.45,39.17c-1.643-0.715-1.59-4.214-0.912-5.273,0.117-0.186,0.225-0.37,0.338-0.554h-13.75c0.113,0.184,0.219,0.368,0.338,0.554,0.678,1.06,0.73,4.559-0.914,5.273-1.645,0.713,7.641,6.929,7.641,6.929s8.89-6.21,7.25-6.93z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="30" x2="30" y1="38.52" y2="52.91">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#88444B"/>
+<path d="M37.447,39.174c-1.643-0.715-1.59-4.214-0.912-5.273c0.117-0.186,0.225-0.37,0.338-0.554H23.129 c0.113,0.184,0.219,0.368,0.338,0.554c0.678,1.06,0.73,4.559-0.914,5.273c-1.645,0.713,7.641,6.929,7.641,6.929 S39.092,39.887,37.447,39.174z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="30.001" x2="30.001" y1="38.5244" y2="52.9141">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#88444B"/>
</linearGradient>
-<path d="M47.33,42.82c-1.729-0.9-10.3-3.901-10.46-4.089l-6.545,5.439-7.031-5.648c-0.193,0.289-8.662,3.257-10.62,4.298-2.242,1.189-5.906,3.925-5.906,10.09h46.47c0-6.16-4.17-9.19-5.9-10.09z" fill="url(#SVGID_24_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="30.07" x2="30.07" y1="37.58" y2="46">
-<stop offset="0" stop-color="#8C4C54"/>
-<stop offset="1" stop-color="#53343E"/>
+<path d="M47.33,42.822c-1.729-0.9-10.297-3.901-10.459-4.089l-6.545,5.439l-7.031-5.648 c-0.193,0.289-8.662,3.257-10.621,4.298c-2.242,1.189-5.906,3.925-5.906,10.092h46.467C53.234,46.747,49.057,43.719,47.33,42.822z" fill="url(#SVGID_24_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="30.0654" x2="30.0654" y1="37.5811" y2="45.9985">
+<stop offset="0" style="stop-color:#8C4C54"/>
+<stop offset="1" style="stop-color:#53343E"/>
</linearGradient>
-<polygon fill="url(#SVGID_25_)" points="21.7,39.22,30.33,46.1,38.44,39.36,36.87,38.73,30.33,44.17,23.3,38.52"/>
-<path d="M22.1,40.31s-12.32,3.215-12.32,11.84c0,0-1.76,0.002-1.775,0,0.003-5.3,4.145-9.43,14.1-11.84z" fill="#CCA089"/>
-<path d="M37.74,40.11s12.32,3.218,12.32,11.84h1.775c-0.01-5.3-4.15-9.43-14.1-11.84z" fill="#CCA089"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="30.06" x2="30.06" y1="46.72" y2="38.77">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<polygon fill="url(#SVGID_25_)" points="21.695,39.225 30.326,46.103 38.436,39.365 36.871,38.733 30.326,44.173 23.295,38.524 "/>
+<path d="M22.1,40.313c0,0-12.316,3.215-12.316,11.844c0,0-1.76,0.002-1.775,0C8.008,46.851,12.15,42.725,22.1,40.313 z" fill="#CCA089"/>
+<path d="M37.74,40.113c0,0,12.316,3.218,12.316,11.844c0,0,1.762,0,1.775,0C51.832,46.65,47.689,42.525,37.74,40.113 z" fill="#CCA089"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="30.0645" x2="30.0645" y1="46.7217" y2="38.7736">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</linearGradient>
-<polygon fill="url(#SVGID_26_)" points="30.33,46.1,21.69,39.22,21.19,39.44,30.33,46.72,38.94,39.56,38.44,39.36"/>
-<radialGradient cx="-83.48" cy="-35.59" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_27_" r="25.08">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<polygon fill="url(#SVGID_26_)" points="30.326,46.103 21.691,39.225 21.191,39.445 30.326,46.722 38.938,39.561 38.438,39.358 "/>
+<radialGradient cx="-83.4844" cy="-35.5879" gradientTransform="matrix(0.9351 0 0 0.9319 109.2457 47.9072)" gradientUnits="userSpaceOnUse" id="SVGID_27_" r="25.0781">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M41.4,23.08c-0.059-0.027-0.125-0.031-0.184-0.051-0.012-0.002-0.023-0.004-0.035-0.006-0.092-0.023-0.182-0.045-0.275-0.051-11.48-1.996-16.74-8.354-17.14-6.67-0.316,1.34-3.535,4.236-5.219,5.682,0.014,0.064,0.021,0.121,0.035,0.188,0,0,0.063,0.296,0.188,0.801-0.135,0.014-0.264,0.041-0.393,0.094-1.07,0.454-1.406,2.21-0.75,3.928,0.658,1.716,2.059,2.744,3.131,2.294,0.066-0.029,0.121-0.078,0.182-0.115,0.625,1.4,1.389,2.901,2.326,4.406,1.568,1.865,3.973,4.055,6.627,4.055,3.213,0,5.18-1.758,6.529-3.53,0.033-0.074,0.068-0.144,0.109-0.204,1.002-1.564,1.813-3.135,2.471-4.594,1.047,0.361,2.395-0.612,3.063-2.263,0.69-1.7,0.39-3.48-0.67-3.96z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="25.86" x2="35.77" y1="38.71" y2="28.87">
-<stop offset="0" stop-color="#E8D9CA"/>
-<stop offset="1" stop-color="#DDC4B0"/>
+<path d="M41.398,23.083c-0.059-0.027-0.125-0.031-0.184-0.051V23.03c-0.012-0.002-0.023-0.004-0.035-0.006 c-0.092-0.023-0.182-0.045-0.275-0.051c-11.475-1.996-16.738-8.354-17.135-6.67c-0.316,1.34-3.535,4.236-5.219,5.682 c0.014,0.064,0.021,0.121,0.035,0.188c0,0,0.063,0.296,0.188,0.801c-0.135,0.014-0.264,0.041-0.393,0.094 c-1.07,0.454-1.406,2.21-0.75,3.928c0.658,1.716,2.059,2.744,3.131,2.294c0.066-0.029,0.121-0.078,0.182-0.115 c0.625,1.4,1.389,2.901,2.326,4.406c1.568,1.865,3.973,4.055,6.627,4.055c3.213,0,5.18-1.758,6.529-3.53 c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594c1.047,0.361,2.395-0.612,3.063-2.263 C42.76,25.336,42.461,23.561,41.398,23.083z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="25.8574" x2="35.7696" y1="38.709" y2="28.8743">
+<stop offset="0" style="stop-color:#E8D9CA"/>
+<stop offset="1" style="stop-color:#DDC4B0"/>
</linearGradient>
-<path d="M29.43,36.73c-1.955,0-3.926-0.91-5.377-2.283,1.535,1.612,3.6,3.184,5.848,3.184,3.213,0,5.18-1.758,6.529-3.53,0.033-0.074,0.068-0.144,0.109-0.204,1.002-1.564,1.813-3.135,2.471-4.594-3.66,6.38-6.37,7.42-9.58,7.42z" fill="url(#SVGID_28_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="29.8" x2="29.8" y1="7.3" y2="21.9">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.426,36.734c-1.955,0-3.926-0.91-5.377-2.283c1.535,1.612,3.6,3.184,5.848,3.184 c3.213,0,5.18-1.758,6.529-3.53c0.033-0.074,0.068-0.144,0.109-0.204c1.002-1.564,1.813-3.135,2.471-4.594 C35.352,35.689,32.639,36.734,29.426,36.734z" fill="url(#SVGID_28_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="29.8047" x2="29.8047" y1="7.3003" y2="21.8973">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M29.57,7.086c-3.977,0-5.891,1.809-7.369,3.699-2.4,0.37-6.209,2.57-3.52,12.22,1.684-1.444,4.768-5.359,5.084-6.699,0.398-1.697,5.75,4.792,17.44,6.727,0.137-0.541,0.197-0.857,0.197-0.857,1.85-8.23-2.14-14.76-11.83-15.08z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.8" x2="21.57" y1="21.27" y2="13.41">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3636" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M29.574,7.086c-3.977,0-5.891,1.809-7.369,3.699c-2.4,0.37-6.209,2.57-3.52,12.218 c1.684-1.444,4.768-5.359,5.084-6.699c0.398-1.697,5.75,4.792,17.445,6.727c0.137-0.541,0.197-0.857,0.197-0.857 C43.25,13.937,39.256,7.407,29.574,7.086z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="34.7979" x2="21.5721" y1="21.2656" y2="13.414">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3636" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M23.78,15.52s5.723,7.517,17.35,7.504c0,0-5.47-0.86-17.35-7.5z" fill="url(#SVGID_30_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="20.38" x2="20.5" y1="11.89" y2="20.28">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M23.783,15.516c0,0,5.723,7.517,17.35,7.504C41.133,23.02,35.656,22.159,23.783,15.516z" fill="url(#SVGID_30_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="20.3789" x2="20.495" y1="11.8853" y2="20.2845">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M22.41,11.34s-5.604,0.334-3.525,9.831c0,0.01-0.68-6.5,3.53-9.83z" fill="url(#SVGID_31_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="31.66" x2="31.25" y1="8.55" y2="12.36">
-<stop offset="0" stop-color="#8D7B6A"/>
-<stop offset="1" stop-color="#451F1E"/>
+<path d="M22.406,11.344c0,0-5.604,0.334-3.525,9.831C18.881,21.175,18.195,14.67,22.406,11.344z" fill="url(#SVGID_31_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="31.6582" x2="31.2464" y1="8.5503" y2="12.3578">
+<stop offset="0" style="stop-color:#8D7B6A"/>
+<stop offset="1" style="stop-color:#451F1E"/>
</linearGradient>
-<path d="M32.29,12.66c-2.609-0.375-7.02-2.686-8.75-1.859,0,0,5.662-6.459,15.65,0.895,0,0-2.38,1.6-6.9,0.96z" fill="url(#SVGID_32_)"/>
+<path d="M32.291,12.66c-2.609-0.375-7.02-2.686-8.75-1.859c0,0,5.662-6.459,15.65,0.895 C39.191,11.695,36.813,13.303,32.291,12.66z" fill="url(#SVGID_32_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M4.452,29c-1.903,0-3.451-1.549-3.451-3.453v-21.1c0-1.903,1.548-3.452,3.451-3.452h21.1c1.905,0,3.454,1.548,3.454,3.452v21.1c0,1.904-1.549,3.453-3.454,3.453h-21.1z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M27.93,25.49c0,1.346-1.092,2.438-2.44,2.438h-20.98c-1.347,0-2.438-1.093-2.438-2.438v-20.98c0-1.348,1.091-2.44,2.438-2.44h20.98c1.348,0,2.44,1.093,2.44,2.44v20.98z" fill="#D6C1A9"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2191" x2="-2167" y1="3344" y2="3321">
-<stop offset="0" stop-color="#A66C59"/>
-<stop offset="0.5" stop-color="#B78C65"/>
-<stop offset="1" stop-color="#9B5D55"/>
+<path d="M4.452,29.001c-1.903,0-3.451-1.549-3.451-3.453V4.453c0-1.903,1.548-3.452,3.451-3.452h21.095 c1.905,0,3.454,1.548,3.454,3.452v21.095c0,1.904-1.549,3.453-3.454,3.453H4.452z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M27.932,25.493c0,1.346-1.092,2.438-2.44,2.438H4.508c-1.347,0-2.438-1.093-2.438-2.438V4.509 c0-1.348,1.091-2.44,2.438-2.44h20.983c1.348,0,2.44,1.093,2.44,2.44V25.493z" fill="#D6C1A9"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2190.8022" x2="-2167.4888" y1="3344.4668" y2="3321.1533">
+<stop offset="0" style="stop-color:#A66C59"/>
+<stop offset="0.5" style="stop-color:#B78C65"/>
+<stop offset="1" style="stop-color:#9B5D55"/>
</linearGradient>
-<path d="M4.508,27.19c-0.935,0-1.697-0.761-1.697-1.695v-20.99c0-0.937,0.763-1.696,1.697-1.696h20.98c0.937,0,1.697,0.762,1.697,1.696v20.98c0,0.935-0.76,1.695-1.697,1.695h-20.98z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179" x2="-2179" y1="3346" y2="3320">
-<stop offset="0" stop-color="#976059"/>
-<stop offset="0.5" stop-color="#B78C65"/>
-<stop offset="1" stop-color="#793436"/>
+<path d="M4.508,27.188c-0.935,0-1.697-0.761-1.697-1.695V4.509c0-0.937,0.763-1.696,1.697-1.696h20.983 c0.937,0,1.697,0.762,1.697,1.696v20.984c0,0.935-0.76,1.695-1.697,1.695H4.508z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2178.999" x2="-2178.999" y1="3345.792" y2="3319.6384">
+<stop offset="0" style="stop-color:#976059"/>
+<stop offset="0.5" style="stop-color:#B78C65"/>
+<stop offset="1" style="stop-color:#793436"/>
</linearGradient>
-<path d="M25.55,2.413c1.125,0,2.041,0.916,2.041,2.04v21.1c0,1.124-0.917,2.04-2.041,2.04h-21.1c-1.124,0-2.038-0.916-2.038-2.04v-21.1c0-1.124,0.915-2.04,2.038-2.04h21.1m0.003-0.412h-21.1c-1.353,0-2.451,1.098-2.451,2.452v21.1c0,1.354,1.098,2.453,2.451,2.453h21.1c1.354,0,2.454-1.1,2.454-2.453v-21.1c0-1.354-1.1-2.452-2.45-2.452z" fill="url(#SVGID_2__)"/>
-<circle cx="8.615" cy="21.38" fill="#FFFFFF" r="2.508"/>
-<path d="M20.55,23.61h3.345c0-9.651-7.854-17.51-17.5-17.51v3.344c7.8,0.009,14.15,6.356,14.15,14.17z" fill="#FFFFFF"/>
-<path d="M14.47,23.61h3.343c0-6.299-5.124-11.42-11.42-11.42v3.345c4.45,0,8.08,3.62,8.08,8.07z" fill="#FFFFFF"/>
+<path d="M25.547,2.413c1.125,0,2.041,0.916,2.041,2.04v21.095c0,1.124-0.917,2.04-2.041,2.04H4.452 c-1.124,0-2.038-0.916-2.038-2.04V4.453c0-1.124,0.915-2.04,2.038-2.04H25.547 M25.547,2.001H4.452 c-1.353,0-2.451,1.098-2.451,2.452v21.095c0,1.354,1.098,2.453,2.451,2.453h21.095c1.354,0,2.454-1.1,2.454-2.453V4.453 C28.001,3.099,26.901,2.001,25.547,2.001L25.547,2.001z" fill="url(#SVGID_2__)"/>
+<circle cx="8.615" cy="21.385" fill="#FFFFFF" r="2.508"/>
+<path d="M20.547,23.614h3.345c0-9.651-7.854-17.506-17.505-17.506v3.344C14.196,9.453,20.547,15.805,20.547,23.614z" fill="#FFFFFF"/>
+<path d="M14.466,23.614h3.343c0-6.299-5.124-11.424-11.422-11.424v3.345C10.842,15.535,14.466,19.158,14.466,23.614z " fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_help.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_help.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.267" y2="58.27">
-<stop offset="0" stop-color="#E1E8C9"/>
-<stop offset="0.3879" stop-color="#4C7F44"/>
-<stop offset="0.6788" stop-color="#275341"/>
-<stop offset="1" stop-color="#B4C980"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.2666" y2="58.2666">
+<stop offset="0" style="stop-color:#E1E8C9"/>
+<stop offset="0.3879" style="stop-color:#4C7F44"/>
+<stop offset="0.6788" style="stop-color:#275341"/>
+<stop offset="1" style="stop-color:#B4C980"/>
</linearGradient>
<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
-<radialGradient cx="30.27" cy="5.201" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.47">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<radialGradient cx="30.2666" cy="5.2007" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.4665">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</radialGradient>
-<path d="M30,57.2c-15,0-27.2-12.2-27.2-27.2s12.2-27.2,27.2-27.2,27.2,12.2,27.2,27.2-12.2,27.2-27.2,27.2z" fill="url(#SVGID_2_)"/>
-<path d="M21.2,19.86v-4.594c2.779-0.641,5.418-0.961,7.916-0.961,3.689,0,6.516,0.714,8.484,2.146,1.971,1.428,2.955,3.525,2.955,6.292,0,1.609-0.381,2.972-1.137,4.089-0.76,1.117-5.988,6.37-6.504,7.089s-0.773,1.57-0.773,2.555v0.984h-7.336v-1.313c0-1.594,0.348-2.94,1.043-4.042s1.91-2.465,3.645-4.09c1.359-1.266,3.047-4.203,3.047-4.828,0-2.827-1.703-4.24-5.109-4.24-1.93,0-4,0.3-6.24,0.91zm7.24,30.14c-1.236,0-2.297-0.438-3.188-1.313-0.889-0.875-1.334-1.945-1.334-3.211,0-1.25,0.441-2.321,1.322-3.21,0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336c0.891,0.89,1.336,1.96,1.336,3.21,0,1.266-0.445,2.335-1.336,3.211-0.89,0.87-1.96,1.31-3.21,1.31z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M21.2,18.75v-4.593c2.779-0.64,5.418-0.96,7.916-0.96,3.689,0,6.516,0.714,8.484,2.145,1.971,1.428,2.955,3.525,2.955,6.292,0,1.609-0.381,2.972-1.137,4.089-0.76,1.117-5.988,6.371-6.504,7.089-0.516,0.719-0.773,1.57-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042s1.91-2.465,3.645-4.09c1.359-1.266,3.047-4.204,3.047-4.828,0-2.827-1.703-4.241-5.109-4.241-1.93,0.01-4,0.31-6.24,0.92zm7.24,30.14c-1.236,0-2.297-0.438-3.188-1.313-0.889-0.875-1.334-1.945-1.334-3.211,0-1.25,0.441-2.32,1.322-3.21,0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336,1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211-0.89,0.88-1.96,1.31-3.21,1.31z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.88" x2="30.88" y1="11.79" y2="47.78">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M30,57.2C15.002,57.2,2.801,44.999,2.801,30S15.002,2.8,30,2.8S57.199,15.001,57.199,30 S44.998,57.2,30,57.2L30,57.2z" fill="url(#SVGID_2_)"/>
+<path d="M21.201,19.861v-4.594c2.779-0.641,5.418-0.961,7.916-0.961c3.689,0,6.516,0.714,8.484,2.146 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.609-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.37-6.504,7.089s-0.773,1.57-0.773,2.555 v0.984h-7.336v-1.313c0-1.594,0.348-2.94,1.043-4.042c0.695-1.102,1.91-2.465,3.645-4.09c1.359-1.266,3.047-4.203,3.047-4.828 c0-2.827-1.703-4.24-5.109-4.24C25.51,18.947,23.436,19.251,21.201,19.861z M28.439,50c-1.236,0-2.297-0.438-3.188-1.313 c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.321,1.322-3.21c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336 c0.891,0.89,1.336,1.96,1.336,3.21c0,1.266-0.445,2.335-1.336,3.211C30.76,49.563,29.689,50,28.439,50z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M21.201,18.754v-4.593c2.779-0.64,5.418-0.96,7.916-0.96c3.689,0,6.516,0.714,8.484,2.145 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.609-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.371-6.504,7.089 c-0.516,0.719-0.773,1.57-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042s1.91-2.465,3.645-4.09 c1.359-1.266,3.047-4.204,3.047-4.828c0-2.827-1.703-4.241-5.109-4.241C25.51,17.841,23.436,18.145,21.201,18.754z M28.439,48.894 c-1.236,0-2.297-0.438-3.188-1.313c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.32,1.322-3.21 c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336s1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211 C30.76,48.456,29.689,48.894,28.439,48.894z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.8789" x2="30.8789" y1="11.7944" y2="47.7757">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M21.2,17.46v-4.593c2.779-0.641,5.418-0.961,7.916-0.961,3.689,0,6.516,0.714,8.484,2.145,1.971,1.428,2.955,3.525,2.955,6.292,0,1.61-0.381,2.972-1.137,4.089-0.76,1.117-5.988,6.371-6.504,7.089s-0.773,1.571-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042s1.91-2.465,3.645-4.09c1.359-1.265,3.047-4.203,3.047-4.828,0-2.826-1.703-4.241-5.109-4.241-1.93,0-4,0.3-6.24,0.91zm7.24,30.14c-1.236,0-2.297-0.438-3.188-1.312-0.889-0.875-1.334-1.945-1.334-3.211,0-1.25,0.441-2.32,1.322-3.21,0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336,1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211-0.89,0.87-1.96,1.31-3.21,1.31z" fill="url(#SVGID_3_)"/>
+<path d="M21.201,17.461v-4.593c2.779-0.641,5.418-0.961,7.916-0.961c3.689,0,6.516,0.714,8.484,2.145 c1.971,1.428,2.955,3.525,2.955,6.292c0,1.61-0.381,2.972-1.137,4.089c-0.76,1.117-5.988,6.371-6.504,7.089 s-0.773,1.571-0.773,2.554v0.985h-7.336v-1.313c0-1.594,0.348-2.941,1.043-4.042c0.695-1.101,1.91-2.465,3.645-4.09 c1.359-1.265,3.047-4.203,3.047-4.828c0-2.826-1.703-4.241-5.109-4.241C25.51,16.546,23.436,16.852,21.201,17.461z M28.439,47.6 c-1.236,0-2.297-0.438-3.188-1.312c-0.889-0.875-1.334-1.945-1.334-3.211c0-1.25,0.441-2.32,1.322-3.21 c0.883-0.891,1.949-1.336,3.199-1.336s2.32,0.445,3.211,1.336s1.336,1.96,1.336,3.21c0,1.266-0.445,2.336-1.336,3.211 C30.76,47.162,29.689,47.6,28.439,47.6z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_hold_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_hold_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,39 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-2350" cy="1517" gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.26">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="0.7939" stop-color="#C2A673"/>
-<stop offset="1" stop-color="#C2A673"/>
+<g>
+<radialGradient cx="-2349.8247" cy="1517.2324" gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2594">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="0.7939" style="stop-color:#C2A673"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</radialGradient>
-<path d="M42.12,24.58c-0.412,0.077-0.578,0.316-0.602,0.895-0.027,0.719-0.291,3.172-0.433,3.764-0.125,0.521-0.342,0.804-0.94,0.979-0.75,0.221-3.188,1.038-10.14,1.039-6.953,0-9.396-0.809-10.14-1.038-0.651-0.201-0.774-0.389-0.94-0.98-0.162-0.586-0.401-3.045-0.433-3.764-0.022-0.576-0.157-0.819-0.575-0.883-0.729-0.113-13.29-2.238-14.6-2.502-0.795-0.158-1.236-0.045-1.293,0.704-0.231,3.013,2.01,7.642,3.004,9.068,0.888,1.272,1.688,2.664,3.82,3.555,2.019,0.85,12.13,2.55,21.15,2.55,9.027,0,19.13-1.705,21.16-2.549,2.134-0.891,2.934-2.282,3.82-3.555,0.994-1.429,3.236-6.056,3.005-9.068-0.057-0.749-0.499-0.862-1.293-0.702-1.31,0.27-13.86,2.36-14.57,2.49z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2359" x2="-2359" y1="1530" y2="1527">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M42.117,24.584c-0.412,0.077-0.578,0.316-0.602,0.895c-0.027,0.719-0.291,3.172-0.433,3.764 c-0.125,0.521-0.342,0.804-0.94,0.979c-0.75,0.221-3.188,1.038-10.144,1.039c-6.953,0-9.396-0.809-10.142-1.038 c-0.651-0.201-0.774-0.389-0.94-0.98c-0.162-0.586-0.401-3.045-0.433-3.764c-0.022-0.576-0.157-0.819-0.575-0.883 c-0.729-0.113-13.291-2.238-14.601-2.502c-0.795-0.158-1.236-0.045-1.293,0.704c-0.231,3.013,2.01,7.642,3.004,9.068 c0.888,1.272,1.688,2.664,3.82,3.555C10.869,36.267,20.977,37.97,30,37.97c9.027,0,19.132-1.705,21.159-2.549 c2.134-0.891,2.934-2.282,3.82-3.555c0.994-1.429,3.236-6.056,3.005-9.068c-0.057-0.749-0.499-0.862-1.293-0.702 C55.381,22.357,42.832,24.451,42.117,24.584z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2359.3091" x2="-2358.9661" y1="1529.9209" y2="1527.0802">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M19.86,30.22c-0.652-0.201-0.775-0.389-0.941-0.98-0.162-0.586-0.402-3.045-0.432-3.764-0.023-0.576-0.158-0.819-0.576-0.883-0.047-0.008-0.061-0.011-0.061-0.012-0.246-0.039-0.994-0.165-2.041-0.34,0.024,0.255,0.371,3.523,1.034,4.354,1.22,1.52,3.02,1.62,3.02,1.62z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(4.489659e-010 -1 1 4.489659e-010 2447.9541 -2331.959)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2359" x2="-2359" y1="-2405" y2="-2408">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M19.859,30.222c-0.652-0.201-0.775-0.389-0.941-0.98c-0.162-0.586-0.402-3.045-0.432-3.764 c-0.023-0.576-0.158-0.819-0.576-0.883c-0.047-0.008-0.061-0.011-0.061-0.012c-0.246-0.039-0.994-0.165-2.041-0.34 c0.024,0.255,0.371,3.523,1.034,4.354C18.064,30.123,19.859,30.222,19.859,30.222z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(4.489659e-010 -1 1 4.489659e-010 2447.9541 -2331.959)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2359.3081" x2="-2358.9651" y1="-2404.8115" y2="-2407.6523">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M40.16,30.22c0.654-0.203,0.779-0.389,0.943-0.98,0.162-0.586,0.401-3.045,0.434-3.766,0.021-0.574,0.158-0.817,0.574-0.883,0.045-0.008,0.059-0.009,0.059-0.009,0.246-0.04,0.994-0.166,2.041-0.34-0.026,0.256-0.369,3.522-1.035,4.354-1.2,1.53-3,1.63-3,1.63z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1454" x2="-1489" y1="-225.5" y2="-260.7">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M40.16,30.222c0.654-0.203,0.779-0.389,0.943-0.98c0.162-0.586,0.401-3.045,0.434-3.766 c0.021-0.574,0.158-0.817,0.574-0.883c0.045-0.008,0.059-0.009,0.059-0.009c0.246-0.04,0.994-0.166,2.041-0.34 c-0.026,0.256-0.369,3.522-1.035,4.354C41.957,30.124,40.16,30.222,40.16,30.222z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1453.7261" x2="-1488.9213" y1="-225.5083" y2="-260.7034">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M54.98,31.25c-0.888,1.272-1.688,2.667-3.819,3.555-2.027,0.845-12.13,2.549-21.16,2.549-9.025,0-19.13-1.704-21.16-2.549-2.133-0.889-2.934-2.281-3.82-3.555-0.912-1.312-2.873-5.318-3.008-8.299-0.147,3.014,2.029,7.509,3.008,8.913,0.888,1.272,1.688,2.664,3.82,3.555,2.03,0.87,12.14,2.57,21.16,2.57,9.027,0,19.13-1.705,21.16-2.549,2.134-0.891,2.934-2.282,3.82-3.555,0.979-1.404,3.158-5.899,3.009-8.913-0.14,2.98-2.09,6.99-3.01,8.3z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1449" x2="-1489" y1="-225.7" y2="-265.7">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M54.979,31.252c-0.888,1.272-1.688,2.667-3.819,3.555 c-2.027,0.845-12.132,2.549-21.16,2.549c-9.025,0-19.129-1.704-21.158-2.549c-2.133-0.889-2.934-2.281-3.82-3.555 c-0.912-1.312-2.873-5.318-3.008-8.299c-0.147,3.014,2.029,7.509,3.008,8.913c0.888,1.272,1.688,2.664,3.82,3.555 C10.869,36.267,20.977,37.97,30,37.97c9.027,0,19.132-1.705,21.159-2.549c2.134-0.891,2.934-2.282,3.82-3.555 c0.979-1.404,3.158-5.899,3.009-8.913C57.854,25.934,55.895,29.94,54.979,31.252z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1449.3701" x2="-1489.4139" y1="-225.6621" y2="-265.7059">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M42.12,24.58c-0.412,0.077-0.578,0.316-0.602,0.895-0.027,0.719-0.291,3.172-0.433,3.764-0.125,0.521-0.342,0.804-0.94,0.979-0.75,0.221-3.188,1.038-10.14,1.039-6.953,0-9.396-0.809-10.14-1.038-0.651-0.201-0.774-0.389-0.94-0.98-0.162-0.586-0.401-3.045-0.433-3.764-0.022-0.576-0.157-0.819-0.575-0.883-0.729-0.113-13.29-2.238-14.6-2.502-0.795-0.158-1.236-0.045-1.293,0.704-0.027,0.354-0.018,0.729,0.019,1.12,0.094-0.645,0.524-0.747,1.274-0.596,1.312,0.265,13.87,2.388,14.6,2.5,0.418,0.064,0.553,0.309,0.575,0.884,0.029,0.722,0.271,3.179,0.433,3.766,0.164,0.589,0.289,0.776,0.94,0.979,0.746,0.229,3.188,1.038,10.14,1.037,6.955,0.001,9.394-0.816,10.14-1.036,0.6-0.177,0.815-0.458,0.94-0.981,0.142-0.59,0.402-3.043,0.433-3.763,0.022-0.576,0.188-0.815,0.602-0.894,0.715-0.133,13.26-2.228,14.57-2.49,0.75-0.151,1.184-0.051,1.274,0.594,0.036-0.389,0.046-0.768,0.019-1.119-0.058-0.749-0.499-0.863-1.293-0.703-1.31,0.26-13.86,2.35-14.57,2.48z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1571.1406 -2294.7852)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2329" x2="-2329" y1="1565" y2="1516">
-<stop offset="0" stop-color="#9B7956"/>
-<stop offset="0.5" stop-color="#64352E"/>
-<stop offset="1" stop-color="#9B7956"/>
+<path d="M42.117,24.584c-0.412,0.077-0.578,0.316-0.602,0.895 c-0.027,0.719-0.291,3.172-0.433,3.764c-0.125,0.521-0.342,0.804-0.94,0.979c-0.75,0.221-3.188,1.038-10.144,1.039 c-6.953,0-9.396-0.809-10.142-1.038c-0.651-0.201-0.774-0.389-0.94-0.98c-0.162-0.586-0.401-3.045-0.433-3.764 c-0.022-0.576-0.157-0.819-0.575-0.883c-0.729-0.113-13.291-2.238-14.601-2.502c-0.795-0.158-1.236-0.045-1.293,0.704 c-0.027,0.354-0.018,0.729,0.019,1.12c0.094-0.645,0.524-0.747,1.274-0.596c1.312,0.265,13.869,2.388,14.601,2.5 c0.418,0.064,0.553,0.309,0.575,0.884c0.029,0.722,0.271,3.179,0.433,3.766c0.164,0.589,0.289,0.776,0.94,0.979 c0.746,0.229,3.188,1.038,10.142,1.037c6.955,0.001,9.394-0.816,10.144-1.036c0.6-0.177,0.815-0.458,0.94-0.981 c0.142-0.59,0.402-3.043,0.433-3.763c0.022-0.576,0.188-0.815,0.602-0.894c0.715-0.133,13.264-2.228,14.574-2.49 c0.75-0.151,1.184-0.051,1.274,0.594c0.036-0.389,0.046-0.768,0.019-1.119c-0.058-0.749-0.499-0.863-1.293-0.703 C55.381,22.357,42.832,24.451,42.117,24.584z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1571.1406 -2294.7852)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2328.7651" x2="-2328.7651" y1="1565.4004" y2="1516.2345">
+<stop offset="0" style="stop-color:#9B7956"/>
+<stop offset="0.5" style="stop-color:#64352E"/>
+<stop offset="1" style="stop-color:#9B7956"/>
</linearGradient>
-<path d="M53.65,32.68c-2.28,0.84-14.1,2.52-23.65,2.52-9.551,0-21.37-1.688-23.64-2.53-0.433-0.161-0.804-0.342-1.144-0.532,0.231,0.341,0.472,0.687,0.731,1.025,0.068,0.026,0.127,0.056,0.197,0.083,2.307,0.86,14.25,2.58,23.86,2.58,9.614,0,21.55-1.711,23.86-2.566,0.069-0.027,0.129-0.059,0.196-0.085,0.261-0.339,0.5-0.685,0.733-1.023-0.34,0.19-0.71,0.37-1.14,0.54z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M53.646,32.675C51.37,33.519,39.55,35.204,30,35.205 c-9.551,0-21.371-1.688-23.645-2.53c-0.433-0.161-0.804-0.342-1.144-0.532c0.231,0.341,0.472,0.687,0.731,1.025 c0.068,0.026,0.127,0.056,0.197,0.083C8.451,34.105,20.387,35.818,30,35.818c9.614,0,21.55-1.711,23.86-2.566 c0.069-0.027,0.129-0.059,0.196-0.085c0.261-0.339,0.5-0.685,0.733-1.023C54.447,32.333,54.077,32.514,53.646,32.675z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_homezone.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_homezone.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,57 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.86" y2="56.84">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#979898"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.002" x2="30.002" y1="11.8628" y2="56.8359">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#979898"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="52.18,57,7.829,57,7.829,33.94,30,11.43,52.18,33.94"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="56.21" y2="32.4">
-<stop offset="0" stop-color="#D9DAD9"/>
-<stop offset="1" stop-color="#989999"/>
+<polygon fill="url(#SVGID_1_)" points="52.176,57 7.829,57 7.829,33.938 30,11.426 52.176,33.938 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0024" x2="30.0024" y1="56.21" y2="32.4016">
+<stop offset="0" style="stop-color:#D9DAD9"/>
+<stop offset="1" style="stop-color:#989999"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="8.538,56.29,8.538,32.81,30,11.02,51.47,32.81,51.47,56.29"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="55.99" y2="24.68">
-<stop offset="0" stop-color="#F8F9F8"/>
-<stop offset="1" stop-color="#D7D8D8"/>
+<polygon fill="url(#SVGID_2_)" points="8.538,56.291 8.538,32.809 30,11.018 51.467,32.809 51.467,56.291 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0024" x2="30.0024" y1="55.9912" y2="24.6791">
+<stop offset="0" style="stop-color:#F8F9F8"/>
+<stop offset="1" style="stop-color:#D7D8D8"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="9.958,56.29,9.958,31.26,30,10.91,50.05,31.26,50.05,56.29"/>
-<rect fill-opacity="0.15" height="24.13" width="17.03" x="21.49" y="32.87"/>
-<rect fill-opacity="0.5" height="23.42" width="15.61" x="22.2" y="33.58"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="56.94" y2="34.23">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#451E21"/>
+<polygon fill="url(#SVGID_3_)" points="9.958,56.291 9.958,31.262 30,10.911 50.047,31.262 50.047,56.291 "/>
+<rect fill-opacity="0.15" height="24.126" width="17.031" x="21.487" y="32.874"/>
+<rect fill-opacity="0.5" height="23.416" width="15.61" x="22.197" y="33.584"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0024" x2="30.0024" y1="56.9395" y2="34.2324">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#451E21"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="22.71" width="14.19" x="22.91" y="34.29"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="34.34" y2="56.96">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_4_)" height="22.707" width="14.191" x="22.906" y="34.293"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.002" x2="30.002" y1="34.3389" y2="56.9575">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="21.29" width="12.77" x="23.62" y="35"/>
-<polygon fill-opacity="0.15" points="30,11.43,7.829,33.94,7.829,37.05,30,14.26,52.18,37.05,52.18,33.94"/>
-<polygon fill-opacity="0.35" points="30,11.43,7.829,33.94,7.829,35.63,30,12.84,52.18,35.63,52.18,33.94"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="0.772" y2="35.33">
-<stop offset="0" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#6D3235"/>
+<rect fill="url(#SVGID_5_)" height="21.288" width="12.773" x="23.616" y="35.003"/>
+<polygon fill-opacity="0.15" points="30,11.426 7.829,33.938 7.829,37.05 30,14.264 52.176,37.05 52.176,33.938 "/>
+<polygon fill-opacity="0.35" points="30,11.426 7.829,33.938 7.829,35.631 30,12.845 52.176,35.631 52.176,33.938 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9995" x2="29.9995" y1="0.772" y2="35.3261">
+<stop offset="0" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#6D3235"/>
</linearGradient>
-<path d="M30,11.43l22.18,22.78,4.434-4.555s-23.92-24.52-25.04-25.73c-1.115-1.209-1.833-1.274-3.209,0.069-1.36,1.339-24.97,25.66-24.97,25.66l4.438,4.555,22.17-22.79z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="1.605" y2="34.25">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M30,11.426l22.176,22.785l4.434-4.555c0,0-23.922-24.521-25.035-25.733 c-1.115-1.209-1.833-1.274-3.209,0.069C26.999,5.338,3.391,29.656,3.391,29.656l4.438,4.555L30,11.426z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.9985" x2="29.9985" y1="1.605" y2="34.2477">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M4.38,29.66c3.367-3.468,23.25-23.94,24.48-25.16,0.535-0.522,0.941-0.788,1.205-0.788,0.235,0,0.548,0.221,0.985,0.694,1.031,1.125,21.08,21.68,24.56,25.25l-3.441,3.537-22.16-22.79-22.17,22.78-3.448-3.53z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="3.525" y2="29.16">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M4.38,29.656c3.367-3.468,23.247-23.94,24.483-25.158c0.535-0.522,0.941-0.788,1.205-0.788 c0.235,0,0.548,0.221,0.985,0.694c1.031,1.125,21.078,21.677,24.564,25.253l-3.441,3.537L30,10.409L7.828,33.194L4.38,29.656z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.9985" x2="29.9985" y1="3.5249" y2="29.1588">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</linearGradient>
-<path d="M28.86,5.917c0.535-0.522,0.941-0.788,1.205-0.788,0.235,0,0.548,0.221,0.985,0.694,0.977,1.066,19.01,19.56,23.88,24.54l0.689-0.71c-3.48-3.57-23.53-24.12-24.56-25.25-0.437-0.474-0.75-0.694-0.985-0.694-0.264,0-0.67,0.266-1.205,0.788-1.23,1.218-21.11,21.69-24.48,25.16l0.69,0.708c4.771-4.92,22.62-23.3,23.79-24.45z" fill="url(#SVGID_8_)"/>
-<path d="M33.9,48.13c-1.369,0-2.482-1.115-2.482-2.484s1.113-2.483,2.482-2.483,2.484,1.114,2.484,2.483-1.11,2.48-2.48,2.48z" fill-opacity="0.1"/>
-<circle cx="33.9" cy="45.65" fill-opacity="0.15" r="1.773"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="33.9" x2="33.9" y1="44.53" y2="46.69">
-<stop offset="0" stop-color="#A67647"/>
-<stop offset="1" stop-color="#7B4135"/>
+<path d="M28.863,5.917c0.535-0.522,0.941-0.788,1.205-0.788c0.235,0,0.548,0.221,0.985,0.694 c0.977,1.066,19.014,19.562,23.875,24.544l0.689-0.71C52.131,26.082,32.084,5.529,31.053,4.404c-0.437-0.474-0.75-0.694-0.985-0.694 c-0.264,0-0.67,0.266-1.205,0.788C27.626,5.716,7.747,26.188,4.38,29.656l0.69,0.708C9.841,25.451,27.693,7.069,28.863,5.917z" fill="url(#SVGID_8_)"/>
+<path d="M33.904,48.131c-1.369,0-2.482-1.115-2.482-2.484s1.113-2.483,2.482-2.483s2.484,1.114,2.484,2.483 S35.273,48.131,33.904,48.131L33.904,48.131z" fill-opacity="0.1"/>
+<circle cx="33.904" cy="45.646" fill-opacity="0.15" r="1.773"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="33.9043" x2="33.9043" y1="44.5342" y2="46.6904">
+<stop offset="0" style="stop-color:#A67647"/>
+<stop offset="1" style="stop-color:#7B4135"/>
</linearGradient>
-<path d="M33.9,46.71c-0.586,0-1.064-0.478-1.064-1.064s0.479-1.064,1.064-1.064c0.588,0,1.064,0.479,1.064,1.064,0.01,0.58-0.47,1.06-1.06,1.06z" fill="url(#SVGID_9_)"/>
+<path d="M33.904,46.711c-0.586,0-1.064-0.478-1.064-1.064c0-0.586,0.479-1.064,1.064-1.064 c0.588,0,1.064,0.479,1.064,1.064C34.969,46.233,34.492,46.711,33.904,46.711L33.904,46.711z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_im.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_im.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,46 +1,48 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="332.6" cy="1114" gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="40.18">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<radialGradient cx="332.6348" cy="1113.6206" gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="40.177">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<path d="M12.38,51.74c-0.268,0-0.437-0.438-0.437-1.114v-9.345l-0.157-0.102c-6-4.087-9.439-10.06-9.439-16.39,0-11.81,11.88-21.42,26.49-21.42s26.49,9.608,26.49,21.42c0,11.81-11.88,21.42-26.49,21.42-3.297,0-6.522-0.489-9.588-1.454l-0.215-0.069-5.752,6.45c-0.33,0.37-0.66,0.6-0.89,0.6z" fill="url(#SVGID_1_)"/>
-<rect fill="#FFFFFF" height="1.234" width="27.51" x="15.06" y="15.13"/>
-<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.51" x="15.06" y="16.98"/>
-<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.51" x="15.06" y="16.36"/>
-<rect fill="#FFFFFF" height="1.234" width="27.51" x="15.06" y="23.1"/>
-<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.51" x="15.06" y="24.96"/>
-<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.51" x="15.06" y="24.33"/>
-<rect fill="#FFFFFF" height="1.234" width="27.51" x="15.06" y="31.07"/>
-<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.51" x="15.06" y="32.92"/>
-<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.51" x="15.06" y="32.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="332.7" x2="332.7" y1="1107" y2="1152">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#343962"/>
+<path d="M12.382,51.741c-0.268,0-0.437-0.438-0.437-1.114v-9.345l-0.157-0.102 c-6-4.087-9.439-10.062-9.439-16.389c0-11.811,11.883-21.418,26.486-21.418s26.486,9.608,26.486,21.418 c0,11.811-11.883,21.418-26.486,21.418c-3.297,0-6.522-0.489-9.588-1.454l-0.215-0.069l-5.752,6.45 C12.941,51.514,12.606,51.741,12.382,51.741L12.382,51.741z" fill="url(#SVGID_1_)"/>
+<rect fill="#FFFFFF" height="1.234" width="27.511" x="15.059" y="15.13"/>
+<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.511" x="15.059" y="16.985"/>
+<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.511" x="15.059" y="16.363"/>
+<rect fill="#FFFFFF" height="1.234" width="27.511" x="15.059" y="23.099"/>
+<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.511" x="15.059" y="24.955"/>
+<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.511" x="15.059" y="24.332"/>
+<rect fill="#FFFFFF" height="1.234" width="27.511" x="15.059" y="31.067"/>
+<rect fill-opacity="0.1" height="0.616" stroke-opacity="0.1" width="27.511" x="15.059" y="32.924"/>
+<rect fill-opacity="0.2" height="0.616" stroke-opacity="0.2" width="27.511" x="15.059" y="32.301"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="332.6865" x2="332.6865" y1="1106.7769" y2="1152.0294">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#343962"/>
</linearGradient>
-<path d="M28.69,3.023c-14.74,0-26.69,9.687-26.69,21.65,0,6.659,3.712,12.61,9.544,16.58v9.107c0,1.6,0.873,1.932,1.936,0.738l5.571-6.245c2.99,0.94,6.237,1.462,9.638,1.462,14.74,0,26.68-9.692,26.68-21.65s-11.95-21.65-26.68-21.65zm0,42.16c-3.195,0-6.322-0.474-9.297-1.41l-0.7-0.22-6.007,6.735v-9.63l-0.499-0.34c-5.747-3.913-9.046-9.612-9.046-15.64,0-11.31,11.46-20.51,25.55-20.51s25.55,9.2,25.55,20.51-11.46,20.51-25.54,20.51z" fill="url(#SVGID_2_)"/>
-<path d="M54.94,28.52c-3.528-3.098-8.502-5.042-14.02-5.042-10.67,0-19.35,7.235-19.35,16.13,0,2.199,0.535,4.292,1.494,6.206,1.814,0.314,3.688,0.5,5.621,0.5,13.12,0,24.02-7.68,26.26-17.8z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M54.62,29.76c-3.344-3.145-8.237-5.143-13.7-5.143-10.04,0-18.21,6.724-18.21,14.99,0,2.3,0.65,4.473,1.78,6.422,1.37,0.177,2.765,0.289,4.196,0.289,12.57,0,23.11-7.06,25.93-16.56z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="344.9" x2="344.9" y1="1129" y2="1161">
-<stop offset="0" stop-color="#D3CA99"/>
-<stop offset="1" stop-color="#845239"/>
+<path d="M28.687,3.023C13.948,3.023,2,12.714,2,24.671c0,6.659,3.712,12.613,9.544,16.584v9.107 c0,1.6,0.873,1.932,1.936,0.738l5.571-6.245c2.99,0.94,6.237,1.462,9.638,1.462c14.736,0,26.685-9.692,26.685-21.647 C55.372,12.714,43.423,3.023,28.687,3.023z M28.687,45.18c-3.195,0-6.322-0.474-9.297-1.41l-0.7-0.22l-6.007,6.735v-9.63 l-0.499-0.34c-5.747-3.913-9.046-9.612-9.046-15.644c0-11.309,11.463-20.509,25.549-20.509c14.088,0,25.547,9.2,25.547,20.509 C54.233,35.979,42.774,45.18,28.687,45.18z" fill="url(#SVGID_2_)"/>
+<path d="M54.942,28.519c-3.528-3.098-8.502-5.042-14.019-5.042 c-10.671,0-19.353,7.235-19.353,16.13c0,2.199,0.535,4.292,1.494,6.206c1.814,0.314,3.688,0.5,5.621,0.5 C41.804,46.318,52.704,38.638,54.942,28.519z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M54.624,29.76c-3.344-3.145-8.237-5.143-13.7-5.143 c-10.044,0-18.214,6.724-18.214,14.991c0,2.3,0.65,4.473,1.78,6.422c1.37,0.177,2.765,0.289,4.196,0.289 C41.262,46.318,51.801,39.258,54.624,29.76z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="344.9238" x2="344.9238" y1="1129.416" y2="1160.7534">
+<stop offset="0" style="stop-color:#D3CA99"/>
+<stop offset="1" style="stop-color:#845239"/>
</linearGradient>
-<path d="M23.85,39.61c0,7.649,7.646,13.85,17.08,13.85,2.177,0,4.253-0.333,6.168-0.935l3.563,3.996c0.686,0.764,1.239,0.553,1.239-0.473v-5.828c3.73-2.54,6.1-6.35,6.1-10.61,0-7.651-7.644-13.85-17.08-13.85-9.43,0-17.07,6.2-17.07,13.85z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="345.3" cy="1131" gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="25.78">
-<stop offset="0" stop-color="#D3CA99"/>
-<stop offset="0.0667" stop-color="#D3CA99"/>
-<stop offset="0.697" stop-color="#A87D48"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<path d="M23.848,39.607c0,7.649,7.646,13.85,17.076,13.85c2.177,0,4.253-0.333,6.168-0.935l3.563,3.996 c0.686,0.764,1.239,0.553,1.239-0.473v-5.828C55.626,47.679,58,43.868,58,39.607c0-7.651-7.644-13.85-17.076-13.85 C31.494,25.755,23.848,31.956,23.848,39.607z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="345.2559" cy="1131.3125" gradientTransform="matrix(1 0 0 1 -304 -1104)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="25.7806">
+<stop offset="0" style="stop-color:#D3CA99"/>
+<stop offset="0.0667" style="stop-color:#D3CA99"/>
+<stop offset="0.697" style="stop-color:#A87D48"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M47.45,51.22l-0.701,0.22c-1.863,0.587-3.824,0.882-5.827,0.882-8.787,0-15.94-5.703-15.94-12.71,0-7.01,7.15-12.72,15.94-12.72s15.94,5.705,15.94,12.72c0,3.719-2.044,7.24-5.608,9.67l-0.498,0.338v5.305l-3.3-3.7z" fill="url(#SVGID_4_)"/>
-<rect fill="#FFFFFF" height="1.138" width="18.45" x="31.7" y="42.88"/>
-<rect fill-opacity="0.1" height="0.412" stroke-opacity="0.1" width="18.45" x="31.7" y="44.03"/>
-<rect fill="#FFFFFF" height="1.138" width="18.45" x="31.7" y="38.32"/>
-<rect fill-opacity="0.1" height="0.413" stroke-opacity="0.1" width="18.45" x="31.7" y="39.48"/>
-<rect fill="#FFFFFF" height="1.138" width="18.45" x="31.7" y="33.77"/>
-<rect fill-opacity="0.1" height="0.413" stroke-opacity="0.1" width="18.45" x="31.7" y="34.92"/>
-</svg>
\ No newline at end of file
+<path d="M47.452,51.216l-0.701,0.22c-1.863,0.587-3.824,0.882-5.827,0.882 c-8.787,0-15.938-5.703-15.938-12.711c0-7.01,7.15-12.715,15.938-12.715c8.79,0,15.938,5.705,15.938,12.715 c0,3.719-2.044,7.24-5.608,9.67l-0.498,0.338v5.305L47.452,51.216z" fill="url(#SVGID_4_)"/>
+<rect fill="#FFFFFF" height="1.138" width="18.451" x="31.698" y="42.878"/>
+<rect fill-opacity="0.1" height="0.412" stroke-opacity="0.1" width="18.451" x="31.698" y="44.031"/>
+<rect fill="#FFFFFF" height="1.138" width="18.451" x="31.698" y="38.325"/>
+<rect fill-opacity="0.1" height="0.413" stroke-opacity="0.1" width="18.451" x="31.698" y="39.478"/>
+<rect fill="#FFFFFF" height="1.138" width="18.451" x="31.698" y="33.771"/>
+<rect fill-opacity="0.1" height="0.413" stroke-opacity="0.1" width="18.451" x="31.698" y="34.924"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_imageprint.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_imageprint.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,149 +1,151 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="5.721" y2="28.12">
-<stop offset="0" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#595A5B"/>
-</linearGradient>
-<path d="M49.2,26.8c0,0.885-0.717,1.6-1.601,1.6h-35.2c-0.883,0-1.6-0.715-1.6-1.6v-19.2c0-0.883,0.717-1.6,1.6-1.6h35.2c0.884,0,1.601,0.717,1.601,1.6v19.2z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="17.64" y2="46.44">
-<stop offset="0" stop-color="#E0E3E1"/>
-<stop offset="0.6909" stop-color="#C5CCC9"/>
-<stop offset="1" stop-color="#9DA1A1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.998" x2="29.998" y1="5.7212" y2="28.1196">
+<stop offset="0" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#595A5B"/>
</linearGradient>
-<path d="M58,43.6c0,1.769-1.432,3.2-3.201,3.2h-49.6c-1.765,0-3.199-1.43-3.199-3.2v-22.4c0-1.766,1.434-3.199,3.199-3.199h49.6c1.77,0,3.201,1.434,3.201,3.199v22.4z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="18.98" y2="45.17">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.3515" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M49.198,26.8c0,0.885-0.717,1.6-1.601,1.6H12.398c-0.883,0-1.6-0.715-1.6-1.6V7.601 c0-0.883,0.717-1.6,1.6-1.6h35.199c0.884,0,1.601,0.717,1.601,1.6V26.8z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="17.6411" y2="46.4399">
+<stop offset="0" style="stop-color:#E0E3E1"/>
+<stop offset="0.6909" style="stop-color:#C5CCC9"/>
+<stop offset="1" style="stop-color:#9DA1A1"/>
</linearGradient>
-<path d="M54.8,45.49h-49.6c-1.043,0-1.893-0.849-1.893-1.893v-22.4c0-1.043,0.85-1.892,1.893-1.892h49.6c1.044,0,1.893,0.849,1.893,1.892v22.4c0,1.04-0.85,1.89-1.89,1.89z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="37.91" y2="45.11">
-<stop offset="0" stop-color="#131314"/>
-<stop offset="0.2424" stop-color="#262628"/>
-<stop offset="1" stop-color="#454646"/>
+<path d="M57.998,43.6c0,1.769-1.432,3.2-3.201,3.2H5.199C3.434,46.8,2,45.368,2,43.6V21.2 c0-1.766,1.434-3.199,3.199-3.199h49.598c1.77,0,3.201,1.434,3.201,3.199V43.6z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="18.9814" y2="45.166">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.3515" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
+</linearGradient>
+<path d="M54.8,45.493H5.199c-1.043,0-1.893-0.849-1.893-1.893V21.2c0-1.043,0.85-1.892,1.893-1.892H54.8 c1.044,0,1.893,0.849,1.893,1.892v22.4C56.692,44.645,55.844,45.493,54.8,45.493L54.8,45.493z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.998" x2="29.998" y1="37.9102" y2="45.1094">
+<stop offset="0" style="stop-color:#131314"/>
+<stop offset="0.2424" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#454646"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="7.199" width="38.4" x="10.8" y="38"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1.307" stroke-opacity="0.2" width="38.4" x="10.8" y="36.69"/>
-<rect fill="#6E6E6F" height="0.799" width="36.8" x="11.6" y="54.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="42.65" y2="54.65">
-<stop offset="0" stop-color="#595A5B"/>
-<stop offset="0.7879" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<rect fill="url(#SVGID_4_)" height="7.199" width="38.399" x="10.799" y="38"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1.307" stroke-opacity="0.2" width="38.399" x="10.799" y="36.693"/>
+<rect fill="#6E6E6F" height="0.799" width="36.797" x="11.6" y="54.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.998" x2="29.998" y1="42.6509" y2="54.6499">
+<stop offset="0" style="stop-color:#595A5B"/>
+<stop offset="0.7879" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="49.2,42.8,48.4,42.8,11.6,42.8,10.8,42.8,10.8,43.6,11.6,43.6,11.6,54.8,48.4,54.8,48.4,43.6,49.2,43.6"/>
-<rect fill="#020202" fill-opacity="0.15" height="12" stroke-opacity="0.15" width="35.2" x="12.4" y="6.001"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="2.002" y2="18.75">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.5382" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<polygon fill="url(#SVGID_5_)" points="49.198,42.801 48.396,42.801 11.6,42.801 10.799,42.801 10.799,43.6 11.6,43.6 11.6,54.8 48.396,54.8 48.396,43.6 49.198,43.6 "/>
+<rect fill="#020202" fill-opacity="0.15" height="12" stroke-opacity="0.15" width="35.199" x="12.398" y="6.001"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="2.002" y2="18.7534">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.5382" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="16" width="33.6" x="13.2" y="2.002"/>
-<path d="M21.66,2.002s14.52,2.2,19.92,9.599c0,0,4.081-5.6,5.216-2.555-0.57-2.94-5.76-7.148-25.14-7.043z" fill="#050505" fill-opacity="0.05" stroke-opacity="0.05"/>
-<path d="M21.66,2.002s14.52,0.6,19.92,8.001c0,0,4.081-4.801,5.216-0.957-0.57-2.938-5.76-7.146-25.14-7.041z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="34.99" x2="33.49" y1="2.698" y2="8.299">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.0061" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<rect fill="url(#SVGID_6_)" height="15.999" width="33.599" x="13.2" y="2.002"/>
+<path d="M21.665,2.002c0,0,14.519,2.2,19.918,9.599 c0,0,4.081-5.6,5.216-2.555C46.226,6.105,41.045,1.897,21.665,2.002z" fill="#050505" fill-opacity="0.05" fill-rule="evenodd" stroke-opacity="0.05"/>
+<path d="M21.665,2.002c0,0,14.519,0.6,19.918,8.001 c0,0,4.081-4.801,5.216-0.957C46.226,6.105,41.045,1.897,21.665,2.002z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="34.9932" x2="33.4854" y1="2.6978" y2="8.2986">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.0061" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M21.66,2.002s14.52,0.13,19.92,7.528c0,0,3.866-4.768,5.216-0.484-0.57-2.941-5.76-7.149-25.14-7.044z" fill="url(#SVGID_7_)"/>
-<rect fill="#020202" fill-opacity="0.2" height="12.8" stroke-opacity="0.2" width="35.2" x="12.4" y="42.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="40.4" y2="58.47">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.8606" stop-color="#8F8F8F"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<path d="M21.665,2.002c0,0,14.519,0.13,19.918,7.528 c0,0,3.866-4.768,5.216-0.484C46.226,6.105,41.045,1.897,21.665,2.002z" fill="url(#SVGID_7_)" fill-rule="evenodd"/>
+<rect fill="#020202" fill-opacity="0.2" height="12.798" stroke-opacity="0.2" width="35.199" x="12.398" y="42.801"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="40.3994" y2="58.4715">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.8606" style="stop-color:#8F8F8F"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="17.6" width="33.6" x="13.2" y="40.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="39.6" y2="57.67">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<rect fill="url(#SVGID_8_)" height="17.601" width="33.599" x="13.2" y="40.399"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="39.6006" y2="57.6697">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<polygon fill="url(#SVGID_9_)" points="46.8,57.2,38.33,57.2,34.61,57.11,20.8,55.06,14.34,51.98,13.64,51.29,13.2,50.22,13.2,39.6,46.8,39.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="38.75" x2="22.3" y1="37.02" y2="56.15">
-<stop offset="0" stop-color="#D4EDDD"/>
-<stop offset="0.3758" stop-color="#5F8BA1"/>
-<stop offset="0.6909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<polygon fill="url(#SVGID_9_)" points="46.799,57.198 38.332,57.198 34.611,57.112 20.8,55.063 14.338,51.975 13.642,51.294 13.2,50.225 13.2,39.601 46.799,39.601 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="38.749" x2="22.3049" y1="37.021" y2="56.1539">
+<stop offset="0" style="stop-color:#D4EDDD"/>
+<stop offset="0.3758" style="stop-color:#5F8BA1"/>
+<stop offset="0.6909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<polygon fill="url(#SVGID_10_)" points="45.2,54.8,22.8,54.8,14.8,52.4,14.8,39.6,45.2,39.6"/>
-<linearGradient gradientTransform="matrix(0.8734 -0.108 0.1257 0.9176 55.8475 218.6808)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-7.176" x2="-5.487" y1="-190.4" y2="-184.7">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<polygon fill="url(#SVGID_10_)" points="45.199,54.8 22.799,54.8 14.801,52.398 14.801,39.601 45.199,39.601 "/>
+<linearGradient gradientTransform="matrix(0.8734 -0.108 0.1257 0.9176 55.8475 218.6808)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-7.1758" x2="-5.4868" y1="-190.3931" y2="-184.663">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M32.76,41.26s-10.45,3.05-11.49,13.33c0.01,0,11.29-2.6,11.49-13.33z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.52" x2="17.75" y1="44.61" y2="48.31">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M32.764,41.259c0,0-10.45,3.05-11.486,13.332C21.277,54.591,32.56,51.987,32.764,41.259z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="24.5244" x2="17.7473" y1="44.6128" y2="48.3141">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M18.22,39.6s6.994,6.28,6.553,15.2h-1.977l-7.998-3.039v-12.16h3.433z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.45" x2="18.03" y1="47.06" y2="46.27">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M18.223,39.601c0,0,6.994,6.28,6.553,15.199h-1.977l-7.998-3.039v-12.16H18.223z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.4502" x2="18.0304" y1="47.0591" y2="46.2696">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M14.8,39.6v12.8s4.039,1.376,4.026,0.881c-0.196-7.036-2.468-11.46-4.024-13.68h-0.009z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="29.68" x2="37.63" y1="46.62" y2="52.8">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M14.801,39.601v12.798c0,0,4.039,1.376,4.026,0.881c-0.196-7.036-2.468-11.459-4.024-13.679H14.801z " fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="29.6777" x2="37.6251" y1="46.6196" y2="52.8009">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M22.89,54.8s2.605-8.37,20.94-10.63c0,0-1.723,7.344-9.751,10.63h-11.19z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="38.23" x2="26.61" y1="43.41" y2="56.97">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M22.893,54.8c0,0,2.605-8.37,20.937-10.631c0,0-1.723,7.344-9.751,10.631H22.893z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="38.2305" x2="26.6075" y1="43.4058" y2="56.9659">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M43.8,44.28c0.018-0.069,0.028-0.109,0.028-0.109-18.74,2-20.94,10.63-20.94,10.63h0.479s1.61-8.24,20.43-10.52z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="39.42" x2="34.46" y1="53.31" y2="48.46">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M43.801,44.278c0.018-0.069,0.028-0.109,0.028-0.109C25.092,46.172,22.893,54.8,22.893,54.8h0.479 C23.372,54.8,24.978,46.563,43.801,44.278z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="39.4199" x2="34.4577" y1="53.3096" y2="48.4554">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M27.33,54.8s6.406-2.688,16.47-10.52c-0.225,2.718-2.982,8.391-9.723,10.52h-6.75z" fill="url(#SVGID_16_)"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.801" stroke-opacity="0.3" width="21.6" x="23.6" y="54"/>
-<path d="M38.33,57.2s-14.52-1.398-19.92-8.799c0,0-3.866,6.038-5.214,1.756,0.57,2.94,5.76,7.14,25.13,7.04z" fill="#050505" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M38.33,57.2s-14.51-0.513-19.91-7.91c0,0-3.876,5.149-5.224,0.867,0.57,2.94,5.76,7.14,25.13,7.04z" fill="#050505" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="25.8" x2="24.45" y1="53.58" y2="57.14">
-<stop offset="0" stop-color="#FEFEFE"/>
-<stop offset="0.8182" stop-color="#E3E3E3"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<path d="M27.33,54.8c0,0,6.406-2.688,16.471-10.521c-0.225,2.718-2.982,8.391-9.723,10.521H27.33z" fill="url(#SVGID_16_)"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.801" stroke-opacity="0.3" width="21.6" x="23.6" y="53.999"/>
+<path d="M38.332,57.198c0,0-14.518-1.398-19.918-8.799 c0,0-3.866,6.038-5.214,1.756C13.774,53.095,18.955,57.304,38.332,57.198z" fill="#050505" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M38.332,57.198c0,0-14.508-0.513-19.908-7.91 c0,0-3.876,5.149-5.224,0.867C13.774,53.095,18.955,57.304,38.332,57.198z" fill="#050505" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="25.8027" x2="24.4534" y1="53.5825" y2="57.1418">
+<stop offset="0" style="stop-color:#FEFEFE"/>
+<stop offset="0.8182" style="stop-color:#E3E3E3"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<path d="M38.33,57.2s-14.52-0.13-19.92-7.527c0,0-3.866,4.767-5.214,0.484,0.57,2.95,5.76,7.15,25.13,7.05z" fill="url(#SVGID_17_)"/>
-<rect fill="#020202" fill-opacity="0.1" height="0.802" stroke-opacity="0.1" width="33.6" x="13.2" y="42"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.799" stroke-opacity="0.2" width="33.6" x="13.2" y="41.2"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.801" stroke-opacity="0.3" width="33.6" x="13.2" y="40.4"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.799" stroke-opacity="0.5" width="33.6" x="13.2" y="39.6"/>
-<rect fill="#020202" fill-opacity="0.3" height="0.799" stroke-opacity="0.3" width="38.4" x="10.8" y="17.2"/>
-<rect fill="#020202" fill-opacity="0.1" height="0.802" stroke-opacity="0.1" width="38.4" x="10.8" y="16.4"/>
-<path d="M8.4,18v3.2c0,2.205,1.793,3.999,3.998,3.999h35.2c2.205,0,4-1.794,4-3.999v-3.199h-43.2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30" x2="30" y1="17.92" y2="24.32">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="0.7576" stop-color="#262628"/>
-<stop offset="1" stop-color="#202020"/>
+<path d="M38.332,57.198c0,0-14.518-0.13-19.918-7.527 c0,0-3.866,4.767-5.214,0.484C13.774,53.095,18.955,57.304,38.332,57.198z" fill="url(#SVGID_17_)" fill-rule="evenodd"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.802" stroke-opacity="0.1" width="33.599" x="13.2" y="41.999"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.799" stroke-opacity="0.2" width="33.599" x="13.2" y="41.2"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.801" stroke-opacity="0.3" width="33.599" x="13.2" y="40.399"/>
+<rect fill="#020202" fill-opacity="0.5" height="0.799" stroke-opacity="0.5" width="33.599" x="13.2" y="39.601"/>
+<rect fill="#020202" fill-opacity="0.3" height="0.799" stroke-opacity="0.3" width="38.399" x="10.799" y="17.202"/>
+<rect fill="#020202" fill-opacity="0.1" height="0.802" stroke-opacity="0.1" width="38.399" x="10.799" y="16.4"/>
+<path d="M8.4,18.001V21.2c0,2.205,1.793,3.999,3.998,3.999h35.199c2.205,0,4-1.794,4-3.999v-3.199H8.4 z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="29.999" x2="29.999" y1="17.9209" y2="24.3213">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="0.7576" style="stop-color:#262628"/>
+<stop offset="1" style="stop-color:#202020"/>
</linearGradient>
-<path d="M9.199,18v3.2c0,1.769,1.434,3.201,3.199,3.201h35.2c1.767,0,3.201-1.433,3.201-3.201v-3.199h-41.6z" fill="url(#SVGID_18_)"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="1.307" stroke-opacity="0.2" width="41.6" x="9.199" y="18"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="53.2" x2="53.2" y1="41.2" y2="44.44">
-<stop offset="0" stop-color="#5C5F62"/>
-<stop offset="1" stop-color="#E3E3E3"/>
+<path d="M9.199,18.001V21.2c0,1.769,1.434,3.201,3.199,3.201h35.199c1.767,0,3.201-1.433,3.201-3.201v-3.199 H9.199z" fill="url(#SVGID_18_)"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="1.307" stroke-opacity="0.2" width="41.6" x="9.199" y="18.001"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="53.1973" x2="53.1973" y1="41.2002" y2="44.4434">
+<stop offset="0" style="stop-color:#5C5F62"/>
+<stop offset="1" style="stop-color:#E3E3E3"/>
</linearGradient>
-<path d="M54.8,43.6c0,0.441-0.359,0.799-0.799,0.799h-1.6c-0.441,0-0.801-0.357-0.801-0.799v-1.598c0-0.441,0.359-0.799,0.801-0.799h1.6c0.439,0,0.799,0.357,0.799,0.799v1.597z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="53.2" x2="53.2" y1="41.97" y2="43.62">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M54.797,43.597c0,0.441-0.359,0.799-0.799,0.799h-1.6c-0.441,0-0.801-0.357-0.801-0.799v-1.598 c0-0.441,0.359-0.799,0.801-0.799h1.6c0.439,0,0.799,0.357,0.799,0.799V43.597z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="53.1982" x2="53.1982" y1="41.9692" y2="43.616">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
+</linearGradient>
+<rect fill="url(#SVGID_20_)" height="1.598" width="1.6" x="52.398" y="41.999"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="53.1973" x2="53.1973" y1="36.4004" y2="39.6486">
+<stop offset="0" style="stop-color:#5C5F62"/>
+<stop offset="1" style="stop-color:#C4C4C4"/>
</linearGradient>
-<rect fill="url(#SVGID_20_)" height="1.598" width="1.6" x="52.4" y="42"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="53.2" x2="53.2" y1="36.4" y2="39.65">
-<stop offset="0" stop-color="#5C5F62"/>
-<stop offset="1" stop-color="#C4C4C4"/>
+<path d="M54.797,38.799c0,0.444-0.357,0.802-0.801,0.802h-1.598c-0.441,0-0.801-0.357-0.801-0.802v-1.6 c0-0.441,0.359-0.799,0.801-0.799h1.598c0.443,0,0.801,0.357,0.801,0.799V38.799z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="53.1973" x2="53.1973" y1="37.1694" y2="38.8182">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M54.8,38.8c0,0.444-0.357,0.802-0.801,0.802h-1.598c-0.441,0-0.801-0.357-0.801-0.802v-1.6c0-0.441,0.359-0.799,0.801-0.799h1.598c0.443,0,0.801,0.357,0.801,0.799v1.599z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="53.2" x2="53.2" y1="37.17" y2="38.82">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
-</linearGradient>
-<rect fill="url(#SVGID_22_)" height="1.6" width="1.598" x="52.4" y="37.2"/>
+<rect fill="url(#SVGID_22_)" height="1.6" width="1.598" x="52.398" y="37.199"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_info.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_info.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.267" y2="58.27">
-<stop offset="0" stop-color="#E1E8C9"/>
-<stop offset="0.3879" stop-color="#4C7F44"/>
-<stop offset="0.6788" stop-color="#275341"/>
-<stop offset="1" stop-color="#B4C980"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.2666" y2="58.2666">
+<stop offset="0" style="stop-color:#E1E8C9"/>
+<stop offset="0.3879" style="stop-color:#4C7F44"/>
+<stop offset="0.6788" style="stop-color:#275341"/>
+<stop offset="1" style="stop-color:#B4C980"/>
</linearGradient>
<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
-<radialGradient cx="30.27" cy="5.201" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.47">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<radialGradient cx="30.2666" cy="5.2007" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="51.4669">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</radialGradient>
-<path d="M30,57.2c-15,0-27.2-12.2-27.2-27.2s12.2-27.2,27.2-27.2c15,0,27.2,12.2,27.2,27.2s-12.2,27.2-27.2,27.2z" fill="url(#SVGID_2_)"/>
-<polygon fill-opacity="0.1" points="23.8,27.18,26.47,27.18,26.47,50.31,34.25,50.31,34.25,22.75,23.8,22.75" stroke-opacity="0.1"/>
-<path d="M30.39,19.89c1.281,0,2.31-0.316,3.083-0.949,0.773-0.632,1.159-1.504,1.159-2.612,0-1.08-0.399-1.942-1.196-2.591s-1.813-0.973-3.046-0.973c-1.297,0-2.323,0.319-3.081,0.96-0.76,0.642-1.138,1.509-1.138,2.604,0,1.108,0.388,1.98,1.161,2.612,0.78,0.64,1.8,0.95,3.07,0.95z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.2" points="23.8,26.38,26.47,26.38,26.47,49.51,34.25,49.51,34.25,21.95,23.8,21.95" stroke-opacity="0.2"/>
-<path d="M30.39,19.09c1.281,0,2.31-0.316,3.083-0.949s1.159-1.503,1.159-2.613c0-1.077-0.399-1.94-1.196-2.589s-1.813-0.974-3.046-0.974c-1.297,0-2.323,0.321-3.081,0.962-0.76,0.641-1.138,1.507-1.138,2.601,0,1.11,0.388,1.98,1.161,2.613s1.8,0.95,3.07,0.95z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.03" x2="29.03" y1="11.56" y2="49.16">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M30,57.2C15.002,57.2,2.801,44.999,2.801,30S15.002,2.8,30,2.8c14.999,0,27.2,12.201,27.2,27.2 S44.999,57.2,30,57.2L30,57.2z" fill="url(#SVGID_2_)"/>
+<polygon fill-opacity="0.1" points="23.799,27.181 26.471,27.181 26.471,50.313 34.252,50.313 34.252,22.751 23.799,22.751 " stroke-opacity="0.1"/>
+<path d="M30.39,19.892c1.281,0,2.31-0.316,3.083-0.949c0.773-0.632,1.159-1.504,1.159-2.612 c0-1.08-0.399-1.942-1.196-2.591s-1.813-0.973-3.046-0.973c-1.297,0-2.323,0.319-3.081,0.96c-0.76,0.642-1.138,1.509-1.138,2.604 c0,1.108,0.388,1.98,1.161,2.612C28.105,19.575,29.124,19.892,30.39,19.892z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="23.799,26.38 26.471,26.38 26.471,49.513 34.252,49.513 34.252,21.95 23.799,21.95 " stroke-opacity="0.2"/>
+<path d="M30.39,19.091c1.281,0,2.31-0.316,3.083-0.949s1.159-1.503,1.159-2.613c0-1.077-0.399-1.94-1.196-2.589 s-1.813-0.974-3.046-0.974c-1.297,0-2.323,0.321-3.081,0.962c-0.76,0.641-1.138,1.507-1.138,2.601c0,1.11,0.388,1.98,1.161,2.613 S29.124,19.091,30.39,19.091z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.0254" x2="29.0254" y1="11.5566" y2="49.1577">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="23.8,25.58,26.47,25.58,26.47,48.71,34.25,48.71,34.25,21.15,23.8,21.15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.37" x2="30.37" y1="11.56" y2="49.15">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<polygon fill="url(#SVGID_3_)" points="23.799,25.581 26.471,25.581 26.471,48.713 34.252,48.713 34.252,21.15 23.799,21.15 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.373" x2="30.373" y1="11.5576" y2="49.1534">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M30.36,18.29c1.281,0,2.309-0.315,3.083-0.948,0.773-0.633,1.159-1.504,1.159-2.613,0-1.079-0.398-1.941-1.195-2.59s-1.813-0.973-3.047-0.973c-1.297,0-2.323,0.32-3.082,0.961s-1.137,1.507-1.137,2.602c0,1.109,0.388,1.98,1.161,2.613,0.79,0.64,1.81,0.95,3.07,0.95z" fill="url(#SVGID_4_)"/>
-</svg>
\ No newline at end of file
+<path d="M30.361,18.291c1.281,0,2.309-0.315,3.083-0.948c0.773-0.633,1.159-1.504,1.159-2.613 c0-1.079-0.398-1.941-1.195-2.59s-1.813-0.973-3.047-0.973c-1.297,0-2.323,0.32-3.082,0.961s-1.137,1.507-1.137,2.602 c0,1.109,0.388,1.98,1.161,2.613C28.076,17.976,29.096,18.291,30.361,18.291z" fill="url(#SVGID_4_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_input_device.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_input_device.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,78 +1,86 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21.6" x2="21.6" y1="23.5" y2="-23.1">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7308" stop-color="#838585"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21.5996" x2="21.5996" y1="23.4971" y2="-23.1007">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7308" style="stop-color:#838585"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M6.505,55.06c0,1.62,1.304,2.94,2.896,2.94h41.2c1.594,0,2.896-1.32,2.896-2.936v-40.58c0-1.615-1.303-2.937-2.896-2.937h-41.2c-1.592,0-2.896,1.321-2.896,2.937v40.58z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6" x2="21.6" y1="22.03" y2="-21.62">
-<stop offset="0" stop-color="#E7EBE8"/>
-<stop offset="0.6727" stop-color="#A4A9A8"/>
-<stop offset="1" stop-color="#C9CCCB"/>
+<path d="M6.505,55.064C6.505,56.68,7.809,58,9.401,58h41.197 c1.594,0,2.896-1.32,2.896-2.936V14.48c0-1.615-1.303-2.937-2.896-2.937H9.401c-1.592,0-2.896,1.321-2.896,2.937V55.064z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6001" x2="21.6001" y1="22.0293" y2="-21.623">
+<stop offset="0" style="stop-color:#E7EBE8"/>
+<stop offset="0.6727" style="stop-color:#A4A9A8"/>
+<stop offset="1" style="stop-color:#C9CCCB"/>
</linearGradient>
-<path d="M50.6,56.53h-41.2c-0.789,0-1.427-0.66-1.427-1.477v-40.57c0-0.809,0.638-1.469,1.427-1.469h41.2c0.785,0,1.428,0.66,1.428,1.469v40.58c-0.01,0.81-0.65,1.47-1.43,1.47z" fill="url(#SVGID_2_)"/>
-<path d="M24,47.96c-6.556,0-11.89-5.335-11.89-11.9,0-6.556,5.335-11.89,11.89-11.89,6.557,0,11.89,5.333,11.89,11.89,0,6.56-5.33,11.9-11.89,11.9z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.571" x2="26.82" y1="-0.2554" y2="-0.2554">
-<stop offset="0" stop-color="#262626"/>
-<stop offset="0.3879" stop-color="#CCCCCC"/>
-<stop offset="0.7091" stop-color="#262626"/>
-<stop offset="1" stop-color="#757575"/>
+<path d="M50.598,56.531H9.401c-0.789,0-1.427-0.66-1.427-1.477V14.48c0-0.809,0.638-1.469,1.427-1.469h41.197 c0.785,0,1.428,0.66,1.428,1.469v40.575C52.025,55.871,51.383,56.531,50.598,56.531L50.598,56.531z" fill="url(#SVGID_2_)"/>
+<g>
+<path d="M24,47.958c-6.556,0-11.892-5.335-11.892-11.896 c0-6.556,5.335-11.889,11.892-11.889c6.557,0,11.891,5.333,11.891,11.889C35.891,42.623,30.557,47.958,24,47.958L24,47.958z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="3.5708" x2="26.8214" y1="-0.2554" y2="-0.2554">
+<stop offset="0" style="stop-color:#262626"/>
+<stop offset="0.3879" style="stop-color:#CCCCCC"/>
+<stop offset="0.7091" style="stop-color:#262626"/>
+<stop offset="1" style="stop-color:#757575"/>
</linearGradient>
-<path d="M35.45,35.3c0,6.323-5.125,11.45-11.45,11.45-6.323,0-11.45-5.131-11.45-11.45,0-6.332,5.13-11.45,11.45-11.45,6.33-0.01,11.45,5.11,11.45,11.45z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.6" x2="15.6" y1="9.365" y2="-9.5">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M35.453,35.295c0,6.323-5.125,11.454-11.454,11.454c-6.323,0-11.453-5.131-11.453-11.454 c0-6.332,5.13-11.453,11.453-11.453C30.328,23.842,35.453,28.963,35.453,35.295z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.6006" x2="15.6006" y1="9.3652" y2="-9.4998">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M24,45.25c-6.04,0-10.95-4.913-10.95-10.95,0-6.04,4.914-10.95,10.95-10.95s10.95,4.913,10.95,10.95c0,6.04-4.91,10.95-10.95,10.95z" fill="url(#SVGID_4_)"/>
-<path d="M13.19,16.54c0,4.259,2.52,8.104,6.36,9.848v6.69c0,2.451,1.996,4.451,4.451,4.451,2.456,0,4.452-2,4.452-4.451v-6.69c3.84-1.744,6.359-5.589,6.359-9.848,0-1.805-0.455-3.5-1.24-4.992h-19.14c-0.788,1.49-1.238,3.18-1.238,4.99z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<path d="M20.33,18.19v16.89c0,2.028,1.644,3.672,3.671,3.672s3.67-1.644,3.67-3.672v-16.89h-7.341z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.93" x2="19.27" y1="7.56" y2="7.56">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="0.3455" stop-color="#E0E0E0"/>
-<stop offset="0.7515" stop-color="#838383"/>
-<stop offset="1" stop-color="#C9C9C9"/>
+<path d="M24,45.249c-6.04,0-10.953-4.913-10.953-10.954c0-6.04,4.914-10.953,10.953-10.953 s10.954,4.913,10.954,10.953C34.953,40.336,30.039,45.249,24,45.249L24,45.249z" fill="url(#SVGID_4_)"/>
+<path d="M13.188,16.536c0,4.259,2.52,8.104,6.36,9.848v6.69 c0,2.451,1.996,4.451,4.451,4.451c2.456,0,4.452-2,4.452-4.451v-6.69c3.84-1.744,6.359-5.589,6.359-9.848 c0-1.805-0.455-3.5-1.24-4.992H14.428C13.643,13.036,13.188,14.731,13.188,16.536z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M20.329,18.189v16.886c0,2.028,1.644,3.672,3.671,3.672 c2.027,0,3.67-1.644,3.67-3.672V18.189H20.329z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.9292" x2="19.27" y1="7.5596" y2="7.5596">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="0.3455" style="stop-color:#E0E0E0"/>
+<stop offset="0.7515" style="stop-color:#838383"/>
+<stop offset="1" style="stop-color:#C9C9C9"/>
</linearGradient>
-<path d="M20.33,17.21v16.88c0,2.028,1.644,3.672,3.671,3.672s3.67-1.644,3.67-3.672v-16.88h-7.341z" fill="url(#SVGID_5_)"/>
-<path d="M20.33,22.95c1.151,0.404,2.382,0.635,3.671,0.635,1.29,0,2.52-0.23,3.67-0.635v-9.646h-7.341v9.661z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<radialGradient cx="15.57" cy="32.63" gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="19">
-<stop offset="0" stop-color="#B6C393"/>
-<stop offset="0.1333" stop-color="#B6C393"/>
-<stop offset="0.4848" stop-color="#5E8D4A"/>
-<stop offset="0.7091" stop-color="#356742"/>
-<stop offset="0.8545" stop-color="#447B42"/>
-<stop offset="1" stop-color="#8DA369"/>
+<path d="M20.329,17.206v16.877c0,2.028,1.644,3.672,3.671,3.672c2.027,0,3.67-1.644,3.67-3.672V17.206 H20.329z" fill="url(#SVGID_5_)"/>
+<path d="M20.329,22.951c1.151,0.404,2.382,0.635,3.671,0.635 c1.29,0,2.52-0.23,3.67-0.635v-9.646h-7.341V22.951z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<radialGradient cx="15.5718" cy="32.6318" gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="19.0015">
+<stop offset="0" style="stop-color:#B6C393"/>
+<stop offset="0.1333" style="stop-color:#B6C393"/>
+<stop offset="0.4848" style="stop-color:#5E8D4A"/>
+<stop offset="0.7091" style="stop-color:#356742"/>
+<stop offset="0.8545" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#8DA369"/>
</radialGradient>
-<path d="M34.06,12.06c0,5.56-4.502,10.06-10.06,10.06-5.556,0-10.06-4.497-10.06-10.06,0-5.555,4.5-10.06,10.06-10.06s10.06,4.505,10.06,10.06z" fill="url(#SVGID_6_)"/>
-<path d="M44.48,31.73c-3.273,0-5.938-2.663-5.938-5.939,0-3.271,2.664-5.934,5.938-5.934s5.936,2.663,5.936,5.934c0,3.28-2.66,5.94-5.94,5.94z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.08" x2="41.68" y1="9.63" y2="9.63">
-<stop offset="0" stop-color="#262626"/>
-<stop offset="0.3879" stop-color="#CCCCCC"/>
-<stop offset="0.7091" stop-color="#262626"/>
-<stop offset="1" stop-color="#757575"/>
+<path d="M34.059,12.059c0,5.56-4.502,10.057-10.059,10.057c-5.556,0-10.058-4.497-10.058-10.057 C13.941,6.505,18.443,2,24,2C29.557,2,34.059,6.505,34.059,12.059z" fill="url(#SVGID_6_)"/>
+</g>
+<g>
+<path d="M44.482,31.73c-3.273,0-5.938-2.663-5.938-5.939 c0-3.271,2.664-5.934,5.938-5.934s5.936,2.663,5.936,5.934C50.418,29.068,47.756,31.73,44.482,31.73L44.482,31.73z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.0771" x2="41.6829" y1="9.6299" y2="9.6299">
+<stop offset="0" style="stop-color:#262626"/>
+<stop offset="0.3879" style="stop-color:#CCCCCC"/>
+<stop offset="0.7091" style="stop-color:#262626"/>
+<stop offset="1" style="stop-color:#757575"/>
</linearGradient>
-<path d="M50.2,25.41c0,3.157-2.558,5.717-5.717,5.717-3.156,0-5.718-2.56-5.718-5.717,0-3.161,2.562-5.717,5.718-5.717,3.16,0,5.72,2.56,5.72,5.72z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.08" x2="36.08" y1="14.43" y2="5.015">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<path d="M50.199,25.41c0,3.157-2.558,5.717-5.717,5.717c-3.156,0-5.718-2.56-5.718-5.717 c0-3.161,2.562-5.717,5.718-5.717C47.642,19.693,50.199,22.249,50.199,25.41z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="36.082" x2="36.082" y1="14.4321" y2="5.0154">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<path d="M44.48,30.38c-3.016,0-5.469-2.451-5.469-5.467,0-3.017,2.453-5.469,5.469-5.469,3.014,0,5.469,2.452,5.469,5.469,0,3.02-2.45,5.47-5.47,5.47z" fill="url(#SVGID_8_)"/>
-<path d="M44.48,50.21c-3.271,0-5.937-2.661-5.937-5.938,0-3.271,2.664-5.933,5.937-5.933s5.938,2.662,5.938,5.933c0,3.27-2.67,5.94-5.94,5.94z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.08" x2="41.68" y1="-8.845" y2="-8.845">
-<stop offset="0" stop-color="#262626"/>
-<stop offset="0.3879" stop-color="#CCCCCC"/>
-<stop offset="0.7091" stop-color="#262626"/>
-<stop offset="1" stop-color="#757575"/>
+<path d="M44.482,30.377c-3.016,0-5.469-2.451-5.469-5.467c0-3.017,2.453-5.469,5.469-5.469 c3.014,0,5.469,2.452,5.469,5.469C49.951,27.926,47.498,30.377,44.482,30.377L44.482,30.377z" fill="url(#SVGID_8_)"/>
+</g>
+<g>
+<path d="M44.48,50.206c-3.271,0-5.937-2.661-5.937-5.938 c0-3.271,2.664-5.933,5.937-5.933s5.938,2.662,5.938,5.933C50.418,47.545,47.754,50.206,44.48,50.206L44.48,50.206z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0771" x2="41.6834" y1="-8.8452" y2="-8.8452">
+<stop offset="0" style="stop-color:#262626"/>
+<stop offset="0.3879" style="stop-color:#CCCCCC"/>
+<stop offset="0.7091" style="stop-color:#262626"/>
+<stop offset="1" style="stop-color:#757575"/>
</linearGradient>
-<circle cx="44.48" cy="43.88" fill="url(#SVGID_9_)" r="5.718"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.08" x2="36.08" y1="-4.044" y2="-13.46">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.1576" stop-color="#72B9C3"/>
-<stop offset="0.8242" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<circle cx="44.48" cy="43.885" fill="url(#SVGID_9_)" r="5.718"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 8.3999 35.04)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.0811" x2="36.0811" y1="-4.0439" y2="-13.4606">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.1576" style="stop-color:#72B9C3"/>
+<stop offset="0.8242" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M44.48,48.85c-3.015,0-5.467-2.453-5.467-5.47,0-3.015,2.452-5.466,5.467-5.466,3.016,0,5.469,2.451,5.469,5.466,0,3.02-2.45,5.47-5.47,5.47z" fill="url(#SVGID_10_)"/>
-</svg>
\ No newline at end of file
+<path d="M44.48,48.854c-3.015,0-5.467-2.453-5.467-5.47c0-3.015,2.452-5.466,5.467-5.466 c3.016,0,5.469,2.451,5.469,5.466C49.949,46.4,47.496,48.854,44.48,48.854L44.48,48.854z" fill="url(#SVGID_10_)"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_internet_radio.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_internet_radio.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,337 +1,339 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.65" y2="52.33">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.647" y2="52.3348">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<path d="M58,50.78c0,0.858-0.697,1.556-1.557,1.556h-52.88c-0.861-0.01-1.555-0.7-1.555-1.56v-37.34c0-0.859,0.694-1.556,1.555-1.556h52.89c0.859,0,1.557,0.696,1.557,1.556v37.33z" fill="url(#SVGID_1_)"/>
-<path d="M56.44,11.89h-52.88c-0.861,0-1.555,0.69-1.555,1.55v12.06l56-6.158v-5.897c0-0.86-0.7-1.55-1.56-1.55z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M56.44,12.67c0.428,0,0.777,0.349,0.777,0.777v37.33c0,0.428-0.35,0.778-0.777,0.778h-52.88c-0.43,0-0.778-0.351-0.778-0.778v-37.34c0-0.429,0.349-0.777,0.778-0.777h52.89m-0.003-0.78h-52.88c-0.861,0-1.555,0.69-1.555,1.55v37.33c0,0.858,0.694,1.556,1.555,1.556h52.89c0.859,0,1.557-0.697,1.557-1.556v-37.33c0-0.863-0.7-1.553-1.56-1.553z" fill="#995145"/>
-<path d="M56.44,51.56h-52.88c-0.861,0-1.555-0.7-1.555-1.56v0.777c0,0.858,0.694,1.556,1.555,1.556h52.89c0.859,0,1.557-0.697,1.557-1.556v-0.777c0,0.86-0.7,1.56-1.56,1.56z" fill="#46232D"/>
-<path d="M56.44,11.89h-52.88c-0.861,0-1.555,0.69-1.555,1.55v0.778c0-0.86,0.694-1.556,1.555-1.556h52.89c0.859,0,1.557,0.695,1.557,1.556v-0.778c0-0.86-0.7-1.55-1.56-1.55z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="45.94" x2="45.94" y1="32.64" y2="20.91">
-<stop offset="0" stop-color="#434343"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M58,50.776c0,0.858-0.697,1.556-1.557,1.556H3.555C2.694,52.332,2,51.635,2,50.776V13.443 c0-0.859,0.694-1.556,1.555-1.556h52.889c0.859,0,1.557,0.696,1.557,1.556V50.776z" fill="url(#SVGID_1_)"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v12.056l56-6.158v-5.897 C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M56.443,12.666c0.428,0,0.777,0.349,0.777,0.777v37.333c0,0.428-0.35,0.778-0.777,0.778H3.555 c-0.43,0-0.778-0.351-0.778-0.778V13.443c0-0.429,0.349-0.777,0.778-0.777H56.443 M56.443,11.888H3.555 C2.694,11.888,2,12.584,2,13.443v37.333c0,0.858,0.694,1.556,1.555,1.556h52.889c0.859,0,1.557-0.697,1.557-1.556V13.443 C58,12.584,57.303,11.888,56.443,11.888L56.443,11.888z" fill="#995145"/>
+<path d="M56.443,51.555H3.555C2.694,51.555,2,50.857,2,49.999v0.777c0,0.858,0.694,1.556,1.555,1.556h52.889 c0.859,0,1.557-0.697,1.557-1.556v-0.777C58,50.857,57.303,51.555,56.443,51.555z" fill="#46232D"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v0.778c0-0.86,0.694-1.556,1.555-1.556 h52.889c0.859,0,1.557,0.695,1.557,1.556v-0.778C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="45.9424" x2="45.9424" y1="32.6411" y2="20.912">
+<stop offset="0" style="stop-color:#434343"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<circle cx="45.94" cy="26.61" fill="url(#SVGID_2_)" r="6.946"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="45.94" x2="45.94" y1="33.97" y2="28.64">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#404040"/>
+<circle cx="45.942" cy="26.611" fill="url(#SVGID_2_)" r="6.946"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="45.9424" x2="45.9424" y1="33.9702" y2="28.6358">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M45.94,33.56c-3.754,0-6.803-2.979-6.935-6.698-0.003,0.084-0.013,0.163-0.013,0.248,0,3.836,3.109,6.946,6.947,6.946,3.836,0,6.945-3.11,6.945-6.946,0-0.085-0.01-0.164-0.01-0.248-0.13,3.72-3.17,6.7-6.93,6.7z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.94" x2="45.94" y1="35.32" y2="17.44">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#733A43"/>
-</linearGradient>
-<path d="M45.94,35.61c-4.933,0-8.944-4.013-8.944-8.943,0-4.933,4.012-8.945,8.944-8.945s8.945,4.013,8.945,8.945c0.01,4.94-4,8.95-8.94,8.95zm0-16.72c-4.29,0-7.778,3.488-7.778,7.778,0,4.287,3.488,7.776,7.778,7.776,4.287,0,7.779-3.489,7.779-7.776,0-4.29-3.49-7.78-7.78-7.78z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="45.94" x2="45.94" y1="20.54" y2="32.75">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<path d="M45.943,33.558c-3.754,0-6.803-2.979-6.935-6.698c-0.003,0.084-0.013,0.163-0.013,0.248 c0,3.836,3.109,6.946,6.947,6.946c3.836,0,6.945-3.11,6.945-6.946c0-0.085-0.01-0.164-0.01-0.248 C52.744,30.578,49.695,33.558,45.943,33.558z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.9443" x2="45.9443" y1="35.3247" y2="17.436">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#733A43"/>
</linearGradient>
-<circle cx="45.94" cy="26.64" fill="url(#SVGID_5_)" r="6.104"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.94" x2="45.94" y1="20.97" y2="32.31">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.2848" stop-color="#FFFFFF"/>
-<stop offset="0.7212" stop-color="#7B7B7B"/>
-<stop offset="1" stop-color="#A7A7A7"/>
+<path d="M45.943,35.609c-4.933,0-8.944-4.013-8.944-8.943c0-4.933,4.012-8.945,8.944-8.945 s8.945,4.013,8.945,8.945C54.889,31.597,50.876,35.609,45.943,35.609L45.943,35.609z M45.943,18.888 c-4.29,0-7.778,3.488-7.778,7.778c0,4.287,3.488,7.776,7.778,7.776c4.287,0,7.779-3.489,7.779-7.776 C53.723,22.376,50.23,18.888,45.943,18.888L45.943,18.888z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="45.9434" x2="45.9434" y1="20.5371" y2="32.7461">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<circle cx="45.94" cy="26.64" fill="url(#SVGID_6_)" r="5.67"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="45.94" x2="45.94" y1="21.47" y2="31.94">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.8242" stop-color="#636363"/>
-<stop offset="1" stop-color="#636363"/>
+<circle cx="45.943" cy="26.642" fill="url(#SVGID_5_)" r="6.104"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.9434" x2="45.9434" y1="20.9736" y2="32.3105">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
-<path d="M50.7,24.47c0.303,0.662,0.471,1.396,0.471,2.174,0,2.889-2.342,5.233-5.232,5.233-2.888,0-5.232-2.345-5.232-5.233s2.345-5.232,5.232-5.232c2.12,0,3.94,1.25,4.76,3.06z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.94" x2="45.94" y1="25.5" y2="22.93">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="1" stop-color="#323232"/>
+<circle cx="45.943" cy="26.642" fill="url(#SVGID_6_)" r="5.67"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="45.9434" x2="45.9434" y1="21.4746" y2="31.9404">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.8242" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="44.64,25.4,45.94,22.78,47.25,25.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="20.28" x2="20.28" y1="30.68" y2="20.67">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.6667" stop-color="#515151"/>
-<stop offset="1" stop-color="#323232"/>
+<path d="M50.705,24.468c0.303,0.662,0.471,1.396,0.471,2.174c0,2.889-2.342,5.233-5.232,5.233 c-2.888,0-5.232-2.345-5.232-5.233s2.345-5.232,5.232-5.232C48.058,21.409,49.879,22.663,50.705,24.468z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.9434" x2="45.9434" y1="25.4961" y2="22.9348">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="10.89" width="28" x="6.277" y="20.06"/>
-<rect fill="#D9D9D9" height="0.777" width="28" x="6.277" y="30.94"/>
-<polygon fill="#A8A9AA" points="31.94,25.5,31.94,27.83,29.61,27.83,29.61,26.28,28.83,26.28,28.83,27.83,26.5,27.83,26.5,26.28,25.72,26.28,25.72,27.83,23.39,27.83,23.39,26.28,22.61,26.28,22.61,27.83,20.28,27.83,20.28,25.5,19.5,25.5,19.5,27.83,17.17,27.83,17.17,26.28,16.39,26.28,16.39,27.83,14.06,27.83,14.06,26.28,13.28,26.28,13.28,27.83,10.94,27.83,10.94,26.28,10.16,26.28,10.16,27.83,8.609,27.83,8.609,25.5,7.833,25.5,7.833,28.61,8.609,28.61,10.16,28.61,10.94,28.61,13.28,28.61,14.06,28.61,16.39,28.61,17.17,28.61,19.5,28.61,20.28,28.61,22.61,28.61,23.39,28.61,25.72,28.61,26.5,28.61,28.83,28.61,29.61,28.61,31.94,28.61,32.72,28.61,32.72,27.83,32.72,25.5"/>
-<rect fill="#9D4349" height="10.89" width="1.556" x="20.3" y="20.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="9.127" x2="9.127" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<polygon fill="url(#SVGID_8_)" points="44.636,25.397 45.943,22.782 47.251,25.397 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="20.2773" x2="20.2773" y1="30.6846" y2="20.667">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.6667" style="stop-color:#515151"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
-<circle cx="9.127" cy="41.83" fill="url(#SVGID_10_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.126" x2="9.126" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<rect fill="url(#SVGID_9_)" height="10.889" width="28" x="6.277" y="20.055"/>
+<rect fill="#D9D9D9" height="0.777" width="28" x="6.277" y="30.943"/>
+<polygon fill="#A8A9AA" points="31.945,25.499 31.945,27.832 29.609,27.832 29.609,26.276 28.832,26.276 28.832,27.832 26.498,27.832 26.498,26.276 25.723,26.276 25.723,27.832 23.387,27.832 23.387,26.276 22.61,26.276 22.61,27.832 20.277,27.832 20.277,25.499 19.499,25.499 19.499,27.832 17.166,27.832 17.166,26.276 16.388,26.276 16.388,27.832 14.056,27.832 14.056,26.276 13.276,26.276 13.276,27.832 10.944,27.832 10.944,26.276 10.165,26.276 10.165,27.832 8.609,27.832 8.609,25.499 7.833,25.499 7.833,28.609 8.609,28.609 10.165,28.609 10.944,28.609 13.276,28.609 14.056,28.609 16.388,28.609 17.166,28.609 19.499,28.609 20.277,28.609 22.61,28.609 23.387,28.609 25.723,28.609 26.498,28.609 28.832,28.609 29.609,28.609 31.945,28.609 32.721,28.609 32.721,27.832 32.721,25.499 "/>
+<rect fill="#9D4349" height="10.889" width="1.556" x="20.301" y="20.055"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="9.127" x2="9.127" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="9.126" cy="41.83" fill="url(#SVGID_11_)" r="1.039"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.73" x2="13.73" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="9.127" cy="41.832" fill="url(#SVGID_10_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.126" x2="9.126" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<path d="M15.28,41.83c0,0.858-0.693,1.556-1.556,1.556-0.857,0-1.555-0.697-1.555-1.556,0-0.861,0.697-1.556,1.555-1.556,0.87,0.01,1.56,0.7,1.56,1.56z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.73" x2="13.73" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="9.126" cy="41.832" fill="url(#SVGID_11_)" r="1.039"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.7295" x2="13.7295" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="13.73" cy="41.83" fill="url(#SVGID_13_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="18.4" x2="18.4" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M15.285,41.832c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,40.276,15.285,40.971,15.285,41.832z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.7295" x2="13.7295" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="18.4" cy="41.83" fill="url(#SVGID_14_)" r="1.555"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.4" x2="18.4" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="13.73" cy="41.832" fill="url(#SVGID_13_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="18.3955" x2="18.3955" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="18.4" cy="41.83" fill="url(#SVGID_15_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.06" x2="23.06" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="18.396" cy="41.832" fill="url(#SVGID_14_)" r="1.555"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.3955" x2="18.3955" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="23.06" cy="41.83" fill="url(#SVGID_16_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.06" x2="23.06" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="18.396" cy="41.832" fill="url(#SVGID_15_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.0615" x2="23.0615" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="23.06" cy="41.83" fill="url(#SVGID_17_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="27.73" x2="27.73" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="23.062" cy="41.832" fill="url(#SVGID_16_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.0635" x2="23.0635" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="27.73" cy="41.83" fill="url(#SVGID_18_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="27.73" x2="27.73" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="23.063" cy="41.832" fill="url(#SVGID_17_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="27.7295" x2="27.7295" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
+</linearGradient>
+<circle cx="27.729" cy="41.832" fill="url(#SVGID_18_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="27.7295" x2="27.7295" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="27.73" cy="41.83" fill="url(#SVGID_19_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="32.4" x2="32.4" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="27.729" cy="41.832" fill="url(#SVGID_19_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="32.3965" x2="32.3965" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="32.4" cy="41.83" fill="url(#SVGID_20_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="32.4" x2="32.4" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="32.396" cy="41.832" fill="url(#SVGID_20_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="32.3965" x2="32.3965" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="32.4" cy="41.83" fill="url(#SVGID_21_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="9.127" x2="9.127" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="32.396" cy="41.832" fill="url(#SVGID_21_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="9.127" x2="9.127" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="9.127" cy="46.5" fill="url(#SVGID_22_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="9.126" x2="9.126" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="9.127" cy="46.499" fill="url(#SVGID_22_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="9.126" x2="9.126" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="9.126" cy="46.5" fill="url(#SVGID_23_)" r="1.039"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="13.73" x2="13.73" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="9.126" cy="46.499" fill="url(#SVGID_23_)" r="1.039"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="13.7295" x2="13.7295" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M15.28,46.5c0,0.858-0.693,1.556-1.556,1.556-0.857,0-1.555-0.697-1.555-1.556,0-0.861,0.697-1.556,1.555-1.556,0.87,0,1.56,0.7,1.56,1.56z" fill="url(#SVGID_24_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="13.73" x2="13.73" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<path d="M15.285,46.499c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,44.943,15.285,45.638,15.285,46.499z" fill="url(#SVGID_24_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="13.7295" x2="13.7295" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="13.73" cy="46.5" fill="url(#SVGID_25_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="18.4" x2="18.4" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="13.73" cy="46.499" fill="url(#SVGID_25_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="18.3955" x2="18.3955" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="18.4" cy="46.5" fill="url(#SVGID_26_)" r="1.555"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="18.4" x2="18.4" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="18.396" cy="46.499" fill="url(#SVGID_26_)" r="1.555"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="18.3955" x2="18.3955" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="18.4" cy="46.5" fill="url(#SVGID_27_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="23.06" x2="23.06" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="18.396" cy="46.499" fill="url(#SVGID_27_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="23.0615" x2="23.0615" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="23.06" cy="46.5" fill="url(#SVGID_28_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="23.06" x2="23.06" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="23.062" cy="46.499" fill="url(#SVGID_28_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="23.0635" x2="23.0635" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="23.06" cy="46.5" fill="url(#SVGID_29_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="27.73" x2="27.73" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="23.063" cy="46.499" fill="url(#SVGID_29_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="27.7295" x2="27.7295" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="27.73" cy="46.5" fill="url(#SVGID_30_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="27.73" x2="27.73" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="27.729" cy="46.499" fill="url(#SVGID_30_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="27.7295" x2="27.7295" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="27.73" cy="46.5" fill="url(#SVGID_31_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="32.4" x2="32.4" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="27.729" cy="46.499" fill="url(#SVGID_31_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="32.3965" x2="32.3965" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="32.4" cy="46.5" fill="url(#SVGID_32_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="32.4" x2="32.4" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="32.396" cy="46.499" fill="url(#SVGID_32_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="32.3965" x2="32.3965" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="32.4" cy="46.5" fill="url(#SVGID_33_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="37" x2="37" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="32.396" cy="46.499" fill="url(#SVGID_33_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="36.999" x2="36.999" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="37" cy="41.83" fill="url(#SVGID_34_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="37" x2="37" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="36.999" cy="41.832" fill="url(#SVGID_34_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="36.999" x2="36.999" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="37" cy="41.83" fill="url(#SVGID_35_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="41.67" x2="41.67" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="36.999" cy="41.832" fill="url(#SVGID_35_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="41.666" x2="41.666" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="41.67" cy="41.83" fill="url(#SVGID_36_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="41.67" x2="41.67" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="41.666" cy="41.832" fill="url(#SVGID_36_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="41.666" x2="41.666" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="41.67" cy="41.83" fill="url(#SVGID_37_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.33" x2="46.33" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="41.666" cy="41.832" fill="url(#SVGID_37_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.333" x2="46.333" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="46.33" cy="41.83" fill="url(#SVGID_38_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="46.33" x2="46.33" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="46.333" cy="41.832" fill="url(#SVGID_38_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="46.333" x2="46.333" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="46.33" cy="41.83" fill="url(#SVGID_39_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="51" x2="51" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="46.333" cy="41.832" fill="url(#SVGID_39_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="50.999" x2="50.999" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M52.55,41.83c0,0.858-0.691,1.556-1.553,1.556-0.858,0-1.556-0.697-1.556-1.556,0-0.861,0.697-1.556,1.556-1.556,0.86,0.01,1.55,0.7,1.55,1.56z" fill="url(#SVGID_40_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="51" x2="51" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<path d="M52.553,41.832c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,40.276,52.553,40.971,52.553,41.832z" fill="url(#SVGID_40_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.999" x2="50.999" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<path d="M52.04,41.83c0,0.573-0.467,1.037-1.037,1.037-0.573,0-1.039-0.464-1.039-1.037s0.466-1.037,1.039-1.037c0.57,0.01,1.04,0.47,1.04,1.04z" fill="url(#SVGID_41_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="37" x2="37" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M52.037,41.832c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,40.795,52.037,41.259,52.037,41.832z" fill="url(#SVGID_41_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="36.999" x2="36.999" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="37" cy="46.5" fill="url(#SVGID_42_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="37" x2="37" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="36.999" cy="46.499" fill="url(#SVGID_42_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="36.999" x2="36.999" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="37" cy="46.5" fill="url(#SVGID_43_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="41.67" x2="41.67" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="36.999" cy="46.499" fill="url(#SVGID_43_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="41.666" x2="41.666" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="41.67" cy="46.5" fill="url(#SVGID_44_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="41.67" x2="41.67" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="41.666" cy="46.499" fill="url(#SVGID_44_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="41.666" x2="41.666" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="41.67" cy="46.5" fill="url(#SVGID_45_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="46.33" x2="46.33" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="41.666" cy="46.499" fill="url(#SVGID_45_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="46.333" x2="46.333" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="46.33" cy="46.5" fill="url(#SVGID_46_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="46.33" x2="46.33" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="46.333" cy="46.499" fill="url(#SVGID_46_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="46.333" x2="46.333" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="46.33" cy="46.5" fill="url(#SVGID_47_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="51" x2="51" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="46.333" cy="46.499" fill="url(#SVGID_47_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="50.999" x2="50.999" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M52.55,46.5c0,0.858-0.691,1.556-1.553,1.556-0.858,0-1.556-0.697-1.556-1.556,0-0.861,0.697-1.556,1.556-1.556,0.86,0,1.55,0.7,1.55,1.56z" fill="url(#SVGID_48_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="51" x2="51" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<path d="M52.553,46.499c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,44.943,52.553,45.638,52.553,46.499z" fill="url(#SVGID_48_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="50.999" x2="50.999" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<path d="M52.04,46.5c0,0.573-0.467,1.037-1.037,1.037-0.573,0-1.039-0.464-1.039-1.037s0.466-1.037,1.039-1.037c0.57,0,1.04,0.47,1.04,1.04z" fill="url(#SVGID_49_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.83" x2="49.83" y1="11.59" y2="6.285">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<path d="M52.037,46.499c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,45.462,52.037,45.926,52.037,46.499z" fill="url(#SVGID_49_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.833" x2="49.833" y1="11.5854" y2="6.285">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<rect fill="url(#SVGID_50_)" height="5.443" width="6.999" x="46.33" y="6.444"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="37.39" x2="37.39" y1="10.16" y2="7.13">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<rect fill="url(#SVGID_50_)" height="5.443" width="6.999" x="46.333" y="6.444"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="37.3877" x2="37.3877" y1="10.1592" y2="7.1295">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<rect fill="url(#SVGID_51_)" height="3.111" width="17.89" x="28.44" y="7.221"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="19.11" x2="19.11" y1="9.468" y2="7.953">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<rect fill="url(#SVGID_51_)" height="3.111" width="17.89" x="28.443" y="7.221"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="19.1104" x2="19.1104" y1="9.4683" y2="7.9534">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<rect fill="url(#SVGID_52_)" height="1.556" width="18.67" x="9.777" y="7.999"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="8.61" x2="8.61" y1="10.16" y2="7.13">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<rect fill="url(#SVGID_52_)" height="1.556" width="18.666" x="9.777" y="7.999"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="8.6104" x2="8.6104" y1="10.1592" y2="7.1295">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_53_)" height="3.111" width="2.334" x="7.443" y="7.221"/>
-<path d="M49.83,11.5c-1.285,0-2.333-1.047-2.333-2.332,0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334c0.01,1.282-1.04,2.332-2.33,2.332z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<circle cx="49.83" cy="9.166" fill-opacity="0.2" r="1.944" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="49.83" x2="49.83" y1="8.032" y2="10.3">
-<stop offset="0" stop-color="#E5E5E5"/>
-<stop offset="0.7576" stop-color="#A7A7A7"/>
-<stop offset="1" stop-color="#CBCBCB"/>
+<path d="M49.832,11.498c-1.285,0-2.333-1.047-2.333-2.332c0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334 C52.166,10.451,51.117,11.498,49.832,11.498L49.832,11.498z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="49.833" cy="9.166" fill-opacity="0.2" r="1.944" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="49.8311" x2="49.8311" y1="8.0317" y2="10.2999">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="0.7576" style="stop-color:#A7A7A7"/>
+<stop offset="1" style="stop-color:#CBCBCB"/>
</linearGradient>
-<circle cx="49.83" cy="9.166" fill="url(#SVGID_54_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="49.83" x2="49.83" y1="7.659" y2="10.67">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.2848" stop-color="#FFFFFF"/>
-<stop offset="0.7212" stop-color="#7B7B7B"/>
-<stop offset="1" stop-color="#A7A7A7"/>
+<circle cx="49.831" cy="9.166" fill="url(#SVGID_54_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="49.8311" x2="49.8311" y1="7.6592" y2="10.6737">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
-<path d="M49.83,7.999c0.65,0,1.17,0.522,1.17,1.167,0,0.643-0.525,1.166-1.168,1.166s-1.166-0.523-1.166-1.166c0.01-0.643,0.53-1.165,1.17-1.165m0-0.389c-0.859,0-1.557,0.694-1.557,1.556,0,0.858,0.697,1.556,1.557,1.556,0.857,0,1.555-0.697,1.555-1.556,0.01-0.859-0.69-1.554-1.55-1.554z" fill="url(#SVGID_55_)"/>
+<path d="M49.832,7.999C50.475,7.999,51,8.521,51,9.166c0,0.643-0.525,1.166-1.168,1.166 s-1.166-0.523-1.166-1.166C48.666,8.521,49.189,7.999,49.832,7.999 M49.832,7.61c-0.859,0-1.557,0.694-1.557,1.556 c0,0.858,0.697,1.556,1.557,1.556c0.857,0,1.555-0.697,1.555-1.556C51.387,8.305,50.689,7.61,49.832,7.61L49.832,7.61z" fill="url(#SVGID_55_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_java.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_java.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,77 +1,79 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.85" x2="27.85" y1="3.197" y2="48.38">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.4606" stop-color="#BFC2C1"/>
-<stop offset="0.7333" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.8457" x2="27.8457" y1="3.1968" y2="48.3756">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.4606" style="stop-color:#BFC2C1"/>
+<stop offset="0.7333" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M51.06,18.04h-20.03v-2.398c2.141-1.259,4.404-2.609,4.404-5.144,0-3.896-4.045-7.063-7.939-7.063s-7.937,3.168-7.937,7.063c0,2.535,2.265,3.892,4.414,5.146v2.396h-5.7c-1.445,0-2.628,1.183-2.628,2.625v13.05h-1.452c-1.211-2.092-2.594-4.378-5.186-4.378-3.858-0.01-6.994,4-6.994,7.87,0,3.868,3.136,7.879,7.003,7.879,2.592,0,3.975-2.285,5.186-4.377h1.452v3.885c0,1.445,1.183,2.627,2.628,2.627h6.205v-3.62c-1.89-1.103-3.883-2.296-3.883-4.526,0-3.426,3.557-6.213,6.981-6.213s6.983,2.787,6.983,6.213c0,2.229-1.991,3.418-3.873,4.524v3.622h20.38c1.447,0,2.629-1.182,2.629-2.627v-23.92c-0.01-1.446-1.19-2.626-2.64-2.626z" fill="url(#SVGID_1_)"/>
-<path d="M18.27,18.76h5.7v-0.717h-5.7c-1.445,0-2.628,1.183-2.628,2.625v0.718c0-1.44,1.18-2.62,2.63-2.62z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M27.49,4.152c3.781,0,7.693,2.99,7.918,6.729,0.012-0.124,0.021-0.252,0.021-0.383,0-3.896-4.045-7.063-7.939-7.063s-7.937,3.168-7.937,7.063c0,0.131,0.01,0.258,0.021,0.383,0.23-3.737,4.14-6.728,7.92-6.728z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M30.68,43.61v0.718c1.882-1.107,3.873-2.295,3.873-4.523,0-0.113-0.014-0.225-0.021-0.336-0.21,1.98-2.08,3.1-3.85,4.14z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M9.003,30.06c2.592,0,3.975,2.285,5.186,4.378h1.452v-0.718h-1.452c-1.211-2.092-2.594-4.378-5.186-4.378-3.868,0-7.004,4.01-7.004,7.88,0,0.119,0.013,0.238,0.019,0.358,0.184-3.76,3.237-7.52,6.984-7.52z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M51.06,18.04h-20.03v0.717h20.04c1.447,0,2.629,1.184,2.629,2.626v-0.718c0-1.45-1.18-2.63-2.63-2.63z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M20.61,39.47c-0.008,0.111-0.021,0.223-0.021,0.336,0,2.229,1.993,3.422,3.883,4.525v-0.73c-1.77-1.04-3.64-2.16-3.86-4.14z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M53.69,32.87h-13.18l-0.113,0.01-0.056,0.008c-1.32,0.211-2.018,1.203-2.18,1.639l-1.121,2.34c-0.059,0.079-0.109,0.162-0.154,0.241-0.066,0.112-0.119,0.222-0.129,0.247-0.045,0.096-0.088,0.196-0.146,0.367-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.325,1.91-0.836v-13.53z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M53.69,33.59h-13.18l-0.056,0.009c-0.988,0.158-1.514,0.889-1.646,1.24l-1.151,2.401c-0.056,0.073-0.105,0.149-0.152,0.231-0.045,0.078-0.083,0.153-0.103,0.201-0.036,0.074-0.067,0.15-0.109,0.273-0.076,0.233-0.113,0.452-0.113,0.67v8.615h14.6c0.754,0,1.43-0.325,1.91-0.836v-12.79z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.94" x2="47.94" y1="34.28" y2="38.73">
-<stop offset="0" stop-color="#77BBC5"/>
-<stop offset="1" stop-color="#51739A"/>
+<path d="M51.063,18.041H31.026v-2.398c2.141-1.259,4.404-2.609,4.404-5.144c0-3.896-4.045-7.063-7.939-7.063 s-7.937,3.168-7.937,7.063c0,2.535,2.265,3.892,4.414,5.146v2.396h-5.7c-1.445,0-2.628,1.183-2.628,2.625v13.049h-1.452 c-1.211-2.092-2.594-4.378-5.186-4.378C5.136,29.337,2,33.348,2,37.217c0,3.868,3.136,7.879,7.003,7.879 c2.592,0,3.975-2.285,5.186-4.377h1.452v3.885c0,1.445,1.183,2.627,2.628,2.627h6.205v-3.62c-1.89-1.103-3.883-2.296-3.883-4.526 c0-3.426,3.557-6.213,6.981-6.213s6.983,2.787,6.983,6.213c0,2.229-1.991,3.418-3.873,4.524v3.622h20.381 c1.447,0,2.629-1.182,2.629-2.627V20.666C53.692,19.224,52.511,18.041,51.063,18.041z" fill="url(#SVGID_1_)"/>
+<path d="M18.269,18.758h5.7v-0.717h-5.7c-1.445,0-2.628,1.183-2.628,2.625v0.718 C15.641,19.941,16.823,18.758,18.269,18.758z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M27.491,4.152c3.781,0,7.693,2.99,7.918,6.729c0.012-0.124,0.021-0.252,0.021-0.383 c0-3.896-4.045-7.063-7.939-7.063s-7.937,3.168-7.937,7.063c0,0.131,0.01,0.258,0.021,0.383C19.8,7.143,23.71,4.152,27.491,4.152z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M30.683,43.608v0.718c1.882-1.107,3.873-2.295,3.873-4.523c0-0.113-0.014-0.225-0.021-0.336 C34.32,41.452,32.454,42.566,30.683,43.608z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M9.003,30.055c2.592,0,3.975,2.285,5.186,4.378h1.452v-0.718h-1.452 c-1.211-2.092-2.594-4.378-5.186-4.378C5.136,29.337,2,33.348,2,37.217c0,0.119,0.013,0.238,0.019,0.358 C2.203,33.822,5.256,30.055,9.003,30.055z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M51.063,18.041H31.026v0.717h20.037c1.447,0,2.629,1.184,2.629,2.626v-0.718 C53.692,19.224,52.511,18.041,51.063,18.041z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M20.612,39.467c-0.008,0.111-0.021,0.223-0.021,0.336c0,2.229,1.993,3.422,3.883,4.525V43.61 C22.696,42.572,20.827,41.453,20.612,39.467z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M53.692,32.871H40.51l-0.113,0.01l-0.056,0.008c-1.32,0.211-2.018,1.203-2.18,1.639 l-1.121,2.34c-0.059,0.079-0.109,0.162-0.154,0.241c-0.066,0.112-0.119,0.222-0.129,0.247c-0.045,0.096-0.088,0.196-0.146,0.367 c-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.325,1.91-0.836V32.871z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M53.692,33.589H40.51l-0.056,0.009c-0.988,0.158-1.514,0.889-1.646,1.24l-1.151,2.401 c-0.056,0.073-0.105,0.149-0.152,0.231c-0.045,0.078-0.083,0.153-0.103,0.201c-0.036,0.074-0.067,0.15-0.109,0.273 c-0.076,0.233-0.113,0.452-0.113,0.67v8.615h14.603c0.754,0,1.43-0.325,1.91-0.836V33.589z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.9434" x2="47.9434" y1="34.2832" y2="38.7279">
+<stop offset="0" style="stop-color:#77BBC5"/>
+<stop offset="1" style="stop-color:#51739A"/>
</linearGradient>
-<path d="M57.62,37.63l-1.189-2.479s-0.269-0.707-1.109-0.842h-14.75c-0.842,0.135-1.111,0.842-1.111,0.842l-1.188,2.479c-0.288,0.326-0.356,0.74-0.37,0.988h20.09c-0.01-0.25-0.08-0.67-0.37-0.99z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="47.95" x2="47.95" y1="37" y2="57.46">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.6909" stop-color="#455188"/>
-<stop offset="1" stop-color="#5F8BA1"/>
+<path d="M57.618,37.627l-1.189-2.479c0,0-0.269-0.707-1.109-0.842H40.567 c-0.842,0.135-1.111,0.842-1.111,0.842l-1.188,2.479c-0.288,0.326-0.356,0.74-0.37,0.988h20.092 C57.975,38.367,57.907,37.953,57.618,37.627z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="47.9492" x2="47.9492" y1="37" y2="57.4615">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.6909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#5F8BA1"/>
</linearGradient>
-<path d="M58,55.13c0,0.793-0.644,1.436-1.436,1.436h-17.23c-0.793,0-1.436-0.643-1.436-1.436v-16.52c0-0.793,0.643-1.436,1.436-1.436h17.23c0.792,0,1.436,0.643,1.436,1.436v16.51z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.95" x2="47.95" y1="37.1" y2="51.91">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.1818" stop-color="#5A8198"/>
-<stop offset="0.8606" stop-color="#343665"/>
-<stop offset="1" stop-color="#343665"/>
+<path d="M58,55.128c0,0.793-0.644,1.436-1.436,1.436H39.333c-0.793,0-1.436-0.643-1.436-1.436V38.615 c0-0.793,0.643-1.436,1.436-1.436h17.231c0.792,0,1.436,0.643,1.436,1.436V55.128z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9492" x2="47.9492" y1="37.1016" y2="51.9137">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.1818" style="stop-color:#5A8198"/>
+<stop offset="0.8606" style="stop-color:#343665"/>
+<stop offset="1" style="stop-color:#343665"/>
</linearGradient>
-<path d="M40.77,51.54h14.36c0.793,0,1.437-0.644,1.437-1.437v-12.92h-17.24v12.92c-0.003,0.8,0.647,1.44,1.437,1.44z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="47.95" x2="47.95" y1="50.22" y2="56.83">
-<stop offset="0" stop-color="#3D4477"/>
-<stop offset="0.4121" stop-color="#3D4477"/>
-<stop offset="1" stop-color="#506C90"/>
+<path d="M40.769,51.538h14.359c0.793,0,1.437-0.644,1.437-1.437V37.18H39.333v12.922 C39.333,50.895,39.976,51.538,40.769,51.538z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="47.9482" x2="47.9482" y1="50.2227" y2="56.8327">
+<stop offset="0" style="stop-color:#3D4477"/>
+<stop offset="0.4121" style="stop-color:#3D4477"/>
+<stop offset="1" style="stop-color:#506C90"/>
</linearGradient>
-<path d="M55.87,51.33c-0.17,0.103-0.36,0.168-0.565,0.194-0.047,0.011-0.103,0.018-0.177,0.018h-14.35c-0.074,0-0.129-0.007-0.176-0.018-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.25,0.424,0.707,0.712,1.234,0.712h17.23c0.528,0,0.984-0.288,1.233-0.712l-1.92-4.53z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="47.95" x2="47.95" y1="50.32" y2="56.35">
-<stop offset="0" stop-color="#3C376C"/>
-<stop offset="0.4121" stop-color="#3C376C"/>
-<stop offset="1" stop-color="#5A8198"/>
+<path d="M55.87,51.326c-0.17,0.103-0.36,0.168-0.565,0.194c-0.047,0.011-0.103,0.018-0.177,0.018H40.769 c-0.074,0-0.129-0.007-0.176-0.018c-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.25,0.424,0.707,0.712,1.234,0.712h17.231 c0.528,0,0.984-0.288,1.233-0.712L55.87,51.326z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="47.9482" x2="47.9482" y1="50.3188" y2="56.3521">
+<stop offset="0" style="stop-color:#3C376C"/>
+<stop offset="0.4121" style="stop-color:#3C376C"/>
+<stop offset="1" style="stop-color:#5A8198"/>
+</linearGradient>
+<path d="M40.028,52.044c0.169,0.103,0.359,0.169,0.564,0.194 c0.047,0.011,0.102,0.018,0.176,0.018h14.359c0.074,0,0.13-0.007,0.177-0.018c0.205-0.025,0.396-0.092,0.565-0.194l1.73,4.063 c0.074-0.078,0.143-0.162,0.197-0.255l-1.928-4.525c-0.17,0.103-0.36,0.168-0.565,0.194c-0.047,0.011-0.103,0.018-0.177,0.018 H40.769c-0.074,0-0.129-0.007-0.176-0.018c-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.056,0.093,0.125,0.177,0.198,0.255 L40.028,52.044z" fill="url(#SVGID_6_)" fill-opacity="0.8" stroke-opacity="0.8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="47.9492" x2="47.9492" y1="37.1016" y2="51.9137">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.1818" style="stop-color:#52718A"/>
+<stop offset="0.5394" style="stop-color:#47507B"/>
+<stop offset="0.8606" style="stop-color:#322D58"/>
+<stop offset="1" style="stop-color:#322D58"/>
</linearGradient>
-<path d="M40.03,52.04c0.169,0.103,0.359,0.169,0.564,0.194,0.047,0.011,0.102,0.018,0.176,0.018h14.36c0.074,0,0.13-0.007,0.177-0.018,0.205-0.025,0.396-0.092,0.565-0.194l1.73,4.063c0.074-0.078,0.143-0.162,0.197-0.255l-1.928-4.525c-0.17,0.103-0.36,0.168-0.565,0.194-0.047,0.011-0.103,0.018-0.177,0.018h-14.37c-0.074,0-0.129-0.007-0.176-0.018-0.205-0.026-0.396-0.092-0.564-0.194l-1.93,4.525c0.056,0.093,0.125,0.177,0.198,0.255l1.73-4.06z" fill="url(#SVGID_6_)" fill-opacity="0.8" stroke-opacity="0.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="47.95" x2="47.95" y1="37.1" y2="51.91">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.1818" stop-color="#52718A"/>
-<stop offset="0.5394" stop-color="#47507B"/>
-<stop offset="0.8606" stop-color="#322D58"/>
-<stop offset="1" stop-color="#322D58"/>
+<path d="M39.333,37.18v12.922c0,0.793,0.643,1.437,1.436,1.437h14.359c0.793,0,1.437-0.644,1.437-1.437V37.18 H39.333z M55.847,50.102c0,0.396-0.323,0.719-0.719,0.719H40.769c-0.395,0-0.717-0.322-0.717-0.719V37.896h15.795V50.102z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="47.9492" x2="47.9492" y1="34.291" y2="37.2549">
+<stop offset="0" style="stop-color:#89C8CD"/>
+<stop offset="0.9879" style="stop-color:#36447F"/>
+<stop offset="1" style="stop-color:#36447F"/>
</linearGradient>
-<path d="M39.33,37.18v12.92c0,0.793,0.643,1.437,1.436,1.437h14.36c0.793,0,1.437-0.644,1.437-1.437v-12.92h-17.24zm16.52,12.92c0,0.396-0.323,0.719-0.719,0.719h-14.36c-0.395,0-0.717-0.322-0.717-0.719v-12.2h15.8v12.21z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="47.95" x2="47.95" y1="34.29" y2="37.25">
-<stop offset="0" stop-color="#89C8CD"/>
-<stop offset="0.9879" stop-color="#36447F"/>
-<stop offset="1" stop-color="#36447F"/>
+<path d="M56.564,35.743c0-0.793-0.644-1.437-1.437-1.437H40.769c-0.793,0-1.436,0.644-1.436,1.437v1.437 h17.231V35.743z" fill="url(#SVGID_8_)"/>
+<path d="M39.333,37.18h17.231c0.465,0,0.875,0.225,1.138,0.568c-0.029-0.041-0.05-0.082-0.084-0.121l-1.189-2.479 c0,0-0.269-0.707-1.109-0.842H40.567c-0.842,0.135-1.111,0.842-1.111,0.842l-1.188,2.479c-0.101,0.115-0.167,0.238-0.222,0.362 C38.28,37.512,38.765,37.18,39.333,37.18z" fill="#BDE3D3"/>
+<path d="M57.786,37.869c0.006,0.011,0.012,0.022,0.018,0.033C57.798,37.891,57.792,37.881,57.786,37.869z" fill="#BDE3D3"/>
+<path d="M37.985,38.139c-0.004,0.01-0.006,0.02-0.01,0.029C37.979,38.158,37.981,38.148,37.985,38.139z" fill="#BDE3D3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.9492" x2="47.9492" y1="37.0742" y2="57.0705">
+<stop offset="0" style="stop-color:#C5DED1"/>
+<stop offset="0.4545" style="stop-color:#92C0C5"/>
+<stop offset="0.6909" style="stop-color:#5C829E"/>
+<stop offset="1" style="stop-color:#6BA8B5"/>
</linearGradient>
-<path d="M56.56,35.74c0-0.793-0.644-1.437-1.437-1.437h-14.35c-0.793,0-1.436,0.644-1.436,1.437v1.437h17.23v-1.437z" fill="url(#SVGID_8_)"/>
-<path d="M39.33,37.18h17.23c0.465,0,0.875,0.225,1.138,0.568-0.029-0.041-0.05-0.082-0.084-0.121l-1.189-2.479s-0.269-0.707-1.109-0.842h-14.75c-0.842,0.135-1.111,0.842-1.111,0.842l-1.188,2.479c-0.101,0.115-0.167,0.238-0.222,0.362,0.23-0.48,0.71-0.81,1.28-0.81z" fill="#BDE3D3"/>
-<path d="M57.79,37.87c0.006,0.011,0.012,0.022,0.018,0.033-0.01-0.01-0.02-0.02-0.02-0.03z" fill="#BDE3D3"/>
-<path d="M37.98,38.14c-0.004,0.01-0.006,0.02-0.01,0.029,0.01-0.01,0.01-0.02,0.01-0.03z" fill="#BDE3D3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="47.95" x2="47.95" y1="37.07" y2="57.07">
-<stop offset="0" stop-color="#C5DED1"/>
-<stop offset="0.4545" stop-color="#92C0C5"/>
-<stop offset="0.6909" stop-color="#5C829E"/>
-<stop offset="1" stop-color="#6BA8B5"/>
-</linearGradient>
-<path d="M56.56,37.18h-17.23c-0.793,0-1.436,0.643-1.436,1.436v16.51c0,0.793,0.643,1.436,1.436,1.436h17.23c0.792,0,1.436-0.643,1.436-1.436v-16.52c-0.01-0.795-0.65-1.435-1.45-1.435zm0.72,17.95c0,0.396-0.322,0.718-0.718,0.718h-17.23c-0.395,0-0.718-0.322-0.718-0.718v-16.52c0-0.396,0.323-0.719,0.718-0.719h17.23c0.396,0,0.718,0.322,0.718,0.719v16.51z" fill="url(#SVGID_9_)"/>
-</svg>
\ No newline at end of file
+<path d="M56.564,37.18H39.333c-0.793,0-1.436,0.643-1.436,1.436v16.513c0,0.793,0.643,1.436,1.436,1.436 h17.231c0.792,0,1.436-0.643,1.436-1.436V38.615C58,37.822,57.356,37.18,56.564,37.18z M57.282,55.128 c0,0.396-0.322,0.718-0.718,0.718H39.333c-0.395,0-0.718-0.322-0.718-0.718V38.615c0-0.396,0.323-0.719,0.718-0.719h17.231 c0.396,0,0.718,0.322,0.718,0.719V55.128z" fill="url(#SVGID_9_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_just_audio.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_just_audio.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,75 +1,77 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5_)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.35" height="33.87" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.15" y="-2.239"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="260" x2="284" y1="656" y2="656">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="0.8424" stop-color="#954B50"/>
-<stop offset="1" stop-color="#B36B4D"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="260" x2="284" y1="655.9761" y2="655.9761">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="0.8424" style="stop-color:#954B50"/>
+<stop offset="1" style="stop-color:#B36B4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1___)" points="25.81,26.43,3,4.177,4.191,2.956,27,25.21"/>
+<polygon fill="url(#SVGID_1___)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_key_screen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_key_screen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,213 +1,215 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="7.62" x2="7.62" y1="1" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="7.6196" x2="7.6196" y1="1" y2="28.8433">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
<rect fill="url(#SVGID_1__)" height="6" width="6" x="4.62" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.95" x2="14.95" y1="1" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="14.9536" x2="14.9536" y1="1" y2="28.8433">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_2__)" height="6" width="6" x="11.95" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.38" x2="22.38" y1="1" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_2__)" height="6" width="6" x="11.954" y="1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.3809" x2="22.3809" y1="1" y2="28.8433">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="6" width="6" x="19.38" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="7.62" x2="7.62" y1="1" y2="28.85">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_3__)" height="6" width="6" x="19.381" y="1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="7.6196" x2="7.6196" y1="1.0005" y2="28.8461">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
<rect fill="url(#SVGID_4__)" height="6" width="6" x="4.62" y="8.239"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="14.95" x2="14.95" y1="1" y2="28.85">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="14.9536" x2="14.9536" y1="1.0005" y2="28.8461">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_5__)" height="6" width="6" x="11.95" y="8.239"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="22.38" x2="22.38" y1="1" y2="28.85">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_5__)" height="6" width="6" x="11.954" y="8.239"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="22.3809" x2="22.3809" y1="1.0005" y2="28.8461">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_6__)" height="6" width="6" x="19.38" y="8.239"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="7.62" x2="7.62" y1="1.002" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_6__)" height="6" width="6" x="19.381" y="8.239"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="7.6196" x2="7.6196" y1="1.0024" y2="28.8444">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_7__)" height="5.999" width="6" x="4.62" y="15.57"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="14.95" x2="14.95" y1="1.002" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_7__)" height="5.999" width="6" x="4.62" y="15.572"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="14.9536" x2="14.9536" y1="1.0024" y2="28.8444">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_8__)" height="5.999" width="6" x="11.95" y="15.57"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="14.95" x2="14.95" y1="1.005" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_8__)" height="5.999" width="6" x="11.954" y="15.572"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="14.9536" x2="14.9536" y1="1.0049" y2="28.845">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_9__)" height="6" width="6" x="11.95" y="23"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="22.38" x2="22.38" y1="1.002" y2="28.84">
-<stop offset="0" stop-color="#B4DCCA"/>
-<stop offset="1" stop-color="#416D98"/>
+<rect fill="url(#SVGID_9__)" height="6" width="6" x="11.954" y="23"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="22.3809" x2="22.3809" y1="1.0024" y2="28.8444">
+<stop offset="0" style="stop-color:#B4DCCA"/>
+<stop offset="1" style="stop-color:#416D98"/>
</linearGradient>
-<rect fill="url(#SVGID_10__)" height="5.999" width="6" x="19.38" y="15.57"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="7.62" x2="7.62" y1="1" y2="6.904">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_10__)" height="5.999" width="6" x="19.381" y="15.572"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="7.6196" x2="7.6196" y1="1" y2="6.9042">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M9.915,1.705v4.591h-4.59v-4.591h4.59m0.705-0.705h-6v6h6v-6z" fill="url(#SVGID_11__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="14.95" x2="14.95" y1="1" y2="6.904">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M9.915,1.705v4.591h-4.59V1.705H9.915 M10.619,1h-6v6h6V1L10.619,1z" fill="url(#SVGID_11__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="14.9536" x2="14.9536" y1="1" y2="6.9042">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M17.25,1.705v4.591h-4.59v-4.591h4.589m0.701-0.705h-6v6h6v-6z" fill="url(#SVGID_12__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="22.38" x2="22.38" y1="1" y2="6.904">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M17.249,1.705v4.591h-4.59V1.705H17.249 M17.954,1h-6v6h6V1L17.954,1z" fill="url(#SVGID_12__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="22.3809" x2="22.3809" y1="1" y2="6.9042">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M24.68,1.705v4.591h-4.59v-4.591h4.586m0.704-0.705h-6v6h6v-6z" fill="url(#SVGID_13__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="7.62" x2="7.62" y1="8.312" y2="14.21">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M24.676,1.705v4.591h-4.59V1.705H24.676 M25.381,1h-6v6h6V1L25.381,1z" fill="url(#SVGID_13__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="7.6196" x2="7.6196" y1="8.312" y2="14.2147">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M9.915,8.943v4.591h-4.59v-4.587h4.59m0.705-0.704h-6v6h6v-6.001z" fill="url(#SVGID_14__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15__" x1="14.95" x2="14.95" y1="8.312" y2="14.21">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M9.915,8.943v4.591h-4.59V8.943H9.915 M10.619,8.239h-6v6h6V8.239L10.619,8.239z" fill="url(#SVGID_14__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15__" x1="14.9536" x2="14.9536" y1="8.312" y2="14.2147">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M17.25,8.943v4.591h-4.59v-4.587h4.589m0.701-0.704h-6v6h6v-6.001z" fill="url(#SVGID_15__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16__" x1="22.38" x2="22.38" y1="8.312" y2="14.21">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M17.249,8.943v4.591h-4.59V8.943H17.249 M17.954,8.239h-6v6h6V8.239L17.954,8.239z" fill="url(#SVGID_15__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16__" x1="22.3809" x2="22.3809" y1="8.312" y2="14.2147">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M24.68,8.943v4.591h-4.59v-4.587h4.586m0.704-0.704h-6v6h6v-6.001z" fill="url(#SVGID_16__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17__" x1="7.62" x2="7.62" y1="15.8" y2="21.61">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M24.676,8.943v4.591h-4.59V8.943H24.676 M25.381,8.239h-6v6h6V8.239L25.381,8.239z" fill="url(#SVGID_16__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17__" x1="7.6196" x2="7.6196" y1="15.7993" y2="21.6132">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M9.915,16.28v4.592h-4.59v-4.592h4.59m0.705-0.71h-6v5.999h6v-5.998-0.002z" fill="url(#SVGID_17__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.95" x2="14.95" y1="15.8" y2="21.61">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M9.915,16.275v4.592h-4.59v-4.592H9.915 M10.619,15.572h-6v5.999h6V15.572L10.619,15.572z" fill="url(#SVGID_17__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="14.9536" x2="14.9536" y1="15.7993" y2="21.6132">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M17.25,16.28v4.592h-4.59v-4.592h4.589m0.701-0.71h-6v5.999h6v-5.998-0.002z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="14.95" x2="14.95" y1="23.02" y2="28.84">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M17.249,16.275v4.592h-4.59v-4.592H17.249 M17.954,15.572h-6v5.999h6V15.572L17.954,15.572z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="14.9536" x2="14.9536" y1="23.0225" y2="28.8353">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M17.25,23.7v4.59h-4.59v-4.59h4.589m0.701-0.7h-6v6h6v-6z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.38" x2="22.38" y1="15.8" y2="21.61">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M17.249,23.705v4.59h-4.59v-4.59H17.249 M17.954,23h-6v6h6V23L17.954,23z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="22.3809" x2="22.3809" y1="15.7993" y2="21.6132">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M24.68,16.28v4.592h-4.59v-4.592h4.586m0.704-0.71h-6v5.999h6v-5.998-0.002z" fill="url(#SVGID_20_)"/>
+<path d="M24.676,16.275v4.592h-4.59v-4.592H24.676 M25.381,15.572h-6v5.999h6V15.572L25.381,15.572z" fill="url(#SVGID_20_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_keyboard.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_keyboard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,379 +1,381 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="14.56" y2="45.54">
-<stop offset="0" stop-color="#D1D5D3"/>
-<stop offset="0.7308" stop-color="#838585"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="14.5566" y2="45.5373">
+<stop offset="0" style="stop-color:#D1D5D3"/>
+<stop offset="0.7308" style="stop-color:#838585"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M1,43.38c0,1.133,0.912,2.06,2.03,2.06h53.94c1.117,0,2.033-0.927,2.033-2.06v-26.76c0-1.133-0.916-2.06-2.033-2.06h-53.94c-1.118,0-2.03,0.927-2.03,2.06v26.76z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="15.59" y2="44.5">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="0.8121" stop-color="#7D8182"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<path d="M1,43.384c0,1.133,0.912,2.06,2.03,2.06h53.937c1.117,0,2.033-0.927,2.033-2.06V16.616 c0-1.133-0.916-2.06-2.033-2.06H3.03c-1.118,0-2.03,0.927-2.03,2.06V43.384z" fill="url(#SVGID_1_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="15.5859" y2="44.5027">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="0.8121" style="stop-color:#7D8182"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M56.97,44.42h-53.94c-0.554,0-1.002-0.462-1.002-1.031v-26.77c0-0.566,0.448-1.03,1.002-1.03h53.94c0.553,0,1.003,0.464,1.003,1.03v26.77c0,0.56-0.45,1.03-1,1.03z" fill="url(#SVGID_2_)"/>
-<path d="M21.95,36.12c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.088c0-0.57,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.461,1.028,1.031v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.38" x2="19.38" y1="31.42" y2="36.62">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M56.967,44.415H3.03c-0.554,0-1.002-0.462-1.002-1.031V16.616c0-0.566,0.448-1.03,1.002-1.03h53.937 c0.553,0,1.003,0.464,1.003,1.03v26.768C57.97,43.953,57.52,44.415,56.967,44.415L56.967,44.415z" fill="url(#SVGID_2_)"/>
+<path d="M21.949,36.123c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.088 c0-0.57,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.461,1.028,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19.376" x2="19.376" y1="31.4229" y2="36.6183">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M21.95,35.56c0,0.568-0.459,1.028-1.028,1.028h-3.089c-0.567,0-1.029-0.46-1.029-1.028v-3.089c0-0.567,0.462-1.03,1.029-1.03h3.089c0.569,0,1.028,0.463,1.028,1.03v3.095z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="17.34" y1="34.02" y2="34.02">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M21.949,35.565c0,0.568-0.459,1.028-1.028,1.028h-3.089c-0.567,0-1.029-0.46-1.029-1.028v-3.089 c0-0.567,0.462-1.03,1.029-1.03h3.089c0.569,0,1.028,0.463,1.028,1.03V35.565z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="17.3381" y1="34.0205" y2="34.0205">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M17.83,36.08c-0.284,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.231-0.516,0.516-0.516h3.089c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515h-3.088z" fill="url(#SVGID_4_)"/>
-<path d="M28.13,36.12c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.088c0-0.57,0.46-1.031,1.028-1.031h3.09c0.567,0,1.029,0.461,1.029,1.031v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.55" x2="25.55" y1="31.42" y2="36.62">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M17.832,36.08c-0.284,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.231-0.516,0.516-0.516h3.089 c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515H17.832z" fill="url(#SVGID_4_)"/>
+<path d="M28.128,36.123c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.57,0.46-1.031,1.028-1.031h3.09c0.567,0,1.029,0.461,1.029,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.5547" x2="25.5547" y1="31.4229" y2="36.6183">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M28.13,35.56c0,0.568-0.462,1.028-1.029,1.028h-3.09c-0.568,0-1.028-0.46-1.028-1.028v-3.089c0-0.567,0.46-1.03,1.028-1.03h3.09c0.567,0,1.029,0.463,1.029,1.03v3.095z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="27.68" x2="23.52" y1="34.02" y2="34.02">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M28.128,35.565c0,0.568-0.462,1.028-1.029,1.028h-3.09c-0.568,0-1.028-0.46-1.028-1.028v-3.089 c0-0.567,0.46-1.03,1.028-1.03h3.09c0.567,0,1.029,0.463,1.029,1.03V35.565z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="27.6777" x2="23.5168" y1="34.0205" y2="34.0205">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M24.01,36.08c-0.283,0-0.514-0.231-0.514-0.515v-3.089c0-0.284,0.23-0.516,0.514-0.516h3.09c0.284,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.23,0.515-0.515,0.515h-3.091z" fill="url(#SVGID_6_)"/>
-<path d="M34.3,36.12c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.088c0-0.57,0.463-1.031,1.031-1.031h3.088c0.568,0,1.029,0.461,1.029,1.031v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="31.73" x2="31.73" y1="31.42" y2="36.62">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M24.009,36.08c-0.283,0-0.514-0.231-0.514-0.515v-3.089c0-0.284,0.23-0.516,0.514-0.516h3.09 c0.284,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.23,0.515-0.515,0.515H24.009z" fill="url(#SVGID_6_)"/>
+<path d="M34.305,36.123c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.088 c0-0.57,0.463-1.031,1.031-1.031h3.088c0.568,0,1.029,0.461,1.029,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="31.7305" x2="31.7305" y1="31.4229" y2="36.6183">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M34.3,35.56c0,0.568-0.461,1.028-1.029,1.028h-3.088c-0.568,0-1.031-0.46-1.031-1.028v-3.089c0-0.567,0.463-1.03,1.031-1.03h3.088c0.568,0,1.029,0.463,1.029,1.03v3.095z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="33.85" x2="29.69" y1="34.02" y2="34.02">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M34.305,35.565c0,0.568-0.461,1.028-1.029,1.028h-3.088c-0.568,0-1.031-0.46-1.031-1.028v-3.089 c0-0.567,0.463-1.03,1.031-1.03h3.088c0.568,0,1.029,0.463,1.029,1.03V35.565z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="33.8545" x2="29.6936" y1="34.0205" y2="34.0205">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M30.19,36.08c-0.284,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.231-0.516,0.516-0.516h3.088c0.285,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.229,0.515-0.515,0.515h-3.092z" fill="url(#SVGID_8_)"/>
-<path d="M40.48,36.12c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088c0-0.57,0.46-1.031,1.03-1.031h3.089c0.568,0,1.028,0.461,1.028,1.031v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="37.91" x2="37.91" y1="31.42" y2="36.62">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M30.188,36.08c-0.284,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.231-0.516,0.516-0.516h3.088 c0.285,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.229,0.515-0.515,0.515H30.188z" fill="url(#SVGID_8_)"/>
+<path d="M40.482,36.123c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.57,0.46-1.031,1.03-1.031h3.089c0.568,0,1.028,0.461,1.028,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="37.9082" x2="37.9082" y1="31.4229" y2="36.6183">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M40.48,35.56c0,0.568-0.46,1.028-1.028,1.028h-3.089c-0.57,0-1.03-0.46-1.03-1.028v-3.089c0-0.567,0.46-1.03,1.03-1.03h3.089c0.568,0,1.028,0.463,1.028,1.03v3.095z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="40.03" x2="35.87" y1="34.02" y2="34.02">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M40.482,35.565c0,0.568-0.46,1.028-1.028,1.028h-3.089c-0.57,0-1.03-0.46-1.03-1.028v-3.089 c0-0.567,0.46-1.03,1.03-1.03h3.089c0.568,0,1.028,0.463,1.028,1.03V35.565z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="40.0332" x2="35.8713" y1="34.0205" y2="34.0205">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M36.36,36.08c-0.285,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.23-0.516,0.516-0.516h3.089c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515h-3.075z" fill="url(#SVGID_10_)"/>
-<path d="M15.56,36.12c0,0.568-0.46,1.029-1.029,1.029h-9.137c-0.57,0-1.031-0.461-1.031-1.029v-3.088c0-0.57,0.461-1.031,1.031-1.031h9.137c0.569,0,1.029,0.461,1.029,1.031v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.96" x2="9.96" y1="31.42" y2="36.62">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M36.365,36.08c-0.285,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.23-0.516,0.516-0.516h3.089 c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515H36.365z" fill="url(#SVGID_10_)"/>
+<path d="M15.559,36.123c0,0.568-0.46,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.088 c0-0.57,0.461-1.031,1.031-1.031h9.137c0.569,0,1.029,0.461,1.029,1.031V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.96" x2="9.96" y1="31.4229" y2="36.6183">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M15.56,35.56c0,0.568-0.46,1.028-1.029,1.028h-9.137c-0.57,0-1.031-0.46-1.031-1.028v-3.089c0-0.567,0.461-1.03,1.031-1.03h9.137c0.569,0,1.029,0.463,1.029,1.03v3.095z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.2" x2="4.931" y1="34.02" y2="34.02">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M15.559,35.565c0,0.568-0.46,1.028-1.029,1.028H5.393c-0.57,0-1.031-0.46-1.031-1.028v-3.089 c0-0.567,0.461-1.03,1.031-1.03h9.137c0.569,0,1.029,0.463,1.029,1.03V35.565z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.2031" x2="4.9306" y1="34.0205" y2="34.0205">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M5.393,36.08c-0.285,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.23-0.516,0.516-0.516h9.137c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515h-9.127z" fill="url(#SVGID_12_)"/>
-<path d="M21.95,24.09c0,0.57-0.459,1.03-1.028,1.03h-6.569c-0.567,0-1.029-0.46-1.029-1.03v-3.09c0-0.567,0.462-1.028,1.029-1.028h6.569c0.569,0,1.028,0.461,1.028,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.64" x2="17.64" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M5.393,36.08c-0.285,0-0.516-0.231-0.516-0.515v-3.089c0-0.284,0.23-0.516,0.516-0.516h9.137 c0.283,0,0.515,0.231,0.515,0.516v3.089c0,0.283-0.231,0.515-0.515,0.515H5.393z" fill="url(#SVGID_12_)"/>
+<path d="M21.949,24.089c0,0.57-0.459,1.03-1.028,1.03h-6.569c-0.567,0-1.029-0.46-1.029-1.03V21 c0-0.567,0.462-1.028,1.029-1.028h6.569c0.569,0,1.028,0.461,1.028,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.6357" x2="17.6357" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M21.95,23.53c0,0.568-0.459,1.029-1.028,1.029h-6.569c-0.567,0-1.029-0.461-1.029-1.029v-3.089c0-0.569,0.462-1.029,1.029-1.029h6.569c0.569,0,1.028,0.46,1.028,1.029v3.092z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="21.55" x2="13.88" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M21.949,23.532c0,0.568-0.459,1.029-1.028,1.029h-6.569c-0.567,0-1.029-0.461-1.029-1.029v-3.089 c0-0.569,0.462-1.029,1.029-1.029h6.569c0.569,0,1.028,0.46,1.028,1.029V23.532z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="21.5547" x2="13.8762" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M14.35,24.05c-0.284,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.231-0.515,0.516-0.515h6.569c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515h-6.568z" fill="url(#SVGID_14_)"/>
-<path d="M28.13,24.09c0,0.57-0.462,1.03-1.029,1.03h-3.09c-0.568,0-1.028-0.46-1.028-1.03v-3.09c0-0.567,0.46-1.028,1.028-1.028h3.09c0.567,0,1.029,0.461,1.029,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.55" x2="25.55" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M14.352,24.047c-0.284,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.231-0.515,0.516-0.515h6.569 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H14.352z" fill="url(#SVGID_14_)"/>
+<path d="M28.128,24.089c0,0.57-0.462,1.03-1.029,1.03h-3.09c-0.568,0-1.028-0.46-1.028-1.03V21 c0-0.567,0.46-1.028,1.028-1.028h3.09c0.567,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.5547" x2="25.5547" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M28.13,23.53c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.089c0-0.569,0.46-1.029,1.028-1.029h3.09c0.567,0,1.029,0.46,1.029,1.029v3.092z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.68" x2="23.52" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M28.128,23.532c0,0.568-0.462,1.029-1.029,1.029h-3.09c-0.568,0-1.028-0.461-1.028-1.029v-3.089 c0-0.569,0.46-1.029,1.028-1.029h3.09c0.567,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.6777" x2="23.5168" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M24.01,24.05c-0.283,0-0.514-0.23-0.514-0.515v-3.089c0-0.284,0.23-0.515,0.514-0.515h3.09c0.284,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.23,0.515-0.515,0.515h-3.091z" fill="url(#SVGID_16_)"/>
-<path d="M34.3,24.09c0,0.57-0.461,1.03-1.029,1.03h-3.088c-0.568,0-1.031-0.46-1.031-1.03v-3.09c0-0.567,0.463-1.028,1.031-1.028h3.088c0.568,0,1.029,0.461,1.029,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="31.73" x2="31.73" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M24.009,24.047c-0.283,0-0.514-0.23-0.514-0.515v-3.089c0-0.284,0.23-0.515,0.514-0.515h3.09 c0.284,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.23,0.515-0.515,0.515H24.009z" fill="url(#SVGID_16_)"/>
+<path d="M34.305,24.089c0,0.57-0.461,1.03-1.029,1.03h-3.088c-0.568,0-1.031-0.46-1.031-1.03V21 c0-0.567,0.463-1.028,1.031-1.028h3.088c0.568,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="31.7305" x2="31.7305" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M34.3,23.53c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.089c0-0.569,0.463-1.029,1.031-1.029h3.088c0.568,0,1.029,0.46,1.029,1.029v3.092z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="33.85" x2="29.69" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M34.305,23.532c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.568,0-1.031-0.461-1.031-1.029v-3.089 c0-0.569,0.463-1.029,1.031-1.029h3.088c0.568,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="33.8545" x2="29.6936" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M30.19,24.05c-0.284,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.231-0.515,0.516-0.515h3.088c0.285,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.229,0.515-0.515,0.515h-3.092z" fill="url(#SVGID_18_)"/>
-<path d="M40.48,24.09c0,0.57-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.46-1.03-1.03v-3.09c0-0.567,0.46-1.028,1.03-1.028h3.089c0.568,0,1.028,0.461,1.028,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="37.91" x2="37.91" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M30.188,24.047c-0.284,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.231-0.515,0.516-0.515h3.088 c0.285,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.229,0.515-0.515,0.515H30.188z" fill="url(#SVGID_18_)"/>
+<path d="M40.482,24.089c0,0.57-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.46-1.03-1.03V21 c0-0.567,0.46-1.028,1.03-1.028h3.089c0.568,0,1.028,0.461,1.028,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="37.9082" x2="37.9082" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M40.48,23.53c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.089c0-0.569,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.46,1.028,1.029v3.092z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="40.03" x2="35.87" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M40.482,23.532c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.089 c0-0.569,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.46,1.028,1.029V23.532z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="40.0332" x2="35.8713" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M36.36,24.05c-0.285,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.23-0.515,0.516-0.515h3.089c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515h-3.075z" fill="url(#SVGID_20_)"/>
-<path d="M46.72,24.09c0,0.57-0.46,1.03-1.029,1.03h-3.088c-0.57,0-1.03-0.46-1.03-1.03v-3.09c0-0.567,0.46-1.028,1.03-1.028h3.088c0.569,0,1.029,0.461,1.029,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="44.15" x2="44.15" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M36.365,24.047c-0.285,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.23-0.515,0.516-0.515h3.089 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H36.365z" fill="url(#SVGID_20_)"/>
+<path d="M46.725,24.089c0,0.57-0.46,1.03-1.029,1.03h-3.088c-0.57,0-1.03-0.46-1.03-1.03V21 c0-0.567,0.46-1.028,1.03-1.028h3.088c0.569,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="44.1504" x2="44.1504" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M46.72,23.53c0,0.568-0.46,1.029-1.029,1.029h-3.088c-0.57,0-1.03-0.461-1.03-1.029v-3.089c0-0.569,0.46-1.029,1.03-1.029h3.088c0.569,0,1.029,0.46,1.029,1.029v3.092z" fill="url(#SVGID_21_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="46.27" x2="42.11" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M46.725,23.532c0,0.568-0.46,1.029-1.029,1.029h-3.088c-0.57,0-1.03-0.461-1.03-1.029v-3.089 c0-0.569,0.46-1.029,1.03-1.029h3.088c0.569,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_21_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="46.2744" x2="42.1125" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M42.61,24.05c-0.285,0-0.517-0.23-0.517-0.515v-3.089c0-0.284,0.231-0.515,0.517-0.515h3.088c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515h-3.093z" fill="url(#SVGID_22_)"/>
-<path d="M55.64,24.09c0,0.57-0.461,1.03-1.029,1.03h-5.823c-0.569,0-1.029-0.46-1.029-1.03v-3.09c0-0.567,0.46-1.028,1.029-1.028h5.823c0.568,0,1.029,0.461,1.029,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="51.7" x2="51.7" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M42.607,24.047c-0.285,0-0.517-0.23-0.517-0.515v-3.089c0-0.284,0.231-0.515,0.517-0.515h3.088 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H42.607z" fill="url(#SVGID_22_)"/>
+<path d="M55.637,24.089c0,0.57-0.461,1.03-1.029,1.03h-5.823c-0.569,0-1.029-0.46-1.029-1.03V21 c0-0.567,0.46-1.028,1.029-1.028h5.823c0.568,0,1.029,0.461,1.029,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="51.6953" x2="51.6953" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M55.64,23.53c0,0.568-0.461,1.029-1.029,1.029h-5.823c-0.569,0-1.029-0.461-1.029-1.029v-3.089c0-0.569,0.46-1.029,1.029-1.029h5.823c0.568,0,1.029,0.46,1.029,1.029v3.092z" fill="url(#SVGID_23_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="55.23" x2="48.31" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M55.637,23.532c0,0.568-0.461,1.029-1.029,1.029h-5.823c-0.569,0-1.029-0.461-1.029-1.029v-3.089 c0-0.569,0.46-1.029,1.029-1.029h5.823c0.568,0,1.029,0.46,1.029,1.029V23.532z" fill="url(#SVGID_23_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="55.2305" x2="48.3058" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M48.78,24.05c-0.285,0-0.515-0.23-0.515-0.515v-3.089c0-0.284,0.229-0.515,0.515-0.515h5.823c0.284,0,0.516,0.23,0.516,0.515v3.089c0,0.284-0.231,0.515-0.516,0.515h-5.816z" fill="url(#SVGID_24_)"/>
-<path d="M49.46,30.07c0,0.569-0.461,1.03-1.029,1.03h-5.824c-0.568,0-1.028-0.461-1.028-1.03v-3.088c0-0.568,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.462,1.029,1.03v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="45.52" x2="45.52" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M48.784,24.047c-0.285,0-0.515-0.23-0.515-0.515v-3.089c0-0.284,0.229-0.515,0.515-0.515h5.823 c0.284,0,0.516,0.23,0.516,0.515v3.089c0,0.284-0.231,0.515-0.516,0.515H48.784z" fill="url(#SVGID_24_)"/>
+<path d="M49.459,30.073c0,0.569-0.461,1.03-1.029,1.03h-5.824c-0.568,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.462,1.029,1.03V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="45.5176" x2="45.5176" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M49.46,29.52c0,0.568-0.461,1.029-1.029,1.029h-5.824c-0.568,0-1.028-0.461-1.028-1.029v-3.088c0-0.569,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.461,1.029,1.03v3.087z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="49.05" x2="42.13" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M49.459,29.517c0,0.568-0.461,1.029-1.029,1.029h-5.824c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.46-1.03,1.028-1.03h5.824c0.568,0,1.029,0.461,1.029,1.03V29.517z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="49.0518" x2="42.1271" y1="27.9722" y2="27.9722">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M42.6,30.03c-0.284,0-0.515-0.229-0.515-0.514v-3.088c0-0.285,0.23-0.515,0.515-0.515h5.824c0.283,0,0.515,0.229,0.515,0.515v3.088c0,0.284-0.231,0.514-0.515,0.514h-5.815z" fill="url(#SVGID_26_)"/>
-<path d="M12.08,24.09c0,0.57-0.46,1.03-1.028,1.03h-5.657c-0.57,0-1.031-0.46-1.031-1.03v-3.09c0-0.567,0.461-1.028,1.031-1.028h5.657c0.568,0,1.028,0.461,1.028,1.028v3.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="8.22" x2="8.22" y1="19.39" y2="24.59">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M42.605,30.03c-0.284,0-0.515-0.229-0.515-0.514v-3.088c0-0.285,0.23-0.515,0.515-0.515h5.824 c0.283,0,0.515,0.229,0.515,0.515v3.088c0,0.284-0.231,0.514-0.515,0.514H42.605z" fill="url(#SVGID_26_)"/>
+<path d="M12.078,24.089c0,0.57-0.46,1.03-1.028,1.03H5.393c-0.57,0-1.031-0.46-1.031-1.03V21 c0-0.567,0.461-1.028,1.031-1.028h5.657c0.568,0,1.028,0.461,1.028,1.028V24.089z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="8.2197" x2="8.2197" y1="19.3906" y2="24.5861">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M12.08,23.53c0,0.568-0.46,1.029-1.028,1.029h-5.657c-0.57,0-1.031-0.461-1.031-1.029v-3.089c0-0.569,0.461-1.029,1.031-1.029h5.657c0.568,0,1.028,0.46,1.028,1.029v3.092z" fill="url(#SVGID_27_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="11.67" x2="4.912" y1="21.99" y2="21.99">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M12.078,23.532c0,0.568-0.46,1.029-1.028,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.089 c0-0.569,0.461-1.029,1.031-1.029h5.657c0.568,0,1.028,0.46,1.028,1.029V23.532z" fill="url(#SVGID_27_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="11.6689" x2="4.912" y1="21.9878" y2="21.9878">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M5.393,24.05c-0.285,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.23-0.515,0.516-0.515h5.657c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515h-5.647z" fill="url(#SVGID_28_)"/>
-<path d="M9.51,30.07c0,0.569-0.461,1.03-1.029,1.03h-3.088c-0.57,0-1.031-0.461-1.031-1.03v-3.088c0-0.568,0.461-1.029,1.031-1.029h3.087c0.568,0,1.029,0.461,1.029,1.029v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.936" x2="6.936" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M5.393,24.047c-0.285,0-0.516-0.23-0.516-0.515v-3.089c0-0.284,0.23-0.515,0.516-0.515h5.657 c0.283,0,0.515,0.23,0.515,0.515v3.089c0,0.284-0.231,0.515-0.515,0.515H5.393z" fill="url(#SVGID_28_)"/>
+<path d="M9.51,30.073c0,0.569-0.461,1.03-1.029,1.03H5.393c-0.57,0-1.031-0.461-1.031-1.03v-3.088 c0-0.568,0.461-1.029,1.031-1.029H8.48c0.568,0,1.029,0.461,1.029,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="6.9355" x2="6.9355" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M9.51,29.52c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.57,0-1.031-0.461-1.031-1.029v-3.088c0-0.569,0.461-1.03,1.031-1.03h3.087c0.568,0,1.029,0.461,1.029,1.03v3.087z" fill="url(#SVGID_29_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="9.06" x2="4.899" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M9.51,29.517c0,0.568-0.461,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.088 c0-0.569,0.461-1.03,1.031-1.03H8.48c0.568,0,1.029,0.461,1.029,1.03V29.517z" fill="url(#SVGID_29_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="9.0596" x2="4.8987" y1="27.9727" y2="27.9727">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M5.393,30.03c-0.285,0-0.516-0.231-0.516-0.516v-3.088c0-0.286,0.23-0.516,0.516-0.516h3.087c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516h-3.087z" fill="url(#SVGID_30_)"/>
-<path d="M15.69,30.07c0,0.569-0.461,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.461-1.028-1.03v-3.088c0-0.568,0.46-1.029,1.028-1.029h3.088c0.57,0,1.031,0.461,1.031,1.029v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="13.11" x2="13.11" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M5.393,30.032c-0.285,0-0.516-0.231-0.516-0.516v-3.088c0-0.286,0.23-0.516,0.516-0.516H8.48 c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516H5.393z" fill="url(#SVGID_30_)"/>
+<path d="M15.688,30.073c0,0.569-0.461,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.46-1.029,1.028-1.029h3.088c0.57,0,1.031,0.461,1.031,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="13.1133" x2="13.1133" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M15.69,29.52c0,0.568-0.461,1.029-1.031,1.029h-3.088c-0.568,0-1.028-0.461-1.028-1.029v-3.088c0-0.569,0.46-1.03,1.028-1.03h3.088c0.57,0,1.031,0.461,1.031,1.03v3.087z" fill="url(#SVGID_31_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="15.24" x2="11.08" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M15.688,29.517c0,0.568-0.461,1.029-1.031,1.029h-3.088c-0.568,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.46-1.03,1.028-1.03h3.088c0.57,0,1.031,0.461,1.031,1.03V29.517z" fill="url(#SVGID_31_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="15.2363" x2="11.0764" y1="27.9727" y2="27.9727">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M11.57,30.03c-0.283,0-0.514-0.231-0.514-0.516v-3.088c0-0.286,0.23-0.516,0.514-0.516h3.088c0.286,0,0.516,0.229,0.516,0.516v3.088c0,0.284-0.229,0.516-0.516,0.516h-3.092z" fill="url(#SVGID_32_)"/>
-<path d="M21.86,30.07c0,0.569-0.462,1.03-1.03,1.03h-3.088c-0.569,0-1.031-0.461-1.031-1.03v-3.088c0-0.568,0.462-1.029,1.031-1.029h3.088c0.568,0,1.03,0.461,1.03,1.029v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="19.29" x2="19.29" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M11.568,30.032c-0.283,0-0.514-0.231-0.514-0.516v-3.088c0-0.286,0.23-0.516,0.514-0.516h3.088 c0.286,0,0.516,0.229,0.516,0.516v3.088c0,0.284-0.229,0.516-0.516,0.516H11.568z" fill="url(#SVGID_32_)"/>
+<path d="M21.865,30.073c0,0.569-0.462,1.03-1.03,1.03h-3.088c-0.569,0-1.031-0.461-1.031-1.03v-3.088 c0-0.568,0.462-1.029,1.031-1.029h3.088c0.568,0,1.03,0.461,1.03,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="19.291" x2="19.291" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M21.86,29.52c0,0.568-0.462,1.029-1.03,1.029h-3.088c-0.569,0-1.031-0.461-1.031-1.029v-3.088c0-0.569,0.462-1.03,1.031-1.03h3.088c0.568,0,1.03,0.461,1.03,1.03v3.087z" fill="url(#SVGID_33_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="21.41" x2="17.25" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M21.865,29.517c0,0.568-0.462,1.029-1.03,1.029h-3.088c-0.569,0-1.031-0.461-1.031-1.029v-3.088 c0-0.569,0.462-1.03,1.031-1.03h3.088c0.568,0,1.03,0.461,1.03,1.03V29.517z" fill="url(#SVGID_33_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="21.4141" x2="17.2541" y1="27.9727" y2="27.9727">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M17.75,30.03c-0.284,0-0.515-0.231-0.515-0.516v-3.088c0-0.286,0.23-0.516,0.515-0.516h3.088c0.284,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.23,0.516-0.515,0.516h-3.093z" fill="url(#SVGID_34_)"/>
-<path d="M28.04,30.07c0,0.569-0.46,1.03-1.028,1.03h-3.091c-0.567,0-1.028-0.461-1.028-1.03v-3.088c0-0.568,0.461-1.029,1.028-1.029h3.091c0.568,0,1.028,0.461,1.028,1.029v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="25.47" x2="25.47" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M17.747,30.032c-0.284,0-0.515-0.231-0.515-0.516v-3.088c0-0.286,0.23-0.516,0.515-0.516h3.088 c0.284,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.23,0.516-0.515,0.516H17.747z" fill="url(#SVGID_34_)"/>
+<path d="M28.042,30.073c0,0.569-0.46,1.03-1.028,1.03h-3.091c-0.567,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.461-1.029,1.028-1.029h3.091c0.568,0,1.028,0.461,1.028,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="25.4688" x2="25.4688" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M28.04,29.52c0,0.568-0.46,1.029-1.028,1.029h-3.091c-0.567,0-1.028-0.461-1.028-1.029v-3.088c0-0.569,0.461-1.03,1.028-1.03h3.091c0.568,0,1.028,0.461,1.028,1.03v3.087z" fill="url(#SVGID_35_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="27.59" x2="23.43" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M28.042,29.517c0,0.568-0.46,1.029-1.028,1.029h-3.091c-0.567,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.461-1.03,1.028-1.03h3.091c0.568,0,1.028,0.461,1.028,1.03V29.517z" fill="url(#SVGID_35_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="27.5918" x2="23.4309" y1="27.9727" y2="27.9727">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M23.92,30.03c-0.283,0-0.514-0.231-0.514-0.516v-3.088c0-0.286,0.23-0.516,0.514-0.516h3.091c0.283,0,0.514,0.229,0.514,0.516v3.088c0,0.284-0.23,0.516-0.514,0.516h-3.087z" fill="url(#SVGID_36_)"/>
-<path d="M34.28,30.07c0,0.569-0.46,1.03-1.029,1.03h-3.09c-0.566,0-1.028-0.461-1.028-1.03v-3.088c0-0.568,0.462-1.029,1.028-1.029h3.09c0.569,0,1.029,0.461,1.029,1.029v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="31.71" x2="31.71" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M23.923,30.032c-0.283,0-0.514-0.231-0.514-0.516v-3.088c0-0.286,0.23-0.516,0.514-0.516h3.091 c0.283,0,0.514,0.229,0.514,0.516v3.088c0,0.284-0.23,0.516-0.514,0.516H23.923z" fill="url(#SVGID_36_)"/>
+<path d="M34.284,30.073c0,0.569-0.46,1.03-1.029,1.03h-3.09c-0.566,0-1.028-0.461-1.028-1.03v-3.088 c0-0.568,0.462-1.029,1.028-1.029h3.09c0.569,0,1.029,0.461,1.029,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="31.7109" x2="31.7109" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M34.28,29.52c0,0.568-0.46,1.029-1.029,1.029h-3.09c-0.566,0-1.028-0.461-1.028-1.029v-3.088c0-0.569,0.462-1.03,1.028-1.03h3.09c0.569,0,1.029,0.461,1.029,1.03v3.087z" fill="url(#SVGID_37_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="33.83" x2="29.67" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M34.284,29.517c0,0.568-0.46,1.029-1.029,1.029h-3.09c-0.566,0-1.028-0.461-1.028-1.029v-3.088 c0-0.569,0.462-1.03,1.028-1.03h3.09c0.569,0,1.029,0.461,1.029,1.03V29.517z" fill="url(#SVGID_37_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="33.834" x2="29.6721" y1="27.9727" y2="27.9727">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M30.16,30.03c-0.283,0-0.515-0.231-0.515-0.516v-3.088c0-0.286,0.231-0.516,0.515-0.516h3.09c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516h-3.075z" fill="url(#SVGID_38_)"/>
-<path d="M40.48,30.07c0,0.569-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.461-1.03-1.03v-3.088c0-0.568,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.461,1.028,1.029v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="37.91" x2="37.91" y1="25.38" y2="30.57">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M30.165,30.032c-0.283,0-0.515-0.231-0.515-0.516v-3.088c0-0.286,0.231-0.516,0.515-0.516h3.09 c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516H30.165z" fill="url(#SVGID_38_)"/>
+<path d="M40.482,30.073c0,0.569-0.46,1.03-1.028,1.03h-3.089c-0.57,0-1.03-0.461-1.03-1.03v-3.088 c0-0.568,0.46-1.029,1.03-1.029h3.089c0.568,0,1.028,0.461,1.028,1.029V30.073z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="37.9082" x2="37.9082" y1="25.375" y2="30.5705">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M40.48,29.52c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088c0-0.569,0.46-1.03,1.03-1.03h3.089c0.568,0,1.028,0.461,1.028,1.03v3.087z" fill="url(#SVGID_39_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="40.03" x2="35.87" y1="27.97" y2="27.97">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M40.482,29.517c0,0.568-0.46,1.029-1.028,1.029h-3.089c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.569,0.46-1.03,1.03-1.03h3.089c0.568,0,1.028,0.461,1.028,1.03V29.517z" fill="url(#SVGID_39_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="40.0332" x2="35.8713" y1="27.9727" y2="27.9727">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M36.36,30.03c-0.285,0-0.516-0.231-0.516-0.516v-3.088c0-0.286,0.23-0.516,0.516-0.516h3.089c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516h-3.075z" fill="url(#SVGID_40_)"/>
-<path d="M55.64,36.12c0,0.568-0.461,1.029-1.029,1.029h-12c-0.57,0-1.03-0.461-1.03-1.029v-3.088c0-0.569,0.46-1.03,1.03-1.03h12c0.568,0,1.029,0.461,1.029,1.03v3.093z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="48.61" x2="48.61" y1="25.41" y2="36.58">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M36.365,30.032c-0.285,0-0.516-0.231-0.516-0.516v-3.088c0-0.286,0.23-0.516,0.516-0.516h3.089 c0.283,0,0.515,0.229,0.515,0.516v3.088c0,0.284-0.231,0.516-0.515,0.516H36.365z" fill="url(#SVGID_40_)"/>
+<path d="M55.637,36.123c0,0.568-0.461,1.029-1.029,1.029h-12c-0.57,0-1.03-0.461-1.03-1.029v-3.088 c0-0.569,0.46-1.03,1.03-1.03h12c0.568,0,1.029,0.461,1.029,1.03V36.123z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="48.6074" x2="48.6074" y1="25.4102" y2="36.5772">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M54.61,25.4h-3.088c-0.571,0-1.03,0.461-1.03,1.03v5.02h-7.883c-0.57,0-1.03,0.461-1.03,1.029v3.088c0,0.568,0.46,1.03,1.03,1.03h12c0.568,0,1.029-0.462,1.029-1.03v-9.137c0-0.57-0.46-1.03-1.03-1.03z" fill="url(#SVGID_41_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="48.61" x2="48.61" y1="25.88" y2="36.07">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M54.608,25.398h-3.088c-0.571,0-1.03,0.461-1.03,1.03v5.02h-7.883c-0.57,0-1.03,0.461-1.03,1.029 v3.088c0,0.568,0.46,1.03,1.03,1.03h12c0.568,0,1.029-0.462,1.029-1.03v-9.137C55.637,25.859,55.178,25.398,54.608,25.398z" fill="url(#SVGID_41_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="48.6074" x2="48.6074" y1="25.8818" y2="36.0711">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M54.61,25.91h-3.088c-0.285,0-0.517,0.229-0.517,0.516v5.533h-8.396c-0.285,0-0.517,0.23-0.517,0.516v3.088c0,0.284,0.231,0.516,0.517,0.516h12c0.284,0,0.516-0.231,0.516-0.516v-9.137c0-0.29-0.23-0.52-0.51-0.52z" fill="url(#SVGID_42_)"/>
-<path d="M21.95,42.24c0,0.568-0.459,1.03-1.028,1.03h-3.089c-0.567,0-1.029-0.462-1.029-1.03v-3.088c0-0.568,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.463,1.028,1.031v3.085z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="19.38" x2="19.38" y1="37.54" y2="42.73">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M54.608,25.913h-3.088c-0.285,0-0.517,0.229-0.517,0.516v5.533h-8.396 c-0.285,0-0.517,0.23-0.517,0.516v3.088c0,0.284,0.231,0.516,0.517,0.516h12c0.284,0,0.516-0.231,0.516-0.516v-9.137 C55.123,26.143,54.892,25.913,54.608,25.913z" fill="url(#SVGID_42_)"/>
+<path d="M21.949,42.235c0,0.568-0.459,1.03-1.028,1.03h-3.089c-0.567,0-1.029-0.462-1.029-1.03v-3.088 c0-0.568,0.462-1.031,1.029-1.031h3.089c0.569,0,1.028,0.463,1.028,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="19.376" x2="19.376" y1="37.5371" y2="42.7326">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M21.95,41.68c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.09c0-0.567,0.462-1.028,1.029-1.028h3.089c0.569,0,1.028,0.461,1.028,1.028v3.089z" fill="url(#SVGID_43_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="21.5" x2="17.34" y1="40.13" y2="40.13">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M21.949,41.679c0,0.568-0.459,1.029-1.028,1.029h-3.089c-0.567,0-1.029-0.461-1.029-1.029v-3.09 c0-0.567,0.462-1.028,1.029-1.028h3.089c0.569,0,1.028,0.461,1.028,1.028V41.679z" fill="url(#SVGID_43_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="21.5" x2="17.3381" y1="40.1343" y2="40.1343">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M17.83,42.19c-0.284,0-0.516-0.229-0.516-0.514v-3.09c0-0.284,0.231-0.513,0.516-0.513h3.089c0.283,0,0.515,0.229,0.515,0.513v3.09c0,0.284-0.231,0.514-0.515,0.514h-3.088z" fill="url(#SVGID_44_)"/>
-<path d="M15.73,42.24c0,0.568-0.462,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.462-1.028-1.03v-3.088c0-0.568,0.46-1.031,1.028-1.031h3.088c0.569,0,1.031,0.463,1.031,1.031v3.085z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="13.16" x2="13.16" y1="37.54" y2="42.73">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M17.832,42.192c-0.284,0-0.516-0.229-0.516-0.514v-3.09c0-0.284,0.231-0.513,0.516-0.513h3.089 c0.283,0,0.515,0.229,0.515,0.513v3.09c0,0.284-0.231,0.514-0.515,0.514H17.832z" fill="url(#SVGID_44_)"/>
+<path d="M15.73,42.235c0,0.568-0.462,1.03-1.031,1.03h-3.088c-0.568,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.46-1.031,1.028-1.031h3.088c0.569,0,1.031,0.463,1.031,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="13.1563" x2="13.1563" y1="37.5371" y2="42.7326">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M15.73,41.68c0,0.568-0.462,1.029-1.031,1.029h-3.088c-0.568,0-1.028-0.461-1.028-1.029v-3.09c0-0.567,0.46-1.028,1.028-1.028h3.088c0.569,0,1.031,0.461,1.031,1.028v3.089z" fill="url(#SVGID_45_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="15.28" x2="11.12" y1="40.13" y2="40.13">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M15.73,41.679c0,0.568-0.462,1.029-1.031,1.029h-3.088c-0.568,0-1.028-0.461-1.028-1.029v-3.09 c0-0.567,0.46-1.028,1.028-1.028h3.088c0.569,0,1.031,0.461,1.031,1.028V41.679z" fill="url(#SVGID_45_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="15.2793" x2="11.1194" y1="40.1343" y2="40.1343">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M11.61,42.19c-0.283,0-0.514-0.229-0.514-0.514v-3.09c0-0.284,0.23-0.513,0.514-0.513h3.088c0.286,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.229,0.514-0.516,0.514h-3.089z" fill="url(#SVGID_46_)"/>
-<path d="M9.51,42.24c0,0.568-0.461,1.03-1.029,1.03h-3.088c-0.57,0-1.031-0.462-1.031-1.03v-3.088c0-0.568,0.461-1.031,1.031-1.031h3.087c0.568,0,1.029,0.463,1.029,1.031v3.085z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="6.936" x2="6.936" y1="37.54" y2="42.73">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M11.611,42.192c-0.283,0-0.514-0.229-0.514-0.514v-3.09c0-0.284,0.23-0.513,0.514-0.513h3.088 c0.286,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.229,0.514-0.516,0.514H11.611z" fill="url(#SVGID_46_)"/>
+<path d="M9.51,42.235c0,0.568-0.461,1.03-1.029,1.03H5.393c-0.57,0-1.031-0.462-1.031-1.03v-3.088 c0-0.568,0.461-1.031,1.031-1.031H8.48c0.568,0,1.029,0.463,1.029,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="6.9355" x2="6.9355" y1="37.5371" y2="42.7326">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M9.51,41.68c0,0.568-0.461,1.029-1.029,1.029h-3.088c-0.57,0-1.031-0.461-1.031-1.029v-3.09c0-0.567,0.461-1.028,1.031-1.028h3.087c0.568,0,1.029,0.461,1.029,1.028v3.089z" fill="url(#SVGID_47_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="9.06" x2="4.899" y1="40.13" y2="40.13">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M9.51,41.679c0,0.568-0.461,1.029-1.029,1.029H5.393c-0.57,0-1.031-0.461-1.031-1.029v-3.09 c0-0.567,0.461-1.028,1.031-1.028H8.48c0.568,0,1.029,0.461,1.029,1.028V41.679z" fill="url(#SVGID_47_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="9.0596" x2="4.8987" y1="40.1343" y2="40.1343">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M5.393,42.19c-0.285,0-0.516-0.229-0.516-0.514v-3.09c0-0.284,0.23-0.513,0.516-0.513h3.087c0.283,0,0.515,0.229,0.515,0.513v3.09c0,0.284-0.231,0.514-0.515,0.514h-3.087z" fill="url(#SVGID_48_)"/>
-<path d="M49.56,42.24c0,0.568-0.463,1.03-1.03,1.03h-3.089c-0.568,0-1.028-0.462-1.028-1.03v-3.088c0-0.568,0.46-1.031,1.028-1.031h3.089c0.567,0,1.03,0.463,1.03,1.031v3.085z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="46.98" x2="46.98" y1="37.54" y2="42.73">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M5.393,42.192c-0.285,0-0.516-0.229-0.516-0.514v-3.09c0-0.284,0.23-0.513,0.516-0.513H8.48 c0.283,0,0.515,0.229,0.515,0.513v3.09c0,0.284-0.231,0.514-0.515,0.514H5.393z" fill="url(#SVGID_48_)"/>
+<path d="M49.557,42.235c0,0.568-0.463,1.03-1.03,1.03h-3.089c-0.568,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.46-1.031,1.028-1.031h3.089c0.567,0,1.03,0.463,1.03,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="46.9824" x2="46.9824" y1="37.5371" y2="42.7326">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M49.56,41.68c0,0.568-0.463,1.029-1.03,1.029h-3.089c-0.568,0-1.028-0.461-1.028-1.029v-3.09c0-0.567,0.46-1.028,1.028-1.028h3.089c0.567,0,1.03,0.461,1.03,1.028v3.089z" fill="url(#SVGID_49_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.11" x2="44.94" y1="40.13" y2="40.13">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M49.557,41.679c0,0.568-0.463,1.029-1.03,1.029h-3.089c-0.568,0-1.028-0.461-1.028-1.029v-3.09 c0-0.567,0.46-1.028,1.028-1.028h3.089c0.567,0,1.03,0.461,1.03,1.028V41.679z" fill="url(#SVGID_49_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.1064" x2="44.9445" y1="40.1343" y2="40.1343">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M45.44,42.19c-0.283,0-0.515-0.229-0.515-0.514v-3.09c0-0.284,0.231-0.513,0.515-0.513h3.089c0.284,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.231,0.514-0.516,0.514h-3.092z" fill="url(#SVGID_50_)"/>
-<path d="M55.64,42.24c0,0.568-0.461,1.03-1.029,1.03h-3.089c-0.569,0-1.028-0.462-1.028-1.03v-3.088c0-0.568,0.459-1.031,1.028-1.031h3.089c0.568,0,1.029,0.463,1.029,1.031v3.085z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="53.06" x2="53.06" y1="37.54" y2="42.73">
-<stop offset="0" stop-color="#F0F4F1"/>
-<stop offset="0.7939" stop-color="#A2A5A4"/>
-<stop offset="1" stop-color="#D3DBD7"/>
+<path d="M45.438,42.192c-0.283,0-0.515-0.229-0.515-0.514v-3.09c0-0.284,0.231-0.513,0.515-0.513h3.089 c0.284,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.231,0.514-0.516,0.514H45.438z" fill="url(#SVGID_50_)"/>
+<path d="M55.637,42.235c0,0.568-0.461,1.03-1.029,1.03h-3.089c-0.569,0-1.028-0.462-1.028-1.03v-3.088 c0-0.568,0.459-1.031,1.028-1.031h3.089c0.568,0,1.029,0.463,1.029,1.031V42.235z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="53.0635" x2="53.0635" y1="37.5371" y2="42.7326">
+<stop offset="0" style="stop-color:#F0F4F1"/>
+<stop offset="0.7939" style="stop-color:#A2A5A4"/>
+<stop offset="1" style="stop-color:#D3DBD7"/>
</linearGradient>
-<path d="M55.64,41.68c0,0.568-0.461,1.029-1.029,1.029h-3.089c-0.569,0-1.028-0.461-1.028-1.029v-3.09c0-0.567,0.459-1.028,1.028-1.028h3.089c0.568,0,1.029,0.461,1.029,1.028v3.089z" fill="url(#SVGID_51_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="55.19" x2="51.03" y1="40.13" y2="40.13">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.8364" stop-color="#C9CECC"/>
-<stop offset="0.9758" stop-color="#D5D8D6"/>
-<stop offset="1" stop-color="#D5D8D6"/>
+<path d="M55.637,41.679c0,0.568-0.461,1.029-1.029,1.029h-3.089c-0.569,0-1.028-0.461-1.028-1.029v-3.09 c0-0.567,0.459-1.028,1.028-1.028h3.089c0.568,0,1.029,0.461,1.029,1.028V41.679z" fill="url(#SVGID_51_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="55.1875" x2="51.0256" y1="40.1343" y2="40.1343">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.8364" style="stop-color:#C9CECC"/>
+<stop offset="0.9758" style="stop-color:#D5D8D6"/>
+<stop offset="1" style="stop-color:#D5D8D6"/>
</linearGradient>
-<path d="M51.52,42.19c-0.283,0-0.515-0.229-0.515-0.514v-3.09c0-0.284,0.231-0.513,0.515-0.513h3.089c0.284,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.231,0.514-0.516,0.514h-3.091z" fill="url(#SVGID_52_)"/>
-<path d="M43.31,42.17c0,0.569-0.462,1.028-1.029,1.028h-18.53c-0.567,0-1.029-0.459-1.029-1.028v-3.089c0-0.568,0.462-1.029,1.029-1.029h18.53c0.567,0,1.029,0.461,1.029,1.029v3.092z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="33.02" x2="33.02" y1="37.47" y2="42.67">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="1" stop-color="#2E2E2E"/>
+<path d="M51.519,42.192c-0.283,0-0.515-0.229-0.515-0.514v-3.09c0-0.284,0.231-0.513,0.515-0.513h3.089 c0.284,0,0.516,0.229,0.516,0.513v3.09c0,0.284-0.231,0.514-0.516,0.514H51.519z" fill="url(#SVGID_52_)"/>
+<path d="M43.314,42.172c0,0.569-0.462,1.028-1.029,1.028H23.752c-0.567,0-1.029-0.459-1.029-1.028v-3.089 c0-0.568,0.462-1.029,1.029-1.029h18.533c0.567,0,1.029,0.461,1.029,1.029V42.172z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="33.0186" x2="33.0186" y1="37.4727" y2="42.6681">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="1" style="stop-color:#2E2E2E"/>
</linearGradient>
-<path d="M43.31,41.61c0,0.57-0.462,1.03-1.029,1.03h-18.53c-0.567,0-1.029-0.46-1.029-1.03v-3.089c0-0.567,0.462-1.028,1.029-1.028h18.53c0.567,0,1.029,0.461,1.029,1.028v3.093z" fill="url(#SVGID_53_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="33.02" x2="33.02" y1="37.91" y2="42.33">
-<stop offset="0" stop-color="#686868"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M43.314,41.613c0,0.57-0.462,1.03-1.029,1.03H23.752c-0.567,0-1.029-0.46-1.029-1.03v-3.089 c0-0.567,0.462-1.028,1.029-1.028h18.533c0.567,0,1.029,0.461,1.029,1.028V41.613z" fill="url(#SVGID_53_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="33.0186" x2="33.0186" y1="37.9102" y2="42.3335">
+<stop offset="0" style="stop-color:#686868"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M23.75,42.13c-0.284,0-0.516-0.231-0.516-0.516v-3.089c0-0.283,0.231-0.515,0.516-0.515h18.53c0.284,0,0.516,0.231,0.516,0.515v3.089c0,0.284-0.231,0.516-0.516,0.516h-18.53z" fill="url(#SVGID_54_)"/>
+<path d="M23.752,42.129c-0.284,0-0.516-0.231-0.516-0.516v-3.089c0-0.283,0.231-0.515,0.516-0.515h18.533 c0.284,0,0.516,0.231,0.516,0.515v3.089c0,0.284-0.231,0.516-0.516,0.516H23.752z" fill="url(#SVGID_54_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_language.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_language.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,83 +1,85 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.31" x2="7.075" y1="44.47" y2="44.47">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="3.3105" x2="7.0752" y1="44.4668" y2="44.4668">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="27.07" width="3.765" x="3.311" y="30.93"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="2.369" x2="8.017" y1="29.76" y2="29.76">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<rect fill="url(#SVGID_1_)" height="27.067" width="3.765" x="3.311" y="30.933"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="2.3691" x2="8.0166" y1="29.7603" y2="29.7603">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="2.346" width="5.647" x="2.369" y="28.59"/>
-<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.765" x="3.311" y="30.93"/>
-<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="3.311" y="57.53"/>
-<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.765" x="3.311" y="31.4"/>
-<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="3.311" y="31.88"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.075" x2="28.69" y1="41.82" y2="41.82">
-<stop offset="0" stop-color="#4F6697"/>
-<stop offset="0.1697" stop-color="#6A9AB3"/>
-<stop offset="0.4" stop-color="#4E6496"/>
-<stop offset="0.7455" stop-color="#6EA3B7"/>
-<stop offset="1" stop-color="#536C9B"/>
+<rect fill="url(#SVGID_2_)" height="2.346" width="5.647" x="2.369" y="28.587"/>
+<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.765" x="3.311" y="30.933"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="3.311" y="57.529"/>
+<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.765" x="3.311" y="31.404"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="3.311" y="31.875"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.0752" x2="28.6899" y1="41.8154" y2="41.8154">
+<stop offset="0" style="stop-color:#4F6697"/>
+<stop offset="0.1697" style="stop-color:#6A9AB3"/>
+<stop offset="0.4" style="stop-color:#4E6496"/>
+<stop offset="0.7455" style="stop-color:#6EA3B7"/>
+<stop offset="1" style="stop-color:#536C9B"/>
</linearGradient>
-<path d="M7.075,31.4s7.318-0.909,9.905,1.303c4.323,3.695,8.959,3.246,11.71,2.859v16.75s-9.091,0.707-12.71-1.705c-2.198-1.465-8.908-0.969-8.908-0.969v-18.23z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="23.33" x2="44.94" y1="15.18" y2="15.18">
-<stop offset="0" stop-color="#346844"/>
-<stop offset="0.1636" stop-color="#85A371"/>
-<stop offset="0.4" stop-color="#346744"/>
-<stop offset="0.7818" stop-color="#82A16B"/>
-<stop offset="1" stop-color="#366B44"/>
+<path d="M7.075,31.404c0,0,7.318-0.909,9.905,1.303c4.323,3.695,8.959,3.246,11.709,2.859v16.748 c0,0-9.091,0.707-12.707-1.705c-2.198-1.465-8.908-0.969-8.908-0.969V31.404z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="23.3271" x2="44.9414" y1="15.1758" y2="15.1758">
+<stop offset="0" style="stop-color:#346844"/>
+<stop offset="0.1636" style="stop-color:#85A371"/>
+<stop offset="0.4" style="stop-color:#346744"/>
+<stop offset="0.7818" style="stop-color:#82A16B"/>
+<stop offset="1" style="stop-color:#366B44"/>
</linearGradient>
-<path d="M23.33,4.764s7.318-0.906,9.903,1.304c4.324,3.694,8.959,3.246,11.71,2.858v16.75s-9.092,0.707-12.71-1.706c-2.197-1.467-8.907-0.968-8.907-0.968v-18.24z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.55" x2="23.31" y1="18.23" y2="18.23">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M23.327,4.764c0,0,7.318-0.906,9.903,1.304c4.324,3.694,8.959,3.246,11.711,2.858v16.75 c0,0-9.092,0.707-12.707-1.706c-2.197-1.467-8.907-0.968-8.907-0.968V4.764z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.5459" x2="23.3105" y1="18.2319" y2="18.2319">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="27.77" width="3.765" x="19.55" y="4.345"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="18.6" x2="24.25" y1="3.172" y2="3.172">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<rect fill="url(#SVGID_5_)" height="27.774" width="3.765" x="19.546" y="4.345"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="18.6045" x2="24.252" y1="3.1724" y2="3.1724">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2.345" width="5.647" x="18.6" y="2"/>
-<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.765" x="19.55" y="4.345"/>
-<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="19.55" y="31.65"/>
-<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.765" x="19.55" y="4.815"/>
-<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="19.55" y="5.286"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.02" x2="57.63" y1="41.82" y2="41.82">
-<stop offset="0" stop-color="#954B50"/>
-<stop offset="0.1758" stop-color="#AE654C"/>
-<stop offset="0.4182" stop-color="#954B50"/>
-<stop offset="0.7394" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#954B50"/>
+<rect fill="url(#SVGID_6_)" height="2.345" width="5.647" x="18.604" y="2"/>
+<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.765" x="19.546" y="4.345"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="19.546" y="31.648"/>
+<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.765" x="19.546" y="4.815"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.765" x="19.546" y="5.286"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.0156" x2="57.6309" y1="41.8154" y2="41.8154">
+<stop offset="0" style="stop-color:#954B50"/>
+<stop offset="0.1758" style="stop-color:#AE654C"/>
+<stop offset="0.4182" style="stop-color:#954B50"/>
+<stop offset="0.7394" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#954B50"/>
</linearGradient>
-<path d="M36.02,31.4s7.32-0.909,9.904,1.303c4.324,3.695,8.959,3.246,11.71,2.859v16.75s-9.092,0.707-12.71-1.705c-2.197-1.465-8.908-0.969-8.908-0.969v-18.23z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="32.25" x2="36.02" y1="44.47" y2="44.47">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M36.016,31.404c0,0,7.32-0.909,9.904,1.303c4.324,3.695,8.959,3.246,11.711,2.859v16.748 c0,0-9.092,0.707-12.707-1.705c-2.197-1.465-8.908-0.969-8.908-0.969V31.404z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="32.252" x2="36.0156" y1="44.4668" y2="44.4668">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="27.07" width="3.764" x="32.25" y="30.93"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.31" x2="36.96" y1="29.76" y2="29.76">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<rect fill="url(#SVGID_8_)" height="27.067" width="3.764" x="32.252" y="30.933"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="31.3105" x2="36.957" y1="29.7603" y2="29.7603">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2.346" width="5.646" x="31.31" y="28.59"/>
-<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.764" x="32.25" y="30.93"/>
-<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.764" x="32.25" y="31.4"/>
-<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.764" x="32.25" y="31.88"/>
-<rect fill-opacity="0.1" height="0.469" stroke-opacity="0.1" width="3.764" x="32.25" y="57.53"/>
+<rect fill="url(#SVGID_9_)" height="2.346" width="5.646" x="31.311" y="28.587"/>
+<rect fill-opacity="0.4" height="0.471" stroke-opacity="0.4" width="3.764" x="32.252" y="30.933"/>
+<rect fill-opacity="0.2" height="0.471" stroke-opacity="0.2" width="3.764" x="32.252" y="31.404"/>
+<rect fill-opacity="0.1" height="0.471" stroke-opacity="0.1" width="3.764" x="32.252" y="31.875"/>
+<rect fill-opacity="0.1" height="0.469" stroke-opacity="0.1" width="3.764" x="32.252" y="57.531"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_location_new.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_location_new.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,86 +1,88 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.2" x2="240.2" y1="1779" y2="1825">
-<stop offset="0" stop-color="#7EB8BC"/>
-<stop offset="1" stop-color="#465684"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.1621" x2="240.1621" y1="1779.4043" y2="1824.6136">
+<stop offset="0" style="stop-color:#7EB8BC"/>
+<stop offset="1" style="stop-color:#465684"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="49.36,9.213,57.04,10.26,57.04,53.14,43.52,54.99,30,52.3,22.28,53.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.3" x2="237.3" y1="1791" y2="1824">
-<stop offset="0" stop-color="#B0DDC1"/>
-<stop offset="1" stop-color="#5586A0"/>
+<polygon fill="url(#SVGID_1_)" points="49.361,9.213 57.039,10.264 57.039,53.138 43.52,54.988 30.002,52.297 22.284,53.751 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.2617" x2="237.2617" y1="1791.29" y2="1823.7784">
+<stop offset="0" style="stop-color:#B0DDC1"/>
+<stop offset="1" style="stop-color:#5586A0"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="43.52,21.68,43.52,54.99,30,52.3,30,41.25"/>
-<polygon fill-opacity="0.25" points="50.26,9.347,43.52,23.58,30,43.17,23.38,53.56,20.23,54.15,47.88,9.016" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7" x2="224.7" y1="1777" y2="1823">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_2_)" points="43.52,21.685 43.52,54.988 30.002,52.297 30.002,41.25 "/>
+<polygon fill-opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 " stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7246" x2="224.7246" y1="1777.3057" y2="1823.4724">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="45.48,11.15,43.41,22.27,30,41.72,22.33,53.76,15.73,54.99,2.966,52.58,2.966,9.338,15.36,8.413,30,10.45,43.52,8.413"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.4" x2="223.4" y1="1822" y2="1778">
-<stop offset="0" stop-color="#A17945"/>
-<stop offset="1" stop-color="#C6BD82"/>
+<polygon fill="url(#SVGID_3_)" points="45.482,11.152 43.414,22.27 30.002,41.725 22.334,53.759 15.733,54.988 2.966,52.584 2.966,9.338 15.358,8.413 30.002,10.446 43.52,8.413 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.3672" x2="223.3672" y1="1821.5967" y2="1778.4828">
+<stop offset="0" style="stop-color:#A17945"/>
+<stop offset="1" style="stop-color:#C6BD82"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="30,10.45,30,41.72,22.33,53.76,15.73,54.99,15.73,8.466"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="247" x2="247" y1="1790" y2="1778">
-<stop offset="0" stop-color="#A17945"/>
-<stop offset="1" stop-color="#C6BD82"/>
+<polygon fill="url(#SVGID_4_)" points="30.002,10.446 30.002,41.725 22.334,53.759 15.733,54.988 15.733,8.466 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="246.9512" x2="246.9512" y1="1790.3203" y2="1777.6716">
+<stop offset="0" style="stop-color:#A17945"/>
+<stop offset="1" style="stop-color:#C6BD82"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="43.52,8.413,43.52,22.12,49.38,9.217"/>
-<path d="M16.48,54.84l11.49-17.23-4.842-2.408-7.341,10.15-7.165,8.278-2.291-0.423,9.408-11.08,5.523-7.851-5.782-2.847-12.51-2.56v-1.32l13,2.686,6.069,2.979,6.841-9.601-13.34-6.657-12.57-2.21v-2.042l12.97,2.171,13.97,6.972,4.002-6.801-3.909-1.375-5.803-4.013,2.769,0.382,3.052,2.232,4.547,1.656,2.688-4.564,2.62-0.386-3.501,5.915,4.996,2.688,2.188-3.465,2.255-5.396,1.271,0.173-3.554,7.663s-8.687,13.46-13.52,20.69l-11.7,17.26-1.84,0.33zm12.36-18.23l-4.9-2.489,6.734-9.471,4.502,2.188-6.33,9.77zm2.91-13.84l4.711,2.353,4.219-6.434-4.955-2.665-3.97,6.75z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.4" x2="225.4" y1="1823" y2="1789">
-<stop offset="0" stop-color="#DBD3AE"/>
-<stop offset="0.81" stop-color="#F5F3E8"/>
-<stop offset="1" stop-color="#F5F3E8"/>
+<polygon fill="url(#SVGID_5_)" points="43.52,8.413 43.52,22.115 49.383,9.217 "/>
+<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.3965" x2="225.3965" y1="1823.0439" y2="1789.2549">
+<stop offset="0" style="stop-color:#DBD3AE"/>
+<stop offset="0.81" style="stop-color:#F5F3E8"/>
+<stop offset="1" style="stop-color:#F5F3E8"/>
</linearGradient>
-<path d="M46.02,8.754l-2.476,5.931s-1.334,2.112-2.077,3.276l-5.482-2.949,3.524-5.947-1.787,0.241-3.056,4.998-4.625-1.697-3.417-2.63-2.114-0.292,5.51,3.755,4.268,1.503-4.276,7.272-14.14-7.055-12.88-2.16v1.483l12.62,2.208,13.67,6.826-0.164,0.277-6.977,9.795-6.365-3.099-12.8-2.63,0.005,0.742,12.75,2.651,5.965,2.939-5.926,8.307-9.111,10.79,1.693,0.316,7.417-8.591,7.281-10.16,5.416,2.667-11.57,17.26,1.051-0.198,12.09-18.13,13.55-20.4,3.266-7.185-0.82-0.111zm-16.01,26.24l-1.265,1.946-5.27-2.696,6.605-9.38,0.519-0.685,5.139,2.564-5.73,8.25zm6.55-9.51l-5.202-2.598,4.261-7.232,5.453,2.936-4.51,6.89z" fill="url(#SVGID_6_)"/>
-<polygon fill="#FFFFFF" points="38.25,47.88,43.53,36.76,48.27,47.88,43.53,45"/>
-<polygon fill-opacity="0.4" points="48.27,47.88,43.53,36.76,43.53,45" stroke-opacity="0.4"/>
-<ellipse cx="22.19" cy="28.44" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
-<path d="M24.98,28.44c0,0.592-1.25,1.073-2.786,1.073s-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076,1.53,0.01,2.79,0.49,2.79,1.08z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M30.11,6.172c-1.354,0.957-3.687,2.304-4.689,2.304h-0.003c-0.229-0.027-0.567-0.25-0.927-0.485-0.718-0.468-1.704-1.113-3.139-1.124-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729-4.94,1.903,1.134,2.934,0.667-0.256,5.98,15.49,2.866,2.022,0.742-3.411-1.496-3.874,0.268-0.689c0.55-1.418,1.795-3.936,2.793-4.645,0.263-0.185,0.994-0.554,1.581-0.849,0.595-0.301,1.11-0.558,1.413-0.751,2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983-1.63,1.16z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293" x2="-295.2" y1="-2176" y2="-2176">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.65" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<path d="M46.023,8.754l-2.476,5.931c0,0-1.334,2.112-2.077,3.276l-5.482-2.949l3.524-5.947l-1.787,0.241 l-3.056,4.998l-4.625-1.697l-3.417-2.63l-2.114-0.292l5.51,3.755l4.268,1.503l-4.276,7.272l-14.135-7.055L2.966,12.979v1.483 l12.621,2.208l13.674,6.826l-0.164,0.277l-6.977,9.795l-6.365-3.099L2.961,27.85l0.005,0.742l12.754,2.651l5.965,2.939l-5.926,8.307 l-9.111,10.79l1.693,0.316l7.417-8.591l7.281-10.156l5.416,2.667L16.876,54.777l1.051-0.198l12.09-18.127l13.55-20.397l3.266-7.185 L46.023,8.754z M30.012,34.986l-1.265,1.946l-5.27-2.696l6.605-9.38l0.519-0.685l5.139,2.564L30.012,34.986z M36.559,25.482 l-5.202-2.598l4.261-7.232l5.453,2.936L36.559,25.482z" fill="url(#SVGID_6_)"/>
+<polygon fill="#FFFFFF" points="38.253,47.876 43.529,36.76 48.269,47.876 43.529,45.003 "/>
+<polygon fill-opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 " stroke-opacity="0.4"/>
+<ellipse cx="22.188" cy="28.443" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
+<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293.0366" x2="-295.1697" y1="-2176.2671" y2="-2176.2671">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="14.29,10.44,16.3,9.666,22.49,25.72,22.08,27.62,20.48,26.49"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.4" x2="-295.9" y1="-2166" y2="-2166">
-<stop offset="0" stop-color="#4F4F4F"/>
-<stop offset="0.59" stop-color="#BFBFBF"/>
-<stop offset="1" stop-color="#6B6B6B"/>
+<polygon fill="url(#SVGID_7_)" points="14.286,10.442 16.297,9.666 22.493,25.715 22.077,27.618 20.482,26.49 "/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.3564" x2="-295.8871" y1="-2166.1377" y2="-2166.1377">
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="13.1,9.361,16.45,8.072,16.97,9.411,13.62,10.7"/>
-<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.34" y="10.03"/>
-<path d="M17.22,10.08s2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601,1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624-1.583,1.123-3.099,5.035-3.099,5.035l-4.13-10.7z" fill="#4F7D5A"/>
-<path d="M21.65,8.488c1.958,0.018,2.897,1.48,3.958,1.605,1.2,0.139,3.708-1.408,4.78-2.114,0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768c0,0.01,2.88-2.36,4.13-2.352z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="url(#SVGID_8_)" points="13.103,9.361 16.452,8.072 16.968,9.411 13.619,10.699 "/>
+<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
+<path d="M17.225,10.08c0,0,2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601 c1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624 c-1.583,1.123-3.099,5.035-3.099,5.035L17.225,10.08z" fill="#4F7D5A"/>
+<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
<g transform="matrix(1 0 0 1 30 0)">
-<polygon fill-opacity="0.35" points="23.49,5.563,16.72,12.33,19.34,2.565,12.05,0.611,8.829,12.62,14.82,14.23,12.97,16.08,18.31,21.42,28.83,10.9" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="298" x2="295.2" y1="-378.2" y2="-388.8">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill-opacity="0.35" points="23.487,5.563 16.725,12.331 19.341,2.565 12.047,0.611 8.829,12.621 14.825,14.229 12.973,16.083 18.312,21.421 28.829,10.901 " stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="297.9736" x2="295.2261" y1="-378.1689" y2="-388.7774">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="9.714,12.11,12.56,1.496,18.45,3.077,15.61,13.69"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="297.8" x2="295.3" y1="-378.9" y2="-388.4">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_1__)" points="9.714,12.11 12.558,1.496 18.453,3.077 15.611,13.691 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="297.7822" x2="295.3409" y1="-378.8926" y2="-388.3527">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="15.18,12.94,10.46,11.68,12.99,2.246,17.71,3.508"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="308" x2="298.6" y1="-384.8" y2="-394.4">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill="url(#SVGID_2__)" points="15.18,12.942 10.463,11.679 12.989,2.246 17.706,3.508 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="308.0273" x2="298.6434" y1="-384.7505" y2="-394.3634">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="14,16.08,23.49,6.585,27.8,10.9,18.31,20.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="307.7" x2="299.2" y1="-385.2" y2="-393.8">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_3__)" points="13.995,16.083 23.487,6.585 27.805,10.901 18.312,20.398 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="307.7012" x2="299.1582" y1="-385.1528" y2="-393.7721">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="18.31,19.53,14.86,16.08,23.49,7.449,26.94,10.9"/>
+<polygon fill="url(#SVGID_4__)" points="18.312,19.532 14.858,16.083 23.487,7.449 26.944,10.901 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_map_placeholder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_map_placeholder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,105 +1,109 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0.3882" y2="59.65">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="0.3882" y2="59.6489">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M0,60v-59.69h60v59.69h-60zm50.25-5.68l-20.25-20.15-20.25,20.15h40.49zm4.04-4.02v-40.29l-20.25,20.14,20.25,20.15zm-48.58,0l20.25-20.15-20.25-20.14v40.29zm24.29-24.17l20.25-20.14h-40.5l20.25,20.14z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="1.097" y2="58.95">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M0,60V0.306h60V60H0z M50.246,54.316L30,34.174L9.754,54.316H50.246z M54.286,50.297 V10.011L34.04,30.152L54.286,50.297z M5.714,50.297L25.96,30.152L5.714,10.011V50.297z M30,26.133L50.246,5.991H9.754L30,26.133z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0005" x2="30.0005" y1="1.0972" y2="58.9473">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M0.714,59.29v-58.27h58.57v58.27m-7.32-4.26l-21.97-21.86-21.97,21.86h43.94zm3.03-3.02v-43.72l-21.97,21.86,21.97,21.86zm-50,0l21.97-21.86-21.97-21.86v43.72zm25-24.87l21.97-21.86h-43.94l21.97,21.86z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="1.095" y2="57.53">
-<stop offset="0" stop-color="#F7FCF8"/>
-<stop offset="0.6242" stop-color="#CBCFCD"/>
-<stop offset="1" stop-color="#9FA4A4"/>
+<path d="M0.714,59.29V1.017h58.573V59.29 M51.97,55.026L30,33.169L8.03,55.026H51.97z M55.001,52.011V8.295L33.03,30.152L55.001,52.011z M5,52.011l21.97-21.858L5,8.295V52.011z M30,27.138L51.97,5.281H8.03L30,27.138z " fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="1.0952" y2="57.5348">
+<stop offset="0" style="stop-color:#F7FCF8"/>
+<stop offset="0.6242" style="stop-color:#CBCFCD"/>
+<stop offset="1" style="stop-color:#9FA4A4"/>
</linearGradient>
-<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm26.55,28.42l-23.7,23.58v-47.15l23.7,23.57zm-21.68-25.58h47.39l-23.7,23.57-23.7-23.57zm23.7,27.59l23.7,23.57h-47.4l23.7-23.57zm2.02-2.01l23.7-23.57v47.15l-23.7-23.58z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="4.57" y2="53.6">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M1.428,1.017v56.853h57.145V1.017H1.428z M27.98,29.442L4.285,53.018V5.869L27.98,29.442z M6.305,3.859h47.39L30,27.433L6.305,3.859z M30,31.452l23.695,23.574H6.305L30,31.452z M32.021,29.442L55.715,5.869v47.148 L32.021,29.442z" fill="url(#SVGID_3_)"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0005" x2="30.0005" y1="4.5698" y2="53.605">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M20,53.6c-1.924,0-3.583-1.555-3.698-3.462l-1.13-17.86h-0.17c-1.576,0-2.856-1.276-2.856-2.843v-4.264c0-1.567,1.281-2.842,2.856-2.842h12.5v-3.604c-0.361,0.029-0.728,0.043-1.099,0.043-2.795,0-5.822-0.82-8.524-2.312-4.18-2.304-7.19-6.002-7.856-9.653l-0.214-1.197,1.147-0.402c1.227-0.43,2.592-0.647,4.056-0.647,2.797,0,5.831,0.823,8.541,2.317,2.809,1.548,5.054,3.648,6.45,6.008,1.396-2.36,3.642-4.461,6.45-6.009,2.709-1.494,5.743-2.317,8.54-2.317,1.464,0,2.829,0.218,4.056,0.647l1.149,0.402-0.217,1.192c-0.666,3.65-3.676,7.349-7.855,9.654-2.703,1.49-5.73,2.31-8.523,2.31-0.372,0-0.738-0.014-1.1-0.043v3.604h12.5c1.575,0,2.855,1.275,2.855,2.842v4.264c0,1.567-1.28,2.843-2.855,2.843h-0.17l-1.132,17.86c-0.115,1.907-1.773,3.462-3.698,3.462h-20z" fill="url(#SVGID_4_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.281" y2="52.9">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M20,53.604c-1.924,0-3.583-1.555-3.698-3.462L15.17,32.285H15 c-1.576,0-2.856-1.276-2.856-2.843v-4.264c0-1.567,1.281-2.842,2.856-2.842H27.5v-3.604c-0.361,0.029-0.728,0.043-1.099,0.043 c-2.795,0-5.822-0.82-8.524-2.312c-4.18-2.304-7.19-6.002-7.856-9.653L9.806,5.62l1.147-0.402c1.227-0.43,2.592-0.647,4.056-0.647 c2.797,0,5.831,0.823,8.541,2.317c2.809,1.548,5.054,3.648,6.45,6.008c1.396-2.36,3.642-4.461,6.45-6.009 c2.709-1.494,5.743-2.317,8.54-2.317c1.464,0,2.829,0.218,4.056,0.647l1.149,0.402l-0.217,1.192 c-0.666,3.65-3.676,7.349-7.855,9.654c-2.703,1.49-5.73,2.31-8.523,2.31c-0.372,0-0.738-0.014-1.1-0.043v3.604h12.501 c1.575,0,2.855,1.275,2.855,2.842v4.264c0,1.567-1.28,2.843-2.855,2.843H44.83l-1.132,17.857c-0.115,1.907-1.773,3.462-3.698,3.462 H20z" fill="url(#SVGID_4_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.2808" y2="52.896">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M33.6,18.06h0.002c2.675,0,5.578-0.788,8.177-2.221,3.998-2.204,6.871-5.714,7.499-9.159l0.107-0.596-0.58-0.197c-1.151-0.403-2.437-0.607-3.819-0.607-2.678,0-5.589,0.791-8.194,2.228-3.18,1.751-5.6,4.251-6.8,6.931-1.199-2.687-3.617-5.185-6.795-6.936-2.607-1.438-5.518-2.228-8.195-2.228-1.383,0-2.668,0.204-3.819,0.607l-0.573,0.201,0.107,0.596c0.628,3.445,3.501,6.955,7.499,9.159,2.599,1.433,5.503,2.221,8.178,2.221,0.622,0,1.229-0.042,1.813-0.125v5.106h-13.21c-1.182,0-2.143,0.957-2.143,2.132v4.264c0,1.176,0.961,2.131,2.143,2.131h0.843l1.17,18.53c0.094,1.54,1.434,2.796,2.986,2.796h20c1.553,0,2.893-1.256,2.986-2.796l1.171-18.53h0.844c1.181,0,2.143-0.955,2.143-2.131v-4.264c0-1.175-0.962-2.132-2.143-2.132h-13.22v-5.11c0.585,0.08,1.195,0.12,1.815,0.12z" fill="url(#SVGID_5_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.37" x2="16.62" y1="39.75" y2="39.75">
-<stop offset="0" stop-color="#844D38"/>
-<stop offset="0.3" stop-color="#713631"/>
-<stop offset="1" stop-color="#92603E"/>
+<path d="M33.598,18.065c0.002,0,0.002,0,0.002,0c2.675,0,5.578-0.788,8.177-2.221 c3.998-2.204,6.871-5.714,7.499-9.159l0.107-0.596L48.81,5.888c-1.151-0.403-2.437-0.607-3.819-0.607 c-2.678,0-5.589,0.791-8.194,2.228C33.617,9.26,31.198,11.758,30,14.444c-1.199-2.687-3.617-5.185-6.795-6.936 c-2.607-1.438-5.518-2.228-8.195-2.228c-1.383,0-2.668,0.204-3.819,0.607l-0.573,0.201l0.107,0.596 c0.628,3.445,3.501,6.955,7.499,9.159c2.599,1.433,5.503,2.221,8.178,2.221c0.622,0,1.229-0.042,1.813-0.125v5.106H15 c-1.182,0-2.143,0.957-2.143,2.132v4.264c0,1.176,0.961,2.131,2.143,2.131h0.843L17.014,50.1c0.094,1.54,1.434,2.796,2.986,2.796 h20c1.553,0,2.893-1.256,2.986-2.796l1.171-18.526h0.844c1.181,0,2.143-0.955,2.143-2.131v-4.264c0-1.175-0.962-2.132-2.143-2.132 H31.785V17.94C32.37,18.023,32.976,18.065,33.598,18.065z" fill="url(#SVGID_5_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.3672" x2="16.6225" y1="39.7471" y2="39.7471">
+<stop offset="0" style="stop-color:#844D38"/>
+<stop offset="0.3" style="stop-color:#713631"/>
+<stop offset="1" style="stop-color:#92603E"/>
</linearGradient>
-<path d="M43.57,28.02h-27.14l1.299,21.32c0.072,1.17,1.094,2.129,2.273,2.129h20c1.18,0,2.201-0.959,2.273-2.129l1.3-21.32z" fill="url(#SVGID_6_)"/>
-<path d="M40.27,50.76h-20.54c-0.795,0-1.515-0.419-1.939-1.04,0.242,0.992,1.162,1.752,2.211,1.752h20c1.05,0,1.97-0.76,2.212-1.752-0.42,0.62-1.14,1.04-1.94,1.04z" fill="#46232D" fill-opacity="0.7" stroke-opacity="0.7"/>
-<path d="M30,30.86c6.11,0,10.08,0.573,13.37,1.227l0.205-3.359h-27.15l0.205,3.359c3.29-0.65,7.26-1.23,13.37-1.23z" fill="#46232D" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="28.87" x2="31.01" y1="21.27" y2="21.27">
-<stop offset="0" stop-color="#869D67"/>
-<stop offset="0.3758" stop-color="#476358"/>
-<stop offset="0.6303" stop-color="#182637"/>
-<stop offset="1" stop-color="#234851"/>
+<path d="M43.572,28.021H16.428l1.299,21.323c0.072,1.17,1.094,2.129,2.273,2.129h20 c1.18,0,2.201-0.959,2.273-2.129L43.572,28.021z" fill="url(#SVGID_6_)"/>
+<path d="M40.272,50.762H19.728c-0.795,0-1.515-0.419-1.939-1.04c0.242,0.992,1.162,1.752,2.211,1.752 h20c1.05,0,1.97-0.76,2.212-1.752C41.788,50.343,41.068,50.762,40.272,50.762z" fill="#46232D" fill-opacity="0.7" stroke-opacity="0.7"/>
+<path d="M30,30.864c6.11,0,10.076,0.573,13.367,1.227l0.205-3.359H16.428l0.205,3.359 C19.924,31.438,23.89,30.864,30,30.864z" fill="#46232D" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="28.8701" x2="31.0122" y1="21.27" y2="21.27">
+<stop offset="0" style="stop-color:#869D67"/>
+<stop offset="0.3758" style="stop-color:#476358"/>
+<stop offset="0.6303" style="stop-color:#182637"/>
+<stop offset="1" style="stop-color:#234851"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="9.238" width="2.142" x="28.93" y="16.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="46.43" x2="13.57" y1="26.6" y2="26.6">
-<stop offset="0" stop-color="#844D38"/>
-<stop offset="0.3" stop-color="#713631"/>
-<stop offset="1" stop-color="#92603E"/>
+<rect fill="url(#SVGID_7_)" height="9.238" width="2.142" x="28.929" y="16.651"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="46.4297" x2="13.5703" y1="26.5991" y2="26.5991">
+<stop offset="0" style="stop-color:#844D38"/>
+<stop offset="0.3" style="stop-color:#713631"/>
+<stop offset="1" style="stop-color:#92603E"/>
</linearGradient>
-<path d="M46.43,28.73c0,0.781-0.645,1.42-1.429,1.42h-30c-0.785,0-1.429-0.639-1.429-1.42v-4.264c0-0.782,0.644-1.421,1.429-1.421h30c0.784,0,1.429,0.64,1.429,1.421v4.262z" fill="url(#SVGID_8_)"/>
-<path d="M45,29.44h-30c-0.785,0-1.429-0.64-1.429-1.42v0.71c0,0.781,0.644,1.42,1.429,1.42h30c0.784,0,1.429-0.639,1.429-1.42v-0.71c0,0.78-0.65,1.42-1.43,1.42z" fill="#46232D" fill-opacity="0.7" stroke-opacity="0.7"/>
-<path d="M45,23.05h-30c-0.785,0-1.429,0.64-1.429,1.421v0.71c0-0.781,0.644-1.421,1.429-1.421h30c0.784,0,1.429,0.64,1.429,1.421v-0.71c0-0.78-0.65-1.42-1.43-1.42z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.42" x2="30.04" y1="5.904" y2="16.9">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M46.43,28.732c0,0.781-0.645,1.42-1.429,1.42H15c-0.785,0-1.429-0.639-1.429-1.42v-4.264 c0-0.782,0.644-1.421,1.429-1.421h30.001c0.784,0,1.429,0.64,1.429,1.421V28.732z" fill="url(#SVGID_8_)"/>
+<path d="M45.001,29.442H15c-0.785,0-1.429-0.64-1.429-1.42v0.71c0,0.781,0.644,1.42,1.429,1.42 h30.001c0.784,0,1.429-0.639,1.429-1.42v-0.71C46.43,28.802,45.785,29.442,45.001,29.442z" fill="#46232D" fill-opacity="0.7" stroke-opacity="0.7"/>
+<path d="M45.001,23.046H15c-0.785,0-1.429,0.64-1.429,1.421v0.71c0-0.781,0.644-1.421,1.429-1.421 h30.001c0.784,0,1.429,0.64,1.429,1.421v-0.71C46.43,23.686,45.785,23.046,45.001,23.046z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.4175" x2="30.0361" y1="5.9038" y2="16.902">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M22.86,8.13c-3.974-2.19-8.299-2.669-11.43-1.572,0.57,3.138,3.167,6.474,7.142,8.665,3.973,2.19,8.299,2.669,11.43,1.572-0.57-3.13-3.17-6.47-7.14-8.66z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.12" x2="39.54" y1="18.21" y2="12.26">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M22.858,8.13c-3.974-2.19-8.299-2.669-11.43-1.572c0.57,3.138,3.167,6.474,7.142,8.665 c3.973,2.19,8.299,2.669,11.43,1.572C29.429,13.657,26.833,10.32,22.858,8.13z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="42.1152" x2="39.5384" y1="18.2144" y2="12.261">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M37.14,8.13c3.974-2.19,8.299-2.669,11.43-1.572-0.569,3.138-3.167,6.474-7.142,8.665-3.973,2.19-8.299,2.669-11.43,1.572,0.57-3.13,3.17-6.47,7.14-8.66z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="18.88" x2="20.66" y1="18.17" y2="11.88">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M37.142,8.13c3.974-2.19,8.299-2.669,11.43-1.572c-0.569,3.138-3.167,6.474-7.142,8.665 c-3.973,2.19-8.299,2.669-11.43,1.572C30.571,13.657,33.167,10.32,37.142,8.13z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="18.8848" x2="20.6575" y1="18.1733" y2="11.8801">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M18.57,15.22c3.973,2.19,8.299,2.669,11.43,1.572,0,0-7.308-3.236-9.777-4.551-3.304-1.759-8.794-5.685-8.794-5.685,0.57,3.141,3.17,6.475,7.14,8.665z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="48.8" x2="29.48" y1="4.137" y2="15.73">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M18.57,15.223c3.973,2.19,8.299,2.669,11.43,1.572c0,0-7.308-3.236-9.777-4.551 c-3.304-1.759-8.794-5.685-8.794-5.685C11.999,9.696,14.596,13.032,18.57,15.223z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="48.8037" x2="29.4835" y1="4.1372" y2="15.7295">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M37.14,8.13c-3.975,2.19-6.57,5.527-7.142,8.665,0,0,6.843-2.558,9.867-4.285,3.393-1.937,8.704-5.952,8.704-5.952-3.13-1.107-7.45-0.628-11.43,1.562z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.71" x2="20.71" y1="6.366" y2="15.88">
-<stop offset="0" stop-color="#CFDCAD"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M37.142,8.13c-3.975,2.19-6.57,5.527-7.142,8.665c0,0,6.843-2.558,9.867-4.285 c3.393-1.937,8.704-5.952,8.704-5.952C45.44,5.461,41.115,5.94,37.142,8.13z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="20.7144" x2="20.7144" y1="6.3657" y2="15.8773">
+<stop offset="0" style="stop-color:#CFDCAD"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M22.86,8.13c-3.974-2.19-8.299-2.669-11.43-1.572,3.953-0.562,7.701,0.2,11.08,2.193,3.334,1.965,5.657,4.691,7.488,8.043-0.57-3.13-3.17-6.47-7.14-8.66z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="39.29" x2="39.29" y1="6.069" y2="16.06">
-<stop offset="0" stop-color="#CFDCAD"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M22.858,8.13c-3.974-2.19-8.299-2.669-11.43-1.572c3.953-0.562,7.701,0.2,11.083,2.193 c3.334,1.965,5.657,4.691,7.488,8.043C29.429,13.657,26.833,10.32,22.858,8.13z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="39.2861" x2="39.2861" y1="6.0693" y2="16.0647">
+<stop offset="0" style="stop-color:#CFDCAD"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M37.49,8.751c5.281-3.037,11.08-2.193,11.08-2.193-3.13-1.097-7.45-0.618-11.43,1.572-3.975,2.19-6.57,5.527-7.142,8.665,0-0.01,1.95-4.86,7.49-8.049z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.88" x2="20.66" y1="18.17" y2="11.88">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="0.2303" stop-color="#C2D090"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M37.487,8.751c5.281-3.037,11.084-2.193,11.084-2.193C45.44,5.461,41.115,5.94,37.142,8.13 c-3.975,2.19-6.57,5.527-7.142,8.665C30,16.794,31.95,11.937,37.487,8.751z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.8848" x2="20.6575" y1="18.1733" y2="11.8801">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="0.2303" style="stop-color:#C2D090"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M18.92,14.6c-5.35-2.86-7.487-8.042-7.487-8.042,0.57,3.138,3.167,6.474,7.142,8.665,3.973,2.19,8.299,2.669,11.43,1.572,0,0-5,1.06-11.08-2.19z" fill="url(#SVGID_15_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.85" x2="39.69" y1="17.8" y2="13.28">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="0.2303" stop-color="#C2D090"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M18.916,14.601c-5.35-2.86-7.487-8.042-7.487-8.042 c0.57,3.138,3.167,6.474,7.142,8.665c3.973,2.19,8.299,2.669,11.43,1.572C30,16.794,25,17.854,18.916,14.601z" fill="url(#SVGID_15_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.8457" x2="39.6931" y1="17.7969" y2="13.275">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="0.2303" style="stop-color:#C2D090"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M41.08,14.6c-3.312,1.95-6.667,2.734-11.08,2.194,3.131,1.097,7.457,0.618,11.43-1.572,3.975-2.19,6.572-5.527,7.142-8.665-1.26,3.228-3.26,5.555-7.49,8.045z" fill="url(#SVGID_16_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="30" x2="30" y1="1.095" y2="57.53">
-<stop offset="0" stop-color="#CBCDCC"/>
-<stop offset="1" stop-color="#6F7172"/>
+<path d="M41.085,14.601c-3.312,1.95-6.667,2.734-11.085,2.194 c3.131,1.097,7.457,0.618,11.43-1.572c3.975-2.19,6.572-5.527,7.142-8.665C47.307,9.783,45.313,12.11,41.085,14.601z" fill="url(#SVGID_16_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="29.9995" x2="29.9995" y1="1.0952" y2="57.5348">
+<stop offset="0" style="stop-color:#CBCDCC"/>
+<stop offset="1" style="stop-color:#6F7172"/>
</linearGradient>
-<path d="M1.428,1.017v56.85h57.14v-56.85h-57.14zm56.43,56.14h-55.72v-55.43h55.72v55.43z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30" x2="30" y1="1.806" y2="57.12">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M1.428,1.017v56.853h57.145V1.017H1.428z M57.858,57.157H2.142V1.727h55.716V57.157z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="30" x2="30" y1="1.8057" y2="57.1214">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M2.142,1.727v55.43h55.72v-55.43h-55.72zm55,54.72h-54.28v-54.01h54.29v54.01z" fill="url(#SVGID_18_)"/>
-</svg>
\ No newline at end of file
+<path d="M2.142,1.727v55.43h55.716V1.727H2.142z M57.144,56.447H2.856V2.438h54.287V56.447z" fill="url(#SVGID_18_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_maps.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_maps.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.2" x2="240.2" y1="1779" y2="1825">
-<stop offset="0" stop-color="#7EB8BC"/>
-<stop offset="1" stop-color="#465684"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.1621" x2="240.1621" y1="1779.4043" y2="1824.6136">
+<stop offset="0" style="stop-color:#7EB8BC"/>
+<stop offset="1" style="stop-color:#465684"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="49.36,9.213,57.04,10.26,57.04,53.14,43.52,54.99,30,52.3,22.28,53.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.3" x2="237.3" y1="1791" y2="1824">
-<stop offset="0" stop-color="#B0DDC1"/>
-<stop offset="1" stop-color="#5586A0"/>
+<polygon fill="url(#SVGID_1_)" points="49.361,9.213 57.039,10.264 57.039,53.138 43.52,54.988 30.002,52.297 22.284,53.751 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.2617" x2="237.2617" y1="1791.29" y2="1823.7784">
+<stop offset="0" style="stop-color:#B0DDC1"/>
+<stop offset="1" style="stop-color:#5586A0"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="43.52,21.68,43.52,54.99,30,52.3,30,41.25"/>
-<polygon fill-opacity="0.25" points="50.26,9.347,43.52,23.58,30,43.17,23.38,53.56,20.23,54.15,47.88,9.016" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7" x2="224.7" y1="1777" y2="1823">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_2_)" points="43.52,21.685 43.52,54.988 30.002,52.297 30.002,41.25 "/>
+<polygon fill-opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 " stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7246" x2="224.7246" y1="1777.3057" y2="1823.4724">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="45.48,11.15,43.41,22.27,30,41.72,22.33,53.76,15.73,54.99,2.966,52.58,2.966,9.338,15.36,8.413,30,10.45,43.52,8.413"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.4" x2="223.4" y1="1822" y2="1778">
-<stop offset="0" stop-color="#A17945"/>
-<stop offset="1" stop-color="#C6BD82"/>
+<polygon fill="url(#SVGID_3_)" points="45.482,11.152 43.414,22.27 30.002,41.725 22.334,53.759 15.733,54.988 2.966,52.584 2.966,9.338 15.358,8.413 30.002,10.446 43.52,8.413 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.3672" x2="223.3672" y1="1821.5967" y2="1778.4828">
+<stop offset="0" style="stop-color:#A17945"/>
+<stop offset="1" style="stop-color:#C6BD82"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="30,10.45,30,41.72,22.33,53.76,15.73,54.99,15.73,8.466"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="247" x2="247" y1="1790" y2="1778">
-<stop offset="0" stop-color="#A17945"/>
-<stop offset="1" stop-color="#C6BD82"/>
+<polygon fill="url(#SVGID_4_)" points="30.002,10.446 30.002,41.725 22.334,53.759 15.733,54.988 15.733,8.466 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="246.9512" x2="246.9512" y1="1790.3203" y2="1777.6716">
+<stop offset="0" style="stop-color:#A17945"/>
+<stop offset="1" style="stop-color:#C6BD82"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="43.52,8.413,43.52,22.12,49.38,9.217"/>
-<path d="M16.48,54.84l11.49-17.23-4.842-2.408-7.341,10.15-7.165,8.278-2.291-0.423,9.408-11.08,5.523-7.851-5.782-2.847-12.51-2.56v-1.32l13,2.686,6.069,2.979,6.841-9.601-13.34-6.657-12.57-2.21v-2.042l12.97,2.171,13.97,6.972,4.002-6.801-3.909-1.375-5.803-4.013,2.769,0.382,3.052,2.232,4.547,1.656,2.688-4.564,2.62-0.386-3.501,5.915,4.996,2.688,2.188-3.465,2.255-5.396,1.271,0.173-3.554,7.663s-8.687,13.46-13.52,20.69l-11.7,17.26-1.84,0.33zm12.36-18.23l-4.9-2.489,6.734-9.471,4.502,2.188-6.33,9.77zm2.91-13.84l4.711,2.353,4.219-6.434-4.955-2.665-3.97,6.75z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.4" x2="225.4" y1="1823" y2="1789">
-<stop offset="0" stop-color="#DBD3AE"/>
-<stop offset="0.81" stop-color="#F5F3E8"/>
-<stop offset="1" stop-color="#F5F3E8"/>
+<polygon fill="url(#SVGID_5_)" points="43.52,8.413 43.52,22.115 49.383,9.217 "/>
+<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.3965" x2="225.3965" y1="1823.0439" y2="1789.2549">
+<stop offset="0" style="stop-color:#DBD3AE"/>
+<stop offset="0.81" style="stop-color:#F5F3E8"/>
+<stop offset="1" style="stop-color:#F5F3E8"/>
</linearGradient>
-<path d="M46.02,8.754l-2.476,5.931s-1.334,2.112-2.077,3.276l-5.482-2.949,3.524-5.947-1.787,0.241-3.056,4.998-4.625-1.697-3.417-2.63-2.114-0.292,5.51,3.755,4.268,1.503-4.276,7.272-14.14-7.055-12.88-2.16v1.483l12.62,2.208,13.67,6.826-0.164,0.277-6.977,9.795-6.365-3.099-12.8-2.63,0.005,0.742,12.75,2.651,5.965,2.939-5.926,8.307-9.111,10.79,1.693,0.316,7.417-8.591,7.281-10.16,5.416,2.667-11.57,17.26,1.051-0.198,12.09-18.13,13.55-20.4,3.266-7.185-0.82-0.111zm-16.01,26.24l-1.265,1.946-5.27-2.696,6.605-9.38,0.519-0.685,5.139,2.564-5.73,8.25zm6.55-9.51l-5.202-2.598,4.261-7.232,5.453,2.936-4.51,6.89z" fill="url(#SVGID_6_)"/>
-<polygon fill="#FFFFFF" points="38.25,47.88,43.53,36.76,48.27,47.88,43.53,45"/>
-<polygon fill-opacity="0.4" points="48.27,47.88,43.53,36.76,43.53,45" stroke-opacity="0.4"/>
-<ellipse cx="22.19" cy="28.44" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
-<path d="M24.98,28.44c0,0.592-1.25,1.073-2.786,1.073s-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076,1.53,0.01,2.79,0.49,2.79,1.08z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M30.11,6.172c-1.354,0.957-3.687,2.304-4.689,2.304h-0.003c-0.229-0.027-0.567-0.25-0.927-0.485-0.718-0.468-1.704-1.113-3.139-1.124-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729-4.94,1.903,1.134,2.934,0.667-0.256,5.98,15.49,2.866,2.022,0.742-3.411-1.496-3.874,0.268-0.689c0.55-1.418,1.795-3.936,2.793-4.645,0.263-0.185,0.994-0.554,1.581-0.849,0.595-0.301,1.11-0.558,1.413-0.751,2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983-1.63,1.16z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293" x2="-295.2" y1="-2176" y2="-2176">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.65" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<path d="M46.023,8.754l-2.476,5.931c0,0-1.334,2.112-2.077,3.276l-5.482-2.949l3.524-5.947l-1.787,0.241 l-3.056,4.998l-4.625-1.697l-3.417-2.63l-2.114-0.292l5.51,3.755l4.268,1.503l-4.276,7.272l-14.135-7.055L2.966,12.979v1.483 l12.621,2.208l13.674,6.826l-0.164,0.277l-6.977,9.795l-6.365-3.099L2.961,27.85l0.005,0.742l12.754,2.651l5.965,2.939l-5.926,8.307 l-9.111,10.79l1.693,0.316l7.417-8.591l7.281-10.156l5.416,2.667L16.876,54.777l1.051-0.198l12.09-18.127l13.55-20.397l3.266-7.185 L46.023,8.754z M30.012,34.986l-1.265,1.946l-5.27-2.696l6.605-9.38l0.519-0.685l5.139,2.564L30.012,34.986z M36.559,25.482 l-5.202-2.598l4.261-7.232l5.453,2.936L36.559,25.482z" fill="url(#SVGID_6_)"/>
+<polygon fill="#FFFFFF" points="38.253,47.876 43.529,36.76 48.269,47.876 43.529,45.003 "/>
+<polygon fill-opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 " stroke-opacity="0.4"/>
+<ellipse cx="22.188" cy="28.443" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
+<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293.0366" x2="-295.1697" y1="-2176.2671" y2="-2176.2671">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="14.29,10.44,16.3,9.666,22.49,25.72,22.08,27.62,20.48,26.49"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.4" x2="-295.9" y1="-2166" y2="-2166">
-<stop offset="0" stop-color="#4F4F4F"/>
-<stop offset="0.59" stop-color="#BFBFBF"/>
-<stop offset="1" stop-color="#6B6B6B"/>
+<polygon fill="url(#SVGID_7_)" points="14.286,10.442 16.297,9.666 22.493,25.715 22.077,27.618 20.482,26.49 "/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.3564" x2="-295.8871" y1="-2166.1377" y2="-2166.1377">
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="13.1,9.361,16.45,8.072,16.97,9.411,13.62,10.7"/>
-<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.34" y="10.03"/>
-<path d="M17.22,10.08s2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601,1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624-1.583,1.123-3.099,5.035-3.099,5.035l-4.13-10.7z" fill="#4F7D5A"/>
-<path d="M21.65,8.488c1.958,0.018,2.897,1.48,3.958,1.605,1.2,0.139,3.708-1.408,4.78-2.114,0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768c0,0.01,2.88-2.36,4.13-2.352z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_8_)" points="13.103,9.361 16.452,8.072 16.968,9.411 13.619,10.699 "/>
+<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
+<path d="M17.225,10.08c0,0,2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601 c1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624 c-1.583,1.123-3.099,5.035-3.099,5.035L17.225,10.08z" fill="#4F7D5A"/>
+<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_maps_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_maps_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,60 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.2" x2="240.2" y1="1779" y2="1825">
-<stop offset="0" stop-color="#7EB8BC"/>
-<stop offset="1" stop-color="#465684"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="240.1621" x2="240.1621" y1="1779.4043" y2="1824.6136">
+<stop offset="0" style="stop-color:#7EB8BC"/>
+<stop offset="1" style="stop-color:#465684"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="49.36,9.213,57.04,10.26,57.04,53.14,43.52,54.99,30,52.3,22.28,53.75"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.3" x2="237.3" y1="1791" y2="1824">
-<stop offset="0" stop-color="#B0DDC1"/>
-<stop offset="1" stop-color="#5586A0"/>
+<polygon fill="url(#SVGID_1_)" points="49.361,9.213 57.039,10.264 57.039,53.138 43.52,54.988 30.002,52.297 22.284,53.751 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="237.2617" x2="237.2617" y1="1791.29" y2="1823.7784">
+<stop offset="0" style="stop-color:#B0DDC1"/>
+<stop offset="1" style="stop-color:#5586A0"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="43.52,21.68,43.52,54.99,30,52.3,30,41.25"/>
-<polygon fill-opacity="0.25" points="50.26,9.347,43.52,23.58,30,43.17,23.38,53.56,20.23,54.15,47.88,9.016" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7" x2="224.7" y1="1777" y2="1823">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_2_)" points="43.52,21.685 43.52,54.988 30.002,52.297 30.002,41.25 "/>
+<polygon fill-opacity="0.25" points="50.26,9.347 43.52,23.584 30.002,43.172 23.378,53.564 20.226,54.149 47.881,9.016 " stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="224.7246" x2="224.7246" y1="1777.3057" y2="1823.4724">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="45.48,11.15,43.41,22.27,30,41.72,22.33,53.76,15.73,54.99,2.966,52.58,2.966,9.338,15.36,8.413,30,10.45,43.52,8.413"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.4" x2="223.4" y1="1822" y2="1778">
-<stop offset="0" stop-color="#A17945"/>
-<stop offset="1" stop-color="#C6BD82"/>
+<polygon fill="url(#SVGID_3_)" points="45.482,11.152 43.414,22.27 30.002,41.725 22.334,53.759 15.733,54.988 2.966,52.584 2.966,9.338 15.358,8.413 30.002,10.446 43.52,8.413 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.3672" x2="223.3672" y1="1821.5967" y2="1778.4828">
+<stop offset="0" style="stop-color:#A17945"/>
+<stop offset="1" style="stop-color:#C6BD82"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="30,10.45,30,41.72,22.33,53.76,15.73,54.99,15.73,8.466"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="247" x2="247" y1="1790" y2="1778">
-<stop offset="0" stop-color="#A17945"/>
-<stop offset="1" stop-color="#C6BD82"/>
+<polygon fill="url(#SVGID_4_)" points="30.002,10.446 30.002,41.725 22.334,53.759 15.733,54.988 15.733,8.466 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="246.9512" x2="246.9512" y1="1790.3203" y2="1777.6716">
+<stop offset="0" style="stop-color:#A17945"/>
+<stop offset="1" style="stop-color:#C6BD82"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="43.52,8.413,43.52,22.12,49.38,9.217"/>
-<path d="M16.48,54.84l11.49-17.23-4.842-2.408-7.341,10.15-7.165,8.278-2.291-0.423,9.408-11.08,5.523-7.851-5.782-2.847-12.51-2.56v-1.32l13,2.686,6.069,2.979,6.841-9.601-13.34-6.657-12.57-2.21v-2.042l12.97,2.171,13.97,6.972,4.002-6.801-3.909-1.375-5.803-4.013,2.769,0.382,3.052,2.232,4.547,1.656,2.688-4.564,2.62-0.386-3.501,5.915,4.996,2.688,2.188-3.465,2.255-5.396,1.271,0.173-3.554,7.663s-8.687,13.46-13.52,20.69l-11.7,17.26-1.84,0.33zm12.36-18.23l-4.9-2.489,6.734-9.471,4.502,2.188-6.33,9.77zm2.91-13.84l4.711,2.353,4.219-6.434-4.955-2.665-3.97,6.75z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.4" x2="225.4" y1="1823" y2="1789">
-<stop offset="0" stop-color="#DBD3AE"/>
-<stop offset="0.81" stop-color="#F5F3E8"/>
-<stop offset="1" stop-color="#F5F3E8"/>
+<polygon fill="url(#SVGID_5_)" points="43.52,8.413 43.52,22.115 49.383,9.217 "/>
+<path d="M16.483,54.842l11.49-17.231l-4.842-2.408l-7.341,10.153 l-7.165,8.278l-2.291-0.423l9.408-11.076l5.523-7.851l-5.782-2.847L2.966,28.87v-1.32l12.995,2.686l6.069,2.979l6.841-9.601 l-13.34-6.657L2.966,14.749v-2.042l12.971,2.171l13.968,6.972l4.002-6.801l-3.909-1.375l-5.803-4.013l2.769,0.382l3.052,2.232 l4.547,1.656l2.688-4.564L39.88,8.99l-3.501,5.915l4.996,2.688l2.188-3.465l2.255-5.396l1.271,0.173l-3.554,7.663 c0,0-8.687,13.462-13.519,20.691L18.318,54.506L16.483,54.842z M28.84,36.606l-4.9-2.489l6.734-9.471l4.502,2.188L28.84,36.606z M31.749,22.77l4.711,2.353l4.219-6.434l-4.955-2.665L31.749,22.77L31.749,22.77z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -200.5 -1768.5)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="225.3965" x2="225.3965" y1="1823.0439" y2="1789.2549">
+<stop offset="0" style="stop-color:#DBD3AE"/>
+<stop offset="0.81" style="stop-color:#F5F3E8"/>
+<stop offset="1" style="stop-color:#F5F3E8"/>
</linearGradient>
-<path d="M46.02,8.754l-2.476,5.931s-1.334,2.112-2.077,3.276l-5.482-2.949,3.524-5.947-1.787,0.241-3.056,4.998-4.625-1.697-3.417-2.63-2.114-0.292,5.51,3.755,4.268,1.503-4.276,7.272-14.14-7.055-12.88-2.16v1.483l12.62,2.208,13.67,6.826-0.164,0.277-6.977,9.795-6.365-3.099-12.8-2.63,0.005,0.742,12.75,2.651,5.965,2.939-5.926,8.307-9.111,10.79,1.693,0.316,7.417-8.591,7.281-10.16,5.416,2.667-11.57,17.26,1.051-0.198,12.09-18.13,13.55-20.4,3.266-7.185-0.82-0.111zm-16.01,26.24l-1.265,1.946-5.27-2.696,6.605-9.38,0.519-0.685,5.139,2.564-5.73,8.25zm6.55-9.51l-5.202-2.598,4.261-7.232,5.453,2.936-4.51,6.89z" fill="url(#SVGID_6_)"/>
-<polygon fill="#FFFFFF" points="38.25,47.88,43.53,36.76,48.27,47.88,43.53,45"/>
-<polygon fill-opacity="0.4" points="48.27,47.88,43.53,36.76,43.53,45" stroke-opacity="0.4"/>
-<ellipse cx="22.19" cy="28.44" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
-<path d="M24.98,28.44c0,0.592-1.25,1.073-2.786,1.073s-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076,1.53,0.01,2.79,0.49,2.79,1.08z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M30.11,6.172c-1.354,0.957-3.687,2.304-4.689,2.304h-0.003c-0.229-0.027-0.567-0.25-0.927-0.485-0.718-0.468-1.704-1.113-3.139-1.124-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729-4.94,1.903,1.134,2.934,0.667-0.256,5.98,15.49,2.866,2.022,0.742-3.411-1.496-3.874,0.268-0.689c0.55-1.418,1.795-3.936,2.793-4.645,0.263-0.185,0.994-0.554,1.581-0.849,0.595-0.301,1.11-0.558,1.413-0.751,2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983-1.63,1.16z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293" x2="-295.2" y1="-2176" y2="-2176">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.65" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<path d="M46.023,8.754l-2.476,5.931c0,0-1.334,2.112-2.077,3.276l-5.482-2.949l3.524-5.947l-1.787,0.241 l-3.056,4.998l-4.625-1.697l-3.417-2.63l-2.114-0.292l5.51,3.755l4.268,1.503l-4.276,7.272l-14.135-7.055L2.966,12.979v1.483 l12.621,2.208l13.674,6.826l-0.164,0.277l-6.977,9.795l-6.365-3.099L2.961,27.85l0.005,0.742l12.754,2.651l5.965,2.939l-5.926,8.307 l-9.111,10.79l1.693,0.316l7.417-8.591l7.281-10.156l5.416,2.667L16.876,54.777l1.051-0.198l12.09-18.127l13.55-20.397l3.266-7.185 L46.023,8.754z M30.012,34.986l-1.265,1.946l-5.27-2.696l6.605-9.38l0.519-0.685l5.139,2.564L30.012,34.986z M36.559,25.482 l-5.202-2.598l4.261-7.232l5.453,2.936L36.559,25.482z" fill="url(#SVGID_6_)"/>
+<polygon fill="#FFFFFF" points="38.253,47.876 43.529,36.76 48.269,47.876 43.529,45.003 "/>
+<polygon fill-opacity="0.4" points="48.269,47.876 43.529,36.76 43.529,45.003 " stroke-opacity="0.4"/>
+<ellipse cx="22.188" cy="28.443" fill="#333333" fill-opacity="0.2" rx="6.056" ry="2.335" stroke-opacity="0.2"/>
+<path d="M24.975,28.442c0,0.592-1.25,1.073-2.786,1.073 c-1.536,0-2.787-0.482-2.787-1.073c0-0.596,1.25-1.076,2.787-1.076C23.724,27.367,24.975,27.847,24.975,28.442z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30.108,6.172c-1.354,0.957-3.687,2.304-4.689,2.304c-0.001,0-0.001,0-0.003,0 c-0.229-0.027-0.567-0.25-0.927-0.485c-0.718-0.468-1.704-1.113-3.139-1.124c-1.059,0-2.665,1.035-3.74,1.829l-0.667-1.729 L11.995,8.87l1.134,2.934l0.667-0.256l5.98,15.49l2.866,2.022l0.742-3.411l-1.496-3.874l0.268-0.689 c0.55-1.418,1.795-3.936,2.793-4.645c0.263-0.185,0.994-0.554,1.581-0.849c0.595-0.301,1.11-0.558,1.413-0.751 c2.499-1.603,3.411-7.21,3.505-7.845l0.296-1.983L30.108,6.172z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-293.0366" x2="-295.1697" y1="-2176.2671" y2="-2176.2671">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="14.29,10.44,16.3,9.666,22.49,25.72,22.08,27.62,20.48,26.49"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.4" x2="-295.9" y1="-2166" y2="-2166">
-<stop offset="0" stop-color="#4F4F4F"/>
-<stop offset="0.59" stop-color="#BFBFBF"/>
-<stop offset="1" stop-color="#6B6B6B"/>
+<polygon fill="url(#SVGID_7_)" points="14.286,10.442 16.297,9.666 22.493,25.715 22.077,27.618 20.482,26.49 "/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -489.4615 -2117.6033)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-292.3564" x2="-295.8871" y1="-2166.1377" y2="-2166.1377">
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="13.1,9.361,16.45,8.072,16.97,9.411,13.62,10.7"/>
-<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.34" y="10.03"/>
-<path d="M17.22,10.08s2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601,1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624-1.583,1.123-3.099,5.035-3.099,5.035l-4.13-10.7z" fill="#4F7D5A"/>
-<path d="M21.65,8.488c1.958,0.018,2.897,1.48,3.958,1.605,1.2,0.139,3.708-1.408,4.78-2.114,0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768c0,0.01,2.88-2.36,4.13-2.352z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="url(#SVGID_8_)" points="13.103,9.361 16.452,8.072 16.968,9.411 13.619,10.699 "/>
+<rect fill-opacity="0.2" height="0.717" stroke-opacity="0.2" transform="matrix(-0.9328 0.3603 -0.3603 -0.9328 33.5485 14.5261)" width="2.155" x="14.343" y="10.032"/>
+<path d="M17.225,10.08c0,0,2.878-2.366,4.131-2.354c1.958,0.013,2.896,1.477,3.959,1.601 c1.55,0.183,5.289-2.455,5.289-2.455s-0.877,5.81-3.122,7.253c-0.59,0.375-2.456,1.218-3.026,1.624 c-1.583,1.123-3.099,5.035-3.099,5.035L17.225,10.08z" fill="#4F7D5A"/>
+<path d="M21.652,8.488c1.958,0.018,2.897,1.48,3.958,1.605 c1.2,0.139,3.708-1.408,4.78-2.114c0.14-0.665,0.209-1.11,0.209-1.11s-3.739,2.638-5.29,2.455c-1.059-0.124-1.999-1.588-3.957-1.602 c-1.252-0.009-4.13,2.355-4.13,2.355l0.297,0.768C17.521,10.848,20.398,8.48,21.652,8.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mass_storage.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mass_storage.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,129 +1,131 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.852" y2="57.61">
-<stop offset="0" stop-color="#6B6B6B"/>
-<stop offset="1" stop-color="#141414"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.8516" y2="57.6129">
+<stop offset="0" style="stop-color:#6B6B6B"/>
+<stop offset="1" style="stop-color:#141414"/>
</linearGradient>
-<path d="M51.82,56.54c0,0.805-0.65,1.455-1.455,1.455h-40.72c-0.804,0-1.456-0.65-1.456-1.455v-53.08c0-0.803,0.652-1.455,1.456-1.455h40.73c0.805,0,1.455,0.652,1.455,1.455v53.09z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.583" y2="56.9">
-<stop offset="0" stop-color="#C7C7C7"/>
-<stop offset="0.7394" stop-color="#2B2B2B"/>
-<stop offset="1" stop-color="#737373"/>
+<path d="M51.818,56.545c0,0.805-0.65,1.455-1.455,1.455H9.638c-0.804,0-1.456-0.65-1.456-1.455V3.455 C8.182,2.652,8.834,2,9.638,2h40.726c0.805,0,1.455,0.652,1.455,1.455V56.545z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.583" y2="56.8955">
+<stop offset="0" style="stop-color:#C7C7C7"/>
+<stop offset="0.7394" style="stop-color:#2B2B2B"/>
+<stop offset="1" style="stop-color:#737373"/>
</linearGradient>
-<path d="M9.638,57.27c-0.401,0-0.729-0.326-0.729-0.728v-53.08c0-0.401,0.327-0.728,0.729-0.728h40.73c0.401,0,0.728,0.326,0.728,0.728v53.09c0,0.401-0.326,0.728-0.728,0.728h-40.72z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.314" y2="56.18">
-<stop offset="0" stop-color="#8F8F8F"/>
-<stop offset="0.6303" stop-color="#393939"/>
-<stop offset="1" stop-color="#757575"/>
+<path d="M9.638,57.272c-0.401,0-0.729-0.326-0.729-0.728V3.455c0-0.401,0.327-0.728,0.729-0.728h40.726 c0.401,0,0.728,0.326,0.728,0.728v53.09c0,0.401-0.326,0.728-0.728,0.728H9.638z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.3145" y2="56.178">
+<stop offset="0" style="stop-color:#8F8F8F"/>
+<stop offset="0.6303" style="stop-color:#393939"/>
+<stop offset="1" style="stop-color:#757575"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="53.09" width="40.73" x="9.637" y="3.455"/>
-<path d="M45.02,12.96l2.573-2.569c0.853-0.854,0.853-2.235,0-3.088l-1.03-1.027c-0.854-0.852-2.232-0.852-3.086,0l-2.571,2.57,4.12,4.115z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M30,44.91c-10.83,0-19.64-8.805-19.64-19.64,0-10.82,8.81-19.64,19.64-19.64s19.64,8.813,19.64,19.64c0,10.83-8.81,19.64-19.64,19.64z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M30,44.18c-10.83,0-19.64-8.805-19.64-19.64,0-10.82,8.81-19.64,19.64-19.64s19.64,8.812,19.64,19.64c0,10.84-8.81,19.64-19.64,19.64z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M30,43.45c-10.83,0-19.64-8.805-19.64-19.64,0-10.83,8.81-19.64,19.64-19.64s19.64,8.812,19.64,19.64c0,10.84-8.81,19.64-19.64,19.64z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M30,42.73c-10.43,0-18.91-8.48-18.91-18.91s8.482-18.91,18.91-18.91,18.91,8.484,18.91,18.91c0,10.43-8.48,18.91-18.91,18.91z" fill="#BDBDBD"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.364" y2="42">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D4D4D4"/>
+<rect fill="url(#SVGID_3_)" height="53.09" width="40.727" x="9.637" y="3.455"/>
+<path d="M45.023,12.962l2.573-2.569c0.853-0.854,0.853-2.235,0-3.088l-1.03-1.027c-0.854-0.852-2.232-0.852-3.086,0 l-2.571,2.57L45.023,12.962z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M30,44.908c-10.828,0-19.638-8.805-19.638-19.636c0-10.825,8.81-19.638,19.638-19.638 s19.639,8.813,19.639,19.638C49.639,36.104,40.828,44.908,30,44.908L30,44.908z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,44.181c-10.828,0-19.638-8.805-19.638-19.636c0-10.825,8.81-19.637,19.638-19.637 s19.639,8.812,19.639,19.637C49.639,35.376,40.828,44.181,30,44.181L30,44.181z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,43.453c-10.828,0-19.638-8.805-19.638-19.635c0-10.826,8.81-19.638,19.638-19.638 s19.639,8.812,19.639,19.638C49.639,34.648,40.828,43.453,30,43.453L30,43.453z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,42.727c-10.426,0-18.908-8.48-18.908-18.908c0-10.426,8.482-18.91,18.908-18.91 s18.908,8.484,18.908,18.91C48.908,34.246,40.426,42.727,30,42.727L30,42.727z" fill="#BDBDBD"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.3638" y2="42.0003">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
-<circle cx="30" cy="23.82" fill="url(#SVGID_4_)" r="18.18"/>
-<path d="M30,30.46c-3.662,0-6.644-2.979-6.644-6.643,0-3.662,2.981-6.643,6.644-6.643s6.645,2.98,6.645,6.643c0,3.66-2.98,6.64-6.64,6.64z" fill="#FFFFFF"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="18.58" y2="29.27">
-<stop offset="0" stop-color="#A7A7A7"/>
-<stop offset="1" stop-color="#575757"/>
+<circle cx="29.999" cy="23.818" fill="url(#SVGID_4_)" r="18.181"/>
+<path d="M30,30.461c-3.662,0-6.644-2.979-6.644-6.643c0-3.662,2.981-6.643,6.644-6.643 c3.663,0,6.645,2.98,6.645,6.643C36.645,27.482,33.663,30.461,30,30.461L30,30.461z" fill="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="18.5815" y2="29.2736">
+<stop offset="0" style="stop-color:#A7A7A7"/>
+<stop offset="1" style="stop-color:#575757"/>
</linearGradient>
-<circle cx="30" cy="23.82" fill="url(#SVGID_5_)" r="5.455"/>
-<path d="M30,27.82c-1.403,0-2.545-1.141-2.545-2.546,0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544c0,1.41-1.14,2.55-2.54,2.55z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M30,27.09c-1.403,0-2.545-1.141-2.545-2.546,0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544c0,1.41-1.14,2.55-2.54,2.55z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="21.27" y2="25.88">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#9C9C9C"/>
+<circle cx="30" cy="23.818" fill="url(#SVGID_5_)" r="5.455"/>
+<path d="M30,27.818c-1.403,0-2.545-1.141-2.545-2.546c0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544 C32.545,26.678,31.403,27.818,30,27.818L30,27.818z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M30,27.091c-1.403,0-2.545-1.141-2.545-2.546c0-1.403,1.142-2.544,2.545-2.544s2.545,1.141,2.545,2.544 C32.545,25.95,31.403,27.091,30,27.091L30,27.091z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="21.2734" y2="25.8797">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#9C9C9C"/>
</linearGradient>
-<path d="M30,26.36c-1.403,0-2.545-1.141-2.545-2.545s1.142-2.545,2.545-2.545,2.545,1.141,2.545,2.545-1.14,2.54-2.54,2.54z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 0 1816.916)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="1777" y2="1793">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#BFBFBF"/>
+<path d="M30,26.363c-1.403,0-2.545-1.141-2.545-2.545s1.142-2.545,2.545-2.545s2.545,1.141,2.545,2.545 S31.403,26.363,30,26.363L30,26.363z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 0 1816.916)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="1776.7061" y2="1793.0983">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BFBFBF"/>
</linearGradient>
-<path d="M30,30.73c3.81,0,6.91-3.1,6.91-6.908h9.818c0,9.225-7.504,16.73-16.73,16.73s-16.73-7.502-16.73-16.73h9.819c0,3.81,3.1,6.91,6.91,6.91z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.27" x2="46.73" y1="7.818" y2="7.818">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#D4D4D4"/>
+<path d="M30,30.727c3.81,0,6.91-3.1,6.91-6.908h9.818c0,9.225-7.504,16.727-16.729,16.727 s-16.729-7.502-16.729-16.727h9.819C23.091,27.627,26.191,30.727,30,30.727z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.2734" x2="46.7285" y1="7.8184" y2="7.8184">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
-<path d="M46.73,7.816c0,0.406-0.325,0.73-0.729,0.73-0.4,0-0.726-0.324-0.726-0.73,0-0.402,0.325-0.727,0.726-0.727,0.4,0.001,0.73,0.325,0.73,0.727z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="48.18" x2="50.36" y1="54.73" y2="54.73">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#D4D4D4"/>
+<path d="M46.729,7.816c0,0.406-0.325,0.73-0.729,0.73c-0.4,0-0.726-0.324-0.726-0.73 c0-0.402,0.325-0.727,0.726-0.727C46.403,7.09,46.729,7.414,46.729,7.816z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="48.1797" x2="50.3633" y1="54.728" y2="54.728">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
-<path d="M50.36,54.73c0,0.604-0.489,1.093-1.09,1.093-0.603,0-1.094-0.489-1.094-1.093,0-0.6,0.491-1.09,1.094-1.09,0.6,0,1.09,0.49,1.09,1.09z" fill="url(#SVGID_9_)"/>
-<path d="M25.23,48.96c-1.146,0-3.191-0.967-3.472-1.135-0.158-0.096-3.782-2.328-2.635-4.234l0.034-0.057,0.076-0.105,7.997-9.101c0.427-0.602,1.117-0.959,1.856-0.959,0.411,0,0.813,0.112,1.167,0.323,1.021,0.617,1.392,1.911,0.858,2.969l-4.311,11.39-0.035,0.058c-0.34,0.57-0.89,0.86-1.55,0.86z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M23.78,48.23c-1.146,0-3.19-0.966-3.471-1.134-0.158-0.097-3.782-2.328-2.635-4.235l0.033-0.057,0.077-0.104,7.996-9.102c0.428-0.602,1.117-0.959,1.857-0.959,0.41,0,0.813,0.112,1.166,0.324,1.022,0.616,1.393,1.91,0.859,2.969l-4.311,11.39-0.035,0.058c-0.36,0.56-0.91,0.85-1.56,0.85z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="18.18" x2="29.18" y1="39.71" y2="39.71">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="0.0364" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#444444"/>
+<path d="M50.363,54.727c0,0.604-0.489,1.093-1.09,1.093c-0.603,0-1.094-0.489-1.094-1.093 c0-0.6,0.491-1.09,1.094-1.09C49.874,53.637,50.363,54.127,50.363,54.727z" fill="url(#SVGID_9_)"/>
+<path d="M25.234,48.957c-1.146,0-3.191-0.967-3.472-1.135c-0.158-0.096-3.782-2.328-2.635-4.234l0.034-0.057 l0.076-0.105l7.997-9.101c0.427-0.602,1.117-0.959,1.856-0.959c0.411,0,0.813,0.112,1.167,0.323 c1.021,0.617,1.392,1.911,0.858,2.969l-4.311,11.394l-0.035,0.058C26.436,48.668,25.888,48.957,25.234,48.957L25.234,48.957z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M23.779,48.229c-1.146,0-3.19-0.966-3.471-1.134c-0.158-0.097-3.782-2.328-2.635-4.235l0.033-0.057 l0.077-0.104l7.996-9.102c0.428-0.602,1.117-0.959,1.857-0.959c0.41,0,0.813,0.112,1.166,0.324c1.022,0.616,1.393,1.91,0.859,2.969 l-4.311,11.393l-0.035,0.058C24.981,47.94,24.433,48.229,23.779,48.229L23.779,48.229z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="18.1836" x2="29.1768" y1="39.707" y2="39.707">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="0.0364" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
-<path d="M23.78,46.78c-0.917,0-2.807-0.857-3.097-1.031-0.036-0.021-3.123-2.012-2.386-3.236l0.033-0.057,8.024-9.132c0.285-0.421,0.771-0.681,1.283-0.681,0.278,0,0.553,0.076,0.792,0.22,0.705,0.426,0.95,1.331,0.567,2.049l-4.302,11.37-0.034,0.057c-0.09,0.16-0.33,0.44-0.87,0.44z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(0.5666 0.3407 -0.3408 0.5666 193.5584 513.624)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-588.8" x2="-588.8" y1="-492.9" y2="-472.8">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<path d="M23.779,46.775c-0.917,0-2.807-0.857-3.097-1.031c-0.036-0.021-3.123-2.012-2.386-3.236l0.033-0.057 l8.024-9.132c0.285-0.421,0.771-0.681,1.283-0.681c0.278,0,0.553,0.076,0.792,0.22c0.705,0.426,0.95,1.331,0.567,2.049l-4.302,11.37 l-0.034,0.057C24.562,46.499,24.315,46.775,23.779,46.775L23.779,46.775z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(0.5666 0.3407 -0.3408 0.5666 193.5584 513.624)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-588.8296" x2="-588.8296" y1="-492.9287" y2="-472.7992">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M24.04,45.96c-0.233,0.387-2.597-0.607-2.981-0.838-0.384-0.234-2.37-1.852-2.137-2.238l8.016-9.123c0.234-0.385,0.736-0.508,1.12-0.277,0.385,0.232,0.509,0.732,0.28,1.117l-4.3,11.36z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(0.5666 0.3407 -0.3408 0.5666 193.5584 513.624)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-588.8" x2="-588.8" y1="-477.7" y2="-473.6">
-<stop offset="0" stop-color="#444444"/>
-<stop offset="0.5455" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#444444"/>
+<path d="M24.038,45.959c-0.233,0.387-2.597-0.607-2.981-0.838l0,0c-0.384-0.234-2.37-1.852-2.137-2.238 l8.016-9.123c0.234-0.385,0.736-0.508,1.12-0.277l0,0c0.385,0.232,0.509,0.732,0.28,1.117L24.038,45.959z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(0.5666 0.3407 -0.3408 0.5666 193.5584 513.624)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-588.8315" x2="-588.8315" y1="-477.6504" y2="-473.626">
+<stop offset="0" style="stop-color:#444444"/>
+<stop offset="0.5455" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
-<path d="M23.2,44.19c-0.384,0.643-1.219,0.852-1.863,0.463-0.642-0.387-0.849-1.221-0.463-1.863,0.389-0.641,1.221-0.848,1.863-0.463,0.64,0.39,0.85,1.22,0.46,1.86z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="9.638" x2="11.82" y1="54.73" y2="54.73">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#D4D4D4"/>
+<path d="M23.201,44.189c-0.384,0.643-1.219,0.852-1.863,0.463c-0.642-0.387-0.849-1.221-0.463-1.863 c0.389-0.641,1.221-0.848,1.863-0.463C23.381,42.715,23.588,43.547,23.201,44.189z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="9.6377" x2="11.8174" y1="54.728" y2="54.728">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#D4D4D4"/>
</linearGradient>
-<path d="M11.82,54.73c0,0.604-0.487,1.093-1.091,1.093-0.599,0-1.089-0.489-1.089-1.093,0-0.6,0.49-1.09,1.089-1.09,0.6,0,1.09,0.49,1.09,1.09z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.91" x2="20.91" y1="43.82" y2="55.53">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#444444"/>
+<path d="M11.817,54.727c0,0.604-0.487,1.093-1.091,1.093c-0.599,0-1.089-0.489-1.089-1.093 c0-0.6,0.49-1.09,1.089-1.09C11.33,53.637,11.817,54.127,11.817,54.727z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="20.9092" x2="20.9092" y1="43.8174" y2="55.5303">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
-<path d="M14,55.53c-1.205,0-2.185-0.98-2.185-2.186v-11.38c0-0.195,0.075-0.379,0.215-0.516l2.387-2.387c0.142-0.141,0.328-0.213,0.514-0.213,0.184,0,0.362,0.064,0.501,0.201,3.761,3.598,8.684,5.67,13.86,5.84,0.39,0.01,0.7,0.34,0.7,0.73v7.725c0,1.205-0.979,2.186-2.18,2.186h-13.82z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.91" x2="20.91" y1="43.43" y2="54.6">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#9C9C9C"/>
+<path d="M14.002,55.527c-1.205,0-2.185-0.98-2.185-2.186V41.965c0-0.195,0.075-0.379,0.215-0.516 l2.387-2.387c0.142-0.141,0.328-0.213,0.514-0.213c0.184,0,0.362,0.064,0.501,0.201c3.761,3.598,8.684,5.67,13.863,5.84 C29.689,44.902,30,45.229,30,45.617v7.725c0,1.205-0.979,2.186-2.18,2.186H14.002z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="20.9092" x2="20.9092" y1="43.4331" y2="54.5986">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#9C9C9C"/>
</linearGradient>
-<path d="M12.55,41.96v11.38c0,0.803,0.65,1.457,1.455,1.457h13.82c0.802,0,1.45-0.654,1.45-1.457v-7.723c-5.55-0.184-10.58-2.447-14.34-6.039l-2.38,2.38z" fill="url(#SVGID_15_)"/>
-<path d="M14.93,39.58l-2.386,2.387v0.969l2.386-2.389c3.76,3.592,8.788,5.861,14.34,6.043v-0.971c-5.55-0.19-10.58-2.45-14.34-6.04z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="26.73" x2="26.73" y1="48.62" y2="52.18">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#BFBFBF"/>
+<path d="M12.547,41.965v11.377c0,0.803,0.65,1.457,1.455,1.457H27.82c0.802,0,1.45-0.654,1.45-1.457V50 v-3.461v-0.922c-5.55-0.184-10.578-2.447-14.338-6.039L12.547,41.965z" fill="url(#SVGID_15_)"/>
+<path d="M14.933,39.578l-2.386,2.387v0.969l2.386-2.389c3.76,3.592,8.788,5.861,14.338,6.043v-0.049 v-0.922C23.721,45.434,18.692,43.17,14.933,39.578z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="26.7285" x2="26.7285" y1="48.6167" y2="52.1807">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BFBFBF"/>
</linearGradient>
-<path d="M26.73,52.18c-1.003,0-1.819-0.815-1.819-1.817,0-1.003,0.816-1.819,1.819-1.819s1.819,0.816,1.819,1.819c0,1-0.82,1.82-1.82,1.82z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="26.73" x2="26.73" y1="49.31" y2="51.45">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="0.0364" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#444444"/>
+<path d="M26.729,52.181c-1.003,0-1.819-0.815-1.819-1.817c0-1.003,0.816-1.819,1.819-1.819 s1.819,0.816,1.819,1.819C28.548,51.365,27.731,52.181,26.729,52.181L26.729,52.181z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="26.7275" x2="26.7275" y1="49.3149" y2="51.453">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="0.0364" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
-<path d="M27.82,50.36c0,0.605-0.492,1.09-1.092,1.09-0.604,0-1.093-0.484-1.093-1.09,0-0.602,0.489-1.092,1.093-1.092,0.6,0,1.09,0.49,1.09,1.09z" fill="url(#SVGID_17_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="15.09" x2="15.09" y1="42.07" y2="45.64">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#BFBFBF"/>
+<path d="M27.82,50.363c0,0.605-0.492,1.09-1.092,1.09c-0.604,0-1.093-0.484-1.093-1.09 c0-0.602,0.489-1.092,1.093-1.092C27.328,49.271,27.82,49.762,27.82,50.363z" fill="url(#SVGID_17_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="15.0928" x2="15.0928" y1="42.0718" y2="45.6377">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BFBFBF"/>
</linearGradient>
-<path d="M15.09,45.64c-1.002,0-1.816-0.817-1.816-1.821,0-1.002,0.814-1.817,1.816-1.817,1.003,0,1.817,0.815,1.817,1.817,0,1-0.81,1.82-1.82,1.82z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.09" x2="15.09" y1="42.77" y2="44.91">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="0.0364" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#444444"/>
+<path d="M15.092,45.638c-1.002,0-1.816-0.817-1.816-1.821c0-1.002,0.814-1.817,1.816-1.817 c1.003,0,1.817,0.815,1.817,1.817C16.909,44.82,16.095,45.638,15.092,45.638L15.092,45.638z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="15.0918" x2="15.0918" y1="42.77" y2="44.91">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="0.0364" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#444444"/>
</linearGradient>
-<path d="M16.18,43.82c0,0.605-0.487,1.094-1.09,1.094-0.604,0-1.09-0.488-1.09-1.094,0-0.598,0.486-1.09,1.09-1.09,0.6,0,1.09,0.49,1.09,1.09z" fill="url(#SVGID_19_)"/>
-<path d="M33.56,56.04c-1.056,0-1.914-0.859-1.914-1.915v-4.75c0-1.057,0.858-1.917,1.914-1.917h14.25c1.056,0,1.915,0.86,1.915,1.917v3.749l-0.642,0.077c-0.781,0.093-1.37,0.75-1.37,1.529,0,0.119,0.02,0.251,0.058,0.394l0.247,0.916h-14.46z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="40.69" x2="40.69" y1="48.26" y2="55.14">
-<stop offset="0" stop-color="#EDEED8"/>
-<stop offset="1" stop-color="#B08E5C"/>
+<path d="M16.182,43.816c0,0.605-0.487,1.094-1.09,1.094c-0.604,0-1.09-0.488-1.09-1.094 c0-0.598,0.486-1.09,1.09-1.09C15.694,42.727,16.182,43.219,16.182,43.816z" fill="url(#SVGID_19_)"/>
+<path d="M33.564,56.036c-1.056,0-1.914-0.859-1.914-1.915v-4.75c0-1.057,0.858-1.917,1.914-1.917h14.254 c1.056,0,1.915,0.86,1.915,1.917v3.749l-0.642,0.077c-0.781,0.093-1.37,0.75-1.37,1.529c0,0.119,0.02,0.251,0.058,0.394l0.247,0.916 H33.564z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="40.6914" x2="40.6914" y1="48.2568" y2="55.137">
+<stop offset="0" style="stop-color:#EDEED8"/>
+<stop offset="1" style="stop-color:#B08E5C"/>
</linearGradient>
-<path d="M49.01,52.48v-3.104c0-0.658-0.529-1.189-1.188-1.189h-14.26c-0.658,0-1.188,0.531-1.188,1.189v4.75c0,0.656,0.529,1.188,1.188,1.188h13.51c-0.05-0.185-0.083-0.381-0.083-0.582-0.01-1.18,0.87-2.13,2.01-2.26z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="40.69" x2="40.69" y1="48.97" y2="54.45">
-<stop offset="0" stop-color="#CEC694"/>
-<stop offset="1" stop-color="#AA8250"/>
+<path d="M49.006,52.475v-3.104c0-0.658-0.529-1.189-1.188-1.189H33.564c-0.658,0-1.188,0.531-1.188,1.189 v4.75c0,0.656,0.529,1.188,1.188,1.188h13.513c-0.05-0.185-0.083-0.381-0.083-0.582C46.994,53.564,47.874,52.609,49.006,52.475z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="40.6914" x2="40.6914" y1="48.9683" y2="54.4456">
+<stop offset="0" style="stop-color:#CEC694"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M33.56,54.58c-0.254,0-0.46-0.207-0.46-0.461v-4.75c0-0.256,0.206-0.463,0.46-0.463h14.25c0.254,0,0.46,0.207,0.46,0.463v2.53c-1.137,0.398-1.948,1.45-2.008,2.682h-12.7z" fill="url(#SVGID_21_)"/>
+<path d="M33.564,54.582c-0.254,0-0.46-0.207-0.46-0.461v-4.75c0-0.256,0.206-0.463,0.46-0.463h14.254 c0.254,0,0.46,0.207,0.46,0.463V51.9c-1.137,0.398-1.948,1.45-2.008,2.682H33.564z" fill="url(#SVGID_21_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_media_transfer.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_media_transfer.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,60 +1,66 @@
<?xml version="1.0" ?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<defs>
+</defs>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+ <stop offset="0" style="stop-color:#757575"/>
+ <stop offset="0.2424" style="stop-color:#000000"/>
+ <stop offset="0.8606" style="stop-color:#000000"/>
+ <stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" enable-background="new " fill="#FFFFFF" opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" enable-background="new " fill="#FFFFFF" opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+ <stop offset="0" style="stop-color:#000000"/>
+ <stop offset="0.5" style="stop-color:#666666"/>
+ <stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+ <stop offset="0" style="stop-color:#72B9C3"/>
+ <stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" enable-background="new " fill="#FFFFFF" opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+ <stop offset="0" style="stop-color:#000000"/>
+ <stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" enable-background="new " fill="#FFFFFF" opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M6.143,21.17c-1.4-1.901-1.891-4.344-1.01-6.266,0.771-1.682,2.729-3.143,5.596-3.912v3.697l14.61-7.282-14.61-7.287v4.396c-6.339,2.461-9.765,5.455-10.19,8.903-0.551,4.51,5.6,7.75,5.6,7.75z" fill-opacity="0.35"/>
-<path d="M23.83,8.502s2.109,4.297,1.037,6.59c-0.783,1.676-2.729,3.144-5.598,3.914v-3.698l-14.61,7.29,14.61,7.29v-4.395c6.339-2.462,9.765-5.456,10.19-8.907,0.55-4.5-5.42-7.928-5.63-8.068z" fill-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.3" x2="12.3" y1="2.134" y2="13.94">
-<stop offset="0" stop-color="#7DC4BD"/>
-<stop offset="1" stop-color="#5385B2"/>
+<defs>
+</defs>
+<path d="M6.143,21.174c-1.4-1.901-1.891-4.344-1.01-6.266c0.771-1.682,2.729-3.143,5.596-3.912v3.697L25.34,7.408 L10.729,0.121v4.396C4.391,6.978,0.965,9.972,0.543,13.422C-0.008,17.934,6.143,21.174,6.143,21.174z" opacity="0.35"/>
+<path d="M23.831,8.502c0,0,2.109,4.297,1.037,6.59c-0.783,1.676-2.729,3.144-5.598,3.914v-3.698L4.658,22.593 L19.27,29.88v-4.395c6.339-2.462,9.765-5.456,10.187-8.907C30.007,12.067,24.036,8.642,23.831,8.502z" opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.2998" x2="12.2998" y1="2.1343" y2="13.9368">
+ <stop offset="0" style="stop-color:#7DC4BD"/>
+ <stop offset="1" style="stop-color:#5385B2"/>
</linearGradient>
-<path d="M23.1,7.408l-11.37-5.671v3.47c-18.59,6.897-6.159,15.38-6.159,15.38-4.285-5.816,0.259-9.71,6.159-10.84v3.335l11.37-5.672z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.99" x2="11.99" y1="2.874" y2="12.66">
-<stop offset="0.006" stop-color="#6CB0BB"/>
-<stop offset="0.521" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#587BA4"/>
+<path d="M23.1,7.408L11.729,1.737v3.47c-18.59,6.897-6.159,15.376-6.159,15.376 c-4.285-5.816,0.259-9.71,6.159-10.841v3.335L23.1,7.408z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="11.9893" x2="11.9893" y1="2.874" y2="12.6614">
+ <stop offset="0.006" style="stop-color:#6CB0BB"/>
+ <stop offset="0.521" style="stop-color:#546F9F"/>
+ <stop offset="1" style="stop-color:#587BA4"/>
</linearGradient>
-<path d="M3.714,18.17c-0.988-1.184-1.9-2.796-1.682-4.572,0.365-2.964,3.686-5.63,9.87-7.925l0.326-0.121v-3.01l9.75,4.863-9.75,4.861v-3.132l-0.594,0.113c-3.993,0.766-6.945,2.676-7.898,5.109-0.361,0.91-0.561,2.2-0.028,3.81z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="17.7" x2="17.7" y1="16.92" y2="28.25">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
+<path d="M3.714,18.173c-0.988-1.184-1.9-2.796-1.682-4.572c0.365-2.964,3.686-5.63,9.87-7.925l0.326-0.121 v-3.01l9.75,4.863l-9.75,4.861V9.138l-0.594,0.113c-3.993,0.766-6.945,2.676-7.898,5.109C3.381,15.266,3.181,16.555,3.714,18.173 L3.714,18.173z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="17.6997" x2="17.6997" y1="16.9238" y2="28.2491">
+ <stop offset="0" style="stop-color:#D6DFCB"/>
+ <stop offset="0.9879" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M24.43,9.418c4.285,5.815-0.258,9.709-6.16,10.84v-3.336l-11.37,5.67,11.37,5.671v-3.469c18.59-6.89,6.16-15.37,6.16-15.37z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.01" x2="18.01" y1="18.05" y2="27.44">
-<stop offset="0" stop-color="#88A372"/>
-<stop offset="0.5389" stop-color="#2A4940"/>
-<stop offset="1" stop-color="#426E4B"/>
+<path d="M24.43,9.418c4.285,5.815-0.258,9.709-6.16,10.842v-3.336L6.899,22.593l11.371,5.671v-3.469 C36.862,17.896,24.43,9.418,24.43,9.418z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="18.0103" x2="18.0103" y1="18.0518" y2="27.4434">
+ <stop offset="0" style="stop-color:#88A372"/>
+ <stop offset="0.5389" style="stop-color:#2A4940"/>
+ <stop offset="1" style="stop-color:#426E4B"/>
</linearGradient>
-<path d="M8.02,22.59l9.75-4.861v3.134l0.595-0.114c4.054-0.778,6.933-2.642,7.899-5.112,0.354-0.904,0.555-2.193,0.021-3.811,0.987,1.183,1.9,2.796,1.682,4.571-0.365,2.965-3.686,5.632-9.871,7.927l-0.326,0.121v3.009l-9.74-4.87z" fill="url(#SVGID_4__)"/>
+<path d="M8.02,22.593l9.75-4.861v3.134l0.595-0.114c4.054-0.778,6.933-2.642,7.899-5.112 c0.354-0.904,0.555-2.193,0.021-3.811c0.987,1.183,1.9,2.796,1.682,4.571c-0.365,2.965-3.686,5.632-9.871,7.927l-0.326,0.121v3.009 L8.02,22.593z" fill="url(#SVGID_4__)"/>
<rect fill="none" height="30" width="30"/>
</g>
</svg>
\ No newline at end of file
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_meeting.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_meeting.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,83 +1,85 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="23.55" x2="23.55" y1="13.18" y2="47.8">
-<stop offset="0" stop-color="#CBBCA5"/>
-<stop offset="1" stop-color="#735851"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="23.5464" x2="23.5464" y1="13.1836" y2="47.804">
+<stop offset="0" style="stop-color:#CBBCA5"/>
+<stop offset="1" style="stop-color:#735851"/>
</linearGradient>
-<path d="M1,30.71l6.997-17.85,7.236,3.014s7.392-2.457,9.202-2.545c0.512-0.024,0.941,0.068,1.294,0.16,1.076,0.275,9.452,5.293,13.42,9.238,3.965,3.946,6.643,10.37,6.842,11.02,0.279,0.906,0.271,4.289-3.42,4.344,0.434,1.955-1.031,4.778-3.91,4.67,0.598,2.063-1.629,5.321-4.563,4.453,0.297,0.914-0.426,2.207-1.1,2.644-1.131,0.732-1.598,0.732-2.596,0.399-2.929-0.978-9.198-3.904-12.38-6.222-3.494-2.54-6.045-4.525-7.53-7.096-0.768-1.33-2.823-3.258-3.765-3.909-1.125-0.75-5.715-2.3-5.715-2.3z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="1006" cy="-265.8" gradientTransform="matrix(0.7982 0 0 0.7982 -783.5864 230.4873)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="42.1">
-<stop offset="0" stop-color="#EAE4D6"/>
-<stop offset="0.0909" stop-color="#EAE4D6"/>
-<stop offset="0.4182" stop-color="#D8CDB8"/>
-<stop offset="0.6364" stop-color="#CBBCA5"/>
-<stop offset="1" stop-color="#9B7F6C"/>
+<path d="M1,30.709l6.997-17.846l7.236,3.014c0,0,7.392-2.457,9.202-2.545c0.512-0.024,0.941,0.068,1.294,0.16 c1.076,0.275,9.452,5.293,13.415,9.238c3.965,3.946,6.643,10.371,6.842,11.024c0.279,0.906,0.271,4.289-3.42,4.344 c0.434,1.955-1.031,4.778-3.91,4.67c0.598,2.063-1.629,5.321-4.563,4.453c0.297,0.914-0.426,2.207-1.1,2.644 c-1.131,0.732-1.598,0.732-2.596,0.399c-2.929-0.978-9.198-3.904-12.384-6.222c-3.494-2.54-6.045-4.525-7.53-7.096 c-0.768-1.33-2.823-3.258-3.765-3.909C5.59,32.255,1,30.709,1,30.709z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="1006.4844" cy="-265.7949" gradientTransform="matrix(0.7982 0 0 0.7982 -783.5864 230.4873)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="42.1015">
+<stop offset="0" style="stop-color:#EAE4D6"/>
+<stop offset="0.0909" style="stop-color:#EAE4D6"/>
+<stop offset="0.4182" style="stop-color:#D8CDB8"/>
+<stop offset="0.6364" style="stop-color:#CBBCA5"/>
+<stop offset="1" style="stop-color:#9B7F6C"/>
</radialGradient>
-<path d="M31.42,49.68c-0.18,0-0.402-0.051-0.771-0.173-2.771-0.926-9.038-3.834-12.17-6.11-3.385-2.461-5.89-4.393-7.309-6.849-0.882-1.528-3.074-3.525-4.002-4.168-0.926-0.641-3.716-1.66-5.128-2.154l6.397-16.31,6.759,2.815,0.283-0.094c2.027-0.674,7.594-2.438,8.988-2.505l0.13-0.003c0.344,0,0.647,0.065,0.926,0.138,0.985,0.272,9.18,5.176,13.05,9.031,3.814,3.798,6.428,9.995,6.643,10.69,0.102,0.331,0.188,1.507-0.434,2.36-0.447,0.615-1.201,0.936-2.236,0.951l-0.98,0.015,0.213,0.956c0.186,0.834-0.084,1.857-0.688,2.609-0.4,0.499-1.121,1.093-2.283,1.093l-1.234-0.045,0.307,1.062c0.197,0.677-0.045,1.604-0.615,2.363-0.58,0.771-1.385,1.214-2.211,1.214-0.242,0-0.492-0.037-0.74-0.111l-1.453-0.43,0.467,1.44c0.158,0.49-0.32,1.434-0.775,1.729-0.64,0.4-0.92,0.48-1.16,0.48z" fill="url(#SVGID_2_)"/>
-<path d="M6.375,31.58c-0.744-0.516-2.684-1.271-4.152-1.807l-0.177,0.45c1.412,0.494,4.202,1.514,5.128,2.154,0.389,0.27,1.001,0.782,1.645,1.393-0.903-0.94-1.894-1.8-2.444-2.18z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M45.22,33.99c-0.215-0.698-2.828-6.896-6.643-10.69-0.127-0.125-0.27-0.255-0.404-0.383,3.598,3.817,6.041,9.604,6.248,10.28,0.102,0.331,0.189,1.507-0.432,2.36-0.449,0.615-1.201,0.935-2.238,0.95l-0.98,0.016,0.213,0.956c0.186,0.833-0.084,1.857-0.688,2.609-0.4,0.498-1.119,1.093-2.283,1.093l-1.232-0.045,0.307,1.062c0.195,0.677-0.047,1.604-0.617,2.362-0.578,0.771-1.385,1.215-2.211,1.215-0.242,0-0.492-0.037-0.74-0.111l-1.451-0.43,0.465,1.44c0.158,0.489-0.32,1.434-0.775,1.728-0.623,0.403-0.904,0.486-1.137,0.486-0.18,0-0.403-0.051-0.771-0.174-2.771-0.925-9.037-3.833-12.17-6.109-1.894-1.377-3.5-2.588-4.806-3.818,1.422,1.515,3.304,2.944,5.604,4.616,3.13,2.276,9.396,5.185,12.17,6.11,0.369,0.122,0.592,0.173,0.771,0.173,0.232,0,0.514-0.083,1.137-0.485,0.455-0.295,0.934-1.238,0.775-1.729l-0.467-1.44,1.453,0.43c0.248,0.074,0.498,0.111,0.74,0.111,0.826,0,1.631-0.442,2.211-1.214,0.57-0.759,0.813-1.687,0.615-2.363l-0.307-1.062,1.234,0.045c1.162,0,1.883-0.594,2.283-1.093,0.604-0.752,0.873-1.775,0.688-2.609l-0.213-0.956,0.98-0.015c1.035-0.016,1.789-0.336,2.236-0.951,0.65-0.87,0.57-2.05,0.46-2.38z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
-<path d="M45.99,33.76c-0.199-0.653-2.877-7.078-6.842-11.02-3.963-3.945-12.34-8.963-13.42-9.238-0.353-0.092-0.782-0.185-1.294-0.16-0.219,0.01-0.521,0.057-0.878,0.128-0.379,0.268-0.681,0.506-0.853,0.688l-0.221,0.234c-0.548,0.579-0.943,0.997-1.234,1.684-0.734,1.733-0.737,3.109-0.741,4.565-0.002,1.01-0.005,2.053-0.25,3.343l-0.074,0.386c-0.488,2.497-0.874,5.024,0.204,6.103,0.537,0.537,1.349,0.833,2.285,0.833,0.669,0,1.31-0.153,1.801-0.43,0.87-0.488,2.979-1.837,3.788-3.815,0.616-1.509,0.699-2.717,0.766-3.688,0.049-0.721,0.089-1.291,0.335-1.741,0.157-0.287,0.257-0.345,0.827-0.646,0.156-0.083,0.333-0.176,0.538-0.29,0.57-0.318,1.422-0.882,1.67-1.048,0.113-0.044,0.162-0.049,0.178-0.049,0.102,0,0.457,0.214,0.77,0.403,0.057,0.034,0.158,0.088,0.305,0.161,0.906,0.461,3.668,1.861,6.061,4.917,4.135,5.275,4.887,7.494,5.248,8.56,0.135,0.394,0.148,0.75,0.162,1.298,0.018,0.685-0.426,1.299-0.762,1.701l-0.34,0.438,0.215,0.459c0.021,0.047,0.068,0.114,0.127,0.183,1.85-0.92,1.82-3.23,1.6-3.95z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.87" x2="45.97" y1="11.23" y2="36.38">
-<stop offset="0" stop-color="#CBBCA5"/>
-<stop offset="1" stop-color="#735851"/>
+<path d="M31.424,49.681c-0.18,0-0.402-0.051-0.771-0.173c-2.771-0.926-9.038-3.834-12.168-6.11 c-3.385-2.461-5.89-4.393-7.309-6.849c-0.882-1.528-3.074-3.525-4.002-4.168c-0.926-0.641-3.716-1.66-5.128-2.154l6.397-16.313 l6.759,2.815l0.283-0.094c2.027-0.674,7.594-2.438,8.988-2.505l0.13-0.003c0.344,0,0.647,0.065,0.926,0.138 c0.985,0.272,9.18,5.176,13.053,9.031c3.814,3.798,6.428,9.995,6.643,10.693c0.102,0.331,0.188,1.507-0.434,2.36 c-0.447,0.615-1.201,0.936-2.236,0.951l-0.98,0.015l0.213,0.956c0.186,0.834-0.084,1.857-0.688,2.609 c-0.4,0.499-1.121,1.093-2.283,1.093l-1.234-0.045l0.307,1.062c0.197,0.677-0.045,1.604-0.615,2.363 c-0.58,0.771-1.385,1.214-2.211,1.214c-0.242,0-0.492-0.037-0.74-0.111l-1.453-0.43l0.467,1.44c0.158,0.49-0.32,1.434-0.775,1.729 C31.938,49.598,31.656,49.681,31.424,49.681L31.424,49.681z" fill="url(#SVGID_2_)"/>
+<path d="M6.375,31.583c-0.744-0.516-2.684-1.271-4.152-1.807l-0.177,0.45 c1.412,0.494,4.202,1.514,5.128,2.154c0.389,0.27,1.001,0.782,1.645,1.393C7.916,32.822,6.925,31.964,6.375,31.583z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M45.225,33.989c-0.215-0.698-2.828-6.896-6.643-10.693c-0.127-0.125-0.27-0.255-0.404-0.383 c3.598,3.817,6.041,9.604,6.248,10.278c0.102,0.331,0.189,1.507-0.432,2.36c-0.449,0.615-1.201,0.935-2.238,0.95l-0.98,0.016 l0.213,0.956c0.186,0.833-0.084,1.857-0.688,2.609c-0.4,0.498-1.119,1.093-2.283,1.093l-1.232-0.045l0.307,1.062 c0.195,0.677-0.047,1.604-0.617,2.362c-0.578,0.771-1.385,1.215-2.211,1.215c-0.242,0-0.492-0.037-0.74-0.111l-1.451-0.43 l0.465,1.44c0.158,0.489-0.32,1.434-0.775,1.728c-0.623,0.403-0.904,0.486-1.137,0.486c-0.18,0-0.403-0.051-0.771-0.174 c-2.771-0.925-9.037-3.833-12.167-6.109c-1.894-1.377-3.5-2.588-4.806-3.818c1.422,1.515,3.304,2.944,5.604,4.616 c3.13,2.276,9.396,5.185,12.168,6.11c0.369,0.122,0.592,0.173,0.771,0.173c0.232,0,0.514-0.083,1.137-0.485 c0.455-0.295,0.934-1.238,0.775-1.729l-0.467-1.44l1.453,0.43c0.248,0.074,0.498,0.111,0.74,0.111c0.826,0,1.631-0.442,2.211-1.214 c0.57-0.759,0.813-1.687,0.615-2.363l-0.307-1.062l1.234,0.045c1.162,0,1.883-0.594,2.283-1.093 c0.604-0.752,0.873-1.775,0.688-2.609l-0.213-0.956l0.98-0.015c1.035-0.016,1.789-0.336,2.236-0.951 C45.412,35.496,45.326,34.32,45.225,33.989z" fill="#FFFFFF" fill-opacity="0.75" stroke-opacity="0.75"/>
+<path d="M45.986,33.755c-0.199-0.653-2.877-7.078-6.842-11.024c-3.963-3.945-12.339-8.963-13.415-9.238 c-0.353-0.092-0.782-0.185-1.294-0.16c-0.219,0.01-0.521,0.057-0.878,0.128c-0.379,0.268-0.681,0.506-0.853,0.688l-0.221,0.234 c-0.548,0.579-0.943,0.997-1.234,1.684c-0.734,1.733-0.737,3.109-0.741,4.565c-0.002,1.01-0.005,2.053-0.25,3.343l-0.074,0.386 c-0.488,2.497-0.874,5.024,0.204,6.103c0.537,0.537,1.349,0.833,2.285,0.833c0.669,0,1.31-0.153,1.801-0.43 c0.87-0.488,2.979-1.837,3.788-3.815c0.616-1.509,0.699-2.717,0.766-3.688c0.049-0.721,0.089-1.291,0.335-1.741 c0.157-0.287,0.257-0.345,0.827-0.646c0.156-0.083,0.333-0.176,0.538-0.29c0.57-0.318,1.422-0.882,1.67-1.048 c0.113-0.044,0.162-0.049,0.178-0.049c0.102,0,0.457,0.214,0.77,0.403c0.057,0.034,0.158,0.088,0.305,0.161 c0.906,0.461,3.668,1.861,6.061,4.917c4.135,5.275,4.887,7.494,5.248,8.56c0.135,0.394,0.148,0.75,0.162,1.298 c0.018,0.685-0.426,1.299-0.762,1.701l-0.34,0.438l0.215,0.459c0.021,0.047,0.068,0.114,0.127,0.183 C46.244,36.786,46.209,34.479,45.986,33.755z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.8706" x2="45.9676" y1="11.2334" y2="36.3762">
+<stop offset="0" style="stop-color:#CBBCA5"/>
+<stop offset="1" style="stop-color:#735851"/>
</linearGradient>
-<path d="M59,27.92l-8.115-16.5-7.504,3.165s-7.693-4.752-9.484-5.024c-0.508-0.076-0.945-0.026-1.305,0.028-1.098,0.164-8.218,3.945-9.304,5.104-0.66,0.704-1.037,1.056-1.303,1.685-1.16,2.737-0.326,4.507-0.942,7.746-0.278,1.47-1.034,4.831-0.09,5.774,0.76,0.761,2.31,0.734,3.131,0.271,0.579-0.325,2.698-1.605,3.439-3.421,1.05-2.57,0.419-4.194,1.141-5.512,0.347-0.632,0.697-0.704,1.675-1.249,0.64-0.356,1.683-1.059,1.683-1.059,0.643-0.272,0.869-0.146,1.738,0.38,0.389,0.235,3.746,1.652,6.58,5.268,4.199,5.357,4.996,7.675,5.375,8.797,0.178,0.521,0.191,0.993,0.205,1.534,0.023,0.988-0.584,1.796-0.947,2.23-0.098,0.119,0.234,0.078,0.336,0.064,1.34-0.19,3.068-2.092,3.395-2.58,0.324-0.488,2.117-2.229,2.66-2.715,1.02-0.92,7.62-3.98,7.62-3.98z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="39.6" x2="39.6" y1="11.39" y2="33.42">
-<stop offset="0" stop-color="#EAE4D6"/>
-<stop offset="0.1455" stop-color="#EAE4D6"/>
-<stop offset="0.3576" stop-color="#D8CDB8"/>
-<stop offset="0.5697" stop-color="#CBBCA5"/>
-<stop offset="1" stop-color="#9B7F6C"/>
+<path d="M59,27.916l-8.115-16.495l-7.504,3.165c0,0-7.693-4.752-9.484-5.024 c-0.508-0.076-0.945-0.026-1.305,0.028c-1.098,0.164-8.218,3.945-9.304,5.104c-0.66,0.704-1.037,1.056-1.303,1.685 c-1.16,2.737-0.326,4.507-0.942,7.746c-0.278,1.47-1.034,4.831-0.09,5.774c0.76,0.761,2.31,0.734,3.131,0.271 c0.579-0.325,2.698-1.605,3.439-3.421c1.05-2.57,0.419-4.194,1.141-5.512c0.347-0.632,0.697-0.704,1.675-1.249 c0.64-0.356,1.683-1.059,1.683-1.059c0.643-0.272,0.869-0.146,1.738,0.38c0.389,0.235,3.746,1.652,6.58,5.268 c4.199,5.357,4.996,7.675,5.375,8.797c0.178,0.521,0.191,0.993,0.205,1.534c0.023,0.988-0.584,1.796-0.947,2.23 c-0.098,0.119,0.234,0.078,0.336,0.064c1.34-0.19,3.068-2.092,3.395-2.58c0.324-0.488,2.117-2.229,2.66-2.715 C52.395,30.984,59,27.916,59,27.916z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="39.6035" x2="39.6035" y1="11.3853" y2="33.4196">
+<stop offset="0" style="stop-color:#EAE4D6"/>
+<stop offset="0.1455" style="stop-color:#EAE4D6"/>
+<stop offset="0.3576" style="stop-color:#D8CDB8"/>
+<stop offset="0.5697" style="stop-color:#CBBCA5"/>
+<stop offset="1" style="stop-color:#9B7F6C"/>
</linearGradient>
-<path d="M46.66,35.6c0.043-0.224,0.066-0.46,0.061-0.706-0.014-0.554-0.027-1.127-0.244-1.77-0.391-1.15-1.201-3.545-5.504-9.034-2.613-3.333-5.611-4.854-6.598-5.354-0.094-0.048-0.16-0.082-0.199-0.104-0.631-0.382-1.049-0.634-1.596-0.634-0.268,0-0.535,0.063-0.865,0.202l-0.07,0.029-0.064,0.043c-0.01,0.007-1.024,0.688-1.627,1.025-0.191,0.106-0.358,0.194-0.505,0.272-0.632,0.334-1.089,0.574-1.48,1.289-0.416,0.76-0.47,1.557-0.528,2.401-0.062,0.901-0.132,1.922-0.65,3.192-0.506,1.235-1.929,2.373-3.091,3.026-0.248,0.14-0.638,0.226-1.021,0.226-0.495,0-0.928-0.137-1.156-0.365-0.377-0.376-0.298-1.946,0.233-4.668l0.076-0.394c0.273-1.436,0.275-2.604,0.278-3.637,0.003-1.347,0.006-2.51,0.614-3.947,0.179-0.421,0.428-0.684,0.924-1.209l0.227-0.24c0.938-1.001,7.839-4.691,8.843-4.859,0.197-0.03,0.414-0.059,0.652-0.059,0.129,0,0.268,0.009,0.412,0.03,1.186,0.18,6.264,3.109,9.184,4.914l0.35,0.217,7.191-3.033,7.422,15.09c-1.912,0.902-6.18,2.959-7.094,3.775-0.432,0.387-2.379,2.246-2.791,2.867-0.18,0.26-0.75,0.88-1.38,1.41z" fill="url(#SVGID_4_)"/>
-<path d="M26.85,43.41c0.38-0.857,0.549-2.018-1.039-3.516-1.023-0.965-1.958-1.436-2.854-1.436-0.119,0-0.234,0.009-0.344,0.024,0.087-0.882-0.194-1.889-1.489-2.972-0.917-0.768-1.969-1.189-2.962-1.189-0.208,0-0.411,0.019-0.606,0.056-0.023-1.094-0.664-2.025-1.983-3.006-0.747-0.556-1.516-0.837-2.283-0.837-0.83,0-1.648,0.329-2.433,0.979l-0.127,0.104c-0.866,0.717-2.014,1.67-2.574,2.625,0.89,0.835,1.853,1.881,2.325,2.701,1.485,2.57,4.036,4.556,7.53,7.096,2.586,1.881,7.201,4.162,10.41,5.478,1.007-1.348,1.659-3.19,0.548-4.461-0.79-0.88-1.48-1.42-2.13-1.63z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10.37" x2="27.07" y1="32.73" y2="49.43">
-<stop offset="0" stop-color="#CBBCA5"/>
-<stop offset="1" stop-color="#735851"/>
+<path d="M46.656,35.595c0.043-0.224,0.066-0.46,0.061-0.706c-0.014-0.554-0.027-1.127-0.244-1.77 c-0.391-1.15-1.201-3.545-5.504-9.034c-2.613-3.333-5.611-4.854-6.598-5.354c-0.094-0.048-0.16-0.082-0.199-0.104 c-0.631-0.382-1.049-0.634-1.596-0.634c-0.268,0-0.535,0.063-0.865,0.202l-0.07,0.029l-0.064,0.043 c-0.01,0.007-1.024,0.688-1.627,1.025c-0.191,0.106-0.358,0.194-0.505,0.272c-0.632,0.334-1.089,0.574-1.48,1.289 c-0.416,0.76-0.47,1.557-0.528,2.401c-0.062,0.901-0.132,1.922-0.65,3.192c-0.506,1.235-1.929,2.373-3.091,3.026 c-0.248,0.14-0.638,0.226-1.021,0.226c-0.495,0-0.928-0.137-1.156-0.365c-0.377-0.376-0.298-1.946,0.233-4.668l0.076-0.394 c0.273-1.436,0.275-2.604,0.278-3.637c0.003-1.347,0.006-2.51,0.614-3.947c0.179-0.421,0.428-0.684,0.924-1.209l0.227-0.24 c0.938-1.001,7.839-4.691,8.843-4.859c0.197-0.03,0.414-0.059,0.652-0.059c0.129,0,0.268,0.009,0.412,0.03 c1.186,0.18,6.264,3.109,9.184,4.914l0.35,0.217l7.191-3.033l7.422,15.089c-1.912,0.902-6.18,2.959-7.094,3.775 c-0.432,0.387-2.379,2.246-2.791,2.867C47.857,34.452,47.287,35.074,46.656,35.595L46.656,35.595z" fill="url(#SVGID_4_)"/>
+<path d="M26.854,43.412c0.38-0.857,0.549-2.018-1.039-3.516c-1.023-0.965-1.958-1.436-2.854-1.436 c-0.119,0-0.234,0.009-0.344,0.024c0.087-0.882-0.194-1.889-1.489-2.972c-0.917-0.768-1.969-1.189-2.962-1.189 c-0.208,0-0.411,0.019-0.606,0.056c-0.023-1.094-0.664-2.025-1.983-3.006c-0.747-0.556-1.516-0.837-2.283-0.837 c-0.83,0-1.648,0.329-2.433,0.979l-0.127,0.104c-0.866,0.717-2.014,1.67-2.574,2.625c0.89,0.835,1.853,1.881,2.325,2.701 c1.485,2.57,4.036,4.556,7.53,7.096c2.586,1.881,7.201,4.162,10.414,5.478c1.007-1.348,1.659-3.19,0.548-4.461 C28.188,44.157,27.498,43.62,26.854,43.412z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10.3682" x2="27.0654" y1="32.7324" y2="49.4296">
+<stop offset="0" style="stop-color:#CBBCA5"/>
+<stop offset="1" style="stop-color:#735851"/>
</linearGradient>
-<path d="M8.715,34.9c0.399-0.931,1.771-2.036,2.655-2.769,1.198-0.993,2.428-1.084,3.73-0.116,1.846,1.372,2.013,2.401,1.197,4.066,1.015-1.415,2.894-1.147,4.318,0.045,1.843,1.542,1.169,2.698,0.684,3.902,0.734-0.506,1.74-1.65,3.968,0.449,2.019,1.905,0.559,2.737,0.199,3.994,0.559-0.559,1.358-0.659,2.909,1.113,0.96,1.098-0.105,2.851-0.661,3.565-0.476,0.612-1.67,1.419-2.908,0.85-2.462-1.132-6.817-3.681-11.06-7.068-6.123-4.88-5.591-6.72-5.035-8.02z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.47" x2="16.55" y1="37.86" y2="44.05">
-<stop offset="0" stop-color="#EAE4D6"/>
-<stop offset="0.1091" stop-color="#EAE4D6"/>
-<stop offset="0.3212" stop-color="#D8CDB8"/>
-<stop offset="0.5273" stop-color="#CBBCA5"/>
-<stop offset="1" stop-color="#9B7F6C"/>
+<path d="M8.715,34.899c0.399-0.931,1.771-2.036,2.655-2.769c1.198-0.993,2.428-1.084,3.73-0.116 c1.846,1.372,2.013,2.401,1.197,4.066c1.015-1.415,2.894-1.147,4.318,0.045c1.843,1.542,1.169,2.698,0.684,3.902 c0.734-0.506,1.74-1.65,3.968,0.449c2.019,1.905,0.559,2.737,0.199,3.994c0.559-0.559,1.358-0.659,2.909,1.113 c0.96,1.098-0.105,2.851-0.661,3.565c-0.476,0.612-1.67,1.419-2.908,0.85c-2.462-1.132-6.817-3.681-11.059-7.068 C7.627,38.04,8.159,36.197,8.715,34.899z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.4702" x2="16.5483" y1="37.8623" y2="44.0481">
+<stop offset="0" style="stop-color:#EAE4D6"/>
+<stop offset="0.1091" style="stop-color:#EAE4D6"/>
+<stop offset="0.3212" style="stop-color:#D8CDB8"/>
+<stop offset="0.5273" style="stop-color:#CBBCA5"/>
+<stop offset="1" style="stop-color:#9B7F6C"/>
</linearGradient>
-<path d="M25.68,49.4c-0.186,0-0.362-0.039-0.539-0.12-2.361-1.087-6.632-3.563-10.9-6.967-5.838-4.666-5.187-6.186-4.798-7.095,0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.107c0.497-0.41,0.959-0.61,1.414-0.61,0.423,0,1.226,0.357,1.683,0.729,1.072,0.873,1.247,1.347,1.297,1.796,0.05,0.448-0.299,1.596-0.398,2.045,0.474-0.324,1.78-0.784,2.292-0.784,0.61,0,1.316,0.299,1.938,0.818,1.259,1.054,1.182,1.163,1.057,2.161,0,0-0.448,1.321-0.573,1.796,1.197-0.1,1.646-0.873,2.373-0.638,0.434,0.14,1.064,0.346,1.759,1.001,1.071,1.011,1.071,1.202,0.807,2.056-0.225,0.724-0.848,2.096-0.848,2.096s1.247-0.449,1.546-0.424c0.309,0.025,0.55,0.181,1.551,1.324,0.54,0.618-0.216,1.938-0.69,2.551-0.22,0.27-0.79,0.71-1.4,0.71z" fill="url(#SVGID_6_)"/>
-<path d="M26.27,45.38c0.324,0.149,0.5,0.38,1.501,1.523,0.055,0.063,0.087,0.137,0.116,0.211,0.104-0.389,0.104-0.758-0.116-1.009-1.001-1.144-1.242-1.299-1.551-1.324-0.188-0.016-0.747,0.154-1.139,0.284,0.45,0.17,0.92,0.2,1.19,0.32z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M22.96,40.86c0.434,0.141,1.064,0.347,1.759,1.001,0.498,0.47,0.759,0.762,0.874,1.026,0.185-0.663,0.092-0.914-0.874-1.824-0.694-0.655-1.325-0.861-1.759-1.001-0.671-0.218-1.113,0.419-2.117,0.597,0.85-0.07,1.39-0.05,2.12,0.19z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M9.448,36.01c0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.106c0.497-0.411,0.959-0.611,1.414-0.611,0.423,0,1.226,0.357,1.683,0.729,0.881,0.717,1.153,1.163,1.251,1.549,0.038-0.22,0.061-0.418,0.046-0.551-0.05-0.449-0.225-0.923-1.297-1.796-0.457-0.372-1.26-0.729-1.683-0.729-0.455,0-0.917,0.2-1.414,0.61l-0.128,0.107c-0.747,0.618-1.998,1.652-2.303,2.362-0.143,0.334-0.317,0.751-0.197,1.375,0.048-0.21,0.128-0.4,0.198-0.57z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M18.17,36.72c0.61,0,1.316,0.298,1.938,0.817,0.704,0.589,0.983,0.885,1.077,1.204,0.107-0.846,0.107-1.011-1.077-2.002-0.622-0.52-1.328-0.818-1.938-0.818-0.442,0-1.479,0.345-2.059,0.647,0.66-0.01,1.54,0.15,2.06,0.15z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="13.91" x2="16.36" y1="38.63" y2="36.19">
-<stop offset="0" stop-color="#A58C78"/>
-<stop offset="1" stop-color="#B2A08C"/>
+<path d="M25.68,49.396c-0.186,0-0.362-0.039-0.539-0.12c-2.361-1.087-6.632-3.563-10.895-6.967 c-5.838-4.666-5.187-6.186-4.798-7.095c0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.107c0.497-0.41,0.959-0.61,1.414-0.61 c0.423,0,1.226,0.357,1.683,0.729c1.072,0.873,1.247,1.347,1.297,1.796c0.05,0.448-0.299,1.596-0.398,2.045 c0.474-0.324,1.78-0.784,2.292-0.784c0.61,0,1.316,0.299,1.938,0.818c1.259,1.054,1.182,1.163,1.057,2.161 c0,0-0.448,1.321-0.573,1.796c1.197-0.1,1.646-0.873,2.373-0.638c0.434,0.14,1.064,0.346,1.759,1.001 c1.071,1.011,1.071,1.202,0.807,2.056c-0.225,0.724-0.848,2.096-0.848,2.096s1.247-0.449,1.546-0.424 c0.309,0.025,0.55,0.181,1.551,1.324c0.54,0.618-0.216,1.938-0.69,2.551C26.855,48.957,26.291,49.396,25.68,49.396L25.68,49.396z" fill="url(#SVGID_6_)"/>
+<path d="M26.274,45.385c0.324,0.149,0.5,0.38,1.501,1.523c0.055,0.063,0.087,0.137,0.116,0.211 c0.104-0.389,0.104-0.758-0.116-1.009c-1.001-1.144-1.242-1.299-1.551-1.324c-0.188-0.016-0.747,0.154-1.139,0.284 C25.526,45.234,26.002,45.259,26.274,45.385z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.961,40.855c0.434,0.141,1.064,0.347,1.759,1.001c0.498,0.47,0.759,0.762,0.874,1.026 c0.185-0.663,0.092-0.914-0.874-1.824c-0.694-0.655-1.325-0.861-1.759-1.001c-0.671-0.218-1.113,0.419-2.117,0.597 C21.686,40.596,22.234,40.62,22.961,40.855z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M9.448,36.012c0.305-0.71,1.556-1.744,2.303-2.362l0.128-0.106 c0.497-0.411,0.959-0.611,1.414-0.611c0.423,0,1.226,0.357,1.683,0.729c0.881,0.717,1.153,1.163,1.251,1.549 c0.038-0.22,0.061-0.418,0.046-0.551c-0.05-0.449-0.225-0.923-1.297-1.796c-0.457-0.372-1.26-0.729-1.683-0.729 c-0.455,0-0.917,0.2-1.414,0.61l-0.128,0.107c-0.747,0.618-1.998,1.652-2.303,2.362c-0.143,0.334-0.317,0.751-0.197,1.375 C9.298,36.366,9.378,36.178,9.448,36.012z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M18.166,36.719c0.61,0,1.316,0.298,1.938,0.817c0.704,0.589,0.983,0.885,1.077,1.204 c0.107-0.846,0.107-1.011-1.077-2.002c-0.622-0.52-1.328-0.818-1.938-0.818c-0.442,0-1.479,0.345-2.059,0.647 C16.771,36.555,17.654,36.719,18.166,36.719z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="13.9106" x2="16.3579" y1="38.6328" y2="36.1855">
+<stop offset="0" style="stop-color:#A58C78"/>
+<stop offset="1" style="stop-color:#B2A08C"/>
</linearGradient>
-<path d="M16.04,36.19s-1.247,1.945-2.146,2.594c0,0,1.796-1.396,2.495-2.494l-0.34-0.1z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.67" x2="21.05" y1="42.62" y2="40.24">
-<stop offset="0" stop-color="#A58C78"/>
-<stop offset="1" stop-color="#9B8877"/>
+<path d="M16.04,36.188c0,0-1.247,1.945-2.146,2.594c0,0,1.796-1.396,2.495-2.494L16.04,36.188z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.6655" x2="21.0459" y1="42.6221" y2="40.2417">
+<stop offset="0" style="stop-color:#A58C78"/>
+<stop offset="1" style="stop-color:#9B8877"/>
</linearGradient>
-<path d="M20.73,40.25s-1.247,1.945-2.146,2.594c0,0,1.796-1.396,2.494-2.494l-0.34-0.1z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="22.82" x2="25.2" y1="47.15" y2="44.76">
-<stop offset="0" stop-color="#A58C78"/>
-<stop offset="1" stop-color="#8D786A"/>
+<path d="M20.729,40.246c0,0-1.247,1.945-2.146,2.594c0,0,1.796-1.396,2.494-2.494L20.729,40.246z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="22.8228" x2="25.2036" y1="47.1455" y2="44.7647">
+<stop offset="0" style="stop-color:#A58C78"/>
+<stop offset="1" style="stop-color:#8D786A"/>
</linearGradient>
-<path d="M24.85,44.8s-1.247,1.946-2.145,2.595c0,0,1.796-1.397,2.494-2.494l-0.34-0.11z" fill="url(#SVGID_9_)"/>
-<path d="M22.9,17.68s0.799-2.322,2.378-2.139c1.578,0.184-0.22,2.297-0.767,2.945-0.55,0.66-2.45,1.26-1.61-0.8z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.64" x2="31.64" y1="42.39" y2="46.54">
-<stop offset="0" stop-color="#A58C78"/>
-<stop offset="1" stop-color="#755B53"/>
+<path d="M24.853,44.802c0,0-1.247,1.946-2.145,2.595c0,0,1.796-1.397,2.494-2.494L24.853,44.802z" fill="url(#SVGID_9_)"/>
+<path d="M22.899,17.684c0,0,0.799-2.322,2.378-2.139c1.578,0.184-0.22,2.297-0.767,2.945 C23.965,19.139,22.056,19.74,22.899,17.684z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="31.6387" x2="31.6387" y1="42.3877" y2="46.5357">
+<stop offset="0" style="stop-color:#A58C78"/>
+<stop offset="1" style="stop-color:#755B53"/>
</linearGradient>
-<path d="M33.21,46.86l0.367-0.499s-3.244-3.044-3.876-4.008l3.51,4.51z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="39.97" x2="39.97" y1="33.89" y2="37.65">
-<stop offset="0" stop-color="#A58C78"/>
-<stop offset="1" stop-color="#8D786A"/>
+<path d="M33.209,46.856l0.367-0.499c0,0-3.244-3.044-3.876-4.008L33.209,46.856z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="39.9697" x2="39.9697" y1="33.8926" y2="37.6532">
+<stop offset="0" style="stop-color:#A58C78"/>
+<stop offset="1" style="stop-color:#8D786A"/>
</linearGradient>
-<path d="M41.69,37.94l0.367-0.499s-2.91-2.401-4.174-3.587l3.8,4.09z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="36.04" x2="36.04" y1="38.45" y2="42.21">
-<stop offset="0" stop-color="#A58C78"/>
-<stop offset="1" stop-color="#81695E"/>
+<path d="M41.689,37.943l0.367-0.499c0,0-2.91-2.401-4.174-3.587L41.689,37.943z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="36.0439" x2="36.0439" y1="38.4482" y2="42.2097">
+<stop offset="0" style="stop-color:#A58C78"/>
+<stop offset="1" style="stop-color:#81695E"/>
</linearGradient>
-<path d="M37.77,42.5l0.365-0.499s-2.908-2.402-4.174-3.588l3.8,4.09z" fill="url(#SVGID_12_)"/>
+<path d="M37.766,42.5l0.365-0.499c0,0-2.908-2.402-4.174-3.588L37.766,42.5z" fill="url(#SVGID_12_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.896" y2="49.8">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.5091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="0.5091" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="58,50.4,2,50.4,2,9.6,30.46,10.4,58,9.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.702" y2="50.64">
-<stop offset="0" stop-color="#AD8C4A"/>
-<stop offset="0.3394" stop-color="#F4F3E6"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
+<stop offset="0" style="stop-color:#AD8C4A"/>
+<stop offset="0.3394" style="stop-color:#F4F3E6"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<path d="M57.38,10.22v39.56h-54.77v-39.56h54.77m0.615-0.62l-28.2,0.336-27.8-0.336v40.8h56v-40.8z" fill="url(#SVGID_2_)"/>
-<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71,58,49.71,58,48.92,30,24.33,2,48.92" stroke-opacity="0.3"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4,58,50.4,58,49.6,30,25.02,2,49.6" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831" x2="-1831" y1="1215" y2="1190">
-<stop offset="0" stop-color="#AE804B"/>
-<stop offset="0.7273" stop-color="#C2AC76"/>
-<stop offset="1" stop-color="#D2C997"/>
+<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
+<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
+<stop offset="0" style="stop-color:#AE804B"/>
+<stop offset="0.7273" style="stop-color:#C2AC76"/>
+<stop offset="1" style="stop-color:#D2C997"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="58,50.38,30,25.69,2,50.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.5" y2="51.07">
-<stop offset="0" stop-color="#E9E5CB"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
+<stop offset="0" style="stop-color:#E9E5CB"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="58,50.38,30,25.69,2,50.38,30,26.56"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="30.06,10.4,2,9.6,30,38.62,58,9.6" stroke-opacity="0.3"/>
-<polygon fill="#88573A" fill-opacity="0.4" points="30.01,10.4,2,9.6,30,37.09,58,9.6" stroke-opacity="0.4"/>
-<polygon fill="#784833" fill-opacity="0.4" points="29.9,10.3,2,9.6,30,35.8,58,9.6" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.96" y2="8.009">
-<stop offset="0" stop-color="#C2B470"/>
-<stop offset="0.25" stop-color="#DED7B3"/>
-<stop offset="1" stop-color="#FDFCFA"/>
+<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#88573A" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#784833" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
+<stop offset="0" style="stop-color:#C2B470"/>
+<stop offset="0.25" style="stop-color:#DED7B3"/>
+<stop offset="1" style="stop-color:#FDFCFA"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="2,9.6,30,34.29,58,9.6"/>
+<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_group.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_group.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.896" y2="49.8">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.5091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="0.5091" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="58,50.4,2,50.4,2,9.6,30.46,10.4,58,9.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.702" y2="50.64">
-<stop offset="0" stop-color="#AD8C4A"/>
-<stop offset="0.3394" stop-color="#F4F3E6"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
+<stop offset="0" style="stop-color:#AD8C4A"/>
+<stop offset="0.3394" style="stop-color:#F4F3E6"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<path d="M57.38,10.22v39.56h-54.77v-39.56h54.77m0.615-0.62l-28.2,0.336-27.8-0.336v40.8h56v-40.8z" fill="url(#SVGID_2_)"/>
-<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71,58,49.71,58,48.92,30,24.33,2,48.92" stroke-opacity="0.3"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4,58,50.4,58,49.6,30,25.02,2,49.6" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831" x2="-1831" y1="1215" y2="1190">
-<stop offset="0" stop-color="#AE804B"/>
-<stop offset="0.7273" stop-color="#C2AC76"/>
-<stop offset="1" stop-color="#D2C997"/>
+<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
+<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
+<stop offset="0" style="stop-color:#AE804B"/>
+<stop offset="0.7273" style="stop-color:#C2AC76"/>
+<stop offset="1" style="stop-color:#D2C997"/>
+</linearGradient>
+<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
+<stop offset="0" style="stop-color:#E9E5CB"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="58,50.38,30,25.69,2,50.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.5" y2="51.07">
-<stop offset="0" stop-color="#E9E5CB"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#88573A" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#784833" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
+<stop offset="0" style="stop-color:#C2B470"/>
+<stop offset="0.25" style="stop-color:#DED7B3"/>
+<stop offset="1" style="stop-color:#FDFCFA"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="58,50.38,30,25.69,2,50.38,30,26.56"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="30.06,10.4,2,9.6,30,38.62,58,9.6" stroke-opacity="0.3"/>
-<polygon fill="#88573A" fill-opacity="0.4" points="30.01,10.4,2,9.6,30,37.09,58,9.6" stroke-opacity="0.4"/>
-<polygon fill="#784833" fill-opacity="0.4" points="29.9,10.3,2,9.6,30,35.8,58,9.6" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.96" y2="8.009">
-<stop offset="0" stop-color="#C2B470"/>
-<stop offset="0.25" stop-color="#DED7B3"/>
-<stop offset="1" stop-color="#FDFCFA"/>
-</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="2,9.6,30,34.29,58,9.6"/>
+<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<radialGradient cx="669.4" cy="-594.3" gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="11.1">
@@ -82,13 +84,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M19.11,11.16s1.818,2.389,5.512,2.384-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
+<path d="M19.11,11.16s1.818,2.389,5.512,2.384c0,0-1.73-0.27-5.51-2.38z" fill="url(#SVGID_7_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="663.1" x2="663.1" y1="-572" y2="-577.3">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M18.68,9.836s-1.78,0.106-1.12,3.123-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
+<path d="M18.68,9.836s-1.78,0.106-1.12,3.123c0,0-0.22-2.07,1.12-3.124z" fill="url(#SVGID_8_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="670.2" x2="670" y1="-569.9" y2="-572.3">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -137,13 +139,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M6.936,11.16s1.818,2.389,5.513,2.384-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
+<path d="M6.936,11.16s1.818,2.389,5.513,2.384c0,0-1.74-0.27-5.514-2.38z" fill="url(#SVGID_16_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="638.7" x2="638.8" y1="-572.3" y2="-577.7">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M6.498,9.836s-1.779,0.106-1.119,3.123-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
+<path d="M6.498,9.836s-1.779,0.106-1.119,3.123c0,0-0.218-2.07,1.119-3.124z" fill="url(#SVGID_17_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="645.9" x2="645.6" y1="-569.9" y2="-572.3">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -203,7 +205,7 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M12.11,8.272s2.658,3.492,8.059,3.485-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
+<path d="M12.11,8.272s2.658,3.492,8.059,3.485c0,0-2.54-0.4-8.06-3.488z" fill="url(#SVGID_26_)"/>
<linearGradient gradientTransform="matrix(0.5 0 0 -0.5 -313.5 -276)" gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="648.1" x2="648.2" y1="-565.2" y2="-573">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
@@ -217,4 +219,4 @@
<path d="M16.06,6.946c-1.212-0.173-3.263-1.247-4.065-0.863,0,0,2.63-3,7.271,0.415,0,0-1.11,0.747-3.21,0.448z" fill="url(#SVGID_28_)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,81 +1,83 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.896" y2="49.8">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.5091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="0.5091" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="58,50.4,2,50.4,2,9.6,30.46,10.4,58,9.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.702" y2="50.64">
-<stop offset="0" stop-color="#AD8C4A"/>
-<stop offset="0.3394" stop-color="#F4F3E6"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
+<stop offset="0" style="stop-color:#AD8C4A"/>
+<stop offset="0.3394" style="stop-color:#F4F3E6"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<path d="M57.38,10.22v39.56h-54.77v-39.56h54.77m0.615-0.62l-28.2,0.336-27.8-0.336v40.8h56v-40.8z" fill="url(#SVGID_2_)"/>
-<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71,58,49.71,58,48.92,30,24.33,2,48.92" stroke-opacity="0.3"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4,58,50.4,58,49.6,30,25.02,2,49.6" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831" x2="-1831" y1="1215" y2="1190">
-<stop offset="0" stop-color="#AE804B"/>
-<stop offset="0.7273" stop-color="#C2AC76"/>
-<stop offset="1" stop-color="#D2C997"/>
+<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
+<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
+<stop offset="0" style="stop-color:#AE804B"/>
+<stop offset="0.7273" style="stop-color:#C2AC76"/>
+<stop offset="1" style="stop-color:#D2C997"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="58,50.38,30,25.69,2,50.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.5" y2="51.07">
-<stop offset="0" stop-color="#E9E5CB"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
+<stop offset="0" style="stop-color:#E9E5CB"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="58,50.38,30,25.69,2,50.38,30,26.56"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="30.06,10.4,2,9.6,30,38.62,58,9.6" stroke-opacity="0.3"/>
-<polygon fill="#88573A" fill-opacity="0.4" points="30.01,10.4,2,9.6,30,37.09,58,9.6" stroke-opacity="0.4"/>
-<polygon fill="#784833" fill-opacity="0.4" points="29.9,10.3,2,9.6,30,35.8,58,9.6" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.96" y2="8.009">
-<stop offset="0" stop-color="#C2B470"/>
-<stop offset="0.25" stop-color="#DED7B3"/>
-<stop offset="1" stop-color="#FDFCFA"/>
+<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#88573A" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#784833" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
+<stop offset="0" style="stop-color:#C2B470"/>
+<stop offset="0.25" style="stop-color:#DED7B3"/>
+<stop offset="1" style="stop-color:#FDFCFA"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="2,9.6,30,34.29,58,9.6"/>
+<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.41,14.41,30.41,0,0.414,0,0.414,14.41,0,14.82,0.414,15.24,0.414,30,30.41,30,30.41,15.24,30.83,14.82"/>
-<path d="M2.749,29.82v-12.25l-2.749-2.75,0.706-0.707c0.507-0.5,12.43-12.46,13.15-13.15,0.387-0.368,0.914-0.786,1.589-0.786,0.687,0,1.172,0.42,1.518,0.785,0.457,0.484,8.802,8.816,13.15,13.15l0.708,0.706-2.747,2.749v12.25h-25.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.42" x2="15.42" y1="28.67" y2="12.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.08,28.82,3.749,28.82,3.749,14.47,15.41,5.489,27.08,14.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.42" x2="15.42" y1="17.31" y2="28.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M15.41,6.668l10.74,8.264v12.96h-21.47v-12.96l10.73-8.264m0-1.179l-11.66,8.981v14.35h23.33v-14.35l-11.67-8.984z" fill="url(#SVGID_2__)"/>
-<polygon fill-opacity="0.2" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,8.99" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,6.655"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.42" x2="15.42" y1="17.99" y2="29.15">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="10.5" width="7.001" x="11.92" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.42" x2="15.42" y1="28.75" y2="18.36">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M17.98,19.26v8.633h-5.133v-8.633h5.13m0.94-0.94h-7.001v10.5h7.001v-10.5-0.002z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.41" x2="15.41" y1="0.0352" y2="17.73">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M15.41,5.489l11.67,11.67,2.333-2.333s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333,11.66-11.66z" fill="url(#SVGID_5__)"/>
-<radialGradient cx="15.3" cy="1.756" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="18.67">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
+<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="18.6679">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M14.55,2.616c0.724-0.688,1.102-0.653,1.689-0.034,0.516,0.549,10.43,10.44,12.7,12.71l0.467-0.468s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l0.467,0.465c2.257-2.25,12.04-12.06,12.67-12.66z" fill="url(#SVGID_6_)"/>
-<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.92" y="18.32"/>
+<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6_)"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_message_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.896" y2="49.8">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.5091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="0.5091" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="58,50.4,2,50.4,2,9.6,30.46,10.4,58,9.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.702" y2="50.64">
-<stop offset="0" stop-color="#AD8C4A"/>
-<stop offset="0.3394" stop-color="#F4F3E6"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
+<stop offset="0" style="stop-color:#AD8C4A"/>
+<stop offset="0.3394" style="stop-color:#F4F3E6"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<path d="M57.38,10.22v39.56h-54.77v-39.56h54.77m0.615-0.62l-28.2,0.336-27.8-0.336v40.8h56v-40.8z" fill="url(#SVGID_2_)"/>
-<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71,58,49.71,58,48.92,30,24.33,2,48.92" stroke-opacity="0.3"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4,58,50.4,58,49.6,30,25.02,2,49.6" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831" x2="-1831" y1="1215" y2="1190">
-<stop offset="0" stop-color="#AE804B"/>
-<stop offset="0.7273" stop-color="#C2AC76"/>
-<stop offset="1" stop-color="#D2C997"/>
+<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
+<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
+<stop offset="0" style="stop-color:#AE804B"/>
+<stop offset="0.7273" style="stop-color:#C2AC76"/>
+<stop offset="1" style="stop-color:#D2C997"/>
+</linearGradient>
+<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
+<stop offset="0" style="stop-color:#E9E5CB"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="58,50.38,30,25.69,2,50.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.5" y2="51.07">
-<stop offset="0" stop-color="#E9E5CB"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#88573A" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#784833" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
+<stop offset="0" style="stop-color:#C2B470"/>
+<stop offset="0.25" style="stop-color:#DED7B3"/>
+<stop offset="1" style="stop-color:#FDFCFA"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="58,50.38,30,25.69,2,50.38,30,26.56"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="30.06,10.4,2,9.6,30,38.62,58,9.6" stroke-opacity="0.3"/>
-<polygon fill="#88573A" fill-opacity="0.4" points="30.01,10.4,2,9.6,30,37.09,58,9.6" stroke-opacity="0.4"/>
-<polygon fill="#784833" fill-opacity="0.4" points="29.9,10.3,2,9.6,30,35.8,58,9.6" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.96" y2="8.009">
-<stop offset="0" stop-color="#C2B470"/>
-<stop offset="0.25" stop-color="#DED7B3"/>
-<stop offset="1" stop-color="#FDFCFA"/>
-</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="2,9.6,30,34.29,58,9.6"/>
+<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
@@ -142,4 +144,4 @@
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_video_call_unseen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_video_call_unseen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,175 +1,179 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<g>
<rect fill="none" height="60" width="60"/>
-<rect fill="none" height="30" width="30"/>
-<rect fill="none" height="30" width="30"/>
-<path d="M20.74,16.01l0.99,0.99,8.27-8.267-4.488-4.486-4.131,4.132,1.613-6.023-6.129-1.643-2.32,8.654-4.027-4.185-10.51,10.83h5.752v3.212c0,6.398,4.527,10.07,12.42,10.07h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988v-3.212h5.45zm-2.36-4.63l-0.969,0.969-1.594-1.655,2.56,0.68z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3121.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2184" x2="-2184" y1="3114" y2="3093">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2114.7842" x2="-2114.7842" y1="-1380.3838" y2="-1334.48">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<path d="M27.663,38.703V29.91h9.248L19.558,11.879L2.046,29.908h9.438v8.795 C11.483,53.568,23.851,58,35.753,58h5.67V44.909h-5.67C32.085,44.909,27.663,43.101,27.663,38.703z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="76.9551" x2="76.9551" y1="-6096.3281" y2="-6131.1172">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="19.558,13.92 34.94,29.908 36.905,29.908 19.558,11.879 2.046,29.908 4.022,29.908 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="96.417" x2="92.177" y1="-6087.1563" y2="-6103.5273">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<path d="M14.35,19.22v-4.157h4.369l-8.201-8.521-8.277,8.521h4.461v4.157c0,7.027,5.848,9.122,11.48,9.122v-6.188c-1.74,0-3.83-0.85-3.83-2.93z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.48" x2="10.48" y1="6.684" y2="23.13">
-<stop offset="0" stop-color="#C8A885"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="url(#SVGID_3_)" points="30.015,18.383 34.405,2 43.507,4.441 39.124,20.822 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="96.123" x2="92.3531" y1="-6088.2676" y2="-6102.8755">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="10.51,7.505,17.79,15.06,18.72,15.06,10.51,6.542,2.236,15.06,3.172,15.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.26" x2="16.26" y1="6.682" y2="23.13">
-<stop offset="0" stop-color="#C8A885"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="url(#SVGID_4_)" points="38.456,19.67 31.171,17.715 35.073,3.152 42.354,5.105 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="111.9482" x2="97.459" y1="-6097.3105" y2="-6112.1533">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="36.628,24.514 51.288,9.855 57.954,16.519 43.292,31.178 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="111.4424" x2="98.2473" y1="-6097.9321" y2="-6111.2446">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="43.292,29.848 37.96,24.514 51.288,11.188 56.622,16.519 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="34.543" x2="34.543" y1="12.1699" y2="46.9707">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M14.35,19.22v0.964c0,2.077,2.092,2.934,3.826,2.934v-0.963c-1.74,0-3.83-0.85-3.83-2.93z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.68" x2="17.67" y1="2.348" y2="10.09">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<path d="M35.753,44.909L35.753,44.909c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67v-2.044H35.753z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2114.7988" x2="-2114.7988" y1="-1380.3838" y2="-1334.48">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="15.46,9.616,17.53,1.871,21.84,3.024,19.76,10.77"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="19.54" x2="17.76" y1="2.873" y2="9.778">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<path d="M27.648,38.703V29.91h9.248L19.543,11.879L2.031,29.908h9.438v8.795 C11.469,53.568,23.836,58,35.738,58h5.67V44.909h-5.67C32.07,44.909,27.648,43.101,27.648,38.703z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="76.9404" x2="76.9404" y1="-6096.3281" y2="-6131.1172">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_9_)" points="19.543,13.92 34.926,29.908 36.891,29.908 19.543,11.879 2.031,29.908 4.008,29.908 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="96.4023" x2="92.1624" y1="-6087.1567" y2="-6103.5278">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_5__)" points="19.44,10.22,16,9.3,17.85,2.416,21.29,3.338"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="27.01" x2="20.17" y1="7.148" y2="14.16">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill="url(#SVGID_10_)" points="30,18.383 34.391,2 43.492,4.441 39.109,20.822 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="96.1094" x2="92.3392" y1="-6088.2671" y2="-6102.876">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
+</linearGradient>
+<polygon fill="url(#SVGID_11_)" points="38.441,19.67 31.156,17.715 35.059,3.152 42.34,5.105 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="111.9336" x2="97.4443" y1="-6097.3105" y2="-6112.1533">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_6__)" points="18.58,12.51,25.51,5.584,28.66,8.733,21.73,15.66"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="26.78" x2="20.54" y1="7.441" y2="13.73">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_12_)" points="36.613,24.514 51.273,9.855 57.939,16.519 43.277,31.178 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="111.4277" x2="98.2326" y1="-6097.9326" y2="-6111.2451">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="21.73,15.03,19.21,12.51,25.51,6.213,28.03,8.733"/>
+<polygon fill="url(#SVGID_13_)" points="43.277,29.848 37.945,24.514 51.273,11.188 56.607,16.519 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="34.5283" x2="34.5283" y1="12.1699" y2="46.9707">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<path d="M35.738,44.909L35.738,44.909c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67v-2.044H35.738z" fill="url(#SVGID_14_)"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M22.379,24.469h-3.846v-0.341c4.922-1.536,8.297-6.068,8.297-11.278 c0-6.522-5.307-11.828-11.83-11.828c-6.522,0-11.828,5.306-11.828,11.828c0,5.212,3.376,9.745,8.301,11.279v0.34H7.66 c-1.588,0-2.879,1.281-2.879,2.893l0.005,0.148l0.007,0.06c0.006,0.042,0.014,0.121,0.027,0.47l0.042,0.939h20.323l0.048-1.235 c0.006-0.112,0.011-0.153,0.014-0.179c0.007-0.065,0.011-0.098,0.011-0.238C25.258,25.75,23.967,24.469,22.379,24.469z M24.279,27.361c0,0.103-0.008,0.052-0.023,0.326c-0.004,0.091-0.008,0.186-0.013,0.313h-0.002h-0.002H5.803H5.799 c-0.025-0.635-0.039-0.508-0.039-0.639v-0.035c0-1.037,0.85-1.879,1.9-1.879h4.791v-2.063C7.698,22.233,4.15,17.953,4.15,12.85 C4.15,6.867,9.021,2,15,2c5.982,0,10.851,4.866,10.851,10.85c0,5.103-3.546,9.381-8.296,10.534v2.063h4.824 c1.05,0,1.9,0.842,1.9,1.879V27.361z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="39.8613" x2="45.0998" y1="-6137.793" y2="-6137.793">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
-<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
-</linearGradient>
-<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="15" x2="15" y1="2.614" y2="23.03">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#7F8384"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<rect fill="url(#SVGID_1__)" height="7.852" width="5.104" x="12.451" y="19.721"/>
+<path d="M12.451,24.66c0.818,0.199,1.672,0.314,2.553,0.314s1.73-0.115,2.553-0.314v-4.294 h-5.105v4.284V24.66z" fill="#020202" fill-opacity="0.2"/>
+<path d="M12.451,24.02c0.818,0.199,1.672,0.315,2.553,0.315s1.73-0.116,2.553-0.315v-4.293 h-5.105v4.287V24.02z" fill="#020202" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="42.4795" x2="42.4795" y1="-6116.1221" y2="-6137.8223">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<circle cx="15" cy="12.85" fill="url(#SVGID_3___)" r="10.21"/>
-<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4___" x1="15" x2="15" y1="3.721" y2="20.35">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<path d="M15,23.7c-5.979,0-10.85-4.867-10.85-10.851C4.15,6.867,9.021,2,15,2 c5.982,0,10.851,4.866,10.851,10.85C25.851,18.834,20.98,23.7,15,23.7z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="42.4805" x2="42.4805" y1="-6116.7617" y2="-6137.1816">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#7F8384"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4___)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5___" x1="15" x2="15" y1="4.368" y2="19.72">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<circle cx="15" cy="12.851" fill="url(#SVGID_3__)" r="10.21"/>
+<path d="M15,21.99c-5.314,0-9.656-4.23-9.842-9.5c-0.006,0.115-0.01,0.23-0.01,0.349 c0,5.431,4.418,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.116-0.004-0.231-0.008-0.349c-0.179,5.27-4.52,9.5-9.84,9.5H15z" fill="#FFFFFF" fill-opacity="0.1"/>
+<path d="M23.301,12.41c0,4.703-3.714,9.346-8.299,9.345c-4.58-0.003-8.293-4.646-8.291-9.351 s3.717-8.516,8.296-8.516c4.571,0,8.292,3.814,8.292,8.516L23.301,12.41z" fill="#222021" fill-opacity="0.3"/>
+<path d="M15,21.07c-2.387-0.002-4.629-0.932-6.314-2.619C6.998,16.764,6.07,14.52,6.07,12.133 c0-4.923,4.01-8.929,8.936-8.929c2.387,0,4.633,0.931,6.318,2.618c1.688,1.688,2.617,3.934,2.615,6.318 c-0.003,4.924-4.012,8.93-8.936,8.93H14.99H15z" fill="#222021" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="42.4834" x2="42.4834" y1="-6117.8691" y2="-6134.4961">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<circle cx="15" cy="12.13" fill="url(#SVGID_5___)" r="7.657"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6___" x1="15" x2="15" y1="5.772" y2="18.45">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<path d="M15,20.43c-2.215-0.002-4.297-0.863-5.862-2.432c-1.569-1.566-2.429-3.65-2.429-5.865 c0-4.574,3.723-8.293,8.297-8.293c2.217,0,4.299,0.863,5.865,2.432c1.566,1.567,2.43,3.65,2.428,5.867 c0,4.572-3.723,8.291-8.295,8.291H15z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="42.4805" x2="42.4805" y1="-6118.5146" y2="-6133.8677">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
+</linearGradient>
+<path d="M15,4.473c4.229,0,7.658,3.43,7.658,7.658s-3.43,7.656-7.658,7.656c-4.227,0-7.656-3.428-7.656-7.656 S10.773,4.473,15,4.473z" fill="url(#SVGID_5__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="42.4795" x2="42.4795" y1="-6119.9209" y2="-6132.5972">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6___)"/>
-<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7__" r="6.499">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<path d="M15,18.51c-1.704-0.001-3.309-0.666-4.514-1.871c-1.203-1.205-1.867-2.807-1.867-4.512 c0-3.518,2.861-6.377,6.383-6.377c1.705,0,3.307,0.664,4.512,1.87c1.205,1.205,1.869,2.808,1.867,4.513 c0,3.51-2.859,6.37-6.379,6.37L15,18.51z" fill="url(#SVGID_6__)"/>
+<radialGradient cx="-18.5371" cy="-6075.4541" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_7__" r="6.4996">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7__)"/>
-<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-<stop offset="0" stop-color="#242424"/>
-<stop offset="0.4303" stop-color="#242424"/>
-<stop offset="0.7818" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M20.74,12.141c0,3.172-2.574,5.739-5.744,5.739c-3.176-0.001-5.742-2.573-5.74-5.745 c0-3.171,2.572-5.742,5.744-5.74c3.17-0.008,5.74,2.563,5.74,5.74V12.141z" fill="url(#SVGID_7__)"/>
+<radialGradient cx="-23.6514" cy="-6071.7656" gradientTransform="matrix(1.0143 0 0 -1.0141 36.3921 -6149.1094)" gradientUnits="userSpaceOnUse" id="SVGID_8__" r="10.3507">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
-<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<circle cx="15" cy="12.13" fill="url(#SVGID_8__)" r="4.712"/>
+<radialGradient cx="-20.3467" cy="-6068.7339" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_9__" r="11.36">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-<stop offset="0" stop-color="#264932"/>
-<stop offset="0.7879" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0.004-2.328,1.891-4.211,4.214-4.211c2.329,0.003,4.21,1.889,4.21,4.211L19.211,12.131z" fill="url(#SVGID_9__)"/>
+<radialGradient cx="-19.1367" cy="-6078.4346" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_10__" r="4.6115">
+<stop offset="0" style="stop-color:#264932"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0,0,1.443,2.568,4.214,2.568c2.769,0,4.21-2.57,4.21-2.57L19.211,12.131z" fill="url(#SVGID_10__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="42.4609" x2="42.4609" y1="-6121.2129" y2="-6126.2388">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M14.98,12.07c1.828,0,3.549-0.277,5.066-0.766 c-0.43-2.41-2.531-4.238-5.066-4.238c-2.531,0-4.633,1.83-5.064,4.238c1.514,0.49,3.234,0.771,5.064,0.771V12.07z" fill="url(#SVGID_11__)" fill-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="33.2402" x2="51.7598" y1="-6140.8701" y2="-6140.8701">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
-<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5.772,27.36c0.007,0.13,0.017,0.32,0.03,0.64h18.44c0.012-0.316,0.022-0.508,0.028-0.639h-18.5z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.241,28c0.025-0.635,0.038-0.508,0.038-0.639v-0.035c0-1.037-0.851-1.879-1.9-1.879H7.66 c-1.051,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.039,0.639h18.44H24.241z" fill="url(#SVGID_12__)"/>
+<path d="M5.879,26.7h18.292c-0.084-0.235-0.213-0.444-0.377-0.626H6.262 c-0.164,0.189-0.293,0.4-0.377,0.63L5.879,26.7z" fill="#FFFFFF" fill-opacity="0.2"/>
+<path d="M5.771,27.359C5.779,27.49,5.789,27.68,5.803,28h18.44 c0.012-0.316,0.021-0.508,0.027-0.639H5.77L5.771,27.359z" fill="#020202" fill-opacity="0.2"/>
+<path d="M6.256,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627H7.668 c-0.561,0.01-1.059,0.25-1.406,0.629L6.256,26.07z" fill="#FFFFFF" fill-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2109.7646" x2="-2109.7646" y1="-1385.3232" y2="-1339.4194">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M32.684,33.764v-8.793h9.246L24.578,6.939L7.066,24.969h9.438v8.795 c0,14.865,12.367,19.297,24.27,19.297h5.67V39.97h-5.67C37.105,39.97,32.684,38.161,32.684,33.764z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -5687.4375)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="81.9756" x2="81.9756" y1="-5694.6797" y2="-5729.4688">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<polygon fill="url(#SVGID_2_)" points="24.578,8.98 39.961,24.969 41.926,24.969 24.578,6.939 7.066,24.969 9.043,24.969 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="39.5635" x2="39.5635" y1="7.2305" y2="42.0313">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M40.773,39.97L40.773,39.97c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67V39.97H40.773z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
-<polygon fill="none" points="15.05,0,14.63,0.439,0,0.439,0,30.44,30,30.44,30,0.439,15.48,0.439"/>
-<path d="M24.88,30.44c-10,0-15.74-4.635-15.74-12.72v-4.339h-7.087l13-13.38,12.88,13.38h-6.962v4.339c0,2.189,2.56,2.768,3.913,2.768h1v9.947h-0.996z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3014.6338)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179" x2="-2179" y1="3012" y2="2984">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<path d="M19.97,17.72v-5.339h5.611l-10.53-10.94-10.63,10.94h5.73v5.339c0,9.024,7.509,11.72,14.74,11.72v-7.947c-2.23,0-4.92-1.1-4.92-3.77z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.713" y2="22.59">
-<stop offset="0" stop-color="#CDB48B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="15.05,2.438,24.62,12.38,25.58,12.38,15.05,1.438,4.418,12.38,5.389,12.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.43" x2="22.43" y1="1.713" y2="22.59">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<path d="M19.97,17.72v1c0,2.668,2.688,3.768,4.913,3.768v-1c-2.22,0-4.91-1.1-4.91-3.77z" fill="url(#SVGID_3__)"/>
-<rect fill="none" height="30" width="30" y="0.439"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call_unseen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voice_call_unseen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,82 +1,85 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<g>
<rect fill="none" height="60" width="60"/>
-<rect fill="none" height="30" width="30"/>
-<rect fill="none" height="30" width="30"/>
-<path d="M20.74,16.01l0.99,0.99,8.27-8.267-4.488-4.486-4.131,4.132,1.613-6.023-6.129-1.643-2.32,8.654-4.027-4.185-10.51,10.83h5.752v3.212c0,6.398,4.527,10.07,12.42,10.07h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988v-3.212h5.45zm-2.36-4.63l-0.969,0.969-1.594-1.655,2.56,0.68z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3121.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2184" x2="-2184" y1="3114" y2="3093">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2114.7842" x2="-2114.7842" y1="-1380.3838" y2="-1334.48">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<path d="M27.663,38.703V29.91h9.248L19.558,11.879L2.046,29.908h9.438v8.795 C11.483,53.568,23.851,58,35.753,58h5.67V44.909h-5.67C32.085,44.909,27.663,43.101,27.663,38.703z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="76.9551" x2="76.9551" y1="-6096.3281" y2="-6131.1172">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="19.558,13.92 34.94,29.908 36.905,29.908 19.558,11.879 2.046,29.908 4.022,29.908 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="96.417" x2="92.177" y1="-6087.1563" y2="-6103.5273">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<path d="M14.35,19.22v-4.157h4.369l-8.201-8.521-8.277,8.521h4.461v4.157c0,7.027,5.848,9.122,11.48,9.122v-6.188c-1.74,0-3.83-0.85-3.83-2.93z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.48" x2="10.48" y1="6.684" y2="23.13">
-<stop offset="0" stop-color="#C8A885"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="url(#SVGID_3_)" points="30.015,18.383 34.405,2 43.507,4.441 39.124,20.822 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="96.123" x2="92.3531" y1="-6088.2676" y2="-6102.8755">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="10.51,7.505,17.79,15.06,18.72,15.06,10.51,6.542,2.236,15.06,3.172,15.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.26" x2="16.26" y1="6.682" y2="23.13">
-<stop offset="0" stop-color="#C8A885"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="url(#SVGID_4_)" points="38.456,19.67 31.171,17.715 35.073,3.152 42.354,5.105 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="111.9482" x2="97.459" y1="-6097.3105" y2="-6112.1533">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="36.628,24.514 51.288,9.855 57.954,16.519 43.292,31.178 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="111.4424" x2="98.2473" y1="-6097.9321" y2="-6111.2446">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="43.292,29.848 37.96,24.514 51.288,11.188 56.622,16.519 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="34.543" x2="34.543" y1="12.1699" y2="46.9707">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M14.35,19.22v0.964c0,2.077,2.092,2.934,3.826,2.934v-0.963c-1.74,0-3.83-0.85-3.83-2.93z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.68" x2="17.67" y1="2.348" y2="10.09">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<path d="M35.753,44.909L35.753,44.909c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67v-2.044H35.753z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2114.7988" x2="-2114.7988" y1="-1380.3838" y2="-1334.48">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="15.46,9.616,17.53,1.871,21.84,3.024,19.76,10.77"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="19.54" x2="17.76" y1="2.873" y2="9.778">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<path d="M27.648,38.703V29.91h9.248L19.543,11.879L2.031,29.908h9.438v8.795 C11.469,53.568,23.836,58,35.738,58h5.67V44.909h-5.67C32.07,44.909,27.648,43.101,27.648,38.703z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="76.9404" x2="76.9404" y1="-6096.3281" y2="-6131.1172">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_9_)" points="19.543,13.92 34.926,29.908 36.891,29.908 19.543,11.879 2.031,29.908 4.008,29.908 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="96.4023" x2="92.1624" y1="-6087.1567" y2="-6103.5278">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_5__)" points="19.44,10.22,16,9.3,17.85,2.416,21.29,3.338"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="27.01" x2="20.17" y1="7.148" y2="14.16">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill="url(#SVGID_10_)" points="30,18.383 34.391,2 43.492,4.441 39.109,20.822 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="96.1094" x2="92.3392" y1="-6088.2671" y2="-6102.876">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
+</linearGradient>
+<polygon fill="url(#SVGID_11_)" points="38.441,19.67 31.156,17.715 35.059,3.152 42.34,5.105 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="111.9336" x2="97.4443" y1="-6097.3105" y2="-6112.1533">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_6__)" points="18.58,12.51,25.51,5.584,28.66,8.733,21.73,15.66"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="26.78" x2="20.54" y1="7.441" y2="13.73">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_12_)" points="36.613,24.514 51.273,9.855 57.939,16.519 43.277,31.178 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="111.4277" x2="98.2326" y1="-6097.9326" y2="-6111.2451">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="21.73,15.03,19.21,12.51,25.51,6.213,28.03,8.733"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_13_)" points="43.277,29.848 37.945,24.514 51.273,11.188 56.607,16.519 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="34.5283" x2="34.5283" y1="12.1699" y2="46.9707">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<path d="M35.738,44.909L35.738,44.909c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67v-2.044H35.738z" fill="url(#SVGID_14_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voip_call_unseen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_missed_voip_call_unseen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,113 +1,141 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<g>
<rect fill="none" height="60" width="60"/>
-<rect fill="none" height="30" width="30"/>
-<rect fill="none" height="30" width="30"/>
-<path d="M20.74,16.01l0.99,0.99,8.27-8.267-4.488-4.486-4.131,4.132,1.613-6.023-6.129-1.643-2.32,8.654-4.027-4.185-10.51,10.83h5.752v3.212c0,6.398,4.527,10.07,12.42,10.07h0.943v-8.079h-0.943c-0.998,0-2.881-0.416-2.881-1.988v-3.212h5.45zm-2.36-4.63l-0.969,0.969-1.594-1.655,2.56,0.68z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3121.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2184" x2="-2184" y1="3114" y2="3093">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2114.7842" x2="-2114.7842" y1="-1380.3838" y2="-1334.48">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<path d="M27.663,38.703V29.91h9.248L19.558,11.879L2.046,29.908h9.438v8.795 C11.483,53.568,23.851,58,35.753,58h5.67V44.909h-5.67C32.085,44.909,27.663,43.101,27.663,38.703z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="76.9551" x2="76.9551" y1="-6096.3281" y2="-6131.1172">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_2_)" points="19.558,13.92 34.94,29.908 36.905,29.908 19.558,11.879 2.046,29.908 4.022,29.908 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="96.417" x2="92.177" y1="-6087.1563" y2="-6103.5273">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<path d="M14.35,19.22v-4.157h4.369l-8.201-8.521-8.277,8.521h4.461v4.157c0,7.027,5.848,9.122,11.48,9.122v-6.188c-1.74,0-3.83-0.85-3.83-2.93z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="10.48" x2="10.48" y1="6.684" y2="23.13">
-<stop offset="0" stop-color="#C8A885"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="url(#SVGID_3_)" points="30.015,18.383 34.405,2 43.507,4.441 39.124,20.822 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="96.123" x2="92.3531" y1="-6088.2676" y2="-6102.8755">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="10.51,7.505,17.79,15.06,18.72,15.06,10.51,6.542,2.236,15.06,3.172,15.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.26" x2="16.26" y1="6.682" y2="23.13">
-<stop offset="0" stop-color="#C8A885"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="url(#SVGID_4_)" points="38.456,19.67 31.171,17.715 35.073,3.152 42.354,5.105 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="111.9482" x2="97.459" y1="-6097.3105" y2="-6112.1533">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_5_)" points="36.628,24.514 51.288,9.855 57.954,16.519 43.292,31.178 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="111.4424" x2="98.2473" y1="-6097.9321" y2="-6111.2446">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="43.292,29.848 37.96,24.514 51.288,11.188 56.622,16.519 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="34.543" x2="34.543" y1="12.1699" y2="46.9707">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M14.35,19.22v0.964c0,2.077,2.092,2.934,3.826,2.934v-0.963c-1.74,0-3.83-0.85-3.83-2.93z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="19.68" x2="17.67" y1="2.348" y2="10.09">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<path d="M35.753,44.909L35.753,44.909c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67v-2.044H35.753z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2114.7988" x2="-2114.7988" y1="-1380.3838" y2="-1334.48">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="15.46,9.616,17.53,1.871,21.84,3.024,19.76,10.77"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="19.54" x2="17.76" y1="2.873" y2="9.778">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<path d="M27.648,38.703V29.91h9.248L19.543,11.879L2.031,29.908h9.438v8.795 C11.469,53.568,23.836,58,35.738,58h5.67V44.909h-5.67C32.07,44.909,27.648,43.101,27.648,38.703z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="76.9404" x2="76.9404" y1="-6096.3281" y2="-6131.1172">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<polygon fill="url(#SVGID_9_)" points="19.543,13.92 34.926,29.908 36.891,29.908 19.543,11.879 2.031,29.908 4.008,29.908 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="96.4023" x2="92.1624" y1="-6087.1567" y2="-6103.5278">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_5__)" points="19.44,10.22,16,9.3,17.85,2.416,21.29,3.338"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="27.01" x2="20.17" y1="7.148" y2="14.16">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill="url(#SVGID_10_)" points="30,18.383 34.391,2 43.492,4.441 39.109,20.822 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="96.1094" x2="92.3392" y1="-6088.2671" y2="-6102.876">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
+</linearGradient>
+<polygon fill="url(#SVGID_11_)" points="38.441,19.67 31.156,17.715 35.059,3.152 42.34,5.105 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="111.9336" x2="97.4443" y1="-6097.3105" y2="-6112.1533">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_6__)" points="18.58,12.51,25.51,5.584,28.66,8.733,21.73,15.66"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="26.78" x2="20.54" y1="7.441" y2="13.73">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_12_)" points="36.613,24.514 51.273,9.855 57.939,16.519 43.277,31.178 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -6084.1465)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="111.4277" x2="98.2326" y1="-6097.9326" y2="-6111.2451">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="21.73,15.03,19.21,12.51,25.51,6.213,28.03,8.733"/>
+<polygon fill="url(#SVGID_13_)" points="43.277,29.848 37.945,24.514 51.273,11.188 56.607,16.519 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="34.5283" x2="34.5283" y1="12.1699" y2="46.9707">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
+</linearGradient>
+<path d="M35.738,44.909L35.738,44.909c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67v-2.044H35.738z" fill="url(#SVGID_14_)"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1___" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1___)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="16" cy="14" fill="url(#SVGID_1__)" r="13"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2___)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3___" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
+</radialGradient>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3___)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4___" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4__)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
+</linearGradient>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5__)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4___)"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6__)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7__" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
+</radialGradient>
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7__)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.54" x2="29.54" y1="8.111" y2="49.9">
<stop offset="0" stop-color="#666666"/>
<stop offset="1" stop-color="#000000"/>
@@ -79,4 +80,5 @@
<rect fill="#8C8C8C" height="0.613" width="27.55" x="15.76" y="44.69"/>
<path d="M45.77,7.959h-20.79c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.4,0.332-0.743,0.947-0.878,1.52,0,0,1.004-0.828,1.269-1.049l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.78c0.611,0,1.225,0.612,1.225,0.612-0.01-0.675-0.56-1.226-1.23-1.226z" fill="#CCCCCC"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc_removed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mmc_removed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.54" x2="29.54" y1="8.111" y2="49.9">
@@ -81,4 +81,4 @@
<path d="M45.77,7.959h-20.79c-0.674,0-1.648,0.352-2.167,0.781l-9.78,8.107c-0.4,0.332-0.743,0.947-0.878,1.52,0,0,1.004-0.828,1.269-1.049l9.78-8.105c0.412-0.342,1.242-0.642,1.777-0.642h20.78c0.611,0,1.225,0.612,1.225,0.612-0.01-0.675-0.56-1.226-1.23-1.226z" fill="#CCCCCC"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,110 +1,112 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
+</linearGradient>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
-</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile_tv.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mobile_tv.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="53.17" y2="49.61">
-<stop offset="0" stop-color="#404040"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="53.1709" y2="49.6078">
+<stop offset="0" style="stop-color:#404040"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.73,51.78c0,0.86-0.676,1.556-1.509,1.556h-26.44c-0.832,0-1.508-0.695-1.508-1.556,0-0.858-0.048-2.332-0.048-2.332h29.56c0-0.01-0.05,1.47-0.05,2.33z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.408" y2="50.23">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.1212" stop-color="#F2F2F2"/>
-<stop offset="0.5515" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#E7E8E7"/>
+<path d="M44.73,51.777c0,0.86-0.676,1.556-1.509,1.556H16.777c-0.832,0-1.508-0.695-1.508-1.556l0,0 c0-0.858-0.048-2.332-0.048-2.332h29.556C44.777,49.445,44.73,50.919,44.73,51.777L44.73,51.777z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.4082" y2="50.2251">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1212" style="stop-color:#F2F2F2"/>
+<stop offset="0.5515" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#E7E8E7"/>
</linearGradient>
-<path d="M58,48.67c0,0.86-0.697,1.556-1.557,1.556h-52.88c-0.862-0.01-1.557-0.7-1.557-1.56v-40.45c0-0.858,0.695-1.556,1.557-1.556h52.89c0.86,0,1.56,0.697,1.56,1.556v40.44z" fill="url(#SVGID_2_)"/>
-<path d="M56.44,49.44h-52.88c-0.862,0-1.557-0.69-1.557-1.55v0.777c0,0.86,0.695,1.556,1.557,1.556h52.89c0.859,0,1.557-0.695,1.557-1.556v-0.777c0,0.86-0.7,1.55-1.56,1.55z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="41.41" y2="10.47">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M58,48.666c0,0.86-0.697,1.556-1.557,1.556H3.557C2.695,50.222,2,49.526,2,48.666V8.223 c0-0.858,0.695-1.556,1.557-1.556h52.887C57.303,6.667,58,7.364,58,8.223V48.666z" fill="url(#SVGID_2_)"/>
+<path d="M56.443,49.445H3.557C2.695,49.445,2,48.748,2,47.889v0.777c0,0.86,0.695,1.556,1.557,1.556 h52.887c0.859,0,1.557-0.695,1.557-1.556v-0.777C58,48.748,57.303,49.445,56.443,49.445z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="41.4072" y2="10.4689">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="31.89" width="49.78" x="5.111" y="9.778"/>
-<rect fill="#FFFFFF" height="0.778" width="49.78" x="5.111" y="40.89"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="5.901,26.11,54.11,19.75,54.11,10.56,5.889,10.56" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="48.55" y2="42.63">
-<stop offset="0" stop-color="#83BEB9"/>
-<stop offset="1" stop-color="#5473A3"/>
+<rect fill="url(#SVGID_3_)" height="31.888" width="49.777" x="5.111" y="9.778"/>
+<rect fill="#FFFFFF" height="0.778" width="49.777" x="5.111" y="40.888"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="5.901,26.112 54.11,19.753 54.11,10.555 5.889,10.555 " stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="48.5547" y2="42.6262">
+<stop offset="0" style="stop-color:#83BEB9"/>
+<stop offset="1" style="stop-color:#5473A3"/>
</linearGradient>
-<path d="M30,43.61c1.074,0,1.943,0.871,1.943,1.943,0,1.071-0.869,1.945-1.943,1.945-1.071,0-1.944-0.874-1.944-1.945,0-1.08,0.87-1.95,1.94-1.95m0-1.17c-1.719,0-3.111,1.395-3.111,3.111,0,1.719,1.393,3.111,3.111,3.111s3.111-1.393,3.111-3.111c0-1.71-1.39-3.11-3.11-3.11z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.573" y2="48.8">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M30,43.611c1.074,0,1.943,0.871,1.943,1.943c0,1.071-0.869,1.945-1.943,1.945 c-1.071,0-1.944-0.874-1.944-1.945C28.056,44.482,28.929,43.611,30,43.611 M30,42.443c-1.719,0-3.111,1.395-3.111,3.111 c0,1.719,1.393,3.111,3.111,3.111s3.111-1.393,3.111-3.111C33.111,43.838,31.719,42.443,30,42.443L30,42.443z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.5732" y2="48.7959">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M55.67,7.443h-51.34c-0.858,0-1.556,0.697-1.556,1.556v38.11c0,0.86,0.697,1.556,1.556,1.556h22.74c-0.827-0.779-1.347-1.884-1.347-3.111,0-1.226,0.52-2.33,1.347-3.111h-22.74v-33.45h51.33v33.44h-22.74c0.828,0.781,1.348,1.886,1.348,3.111,0,1.228-0.52,2.332-1.348,3.111h22.74c0.859,0,1.556-0.695,1.556-1.556v-38.1c-0.01-0.858-0.71-1.556-1.56-1.556z" fill="url(#SVGID_5_)"/>
-<path d="M43.22,52.55h-26.44c-0.701,0-1.287-0.496-1.456-1.166-0.03,0.126-0.054,0.256-0.054,0.39,0,0.86,0.676,1.556,1.51,1.556h26.44c0.832,0,1.508-0.695,1.508-1.556,0-0.134-0.021-0.264-0.054-0.39-0.17,0.68-0.75,1.17-1.46,1.17z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M55.666,7.443H4.333c-0.858,0-1.556,0.697-1.556,1.556V47.11c0,0.86,0.697,1.556,1.556,1.556h22.736 c-0.827-0.779-1.347-1.884-1.347-3.111c0-1.226,0.52-2.33,1.347-3.111H4.333V8.999h51.333v33.444H32.93 c0.828,0.781,1.348,1.886,1.348,3.111c0,1.228-0.52,2.332-1.348,3.111h22.736c0.859,0,1.556-0.695,1.556-1.556V8.999 C57.222,8.141,56.525,7.443,55.666,7.443z" fill="url(#SVGID_5_)"/>
+<path d="M43.223,52.554H16.779c-0.701,0-1.287-0.496-1.456-1.166c-0.03,0.126-0.054,0.256-0.054,0.39 c0,0.86,0.676,1.556,1.51,1.556h26.443c0.832,0,1.508-0.695,1.508-1.556c0-0.134-0.021-0.264-0.054-0.39 C44.51,52.058,43.926,52.554,43.223,52.554z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mono.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mono.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,50 +1,52 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.522" y2="58.48">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.5215" y2="58.4791">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_1_)" r="28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.48" y2="56.6">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<circle cx="30" cy="30.001" fill="url(#SVGID_1_)" r="28"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="2.4795" y2="56.5974">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_2_)" r="26.8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="51.86" y2="7.541">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A8A8A8"/>
+<circle cx="29.999" cy="30.001" fill="url(#SVGID_2_)" r="26.804"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="51.8564" y2="7.5413">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_3_)" r="22.26"/>
-<radialGradient cx="30" cy="30" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.1">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.3333" stop-color="#808080"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<circle cx="29.999" cy="30.001" fill="url(#SVGID_3_)" r="22.257"/>
+<radialGradient cx="29.998" cy="30.001" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="21.0991">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</radialGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_4_)" r="21.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="44.84" y2="13.41">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<circle cx="29.998" cy="30.001" fill="url(#SVGID_4_)" r="21.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9971" x2="29.9971" y1="44.8384" y2="13.4077">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_5_)" r="16.43"/>
-<radialGradient cx="29.92" cy="30.72" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="15.79">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="1" stop-color="#696969"/>
+<circle cx="29.998" cy="30.001" fill="url(#SVGID_5_)" r="16.432"/>
+<radialGradient cx="29.918" cy="30.7183" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="15.7949">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M43.23,39.72l-5.428-4.813h-14.61l-6.221,5.079c3.004,3.913,7.715,6.448,13.03,6.448,5.43-0.01,10.24-2.66,13.23-6.72z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<circle cx="30" cy="32.63" fill-opacity="0.15" r="10.65" stroke-opacity="0.15"/>
-<radialGradient cx="30.04" cy="27.21" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="11.99">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M43.227,39.72l-5.428-4.813H23.188l-6.221,5.079c3.004,3.913,7.715,6.448,13.03,6.448 C35.433,46.434,40.237,43.785,43.227,39.72z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="29.999" cy="32.633" fill-opacity="0.15" r="10.649" stroke-opacity="0.15"/>
+<radialGradient cx="30.0391" cy="27.208" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="11.9907">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_7_)" r="10.65"/>
-<circle cx="30" cy="30" fill="none" fill-opacity="0.15" r="9.254" stroke="#EBEBEB" stroke-opacity="0.15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="19.53" y2="40.48">
-<stop offset="0" stop-color="#DEDEDE"/>
-<stop offset="1" stop-color="#A8A8A8"/>
+<circle cx="29.999" cy="30.001" fill="url(#SVGID_7_)" r="10.649"/>
+<circle cx="30" cy="30.001" fill="none" fill-opacity="0.15" r="9.254" stroke="#EBEBEB" stroke-opacity="0.15"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.999" x2="29.999" y1="19.5313" y2="40.4805">
+<stop offset="0" style="stop-color:#DEDEDE"/>
+<stop offset="1" style="stop-color:#A8A8A8"/>
</linearGradient>
-<path d="M30,19.35c-5.88,0-10.65,4.768-10.65,10.65,0,5.88,4.768,10.65,10.65,10.65s10.65-4.769,10.65-10.65c0-5.88-4.77-10.65-10.65-10.65zm0,19.03c-4.626,0-8.374-3.75-8.374-8.376,0-4.628,3.748-8.378,8.374-8.378,4.627,0,8.378,3.75,8.378,8.378,0,4.63-3.76,8.38-8.38,8.38z" fill="url(#SVGID_8_)" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M29.997,19.352c-5.88,0-10.647,4.768-10.647,10.649 c0,5.88,4.768,10.648,10.647,10.648c5.882,0,10.651-4.769,10.651-10.648C40.648,24.119,35.879,19.352,29.997,19.352z M29.997,38.377 c-4.626,0-8.374-3.75-8.374-8.376c0-4.628,3.748-8.378,8.374-8.378c4.627,0,8.378,3.75,8.378,8.378 C38.375,34.627,34.624,38.377,29.997,38.377z" fill="url(#SVGID_8_)" fill-opacity="0.15" stroke-opacity="0.15"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mouse.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mouse.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,96 +1,98 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="30.14" cy="20.38" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="35.39">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.303" stop-color="#FFFFFF"/>
-<stop offset="0.6667" stop-color="#BFC3C2"/>
-<stop offset="1" stop-color="#EBEBEB"/>
+<g>
+<radialGradient cx="30.1362" cy="20.3848" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="35.3912">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.303" style="stop-color:#FFFFFF"/>
+<stop offset="0.6667" style="stop-color:#BFC3C2"/>
+<stop offset="1" style="stop-color:#EBEBEB"/>
</radialGradient>
-<path d="M30,57.2c-10.93,0-20.16-8.713-20.16-19.02v-24.74c0-9.115,6.905-9.869,14.6-9.869,0.865,0,1.755,0.008,2.665,0.018,0.946,0.01,1.915,0.02,2.899,0.02s1.952-0.01,2.898-0.02c0.91-0.01,1.802-0.018,2.666-0.018,7.693,0,14.6,0.754,14.6,9.869v24.74c-0.01,10.31-9.24,19.02-20.17,19.02z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="17.43" cy="-2.448" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="35.2">
-<stop offset="0" stop-color="#CED2D0"/>
-<stop offset="0.303" stop-color="#CED2D0"/>
-<stop offset="0.703" stop-color="#909495"/>
-<stop offset="0.8909" stop-color="#B7BBBA"/>
-<stop offset="1" stop-color="#DEE3E0"/>
+<path d="M30,57.201c-10.93,0-20.163-8.713-20.163-19.025V13.439c0-9.115,6.905-9.869,14.599-9.869 c0.865,0,1.755,0.008,2.665,0.018c0.946,0.01,1.915,0.02,2.899,0.02s1.952-0.01,2.898-0.02c0.91-0.01,1.802-0.018,2.666-0.018 c7.693,0,14.598,0.754,14.598,9.869v24.736C50.162,48.488,40.93,57.201,30,57.201L30,57.201z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="17.4287" cy="-2.4482" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="35.1983">
+<stop offset="0" style="stop-color:#CED2D0"/>
+<stop offset="0.303" style="stop-color:#CED2D0"/>
+<stop offset="0.703" style="stop-color:#909495"/>
+<stop offset="0.8909" style="stop-color:#B7BBBA"/>
+<stop offset="1" style="stop-color:#DEE3E0"/>
</radialGradient>
-<path d="M49.17,38.18c0,9.961-8.847,18.03-19.17,18.03s-19.17-8.072-19.17-18.03v-24.74c0-9.959,8.65-8.839,19.17-8.839s19.17-1.119,19.17,8.84v24.74z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="17.43" cy="-12.05" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="26.06">
-<stop offset="0" stop-color="#CED2D0"/>
-<stop offset="0.3273" stop-color="#CED2D0"/>
-<stop offset="0.8" stop-color="#989D9D"/>
-<stop offset="0.9333" stop-color="#BCC1BF"/>
-<stop offset="1" stop-color="#CED2D0"/>
+<path d="M49.17,38.176c0,9.961-8.847,18.033-19.17,18.033c-10.32,0-19.17-8.072-19.17-18.033V13.439 C10.83,3.48,19.481,4.6,30,4.6s19.17-1.119,19.17,8.84V38.176z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="17.4282" cy="-12.0474" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="26.0563">
+<stop offset="0" style="stop-color:#CED2D0"/>
+<stop offset="0.3273" style="stop-color:#CED2D0"/>
+<stop offset="0.8" style="stop-color:#989D9D"/>
+<stop offset="0.9333" style="stop-color:#BCC1BF"/>
+<stop offset="1" style="stop-color:#CED2D0"/>
</radialGradient>
-<path d="M49.17,22.73v-9.289c0-9.918-8.58-8.85-19.04-8.84v18.13h19.04z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.92" x2="34.69" y1="7.17" y2="18.79">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#BBBFBE"/>
+<path d="M49.17,22.729v-9.289c0-9.918-8.58-8.85-19.039-8.84v18.129H49.17z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.9238" x2="34.694" y1="7.1699" y2="18.7923">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BBBFBE"/>
</linearGradient>
-<path d="M30.72,22.14v-16.95c0.744-0.002,1.477-0.01,2.197-0.018,0.9-0.008,1.781-0.018,2.64-0.018,7.626,0,13.03,0.594,13.03,8.289v8.699h-17.87z" fill="url(#SVGID_4_)" fill-opacity="0.15" stroke-opacity="0.15"/>
-<radialGradient cx="17.43" cy="-12.05" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="26.06">
-<stop offset="0" stop-color="#CED2D0"/>
-<stop offset="0.3273" stop-color="#CED2D0"/>
-<stop offset="0.8" stop-color="#989D9D"/>
-<stop offset="0.9333" stop-color="#BCC1BF"/>
-<stop offset="1" stop-color="#CED2D0"/>
+<path d="M30.719,22.139V5.186c0.744-0.002,1.477-0.01,2.197-0.018 c0.9-0.008,1.781-0.018,2.64-0.018c7.626,0,13.026,0.594,13.026,8.289v8.699H30.719z" fill="url(#SVGID_4_)" fill-opacity="0.15" stroke-opacity="0.15"/>
+<radialGradient cx="17.4297" cy="-12.0474" gradientTransform="matrix(0.9655 0 0 0.9655 13.3019 23.1178)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="26.0574">
+<stop offset="0" style="stop-color:#CED2D0"/>
+<stop offset="0.3273" style="stop-color:#CED2D0"/>
+<stop offset="0.8" style="stop-color:#989D9D"/>
+<stop offset="0.9333" style="stop-color:#BCC1BF"/>
+<stop offset="1" style="stop-color:#CED2D0"/>
</radialGradient>
-<path d="M10.92,22.73v-9.289c0-9.918,8.579-8.85,19.04-8.84v18.13h-19.04z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.05" x2="28.95" y1="7.27" y2="22.18">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#BBBFBE"/>
+<path d="M10.92,22.729v-9.289c0-9.918,8.579-8.85,19.039-8.84v18.129H10.92z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.0469" x2="28.9546" y1="7.2695" y2="22.1773">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#BBBFBE"/>
</linearGradient>
-<path d="M11.51,22.14v-8.699c0-7.695,5.398-8.289,13.03-8.289,0.857,0,1.736,0.01,2.639,0.018,0.719,0.008,1.453,0.016,2.196,0.018v16.95h-17.87z" fill="url(#SVGID_6_)" fill-opacity="0.15" stroke-opacity="0.15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.54" x2="29.54" y1="4.572" y2="22.78">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D8DAD9"/>
+<path d="M11.509,22.139v-8.699c0-7.695,5.398-8.289,13.026-8.289 c0.857,0,1.736,0.01,2.639,0.018c0.719,0.008,1.453,0.016,2.196,0.018v16.953H11.509z" fill="url(#SVGID_6_)" fill-opacity="0.15" stroke-opacity="0.15"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.5425" x2="29.5425" y1="4.5718" y2="22.785">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D8DAD9"/>
</linearGradient>
-<path d="M30.13,4.594c-0.389,0.002-0.781,0.004-1.177,0.004v18.1h1.177v-18.11z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.92" x2="49.17" y1="22.14" y2="22.14">
-<stop offset="0" stop-color="#747474"/>
-<stop offset="0.5" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#747474"/>
+<path d="M30.131,4.594c-0.389,0.002-0.781,0.004-1.177,0.004v18.1h1.177V4.594z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="10.9199" x2="49.1699" y1="22.1396" y2="22.1396">
+<stop offset="0" style="stop-color:#747474"/>
+<stop offset="0.5" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#747474"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="1.178" width="38.25" x="10.92" y="21.55"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.72" x2="30.72" y1="4.572" y2="22.82">
-<stop offset="0" stop-color="#747474"/>
-<stop offset="0.9697" stop-color="#4E4E4E"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_8_)" height="1.178" width="38.25" x="10.92" y="21.551"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.7192" x2="30.7192" y1="4.5718" y2="22.8164">
+<stop offset="0" style="stop-color:#747474"/>
+<stop offset="0.9697" style="stop-color:#4E4E4E"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M31.31,4.594c-0.39,0.002-0.782,0.004-1.178,0.006v18.13h1.178v-18.14z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.92" x2="49.17" y1="23.32" y2="23.32">
-<stop offset="0" stop-color="#C6C9C8"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C6C9C8"/>
+<path d="M31.309,4.594c-0.39,0.002-0.782,0.004-1.178,0.006v18.129h1.178V4.594z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.9199" x2="49.1699" y1="23.3164" y2="23.3164">
+<stop offset="0" style="stop-color:#C6C9C8"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C6C9C8"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="1.176" width="38.25" x="10.92" y="22.73"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="19.09" y2="4.488">
-<stop offset="0" stop-color="#A6AAAA"/>
-<stop offset="1" stop-color="#444344"/>
+<rect fill="url(#SVGID_10_)" height="1.176" width="38.25" x="10.92" y="22.729"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30.0015" x2="30.0015" y1="19.0859" y2="4.4878">
+<stop offset="0" style="stop-color:#A6AAAA"/>
+<stop offset="1" style="stop-color:#444344"/>
</linearGradient>
-<path d="M34.61,14.77v-10.21c-1.479,0.01-7.738,0.01-9.217,0v10.21c0,2.545,2.063,4.607,4.607,4.607s4.61-2.06,4.61-4.61z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="4.429" y2="18.08">
-<stop offset="0" stop-color="#767677"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M34.609,14.773V4.564c-1.479,0.01-7.738,0.01-9.217,0v10.209c0,2.545,2.063,4.607,4.607,4.607 S34.609,17.318,34.609,14.773z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="4.4292" y2="18.0821">
+<stop offset="0" style="stop-color:#767677"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M30,18.2c-2.216,0-4.019-1.805-4.019-4.021v-9.61c0.36,0.002,7.677,0.002,8.039,0v9.613c0,2.22-1.8,4.02-4.02,4.02z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30" x2="30" y1="4.365" y2="16.8">
-<stop offset="0" stop-color="#595757"/>
-<stop offset="0.3212" stop-color="#B5B5B5"/>
-<stop offset="0.6303" stop-color="#595959"/>
-<stop offset="0.8242" stop-color="#898889"/>
-<stop offset="1" stop-color="#333333"/>
+<path d="M30,18.205c-2.216,0-4.019-1.805-4.019-4.021V4.57c0.36,0.002,7.677,0.002,8.039,0v9.613 C34.021,16.4,32.218,18.205,30,18.205L30,18.205z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="29.9995" x2="29.9995" y1="4.3652" y2="16.8027">
+<stop offset="0" style="stop-color:#595757"/>
+<stop offset="0.3212" style="stop-color:#B5B5B5"/>
+<stop offset="0.6303" style="stop-color:#595959"/>
+<stop offset="0.8242" style="stop-color:#898889"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<path d="M30,16.85c-1.784,0-3.235-1.451-3.235-3.235v-5.905c0-1.783,1.451-3.237,3.235-3.237s3.235,1.454,3.235,3.237v5.902c0,1.78-1.46,3.23-3.24,3.23z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="30" x2="30" y1="4.966" y2="16.22">
-<stop offset="0" stop-color="#3C3A3A"/>
-<stop offset="0.3212" stop-color="#939393"/>
-<stop offset="0.4788" stop-color="#898889"/>
-<stop offset="0.6848" stop-color="#2B2B2B"/>
-<stop offset="0.8788" stop-color="#595959"/>
-<stop offset="1" stop-color="#333333"/>
+<path d="M30,16.853c-1.784,0-3.235-1.451-3.235-3.235V7.715c0-1.783,1.451-3.237,3.235-3.237 s3.235,1.454,3.235,3.237v5.902C33.235,15.401,31.784,16.853,30,16.853L30,16.853z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="29.9995" x2="29.9995" y1="4.9658" y2="16.2196">
+<stop offset="0" style="stop-color:#3C3A3A"/>
+<stop offset="0.3212" style="stop-color:#939393"/>
+<stop offset="0.4788" style="stop-color:#898889"/>
+<stop offset="0.6848" style="stop-color:#2B2B2B"/>
+<stop offset="0.8788" style="stop-color:#595959"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<path d="M30,16.26c-1.46,0-2.648-1.188-2.648-2.647v-5.895c0-1.46,1.188-2.647,2.648-2.647s2.648,1.188,2.648,2.647v5.902c0,1.46-1.19,2.64-2.65,2.64z" fill="url(#SVGID_14_)"/>
+<path d="M30,16.265c-1.46,0-2.648-1.188-2.648-2.647V7.715c0-1.46,1.188-2.647,2.648-2.647 s2.648,1.188,2.648,2.647v5.902C32.648,15.076,31.46,16.265,30,16.265L30,16.265z" fill="url(#SVGID_14_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,48 +1,50 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.95" x2="25.95" y1="6.626" y2="53.87">
-<stop offset="0" stop-color="#AAC380"/>
-<stop offset="1" stop-color="#234851"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.9487" x2="25.9487" y1="6.6265" y2="53.8732">
+<stop offset="0" style="stop-color:#AAC380"/>
+<stop offset="1" style="stop-color:#234851"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="47.9" width="47.9" x="2" y="6.05"/>
-<path d="M49.9,11.43c-3.863-2.852-8.631-4.563-13.81-4.563-6.181,0.031-11.98,2.467-16.33,6.858-4.348,4.395-6.725,10.22-6.694,16.4,0.067,12.7,10.44,23.02,23.13,23.02h0.123c4.961-0.023,9.662-1.621,13.58-4.518v-37.19zm-13.7,21.43c-1.764,0-3.318-1.416-3.592-3.249,0.191-1.826,1.738-3.249,3.576-3.256l0.016-1.342v1.342c1.857,0,3.381,1.372,3.598,3.217-0.27,1.85-1.82,3.29-3.61,3.29z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 -0.0051 -0.0051 -1 -262.5146 -282.5771)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.1" x2="297.1" y1="-292.7" y2="-336.3">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.6606" stop-color="#919595"/>
-<stop offset="1" stop-color="#BCBFBE"/>
+<rect fill="url(#SVGID_1_)" height="47.899" width="47.898" x="2" y="6.05"/>
+<path d="M49.898,11.426c-3.863-2.852-8.631-4.563-13.814-4.563c-6.181,0.031-11.98,2.467-16.328,6.858 c-4.348,4.395-6.725,10.215-6.694,16.395c0.067,12.696,10.445,23.02,23.133,23.02h0.123c4.961-0.023,9.662-1.621,13.58-4.518V11.426 z M36.197,32.863c-1.764,0-3.318-1.416-3.592-3.249c0.191-1.826,1.738-3.249,3.576-3.256l0.016-1.342v1.342 c1.857,0,3.381,1.372,3.598,3.217C39.543,31.42,37.994,32.855,36.197,32.863z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 -0.0051 -0.0051 -1 -262.5146 -282.5771)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.1133" x2="297.1133" y1="-292.6729" y2="-336.2676">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.6606" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#BCBFBE"/>
</linearGradient>
-<path d="M36.09,8.372c-12.04,0.062-21.75,9.867-21.69,21.91,0.062,12.04,9.87,21.75,21.91,21.69,12.04-0.07,21.75-9.87,21.69-21.91s-9.87-21.75-21.91-21.69z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0.0051 0.0051 1 516.8711 1754.7261)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="450.7" x2="493" y1="-1716" y2="-1716">
-<stop offset="0" stop-color="#A3A6A6"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A3A6A6"/>
+<path d="M36.09,8.372c-12.037,0.062-21.749,9.867-21.687,21.907c0.062,12.04,9.87,21.749,21.908,21.688 C48.35,51.904,58.061,42.096,58,30.056C57.938,18.019,48.129,8.311,36.09,8.372z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(-1 0.0051 0.0051 1 516.8711 1754.7261)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="450.7412" x2="492.9824" y1="-1716.1777" y2="-1716.1777">
+<stop offset="0" style="stop-color:#A3A6A6"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A3A6A6"/>
</linearGradient>
-<path d="M36.31,50.84c-11.52,0.06-20.92-9.11-21.22-20.56-0.003,0.15-0.009,0.301-0.007,0.455,0.059,11.66,9.562,21.07,21.23,21.01,11.67-0.059,21.08-9.563,21.01-21.23,0-0.152-0.008-0.303-0.014-0.451-0.18,11.45-9.49,20.71-21,20.77z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.2" x2="36.2" y1="9.362" y2="51.1">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M36.307,50.838C24.793,50.895,15.39,41.73,15.089,30.275 c-0.003,0.15-0.009,0.301-0.007,0.455c0.059,11.663,9.562,21.073,21.228,21.012c11.666-0.059,21.076-9.563,21.014-21.229 c0-0.152-0.008-0.303-0.014-0.451C57.129,41.516,47.818,50.779,36.307,50.838z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.2002" x2="36.2002" y1="9.3618" y2="51.1027">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M36.09,8.991c-11.69,0.061-21.12,9.589-21.06,21.29,0.061,11.7,9.588,21.12,21.28,21.07,11.7-0.059,21.12-9.586,21.07-21.28-0.06-11.71-9.6-21.14-21.29-21.08zm0.16,30.16c-4.961,0.023-9.002-3.975-9.029-8.938-0.026-4.964,3.977-9.003,8.938-9.031,4.963-0.024,9.004,3.977,9.029,8.939h0.002c0.02,4.96-3.98,9-8.94,9.03z" fill="url(#SVGID_4_)"/>
-<path d="M16.08,34.33c-2.194-10.6,4.263-21.14,14.7-24,1.703-0.464,3.46-0.704,5.222-0.715,8.754-0.044,16.83,5.668,19.65,13.89l0.215,0.626-10.57,2.889-0.209-0.512c-1.465-3.585-5.061-5.98-8.945-5.959-0.834,0.004-1.666,0.117-2.477,0.338-4.679,1.28-7.677,5.86-6.972,10.65l0.081,0.545-10.57,2.889-0.12-0.64z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill="#222021" fill-opacity="0.2" points="46.3,47.17,47.64,48.33,47.64,14.17,49.9,12.22,49.9,9.72,46.3,12.83" stroke-opacity="0.2"/>
-<polygon fill="#222021" fill-opacity="0.2" points="45.6,47.17,46.94,48.33,46.94,13.47,49.9,10.82,49.9,9.02,45.6,12.83" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.95" x2="25.95" y1="5.698" y2="53.77">
-<stop offset="0" stop-color="#CBD7A2"/>
-<stop offset="1" stop-color="#214338"/>
+<path d="M36.092,8.991C24.396,9.052,14.966,18.58,15.026,30.275c0.061,11.696,9.588,21.125,21.283,21.067 c11.697-0.059,21.125-9.586,21.066-21.282C57.316,18.363,47.785,8.934,36.092,8.991z M36.246,39.152 c-4.961,0.023-9.002-3.975-9.029-8.938l0,0c-0.026-4.964,3.977-9.003,8.938-9.031c4.963-0.024,9.004,3.977,9.029,8.939h0.002 C45.211,35.084,41.209,39.125,36.246,39.152z" fill="url(#SVGID_4_)"/>
+<path d="M16.076,34.326c-2.194-10.6,4.263-21.14,14.704-23.995c1.703-0.464,3.46-0.704,5.222-0.715 c8.754-0.044,16.834,5.668,19.646,13.892l0.215,0.626l-10.566,2.889l-0.209-0.512c-1.465-3.585-5.061-5.98-8.945-5.959 c-0.834,0.004-1.666,0.117-2.477,0.338c-4.679,1.28-7.677,5.86-6.972,10.653l0.081,0.545l-10.567,2.889L16.076,34.326z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill="#222021" fill-opacity="0.2" points="46.303,47.168 47.645,48.328 47.645,14.173 49.898,12.222 49.898,9.72 46.303,12.833 " stroke-opacity="0.2"/>
+<polygon fill="#222021" fill-opacity="0.2" points="45.604,47.168 46.943,48.328 46.943,13.474 49.898,10.821 49.898,9.02 45.604,12.833 " stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.9487" x2="25.9487" y1="5.6982" y2="53.7662">
+<stop offset="0" style="stop-color:#CBD7A2"/>
+<stop offset="1" style="stop-color:#214338"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="46.3,47.17,46.3,12.83,49.9,9.72,49.9,6.05,2,6.05,2,53.95,49.9,53.95,49.9,50.28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25.95" x2="25.95" y1="6.408" y2="53.07">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.75" stop-color="#326644"/>
-<stop offset="1" stop-color="#3F7841"/>
+<polygon fill="url(#SVGID_5_)" points="46.303,47.168 46.303,12.833 49.898,9.72 49.898,6.05 2,6.05 2,53.949 49.898,53.949 49.898,50.281 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25.9497" x2="25.9497" y1="6.4077" y2="53.0723">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.75" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#3F7841"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="2.7,53.25,2.7,6.749,49.2,6.749,49.2,9.399,45.6,12.52,45.6,47.49,49.2,50.6,49.2,53.25"/>
-<path d="M38.69,18.95l-2.051-4.99-11.78,5.244,0.018,15.92c-1.804-1.18-4.464-1.564-7.167-0.836-4.263,1.15-7.018,4.631-6.156,7.768,0.866,3.143,5.021,4.754,9.283,3.605,3.603-0.973,6.097-3.545,6.083-6.293-0.012-2.748,0.022-10.21,0-15.61l11.78-4.81z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2168" x2="-2168" y1="2146" y2="2120">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D5D4"/>
+<polygon fill="url(#SVGID_6_)" points="2.7,53.25 2.7,6.749 49.199,6.749 49.199,9.399 45.604,12.515 45.604,47.486 49.199,50.6 49.199,53.25 "/>
+<path d="M38.686,18.954l-2.051-4.99l-11.784,5.244l0.018,15.921c-1.804-1.18-4.464-1.564-7.167-0.836 c-4.263,1.15-7.018,4.631-6.156,7.768c0.866,3.143,5.021,4.754,9.283,3.605c3.603-0.973,6.097-3.545,6.083-6.293 c-0.012-2.748,0.022-10.209,0-15.607L38.686,18.954z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2168.2642" x2="-2168.2642" y1="2145.8682" y2="2119.928">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D5D4"/>
</linearGradient>
-<path d="M39.38,19.65l-2.051-4.991-11.78,5.245,0.017,15.92c-1.804-1.18-4.464-1.564-7.167-0.834-4.263,1.15-7.018,4.629-6.155,7.766,0.866,3.143,5.021,4.754,9.283,3.605,3.602-0.973,6.097-3.543,6.083-6.293-0.012-2.748,0.022-10.21,0-15.61l11.78-4.81z" fill="url(#SVGID_7_)"/>
+<path d="M39.385,19.654l-2.051-4.991l-11.783,5.245l0.017,15.92c-1.804-1.18-4.464-1.564-7.167-0.834 c-4.263,1.15-7.018,4.629-6.155,7.766c0.866,3.143,5.021,4.754,9.283,3.605c3.602-0.973,6.097-3.543,6.083-6.293 c-0.012-2.748,0.022-10.208,0-15.606L39.385,19.654z" fill="url(#SVGID_7_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_album.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_album.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,66 +1,68 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-311.8" x2="-311.8" y1="1120" y2="1176">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.6909" stop-color="#848888"/>
-<stop offset="1" stop-color="#A7ABAA"/>
+<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-311.7573" x2="-311.7573" y1="1119.6411" y2="1175.6382">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.6909" style="stop-color:#848888"/>
+<stop offset="1" style="stop-color:#A7ABAA"/>
</linearGradient>
-<path d="M29.86,2.002c-15.47,0.08-27.94,12.68-27.86,28.14s12.68,27.94,28.14,27.86c15.46-0.08,27.94-12.68,27.86-28.14s-12.68-27.94-28.14-27.86zm0.18,35.2c-3.977,0.021-7.215-3.187-7.235-7.162-0.018-3.977,3.185-7.218,7.163-7.237,3.977-0.021,7.217,3.188,7.236,7.163,0.02,3.98-3.19,7.22-7.16,7.24z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-311.8" x2="-311.8" y1="1136" y2="1159">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<path d="M29.857,2.002C14.394,2.082,1.922,14.679,2.001,30.143S14.68,58.079,30.145,57.999 C45.605,57.921,58.079,45.321,58,29.858C57.92,14.396,45.322,1.924,29.857,2.002z M30.035,37.199 c-3.977,0.021-7.215-3.187-7.235-7.162c-0.018-3.977,3.185-7.218,7.163-7.237c3.977-0.021,7.217,3.188,7.236,7.163 C37.221,33.938,34.014,37.179,30.035,37.199z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-311.7583" x2="-311.7583" y1="1135.5718" y2="1159.377">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M29.94,18c-6.63,0.03-11.97,5.44-11.94,12.06,0.035,6.625,5.433,11.97,12.06,11.94,6.627-0.032,11.97-5.432,11.94-12.06-0.03-6.63-5.43-11.97-12.06-11.94zm0.09,18.4c-3.534,0.018-6.413-2.833-6.433-6.367-0.016-3.533,2.833-6.414,6.367-6.432,3.533-0.017,6.415,2.833,6.434,6.367,0.02,3.53-2.83,6.41-6.37,6.43z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0.0051 -0.0051 -1 -1180.5496 3117.9622)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1253" x2="-1199" y1="3068" y2="3068">
-<stop offset="0" stop-color="#A3A6A6"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A3A6A6"/>
+<path d="M29.939,18.001C23.312,18.034,17.967,23.435,18,30.063c0.035,6.625,5.433,11.972,12.061,11.936 c6.627-0.032,11.972-5.432,11.938-12.061C41.966,23.31,36.566,17.966,29.939,18.001z M30.032,36.399 c-3.534,0.018-6.413-2.833-6.433-6.367c-0.016-3.533,2.833-6.414,6.367-6.432c3.533-0.017,6.415,2.833,6.434,6.367 C36.418,33.503,33.566,36.381,30.032,36.399z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(-1 0.0051 -0.0051 -1 -1180.5496 3117.9622)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1253.3975" x2="-1199.1357" y1="3067.8501" y2="3067.8501">
+<stop offset="0" style="stop-color:#A3A6A6"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A3A6A6"/>
</linearGradient>
-<path d="M30.14,56.55c-14.79,0.08-26.87-11.7-27.26-26.41-0.003,0.191-0.013,0.386-0.011,0.583,0.076,14.98,12.28,27.07,27.27,26.99,14.99-0.079,27.07-12.28,27-27.27-0.001-0.195-0.013-0.389-0.018-0.582-0.24,14.72-12.2,26.62-26.98,26.69z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-318.2" x2="-305.4" y1="1150" y2="1150">
-<stop offset="0" stop-color="#878B8B"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#878B8B"/>
+<path d="M30.135,56.55C15.348,56.626,3.267,44.851,2.884,30.139 c-0.003,0.191-0.013,0.386-0.011,0.583c0.076,14.98,12.283,27.067,27.267,26.994c14.987-0.079,27.074-12.285,26.995-27.27 c-0.001-0.195-0.013-0.389-0.018-0.582C56.883,44.577,44.925,56.476,30.135,56.55z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 -0.0051 0.0051 1 335.906 -1118.9601)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-318.1577" x2="-305.3569" y1="1150.27" y2="1150.27">
+<stop offset="0" style="stop-color:#878B8B"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#878B8B"/>
</linearGradient>
-<path d="M30.03,36.4c3.534-0.019,6.386-2.896,6.368-6.432-0.002-0.204-0.014-0.403-0.035-0.6-0.285,3.254-3.006,6.014-6.338,6.03-3.333,0.019-6.082-2.715-6.399-5.967-0.017,0.199-0.029,0.399-0.028,0.601,0.03,3.54,2.91,6.39,6.44,6.37z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 347 -1116.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-317" x2="-317" y1="1120" y2="1174">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M30.032,36.399c3.534-0.019,6.386-2.896,6.368-6.432c-0.002-0.204-0.014-0.403-0.035-0.6 c-0.285,3.254-3.006,6.014-6.338,6.03c-3.333,0.019-6.082-2.715-6.399-5.967c-0.017,0.199-0.029,0.399-0.028,0.601 C23.619,33.566,26.498,36.417,30.032,36.399z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 347 -1116.5)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-317.0005" x2="-317.0005" y1="1119.7017" y2="1173.7001">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M29.86,2.802c-15.02,0.076-27.14,12.32-27.06,27.34,0.079,15.02,12.32,27.13,27.34,27.06,15.02-0.076,27.14-12.31,27.06-27.34-0.08-15.02-12.32-27.14-27.34-27.06zm0.2,38.74c-6.373,0.032-11.56-5.106-11.6-11.48h-0.004c-0.033-6.375,5.109-11.56,11.48-11.6,6.375-0.033,11.56,5.105,11.6,11.48h0.002c0.03,6.38-5.11,11.57-11.48,11.6z" fill="url(#SVGID_5_)"/>
-<path d="M4.15,35.34c-2.82-13.62,5.477-27.15,18.89-30.82,2.186-0.598,4.444-0.907,6.708-0.918,11.25-0.056,21.62,7.281,25.24,17.84l0.275,0.806-13.57,3.709-0.267-0.655c-1.885-4.605-6.5-7.685-11.49-7.657-1.072,0.005-2.142,0.151-3.18,0.435-6.014,1.646-9.861,7.526-8.959,13.68l0.103,0.702-13.57,3.72-0.17-0.84z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M29.861,2.802C14.838,2.878,2.723,15.118,2.8,30.139c0.079,15.021,12.318,27.134,27.34,27.06 c15.022-0.076,27.136-12.314,27.06-27.335C57.122,14.838,44.881,2.725,29.861,2.802z M30.059,41.539 c-6.373,0.032-11.564-5.106-11.596-11.479h-0.004c-0.033-6.375,5.109-11.565,11.481-11.598c6.375-0.033,11.565,5.105,11.597,11.479 h0.002C41.572,36.315,36.43,41.507,30.059,41.539z" fill="url(#SVGID_5_)"/>
+<path d="M4.15,35.341C1.33,21.725,9.627,8.188,23.037,4.521 c2.186-0.598,4.444-0.907,6.708-0.918c11.248-0.056,21.622,7.281,25.237,17.844l0.275,0.806l-13.574,3.709l-0.267-0.655 c-1.885-4.605-6.5-7.685-11.491-7.657c-1.072,0.005-2.142,0.151-3.18,0.435c-6.014,1.646-9.861,7.526-8.959,13.682l0.103,0.702 L4.32,36.177L4.15,35.341z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5__)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,50 +1,50 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.95" x2="25.95" y1="6.626" y2="53.87">
-<stop offset="0" stop-color="#AAC380"/>
-<stop offset="1" stop-color="#234851"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="25.9487" x2="25.9487" y1="6.6265" y2="53.8732">
+<stop offset="0" style="stop-color:#AAC380"/>
+<stop offset="1" style="stop-color:#234851"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="47.9" width="47.9" x="2" y="6.05"/>
-<path d="M49.9,11.43c-3.863-2.852-8.631-4.563-13.81-4.563-6.181,0.031-11.98,2.467-16.33,6.858-4.348,4.395-6.725,10.22-6.694,16.4,0.067,12.7,10.44,23.02,23.13,23.02h0.123c4.961-0.023,9.662-1.621,13.58-4.518v-37.19zm-13.7,21.43c-1.764,0-3.318-1.416-3.592-3.249,0.191-1.826,1.738-3.249,3.576-3.256l0.016-1.342v1.342c1.857,0,3.381,1.372,3.598,3.217-0.27,1.85-1.82,3.29-3.61,3.29z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 -0.0051 -0.0051 -1 -262.5146 -282.5771)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.1" x2="297.1" y1="-292.7" y2="-336.3">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.6606" stop-color="#919595"/>
-<stop offset="1" stop-color="#BCBFBE"/>
+<rect fill="url(#SVGID_1_)" height="47.899" width="47.898" x="2" y="6.05"/>
+<path d="M49.898,11.426c-3.863-2.852-8.631-4.563-13.814-4.563c-6.181,0.031-11.98,2.467-16.328,6.858 c-4.348,4.395-6.725,10.215-6.694,16.395c0.067,12.696,10.445,23.02,23.133,23.02h0.123c4.961-0.023,9.662-1.621,13.58-4.518V11.426 z M36.197,32.863c-1.764,0-3.318-1.416-3.592-3.249c0.191-1.826,1.738-3.249,3.576-3.256l0.016-1.342v1.342 c1.857,0,3.381,1.372,3.598,3.217C39.543,31.42,37.994,32.855,36.197,32.863z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 -0.0051 -0.0051 -1 -262.5146 -282.5771)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.1133" x2="297.1133" y1="-292.6729" y2="-336.2676">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.6606" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#BCBFBE"/>
</linearGradient>
-<path d="M36.09,8.372c-12.04,0.062-21.75,9.867-21.69,21.91,0.062,12.04,9.87,21.75,21.91,21.69,12.04-0.07,21.75-9.87,21.69-21.91s-9.87-21.75-21.91-21.69z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0.0051 0.0051 1 516.8711 1754.7261)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="450.7" x2="493" y1="-1716" y2="-1716">
-<stop offset="0" stop-color="#A3A6A6"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A3A6A6"/>
+<path d="M36.09,8.372c-12.037,0.062-21.749,9.867-21.687,21.907c0.062,12.04,9.87,21.749,21.908,21.688 C48.35,51.904,58.061,42.096,58,30.056C57.938,18.019,48.129,8.311,36.09,8.372z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(-1 0.0051 0.0051 1 516.8711 1754.7261)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="450.7412" x2="492.9824" y1="-1716.1777" y2="-1716.1777">
+<stop offset="0" style="stop-color:#A3A6A6"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A3A6A6"/>
</linearGradient>
-<path d="M36.31,50.84c-11.52,0.06-20.92-9.11-21.22-20.56-0.003,0.15-0.009,0.301-0.007,0.455,0.059,11.66,9.562,21.07,21.23,21.01,11.67-0.059,21.08-9.563,21.01-21.23,0-0.152-0.008-0.303-0.014-0.451-0.18,11.45-9.49,20.71-21,20.77z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.2" x2="36.2" y1="9.362" y2="51.1">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M36.307,50.838C24.793,50.895,15.39,41.73,15.089,30.275 c-0.003,0.15-0.009,0.301-0.007,0.455c0.059,11.663,9.562,21.073,21.228,21.012c11.666-0.059,21.076-9.563,21.014-21.229 c0-0.152-0.008-0.303-0.014-0.451C57.129,41.516,47.818,50.779,36.307,50.838z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.2002" x2="36.2002" y1="9.3618" y2="51.1027">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M36.09,8.991c-11.69,0.061-21.12,9.589-21.06,21.29,0.061,11.7,9.588,21.12,21.28,21.07,11.7-0.059,21.12-9.586,21.07-21.28-0.06-11.71-9.6-21.14-21.29-21.08zm0.16,30.16c-4.961,0.023-9.002-3.975-9.029-8.938-0.026-4.964,3.977-9.003,8.938-9.031,4.963-0.024,9.004,3.977,9.029,8.939h0.002c0.02,4.96-3.98,9-8.94,9.03z" fill="url(#SVGID_4_)"/>
-<path d="M16.08,34.33c-2.194-10.6,4.263-21.14,14.7-24,1.703-0.464,3.46-0.704,5.222-0.715,8.754-0.044,16.83,5.668,19.65,13.89l0.215,0.626-10.57,2.889-0.209-0.512c-1.465-3.585-5.061-5.98-8.945-5.959-0.834,0.004-1.666,0.117-2.477,0.338-4.679,1.28-7.677,5.86-6.972,10.65l0.081,0.545-10.57,2.889-0.12-0.64z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill="#222021" fill-opacity="0.2" points="46.3,47.17,47.64,48.33,47.64,14.17,49.9,12.22,49.9,9.72,46.3,12.83" stroke-opacity="0.2"/>
-<polygon fill="#222021" fill-opacity="0.2" points="45.6,47.17,46.94,48.33,46.94,13.47,49.9,10.82,49.9,9.02,45.6,12.83" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.95" x2="25.95" y1="5.698" y2="53.77">
-<stop offset="0" stop-color="#CBD7A2"/>
-<stop offset="1" stop-color="#214338"/>
+<path d="M36.092,8.991C24.396,9.052,14.966,18.58,15.026,30.275c0.061,11.696,9.588,21.125,21.283,21.067 c11.697-0.059,21.125-9.586,21.066-21.282C57.316,18.363,47.785,8.934,36.092,8.991z M36.246,39.152 c-4.961,0.023-9.002-3.975-9.029-8.938l0,0c-0.026-4.964,3.977-9.003,8.938-9.031c4.963-0.024,9.004,3.977,9.029,8.939h0.002 C45.211,35.084,41.209,39.125,36.246,39.152z" fill="url(#SVGID_4_)"/>
+<path d="M16.076,34.326c-2.194-10.6,4.263-21.14,14.704-23.995c1.703-0.464,3.46-0.704,5.222-0.715 c8.754-0.044,16.834,5.668,19.646,13.892l0.215,0.626l-10.566,2.889l-0.209-0.512c-1.465-3.585-5.061-5.98-8.945-5.959 c-0.834,0.004-1.666,0.117-2.477,0.338c-4.679,1.28-7.677,5.86-6.972,10.653l0.081,0.545l-10.567,2.889L16.076,34.326z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill="#222021" fill-opacity="0.2" points="46.303,47.168 47.645,48.328 47.645,14.173 49.898,12.222 49.898,9.72 46.303,12.833 " stroke-opacity="0.2"/>
+<polygon fill="#222021" fill-opacity="0.2" points="45.604,47.168 46.943,48.328 46.943,13.474 49.898,10.821 49.898,9.02 45.604,12.833 " stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25.9487" x2="25.9487" y1="5.6982" y2="53.7662">
+<stop offset="0" style="stop-color:#CBD7A2"/>
+<stop offset="1" style="stop-color:#214338"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="46.3,47.17,46.3,12.83,49.9,9.72,49.9,6.05,2,6.05,2,53.95,49.9,53.95,49.9,50.28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25.95" x2="25.95" y1="6.408" y2="53.07">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.75" stop-color="#326644"/>
-<stop offset="1" stop-color="#3F7841"/>
+<polygon fill="url(#SVGID_5_)" points="46.303,47.168 46.303,12.833 49.898,9.72 49.898,6.05 2,6.05 2,53.949 49.898,53.949 49.898,50.281 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25.9497" x2="25.9497" y1="6.4077" y2="53.0723">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.75" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#3F7841"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="2.7,53.25,2.7,6.749,49.2,6.749,49.2,9.399,45.6,12.52,45.6,47.49,49.2,50.6,49.2,53.25"/>
-<path d="M38.69,18.95l-2.051-4.99-11.78,5.244,0.018,15.92c-1.804-1.18-4.464-1.564-7.167-0.836-4.263,1.15-7.018,4.631-6.156,7.768,0.866,3.143,5.021,4.754,9.283,3.605,3.603-0.973,6.097-3.545,6.083-6.293-0.012-2.748,0.022-10.21,0-15.61l11.78-4.81z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2168" x2="-2168" y1="2146" y2="2120">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D5D4"/>
+<polygon fill="url(#SVGID_6_)" points="2.7,53.25 2.7,6.749 49.199,6.749 49.199,9.399 45.604,12.515 45.604,47.486 49.199,50.6 49.199,53.25 "/>
+<path d="M38.686,18.954l-2.051-4.99l-11.784,5.244l0.018,15.921c-1.804-1.18-4.464-1.564-7.167-0.836 c-4.263,1.15-7.018,4.631-6.156,7.768c0.866,3.143,5.021,4.754,9.283,3.605c3.603-0.973,6.097-3.545,6.083-6.293 c-0.012-2.748,0.022-10.209,0-15.607L38.686,18.954z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2168.2642" x2="-2168.2642" y1="2145.8682" y2="2119.928">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D5D4"/>
</linearGradient>
-<path d="M39.38,19.65l-2.051-4.991-11.78,5.245,0.017,15.92c-1.804-1.18-4.464-1.564-7.167-0.834-4.263,1.15-7.018,4.629-6.155,7.766,0.866,3.143,5.021,4.754,9.283,3.605,3.602-0.973,6.097-3.543,6.083-6.293-0.012-2.748,0.022-10.21,0-15.61l11.78-4.81z" fill="url(#SVGID_7_)"/>
+<path d="M39.385,19.654l-2.051-4.991l-11.783,5.245l0.017,15.92c-1.804-1.18-4.464-1.564-7.167-0.834 c-4.263,1.15-7.018,4.629-6.155,7.766c0.866,3.143,5.021,4.754,9.283,3.605c3.602-0.973,6.097-3.543,6.083-6.293 c-0.012-2.748,0.022-10.208,0-15.606L39.385,19.654z" fill="url(#SVGID_7_)"/>
<rect fill="none" height="60" width="60"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_empty.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_empty.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,119 +1,121 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y2="62.19">
-<stop offset="0" stop-color="#754B50"/>
-<stop offset="1" stop-color="#2F1F24"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="0" y2="62.1923">
+<stop offset="0" style="stop-color:#754B50"/>
+<stop offset="1" style="stop-color:#2F1F24"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="4.51" y2="55.51">
-<stop offset="0" stop-color="#A7A8A9"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="4.5098" y2="55.5135">
+<stop offset="0" style="stop-color:#A7A8A9"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M30,55.93c-14.29,0-25.92-11.63-25.92-25.92,0-14.3,11.63-25.93,25.92-25.93,14.3,0,25.93,11.63,25.93,25.93,0,14.29-11.63,25.92-25.93,25.92z" fill="url(#SVGID_2_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.199" y2="54.82">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M29.999,55.926c-14.294,0-25.925-11.631-25.925-25.925 c0-14.296,11.631-25.928,25.925-25.928c14.296,0,25.927,11.632,25.927,25.928C55.926,44.295,44.295,55.926,29.999,55.926 L29.999,55.926z" fill="url(#SVGID_2_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="5.1992" y2="54.8236">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M30,55.22c-13.91,0-25.22-11.32-25.22-25.22,0-13.91,11.32-25.23,25.22-25.23,13.91,0,25.23,11.32,25.23,25.23s-11.32,25.22-25.23,25.22z" fill="url(#SVGID_3_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="4.356" y2="54.24">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D8D8D7"/>
+<path d="M29.999,55.225c-13.908,0-25.224-11.315-25.224-25.224 c0-13.909,11.315-25.227,25.224-25.227c13.91,0,25.227,11.317,25.227,25.227C55.226,43.909,43.909,55.225,29.999,55.225 L29.999,55.225z" fill="url(#SVGID_3_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0005" x2="30.0005" y1="4.3555" y2="54.244">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D8D8D7"/>
</linearGradient>
-<circle cx="30" cy="29.3" fill="url(#SVGID_4_)" r="24.52"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.194" y2="52.6">
-<stop offset="0" stop-color="#F4F5F4"/>
-<stop offset="0.7818" stop-color="#CCCBCB"/>
-<stop offset="1" stop-color="#D0D1D1"/>
+<circle cx="30" cy="29.3" fill="url(#SVGID_4_)" r="24.525"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="5.1943" y2="52.5953">
+<stop offset="0" style="stop-color:#F4F5F4"/>
+<stop offset="0.7818" style="stop-color:#CCCBCB"/>
+<stop offset="1" style="stop-color:#D0D1D1"/>
</linearGradient>
-<circle cx="30" cy="29.3" fill="url(#SVGID_5_)" r="23.48"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="48.44" y2="9.628">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A8A7A7"/>
+<circle cx="30" cy="29.3" fill="url(#SVGID_5_)" r="23.477"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9995" x2="29.9995" y1="48.4443" y2="9.628">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A8A7A7"/>
</linearGradient>
-<circle cx="30" cy="29.3" fill="url(#SVGID_6_)" r="19.5"/>
-<radialGradient cx="36.76" cy="71.52" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="19.28">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.3333" stop-color="#808080"/>
-<stop offset="1" stop-color="#1B1B1C"/>
+<circle cx="30" cy="29.3" fill="url(#SVGID_6_)" r="19.495"/>
+<radialGradient cx="36.7554" cy="71.5244" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="19.2764">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.3333" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1B1B1C"/>
</radialGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_7_)" r="18.48"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="42.3" y2="14.77">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#1B1B1C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.9995" x2="29.9995" y1="42.2959" y2="14.7661">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#1B1B1C"/>
</linearGradient>
-<circle cx="30" cy="29.3" fill="url(#SVGID_8_)" r="14.39"/>
-<radialGradient cx="36.68" cy="72.18" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="14.43">
-<stop offset="0" stop-color="#B3B4B4"/>
-<stop offset="1" stop-color="#696969"/>
+<circle cx="30" cy="29.3" fill="url(#SVGID_8_)" r="14.393"/>
+<radialGradient cx="36.6816" cy="72.1777" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="14.4318">
+<stop offset="0" style="stop-color:#B3B4B4"/>
+<stop offset="1" style="stop-color:#696969"/>
</radialGradient>
-<path d="M41.59,37.81l-4.756-4.216h-12.8l-5.45,4.448c2.632,3.429,6.759,5.649,11.41,5.649,4.77,0,8.98-2.32,11.6-5.88z" fill="url(#SVGID_9_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<circle cx="30" cy="31.6" fill-opacity="0.15" r="9.327" stroke-opacity="0.15"/>
-<radialGradient cx="36.79" cy="68.97" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="10.95">
-<stop offset="0" stop-color="#4D4E4E"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M41.586,37.812l-4.756-4.216H24.035l-5.45,4.448c2.632,3.429,6.759,5.649,11.414,5.649 C34.758,43.693,38.967,41.372,41.586,37.812z" fill="url(#SVGID_9_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<circle cx="30" cy="31.604" fill-opacity="0.15" r="9.327" stroke-opacity="0.15"/>
+<radialGradient cx="36.792" cy="68.9736" gradientTransform="matrix(0.9587 0 0 0.9587 -5.2375 -39.2709)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="10.9541">
+<stop offset="0" style="stop-color:#4D4E4E"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="30" cy="29.3" fill="url(#SVGID_10_)" r="9.327"/>
<circle cx="30" cy="29.3" fill="none" fill-opacity="0.15" r="8.106" stroke="#EBEBEB" stroke-opacity="0.15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="20.13" y2="38.48">
-<stop offset="0" stop-color="#DEDEDD"/>
-<stop offset="1" stop-color="#A8A7A7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="30" x2="30" y1="20.1299" y2="38.4788">
+<stop offset="0" style="stop-color:#DEDEDD"/>
+<stop offset="1" style="stop-color:#A8A7A7"/>
</linearGradient>
-<path d="M30,19.97c-5.151,0-9.326,4.176-9.326,9.327s4.175,9.327,9.326,9.327c5.15,0,9.328-4.176,9.328-9.327s-4.18-9.33-9.33-9.33zm0,16.67c-4.052,0-7.335-3.284-7.335-7.336,0-4.053,3.283-7.337,7.335-7.337s7.339,3.284,7.339,7.337c0,4.05-3.29,7.34-7.34,7.34z" fill="url(#SVGID_11_)" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M50.34,18.26c-11.46,0-20.62,6.636-24.62,8.388-3.667,1.609-6.428,3.301-14.68,3.301-8.24-0.01-11.04-3.86-11.04-3.86v26.95s10.14-18.25,19.18-22.08c7.153-3.028,10.98-2.932,18.57-0.451,7.59,2.47,22.25,24.71,22.25,24.71v-35.47c0,0.01-1.65-1.57-9.66-1.5z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="2.7" x2="56.26" y1="35.75" y2="35.75">
-<stop offset="0" stop-color="#965359"/>
-<stop offset="0.2" stop-color="#965359"/>
-<stop offset="1" stop-color="#60353F"/>
+<path d="M29.999,19.973c-5.151,0-9.326,4.176-9.326,9.327s4.175,9.327,9.326,9.327 c5.15,0,9.328-4.176,9.328-9.327S35.149,19.973,29.999,19.973z M29.999,36.636c-4.052,0-7.335-3.284-7.335-7.336 c0-4.053,3.283-7.337,7.335-7.337s7.339,3.284,7.339,7.337C37.338,33.352,34.051,36.636,29.999,36.636z" fill="url(#SVGID_11_)" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M50.342,18.256c-11.463,0-20.624,6.636-24.617,8.388c-3.667,1.609-6.428,3.301-14.676,3.301 C2.8,29.944,0,26.088,0,26.088v2.616v1.69v4.475v0.902v3.607v3.049v4.244v0.342v1.838v4.188c0,0,10.143-18.252,19.182-22.08 c7.153-3.028,10.977-2.932,18.569-0.451C45.344,32.989,60,55.234,60,55.234v-9.348v-0.644v-0.376v-4.318v-4.553v-4.68v-1.063v-0.497 v-6.088v-3.901C60,19.768,58.35,18.186,50.342,18.256z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="2.6997" x2="56.2554" y1="35.752" y2="35.752">
+<stop offset="0" style="stop-color:#965359"/>
+<stop offset="0.2" style="stop-color:#965359"/>
+<stop offset="1" style="stop-color:#60353F"/>
</linearGradient>
-<path d="M0,27.71v20.15s11.62-14.6,15.44-16.51,9.159-3.792,9.159-3.792,6.39-1.127,11.13-0.15c4.73,0.97,24.27,16.46,24.27,16.46v-15.11s-7.363-5.111-13.23-5.111-16.5,1.39-19.69,2.25c-3.194,0.862-2.255,0.285-10.15,3.383s-16.93-1.57-16.93-1.57z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="4.033" x2="64.49" y1="24.08" y2="24.08">
-<stop offset="0" stop-color="#BF8A7E"/>
-<stop offset="0.0848" stop-color="#BF8A7E"/>
-<stop offset="1" stop-color="#995459"/>
+<path d="M0,27.707v20.148c0,0,11.618-14.605,15.436-16.507s9.159-3.792,9.159-3.792s6.39-1.127,11.126-0.15 C40.457,28.384,60,43.871,60,43.871V28.76c0,0-7.363-5.111-13.228-5.111S30.27,25.04,27.076,25.903 c-3.194,0.862-2.255,0.285-10.149,3.383S0,27.707,0,27.707z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="4.0327" x2="64.4873" y1="24.0771" y2="24.0771">
+<stop offset="0" style="stop-color:#BF8A7E"/>
+<stop offset="0.0848" style="stop-color:#BF8A7E"/>
+<stop offset="1" style="stop-color:#995459"/>
</linearGradient>
-<path d="M0,25.09s2.8,3.855,11.05,3.855c8.248,0,11.01-1.69,14.68-3.3,3.993-1.752,13.15-8.388,24.62-8.388,8-0.06,9.65,1.52,9.65,1.52v3.902s-5.202-2.476-9.635-2.476c-11.07,0-21,4.109-24.21,5.843-3.284,1.77-12.3,4.858-16.18,4.858-4.036,0-9.978-1.5-9.978-1.5v-4.299z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="2.7" x2="56.26" y1="39.9" y2="39.9">
-<stop offset="0" stop-color="#965359"/>
-<stop offset="0.2" stop-color="#965359"/>
-<stop offset="1" stop-color="#60353F"/>
+<path d="M0,25.091c0,0,2.8,3.855,11.049,3.855c8.248,0,11.009-1.69,14.676-3.3 c3.993-1.752,13.154-8.388,24.617-8.388C58.35,17.188,60,18.77,60,18.77v3.902c0,0-5.202-2.476-9.635-2.476 c-11.072,0-20.996,4.109-24.212,5.843c-3.284,1.77-12.304,4.858-16.176,4.858c-4.036,0-9.978-1.5-9.978-1.5V25.091z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="2.6997" x2="56.2554" y1="39.9023" y2="39.9023">
+<stop offset="0" style="stop-color:#965359"/>
+<stop offset="0.2" style="stop-color:#965359"/>
+<stop offset="1" style="stop-color:#60353F"/>
</linearGradient>
-<path d="M0,50.71s10.14-16.92,19.18-20.75c7.153-3.029,10.98-2.933,18.57-0.451,7.59,2.48,22.25,23.4,22.25,23.4v-8.662s-8.652-9.266-13.98-12.78c-5.95-3.925-14.17-4.938-19.24-4.46-3.7,0.349-11.98,3.563-17.67,8.82-4.765,4.4-9.11,9.85-9.11,9.85v5.031z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="4.033" x2="64.49" y1="36.27" y2="36.27">
-<stop offset="0" stop-color="#BF8A7E"/>
-<stop offset="0.0848" stop-color="#BF8A7E"/>
-<stop offset="1" stop-color="#995459"/>
+<path d="M0,50.711c0,0,10.143-16.921,19.182-20.748c7.153-3.029,10.977-2.933,18.569-0.451 C45.344,31.992,60,52.908,60,52.908v-8.662c0,0-8.652-9.266-13.979-12.78c-5.95-3.925-14.173-4.938-19.245-4.46 c-3.7,0.349-11.979,3.563-17.667,8.82C4.345,40.229,0,45.675,0,45.675V50.711z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="4.0327" x2="64.4873" y1="36.2725" y2="36.2725">
+<stop offset="0" style="stop-color:#BF8A7E"/>
+<stop offset="0.0848" style="stop-color:#BF8A7E"/>
+<stop offset="1" style="stop-color:#995459"/>
</linearGradient>
-<path d="M0,46.02s10.18-12.62,19.18-16.52c6.297-2.728,10.86-3.021,18.57-1.347,7.14,1.55,22.25,16.74,22.25,16.74v-5.338s-8.594-6.087-13.98-9.514c-5.601-3.563-14.17-3.803-19.24-3.326-3.7,0.349-12.71,4.342-17.67,7.988-5.227,3.84-9.11,6.73-9.11,6.73v4.587z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="2.7" x2="56.26" y1="27.49" y2="27.49">
-<stop offset="0" stop-color="#965359"/>
-<stop offset="0.2" stop-color="#965359"/>
-<stop offset="0.3968" stop-color="#60353F"/>
-<stop offset="1" stop-color="#60353F"/>
+<path d="M0,46.017c0,0,10.175-12.62,19.182-16.521c6.297-2.728,10.858-3.021,18.569-1.347 C44.894,29.699,60,44.889,60,44.889v-5.338c0,0-8.594-6.087-13.979-9.514c-5.601-3.563-14.173-3.803-19.245-3.326 c-3.7,0.349-12.708,4.342-17.667,7.988C3.883,38.54,0,41.431,0,41.431V46.017z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="2.6997" x2="56.2554" y1="27.4854" y2="27.4854">
+<stop offset="0" style="stop-color:#965359"/>
+<stop offset="0.2" style="stop-color:#965359"/>
+<stop offset="0.3968" style="stop-color:#60353F"/>
+<stop offset="1" style="stop-color:#60353F"/>
</linearGradient>
-<path d="M26.15,26.04c-3.284,1.77-12.3,4.858-16.18,4.858-4.036,0-9.978-1.5-9.978-1.5v5.376s2.909-0.733,8.338-1.645c4.005-0.672,14.26-5.91,18.89-7.038,4.623-1.127,17.04-1.691,23.62,0.384,6.66,2.09,9.16,3.84,9.16,3.84v-7.647s-5.202-2.476-9.635-2.476c-11.07,0.01-20.99,4.12-24.21,5.85z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="4.033" x2="64.49" y1="31.38" y2="31.38">
-<stop offset="0" stop-color="#BF8A7E"/>
-<stop offset="0.0848" stop-color="#BF8A7E"/>
-<stop offset="1" stop-color="#995459"/>
+<path d="M26.153,26.039c-3.284,1.77-12.304,4.858-16.176,4.858c-4.036,0-9.978-1.5-9.978-1.5v5.376 c0,0,2.909-0.733,8.338-1.645c4.005-0.672,14.265-5.91,18.889-7.038c4.623-1.127,17.041-1.691,23.625,0.384 C57.504,28.571,60,30.319,60,30.319v-7.647c0,0-5.202-2.476-9.635-2.476C39.293,20.196,29.369,24.306,26.153,26.039z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="4.0327" x2="64.4873" y1="31.3799" y2="31.3799">
+<stop offset="0" style="stop-color:#BF8A7E"/>
+<stop offset="0.0848" style="stop-color:#BF8A7E"/>
+<stop offset="1" style="stop-color:#995459"/>
</linearGradient>
-<path d="M50.85,25.2c-6.664-1.803-19-0.231-23.62,0.896-4.624,1.128-15.61,6.444-18.89,7.038-5.418,0.97-8.34,0.73-8.34,0.73v4.512s13.23-7.357,24.22-11.1c3.269-1.113,6.47-1.525,9.133-1.525,5.98,0,8.374,0.453,13.91,2.104,7.56,2.25,12.74,7.14,12.74,7.14v-5.742c-0.63-0.4-2.48-2.26-9.15-4.06z" fill="url(#SVGID_17_)"/>
-<path d="M42.35,41.46c0,0.924-0.567,1.772-1.367,2.389-0.78,0.615-1.807,0.984-2.71,0.984-0.574,0-1.108-0.184-1.478-0.492-0.39-0.308-0.616-0.76-0.616-1.293,0-0.842,0.574-1.684,1.355-2.299,0.779-0.637,1.765-1.047,2.586-1.047,0.719,0,1.305,0.078,1.675,0.426v-15.82h0.555c0.042,0.739,0.151,1.776,1.034,2.576,1.006,0.883,1.93,1.766,2.566,2.565,0.841,1.048,1.437,2.36,1.437,3.694,0,0.678-0.103,1.376-0.288,2.033,0.35,0.697,0.534,1.437,0.534,2.278,0,1.437-0.416,2.622-1.011,3.606h-0.334c0.432-0.656,0.934-2.211,0.893-3.196-0.041-1.088-0.123-1.724-0.82-2.587-0.801-0.984-2.861-2.016-4.011-2.815v8.995zm4.51-8.11c-0.041-1.088-0.574-1.929-1.272-2.792-0.8-0.984-2.081-1.82-3.23-2.478,0.042,1.478,0.993,2.991,1.876,3.792,1.006,0.883,1.498,1.354,2.094,2.094,0.185,0.225,0.325,0.49,0.469,0.717,0.03-0.42,0.08-0.98,0.06-1.33z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M10.25,25.85c0.273-0.042,0.547-0.063,0.82-0.063,2.673-0.021,4.546,2.377,4.524,5.092,0,2.252-1.347,3.914-3.346,4.882l0.842,4.272c0.063,0.357,0.063,0.673,0.063,0.967,0,2.146-1.348,3.536-3.578,3.768-1.746,0.189-3.745-1.01-3.935-2.904-0.126-1.263,0.736-2.566,1.957-2.715,1.115-0.126,2.125,0.863,2.167,2.021,0.063,1.62-1.536,2.146-2.146,1.999,0.063,0.716,1.305,0.989,1.895,0.926,1.957-0.23,2.883-1.43,2.946-3.135,0-0.463-0.043-1.011-0.169-1.537l-0.716-3.366c-0.673,0.189-1.325,0.273-1.957,0.273-3.619,0-6.565-3.073-6.859-7.05-0.316-4.103,2.987-7.154,5.534-9.764-0.379-1.557-0.61-3.072-0.61-4.671,0-1.915,0.884-5.829,2.883-6.566,0.863-0.336,2.462,3.894,2.42,6.229-0.042,2.946-1.389,5.766-3.451,7.807l0.731,3.52zm-0.19,2.51c-1.179,0.358-2.188,1.578-2.167,2.883,0,1.115,0.736,1.831,1.662,2.273,0.104,0.041,0.147,0.126,0.147,0.209,0,0.127-0.147,0.232-0.295,0.211-1.6-0.547-2.735-2.104-2.715-3.871,0-1.726,1.368-3.473,2.904-4.04l-0.632-3.178c-2.23,1.979-4.692,4.335-4.713,7.597,0,3.281,2.777,5.303,5.786,5.176,0.484-0.021,0.947-0.105,1.41-0.252l-1.39-7.01zm2.06-15.62c-0.021-0.674-0.421-1.347-1.158-1.347-1.768,0.357-2.398,3.388-2.44,4.902,0,0.884,0.147,1.789,0.357,2.652,1.683-1.44,3.333-3.82,3.243-6.2zm0,22.41c1.263-0.674,2.125-2.041,2.063-3.556-0.147-1.937-1.579-3.346-3.452-3.325l1.39,6.89z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M25.24,17.42h0.327v10.24c-0.024,1.054-1.352,1.964-2.356,1.964-0.303,0-0.609-0.039-0.852-0.196-0.387-0.255-0.471-0.665-0.458-1.113,0.036-1.077,1.315-1.927,2.356-1.963,0.303-0.013,0.606,0.019,0.982,0.261v-9.195z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M33.05,16.22h0.327v10.24c-0.023,1.054-1.352,1.965-2.357,1.965-0.302,0-0.608-0.039-0.851-0.197-0.388-0.254-0.471-0.664-0.458-1.112,0.036-1.078,1.314-1.928,2.357-1.964,0.302-0.012,0.605,0.02,0.981,0.262v-9.191z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M40.19,13.56h0.328v10.24c-0.025,1.054-1.352,1.964-2.357,1.964-0.303,0-0.609-0.039-0.851-0.196-0.388-0.255-0.471-0.665-0.458-1.113,0.035-1.078,1.314-1.928,2.355-1.964,0.303-0.012,0.607,0.02,0.982,0.262v-9.19z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M46.69,9.718h0.327v10.24c-0.024,1.054-1.352,1.964-2.357,1.964-0.303,0-0.608-0.039-0.85-0.196-0.389-0.254-0.471-0.665-0.459-1.112,0.036-1.078,1.314-1.928,2.356-1.964,0.303-0.013,0.606,0.02,0.982,0.262v-9.192z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M52.9,9.718h0.328v10.24c-0.024,1.054-1.352,1.964-2.357,1.964-0.303,0-0.609-0.039-0.851-0.196-0.388-0.254-0.471-0.665-0.458-1.112,0.036-1.078,1.314-1.928,2.356-1.964,0.303-0.013,0.606,0.02,0.981,0.262v-9.192z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M57.04,16.52h0.327v10.25c-0.024,1.054-1.351,1.965-2.356,1.965-0.303,0-0.609-0.039-0.852-0.197-0.387-0.254-0.471-0.664-0.458-1.112,0.036-1.078,1.315-1.928,2.356-1.964,0.303-0.012,0.607,0.02,0.982,0.262v-9.205z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M52.13,52.26c1.521-1.018,2.489-1.58,3.339-3.062,0.365-0.642,0.632-1.562,0.632-2.232,0-0.544-0.029-0.948-0.237-1.344-0.236-0.454-0.74-0.81-1.393-0.751-0.434,0.04-0.958,0.198-1.176,0.436-0.118,0.128-0.227,0.306-0.296,0.454-0.06,0.128,0,0.325,0.237,0.336,0.089,0,0.286-0.079,0.395-0.089,0.514-0.059,0.939,0.355,0.939,0.8,0,0.435-0.386,0.889-0.998,0.889-0.633,0-1.166-0.435-1.186-1.057-0.02-0.661,0.415-1.333,1.027-1.669,0.326-0.207,1.037-0.395,1.383-0.395,0.633,0,1.195,0.107,1.787,0.602,0.594,0.494,0.791,0.898,0.88,1.729,0.128,1.176-0.85,2.717-1.798,3.496-0.889,0.732-2.252,1.473-3.477,2.065l-0.04-0.22zm6.29-6.93c0.326,0,0.533,0.267,0.533,0.533,0,0.277-0.207,0.543-0.533,0.543-0.346,0-0.543-0.266-0.543-0.543,0-0.26,0.19-0.53,0.54-0.53zm0,2.17c0.326,0,0.533,0.267,0.533,0.534,0,0.275-0.207,0.543-0.533,0.543-0.346,0-0.543-0.268-0.543-0.543,0-0.27,0.19-0.53,0.54-0.53z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M42.02,40.79c0,0.923-0.566,1.771-1.367,2.389-0.779,0.615-1.807,0.984-2.709,0.984-0.575,0-1.108-0.185-1.479-0.493-0.39-0.308-0.615-0.759-0.615-1.293,0-0.841,0.574-1.683,1.354-2.299,0.78-0.637,1.765-1.047,2.587-1.047,0.719,0,1.305,0.077,1.674,0.427v-15.81h0.555c0.042,0.738,0.152,1.775,1.035,2.576,1.006,0.882,1.93,1.765,2.565,2.565,0.842,1.047,1.437,2.36,1.437,3.694,0,0.678-0.102,1.375-0.287,2.031,0.35,0.698,0.533,1.438,0.533,2.279,0,1.438-0.416,2.621-1.011,3.607h-0.333c0.432-0.657,0.934-2.211,0.893-3.197-0.041-1.088-0.123-1.724-0.82-2.586-0.801-0.985-2.861-2.016-4.012-2.816v9.011zm4.5-8.1c-0.041-1.088-0.574-1.93-1.272-2.791-0.801-0.985-2.081-1.821-3.231-2.479,0.042,1.479,0.994,2.991,1.877,3.791,1.006,0.883,1.498,1.355,2.094,2.094,0.184,0.227,0.324,0.491,0.469,0.717,0.04-0.43,0.09-0.98,0.06-1.33z" fill="#FFFFFF"/>
-<path d="M9.916,25.19c0.274-0.042,0.548-0.063,0.821-0.063,2.673-0.021,4.546,2.378,4.524,5.093,0,2.251-1.347,3.913-3.346,4.881l0.842,4.271c0.063,0.358,0.063,0.674,0.063,0.969,0,2.146-1.347,3.535-3.577,3.768-1.747,0.189-3.746-1.011-3.936-2.904-0.126-1.264,0.736-2.567,1.957-2.715,1.115-0.127,2.126,0.863,2.168,2.02,0.063,1.621-1.536,2.146-2.146,2,0.063,0.715,1.305,0.988,1.894,0.926,1.957-0.232,2.883-1.432,2.946-3.137,0-0.463-0.042-1.01-0.168-1.535l-0.716-3.367c-0.673,0.189-1.326,0.273-1.957,0.273-3.62,0-6.565-3.072-6.86-7.049-0.315-4.104,2.988-7.154,5.534-9.764-0.378-1.558-0.609-3.073-0.609-4.672,0-1.915,0.884-5.829,2.883-6.565,0.862-0.337,2.462,3.893,2.42,6.229-0.043,2.946-1.389,5.766-3.451,7.808l0.727,3.52zm-0.188,2.5c-1.179,0.357-2.188,1.578-2.168,2.883,0,1.115,0.736,1.83,1.662,2.271,0.105,0.043,0.147,0.127,0.147,0.211,0,0.127-0.147,0.232-0.295,0.211-1.599-0.547-2.735-2.105-2.714-3.872,0-1.726,1.367-3.472,2.904-4.04l-0.631-3.17c-2.23,1.979-4.692,4.335-4.714,7.597,0,3.282,2.778,5.303,5.787,5.177,0.484-0.021,0.947-0.105,1.41-0.253l-1.392-7.02zm2.062-15.61c-0.021-0.674-0.421-1.347-1.157-1.347-1.768,0.357-2.398,3.388-2.44,4.903,0,0.884,0.146,1.788,0.357,2.651,1.683-1.44,3.323-3.82,3.243-6.2zm0,22.41c1.263-0.674,2.126-2.042,2.063-3.557-0.147-1.936-1.578-3.346-3.451-3.325l1.39,6.89z" fill="#FFFFFF"/>
-<path d="M24.91,16.75h0.327v10.24c-0.024,1.054-1.352,1.964-2.357,1.964-0.303,0-0.608-0.039-0.851-0.196-0.388-0.254-0.471-0.665-0.458-1.112,0.036-1.078,1.314-1.928,2.356-1.964,0.303-0.012,0.606,0.02,0.982,0.262v-9.189z" fill="#FFFFFF"/>
-<path d="M32.72,15.55h0.328v10.24c-0.024,1.054-1.352,1.964-2.357,1.964-0.303,0-0.609-0.039-0.851-0.196-0.388-0.255-0.471-0.665-0.458-1.113,0.036-1.077,1.314-1.927,2.356-1.963,0.302-0.013,0.606,0.019,0.981,0.261v-9.196z" fill="#FFFFFF"/>
-<path d="M39.86,12.9h0.327v10.24c-0.024,1.054-1.352,1.964-2.356,1.964-0.303,0-0.609-0.039-0.852-0.196-0.387-0.255-0.471-0.665-0.458-1.113,0.036-1.077,1.315-1.928,2.356-1.964,0.303-0.012,0.606,0.02,0.982,0.262v-9.195z" fill="#FFFFFF"/>
-<path d="M46.36,9.053h0.328v10.24c-0.024,1.054-1.352,1.965-2.357,1.965-0.303,0-0.609-0.039-0.851-0.197-0.388-0.254-0.471-0.664-0.458-1.112,0.036-1.078,1.314-1.928,2.356-1.964,0.302-0.013,0.606,0.02,0.981,0.262v-9.197z" fill="#FFFFFF"/>
-<path d="M52.56,9.053h0.327v10.24c-0.024,1.054-1.351,1.965-2.356,1.965-0.303,0-0.609-0.039-0.852-0.197-0.387-0.254-0.471-0.664-0.458-1.112,0.036-1.078,1.315-1.928,2.356-1.964,0.303-0.013,0.607,0.02,0.982,0.262v-9.197z" fill="#FFFFFF"/>
-<path d="M56.71,15.86h0.327v10.24c-0.024,1.054-1.352,1.964-2.356,1.964-0.303,0-0.609-0.039-0.852-0.196-0.387-0.255-0.471-0.665-0.458-1.113,0.036-1.077,1.315-1.927,2.356-1.963,0.303-0.013,0.606,0.019,0.982,0.261v-9.19z" fill="#FFFFFF"/>
-<path d="M51.79,51.59c1.521-1.018,2.49-1.581,3.339-3.063,0.366-0.643,0.632-1.561,0.632-2.232,0-0.543-0.029-0.948-0.236-1.344-0.236-0.453-0.74-0.81-1.393-0.75-0.435,0.039-0.959,0.197-1.176,0.435-0.119,0.128-0.227,0.306-0.297,0.454-0.059,0.129,0,0.326,0.238,0.336,0.088,0,0.285-0.079,0.395-0.089,0.514-0.06,0.938,0.355,0.938,0.8,0,0.436-0.386,0.889-0.998,0.889-0.632,0-1.165-0.434-1.185-1.057-0.02-0.662,0.414-1.333,1.027-1.67,0.326-0.207,1.037-0.395,1.383-0.395,0.632,0,1.195,0.109,1.787,0.604,0.593,0.493,0.791,0.898,0.879,1.728,0.129,1.176-0.85,2.717-1.797,3.497-0.889,0.73-2.252,1.472-3.477,2.064l-0.05-0.2zm6.3-6.92c0.326,0,0.533,0.267,0.533,0.534,0,0.275-0.207,0.543-0.533,0.543-0.346,0-0.543-0.268-0.543-0.543-0.01-0.26,0.19-0.53,0.54-0.53zm0,2.16c0.326,0,0.533,0.268,0.533,0.533,0,0.277-0.207,0.544-0.533,0.544-0.346,0-0.543-0.267-0.543-0.544-0.01-0.26,0.19-0.53,0.54-0.53z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M50.852,25.195c-6.664-1.803-19.002-0.231-23.625,0.896c-4.624,1.128-15.61,6.444-18.889,7.038 C2.922,34.109,0,33.871,0,33.871v4.512c0,0,13.228-7.357,24.221-11.104c3.269-1.113,6.47-1.525,9.133-1.525 c5.98,0,8.374,0.453,13.908,2.104C54.816,30.113,60,34.999,60,34.999v-5.742C59.371,28.858,57.523,26.999,50.852,25.195z" fill="url(#SVGID_17_)"/>
+<path d="M42.354,41.455c0,0.924-0.567,1.772-1.367,2.389c-0.78,0.615-1.807,0.984-2.71,0.984 c-0.574,0-1.108-0.184-1.478-0.492c-0.39-0.308-0.616-0.76-0.616-1.293c0-0.842,0.574-1.684,1.355-2.299 c0.779-0.637,1.765-1.047,2.586-1.047c0.719,0,1.305,0.078,1.675,0.426V24.313h0.555c0.042,0.739,0.151,1.776,1.034,2.576 c1.006,0.883,1.93,1.766,2.566,2.565c0.841,1.048,1.437,2.36,1.437,3.694c0,0.678-0.103,1.376-0.288,2.033 c0.35,0.697,0.534,1.437,0.534,2.278c0,1.437-0.416,2.622-1.011,3.606h-0.334c0.432-0.656,0.934-2.211,0.893-3.196 c-0.041-1.088-0.123-1.724-0.82-2.587c-0.801-0.984-2.861-2.016-4.011-2.815V41.455z M46.857,33.354 c-0.041-1.088-0.574-1.929-1.272-2.792c-0.8-0.984-2.081-1.82-3.23-2.478c0.042,1.478,0.993,2.991,1.876,3.792 c1.006,0.883,1.498,1.354,2.094,2.094c0.185,0.225,0.325,0.49,0.469,0.717C46.834,34.256,46.878,33.703,46.857,33.354z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M10.249,25.854c0.273-0.042,0.547-0.063,0.82-0.063c2.673-0.021,4.546,2.377,4.524,5.092 c0,2.252-1.347,3.914-3.346,4.882l0.842,4.272c0.063,0.357,0.063,0.673,0.063,0.967c0,2.146-1.348,3.536-3.578,3.768 c-1.746,0.189-3.745-1.01-3.935-2.904c-0.126-1.263,0.736-2.566,1.957-2.715c1.115-0.126,2.125,0.863,2.167,2.021 c0.063,1.62-1.536,2.146-2.146,1.999c0.063,0.716,1.305,0.989,1.895,0.926c1.957-0.23,2.883-1.43,2.946-3.135 c0-0.463-0.043-1.011-0.169-1.537l-0.716-3.366c-0.673,0.189-1.325,0.273-1.957,0.273c-3.619,0-6.565-3.073-6.859-7.05 c-0.316-4.103,2.987-7.154,5.534-9.764c-0.379-1.557-0.61-3.072-0.61-4.671c0-1.915,0.884-5.829,2.883-6.566 c0.863-0.336,2.462,3.894,2.42,6.229c-0.042,2.946-1.389,5.766-3.451,7.807L10.249,25.854z M10.06,28.357 c-1.179,0.358-2.188,1.578-2.167,2.883c0,1.115,0.736,1.831,1.662,2.273c0.104,0.041,0.147,0.126,0.147,0.209 c0,0.127-0.147,0.232-0.295,0.211c-1.6-0.547-2.735-2.104-2.715-3.871c0-1.726,1.368-3.473,2.904-4.04l-0.632-3.178 c-2.23,1.979-4.692,4.335-4.713,7.597c0,3.281,2.777,5.303,5.786,5.176c0.484-0.021,0.947-0.105,1.41-0.252L10.06,28.357z M12.122,12.744c-0.021-0.674-0.421-1.347-1.158-1.347c-1.768,0.357-2.398,3.388-2.44,4.902c0,0.884,0.147,1.789,0.357,2.652 C10.564,17.5,12.206,15.122,12.122,12.744z M12.122,35.154c1.263-0.674,2.125-2.041,2.063-3.556 c-0.147-1.937-1.579-3.346-3.452-3.325L12.122,35.154z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M25.243,17.415h0.327V27.66c-0.024,1.054-1.352,1.964-2.356,1.964c-0.303,0-0.609-0.039-0.852-0.196 c-0.387-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.315-1.927,2.356-1.963c0.303-0.013,0.606,0.019,0.982,0.261V17.415z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M33.052,16.219h0.327v10.244c-0.023,1.054-1.352,1.965-2.357,1.965c-0.302,0-0.608-0.039-0.851-0.197 c-0.388-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.314-1.928,2.357-1.964c0.302-0.012,0.605,0.02,0.981,0.262V16.219z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M40.191,13.56h0.328v10.245c-0.025,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.255-0.471-0.665-0.458-1.113c0.035-1.078,1.314-1.928,2.355-1.964c0.303-0.012,0.607,0.02,0.982,0.262V13.56z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M46.692,9.718h0.327v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.608-0.039-0.85-0.196 c-0.389-0.254-0.471-0.665-0.459-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.013,0.606,0.02,0.982,0.262V9.718z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M52.896,9.718h0.328v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.254-0.471-0.665-0.458-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.013,0.606,0.02,0.981,0.262V9.718z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M57.045,16.525h0.327V26.77c-0.024,1.054-1.351,1.965-2.356,1.965c-0.303,0-0.609-0.039-0.852-0.197 c-0.387-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.315-1.928,2.356-1.964c0.303-0.012,0.607,0.02,0.982,0.262V16.525z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M52.126,52.258c1.521-1.018,2.489-1.58,3.339-3.062c0.365-0.642,0.632-1.562,0.632-2.232 c0-0.544-0.029-0.948-0.237-1.344c-0.236-0.454-0.74-0.81-1.393-0.751c-0.434,0.04-0.958,0.198-1.176,0.436 c-0.118,0.128-0.227,0.306-0.296,0.454c-0.06,0.128,0,0.325,0.237,0.336c0.089,0,0.286-0.079,0.395-0.089 c0.514-0.059,0.939,0.355,0.939,0.8c0,0.435-0.386,0.889-0.998,0.889c-0.633,0-1.166-0.435-1.186-1.057 c-0.02-0.661,0.415-1.333,1.027-1.669c0.326-0.207,1.037-0.395,1.383-0.395c0.633,0,1.195,0.107,1.787,0.602 c0.594,0.494,0.791,0.898,0.88,1.729c0.128,1.176-0.85,2.717-1.798,3.496c-0.889,0.732-2.252,1.473-3.477,2.065L52.126,52.258z M58.418,45.334c0.326,0,0.533,0.267,0.533,0.533c0,0.277-0.207,0.543-0.533,0.543c-0.346,0-0.543-0.266-0.543-0.543 C57.875,45.601,58.072,45.334,58.418,45.334z M58.418,47.497c0.326,0,0.533,0.267,0.533,0.534c0,0.275-0.207,0.543-0.533,0.543 c-0.346,0-0.543-0.268-0.543-0.543C57.875,47.764,58.072,47.497,58.418,47.497z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M42.021,40.791c0,0.923-0.566,1.771-1.367,2.389c-0.779,0.615-1.807,0.984-2.709,0.984 c-0.575,0-1.108-0.185-1.479-0.493c-0.39-0.308-0.615-0.759-0.615-1.293c0-0.841,0.574-1.683,1.354-2.299 c0.78-0.637,1.765-1.047,2.587-1.047c0.719,0,1.305,0.077,1.674,0.427V23.648h0.555c0.042,0.738,0.152,1.775,1.035,2.576 c1.006,0.882,1.93,1.765,2.565,2.565c0.842,1.047,1.437,2.36,1.437,3.694c0,0.678-0.102,1.375-0.287,2.031 c0.35,0.698,0.533,1.438,0.533,2.279c0,1.438-0.416,2.621-1.011,3.607h-0.333c0.432-0.657,0.934-2.211,0.893-3.197 c-0.041-1.088-0.123-1.724-0.82-2.586c-0.801-0.985-2.861-2.016-4.012-2.816V40.791z M46.525,32.689 c-0.041-1.088-0.574-1.93-1.272-2.791c-0.801-0.985-2.081-1.821-3.231-2.479c0.042,1.479,0.994,2.991,1.877,3.791 c1.006,0.883,1.498,1.355,2.094,2.094c0.184,0.227,0.324,0.491,0.469,0.717C46.502,33.591,46.546,33.039,46.525,32.689z" fill="#FFFFFF"/>
+<path d="M9.916,25.189c0.274-0.042,0.548-0.063,0.821-0.063c2.673-0.021,4.546,2.378,4.524,5.093 c0,2.251-1.347,3.913-3.346,4.881l0.842,4.271c0.063,0.358,0.063,0.674,0.063,0.969c0,2.146-1.347,3.535-3.577,3.768 c-1.747,0.189-3.746-1.011-3.936-2.904c-0.126-1.264,0.736-2.567,1.957-2.715c1.115-0.127,2.126,0.863,2.168,2.02 c0.063,1.621-1.536,2.146-2.146,2c0.063,0.715,1.305,0.988,1.894,0.926c1.957-0.232,2.883-1.432,2.946-3.137 c0-0.463-0.042-1.01-0.168-1.535l-0.716-3.367c-0.673,0.189-1.326,0.273-1.957,0.273c-3.62,0-6.565-3.072-6.86-7.049 c-0.315-4.104,2.988-7.154,5.534-9.764c-0.378-1.558-0.609-3.073-0.609-4.672c0-1.915,0.884-5.829,2.883-6.565 c0.862-0.337,2.462,3.893,2.42,6.229c-0.043,2.946-1.389,5.766-3.451,7.808L9.916,25.189z M9.728,27.693 c-1.179,0.357-2.188,1.578-2.168,2.883c0,1.115,0.736,1.83,1.662,2.271c0.105,0.043,0.147,0.127,0.147,0.211 c0,0.127-0.147,0.232-0.295,0.211c-1.599-0.547-2.735-2.105-2.714-3.872c0-1.726,1.367-3.472,2.904-4.04L8.633,22.18 c-2.23,1.979-4.692,4.335-4.714,7.597c0,3.282,2.778,5.303,5.787,5.177c0.484-0.021,0.947-0.105,1.41-0.253L9.728,27.693z M11.789,12.079c-0.021-0.674-0.421-1.347-1.157-1.347c-1.768,0.357-2.398,3.388-2.44,4.903c0,0.884,0.146,1.788,0.357,2.651 C10.232,16.835,11.874,14.457,11.789,12.079z M11.789,34.49c1.263-0.674,2.126-2.042,2.063-3.557 c-0.147-1.936-1.578-3.346-3.451-3.325L11.789,34.49z" fill="#FFFFFF"/>
+<path d="M24.911,16.751h0.327v10.244c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.608-0.039-0.851-0.196 c-0.388-0.254-0.471-0.665-0.458-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.303-0.012,0.606,0.02,0.982,0.262V16.751z" fill="#FFFFFF"/>
+<path d="M32.719,15.554h0.328v10.245c-0.024,1.054-1.352,1.964-2.357,1.964c-0.303,0-0.609-0.039-0.851-0.196 c-0.388-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.314-1.927,2.356-1.963c0.302-0.013,0.606,0.019,0.981,0.261V15.554z" fill="#FFFFFF"/>
+<path d="M39.859,12.895h0.327V23.14c-0.024,1.054-1.352,1.964-2.356,1.964c-0.303,0-0.609-0.039-0.852-0.196 c-0.387-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.315-1.928,2.356-1.964c0.303-0.012,0.606,0.02,0.982,0.262V12.895z" fill="#FFFFFF"/>
+<path d="M46.359,9.053h0.328v10.245c-0.024,1.054-1.352,1.965-2.357,1.965c-0.303,0-0.609-0.039-0.851-0.197 c-0.388-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.314-1.928,2.356-1.964c0.302-0.013,0.606,0.02,0.981,0.262V9.053z" fill="#FFFFFF"/>
+<path d="M52.564,9.053h0.327v10.245c-0.024,1.054-1.351,1.965-2.356,1.965c-0.303,0-0.609-0.039-0.852-0.197 c-0.387-0.254-0.471-0.664-0.458-1.112c0.036-1.078,1.315-1.928,2.356-1.964c0.303-0.013,0.607,0.02,0.982,0.262V9.053z" fill="#FFFFFF"/>
+<path d="M56.713,15.86h0.327v10.245c-0.024,1.054-1.352,1.964-2.356,1.964c-0.303,0-0.609-0.039-0.852-0.196 c-0.387-0.255-0.471-0.665-0.458-1.113c0.036-1.077,1.315-1.927,2.356-1.963c0.303-0.013,0.606,0.019,0.982,0.261V15.86z" fill="#FFFFFF"/>
+<path d="M51.793,51.594c1.521-1.018,2.49-1.581,3.339-3.063c0.366-0.643,0.632-1.561,0.632-2.232 c0-0.543-0.029-0.948-0.236-1.344c-0.236-0.453-0.74-0.81-1.393-0.75c-0.435,0.039-0.959,0.197-1.176,0.435 c-0.119,0.128-0.227,0.306-0.297,0.454c-0.059,0.129,0,0.326,0.238,0.336c0.088,0,0.285-0.079,0.395-0.089 c0.514-0.06,0.938,0.355,0.938,0.8c0,0.436-0.386,0.889-0.998,0.889c-0.632,0-1.165-0.434-1.185-1.057 c-0.02-0.662,0.414-1.333,1.027-1.67c0.326-0.207,1.037-0.395,1.383-0.395c0.632,0,1.195,0.109,1.787,0.604 c0.593,0.493,0.791,0.898,0.879,1.728c0.129,1.176-0.85,2.717-1.797,3.497c-0.889,0.73-2.252,1.472-3.477,2.064L51.793,51.594z M58.086,44.669c0.326,0,0.533,0.267,0.533,0.534c0,0.275-0.207,0.543-0.533,0.543c-0.346,0-0.543-0.268-0.543-0.543 C57.543,44.936,57.74,44.669,58.086,44.669z M58.086,46.832c0.326,0,0.533,0.268,0.533,0.533c0,0.277-0.207,0.544-0.533,0.544 c-0.346,0-0.543-0.267-0.543-0.544C57.543,47.1,57.74,46.832,58.086,46.832z" fill="#FFFFFF"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_shop.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_music_shop.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,128 +1,130 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.22" x2="4.22" y1="4.715" y2="11.46">
-<stop offset="0" stop-color="#BFBFBF"/>
-<stop offset="0.7818" stop-color="#404040"/>
-<stop offset="1" stop-color="#666666"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.2197" x2="4.2197" y1="4.7148" y2="11.4634">
+<stop offset="0" style="stop-color:#BFBFBF"/>
+<stop offset="0.7818" style="stop-color:#404040"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M4.221,11.38c-1.826,0-3.313-1.486-3.313-3.312,0-1.824,1.486-3.311,3.313-3.311,1.824,0,3.311,1.486,3.311,3.311-0.001,1.828-1.487,3.312-3.311,3.312z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.221" x2="4.221" y1="5.514" y2="10.65">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#3A3A3A"/>
+<path d="M4.221,11.382c-1.826,0-3.313-1.486-3.313-3.312c0-1.824,1.486-3.311,3.313-3.311 c1.824,0,3.311,1.486,3.311,3.311C7.531,9.896,6.045,11.382,4.221,11.382L4.221,11.382z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4.2207" x2="4.2207" y1="5.5142" y2="10.6549">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#3A3A3A"/>
</linearGradient>
<circle cx="4.221" cy="8.071" fill="url(#SVGID_2_)" r="2.521"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="13.5" x2="56.43" y1="47.35" y2="47.35">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#787B7D"/>
-<stop offset="1" stop-color="#979A9A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="13.501" x2="56.4315" y1="47.3521" y2="47.3521">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#787B7D"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M55.23,45.77h-37.9l-4.018,1.579c0,0.298,0.074,0.595,0.242,0.854,0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576,0-0.86-0.71-1.57-1.58-1.57z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.31" x2="19.1" y1="41.45" y2="43.21">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#787B7D"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M55.23,45.774h-37.9l-4.018,1.579l0,0c0,0.298,0.074,0.595,0.242,0.854 c0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576C56.807,46.481,56.1,45.774,55.23,45.774z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.3105" x2="19.0975" y1="41.4453" y2="43.2125">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#787B7D"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M13.31,47.35l4.018-1.579,3.189-7.016c0.359-0.792,0.012-1.729-0.783-2.088-0.795-0.361-1.73-0.01-2.088,0.784l-4.203,9.247c-0.1,0.22-0.14,0.44-0.14,0.66z" fill="url(#SVGID_4_)"/>
-<path d="M19.37,36.56c-0.695-0.131-1.418,0.219-1.723,0.894l-1.156,2.541c0.662,1.489,1.262,2.443,1.791,2.813,0.1,0.073,0.205,0.126,0.307,0.191l1.805-3.968c-0.28-0.56-0.64-1.42-1.03-2.46z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M18.55,36.62c-0.387,0.137-0.721,0.425-0.902,0.83l-0.713,1.565c0.582,1.418,1.25,2.756,1.816,3.156,0.055,0.039,0.115,0.065,0.168,0.104l1.057-2.325c-0.34-0.6-0.87-1.81-1.44-3.34z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13.56,48.21c0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576h-43.51c-0.003,0.3,0.077,0.6,0.247,0.86z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M18.49,48.93h10.58c-0.4-1.333-1.291-2.452-2.459-3.155h-5.66c-1.17,0.7-2.06,1.82-2.46,3.15z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="23.38" cy="44.92" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.65">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#353535"/>
+<path d="M13.313,47.354l4.018-1.579l3.189-7.016c0.359-0.792,0.012-1.729-0.783-2.088 c-0.795-0.361-1.73-0.01-2.088,0.784l-4.203,9.247C13.348,46.908,13.313,47.13,13.313,47.354L13.313,47.354z" fill="url(#SVGID_4_)"/>
+<path d="M19.371,36.56c-0.695-0.131-1.418,0.219-1.723,0.894l-1.156,2.541c0.662,1.489,1.262,2.443,1.791,2.813 c0.1,0.073,0.205,0.126,0.307,0.191l1.805-3.968C20.123,38.458,19.764,37.605,19.371,36.56z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M18.551,36.624c-0.387,0.137-0.721,0.425-0.902,0.83l-0.713,1.565c0.582,1.418,1.25,2.756,1.816,3.156 c0.055,0.039,0.115,0.065,0.168,0.104l1.057-2.325C19.652,39.363,19.115,38.151,18.551,36.624z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.555,48.207c0.291,0.45,0.789,0.722,1.326,0.722h40.35c0.869,0,1.576-0.706,1.576-1.576H13.313 C13.313,47.651,13.387,47.948,13.555,48.207z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M18.494,48.929h10.578c-0.4-1.333-1.291-2.452-2.459-3.155h-5.66C19.785,46.478,18.891,47.596,18.494,48.929z " fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="23.3809" cy="44.9189" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.6545">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
-<path d="M23.78,55.24c-2.613,0-4.734-2.124-4.734-4.733s2.121-4.732,4.734-4.732c2.607,0,4.73,2.123,4.73,4.732,0.01,2.61-2.12,4.73-4.73,4.73z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="23.45" cy="45.85" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.879">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#353535"/>
+<path d="M23.785,55.24c-2.613,0-4.734-2.124-4.734-4.733c0-2.609,2.121-4.732,4.734-4.732 c2.607,0,4.73,2.123,4.73,4.732C28.516,53.116,26.393,55.24,23.785,55.24L23.785,55.24z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="23.4492" cy="45.8501" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.8793">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
-<path d="M27.73,50.51c0,2.179-1.766,3.945-3.943,3.945-2.182,0-3.945-1.766-3.945-3.945,0-2.178,1.764-3.943,3.945-3.943,2.18-0.02,3.95,1.75,3.95,3.93z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6.331" x2="6.331" y1="6.42" y2="10.03">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.4606" stop-color="#BFC2C1"/>
-<stop offset="0.7333" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M27.729,50.506c0,2.179-1.766,3.945-3.943,3.945c-2.182,0-3.945-1.766-3.945-3.945 c0-2.178,1.764-3.943,3.945-3.943C25.963,46.563,27.729,48.328,27.729,50.506z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6.3311" x2="6.3311" y1="6.4199" y2="10.0271">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.4606" style="stop-color:#BFC2C1"/>
+<stop offset="0.7333" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M8.424,6.39h-3.363c-0.928,0-1.682,0.753-1.682,1.681s0.754,1.681,1.682,1.681h2.061l2.162-2.994c-0.235-0.211-0.516-0.368-0.86-0.368z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.78" x2="23.78" y1="48.26" y2="52.93">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M8.424,6.39H5.061c-0.928,0-1.682,0.753-1.682,1.681s0.754,1.681,1.682,1.681h2.061l2.162-2.994 C9.049,6.547,8.768,6.39,8.424,6.39z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.7832" x2="23.7832" y1="48.2568" y2="52.9256">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M23.78,52.87c-1.307,0-2.367-1.063-2.367-2.367,0-1.305,1.061-2.366,2.367-2.366,1.303,0,2.363,1.061,2.363,2.366,0.01,1.31-1.05,2.37-2.36,2.37z" fill="url(#SVGID_8_)"/>
-<path d="M41.37,48.93h10.58c-0.4-1.333-1.289-2.452-2.459-3.155h-5.66c-1.17,0.7-2.06,1.82-2.46,3.15z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<radialGradient cx="46.59" cy="44.92" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="10.84">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#353535"/>
+<path d="M23.785,52.873c-1.307,0-2.367-1.063-2.367-2.367c0-1.305,1.061-2.366,2.367-2.366 c1.303,0,2.363,1.061,2.363,2.366C26.148,51.811,25.088,52.873,23.785,52.873L23.785,52.873z" fill="url(#SVGID_8_)"/>
+<path d="M41.369,48.929h10.576c-0.4-1.333-1.289-2.452-2.459-3.155h-5.66C42.658,46.478,41.766,47.596,41.369,48.929z " fill-opacity="0.1" stroke-opacity="0.1"/>
+<radialGradient cx="46.5889" cy="44.9189" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="10.8384">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
-<path d="M46.66,55.24c-2.611,0-4.732-2.124-4.732-4.733s2.121-4.732,4.732-4.732c2.609,0,4.732,2.123,4.732,4.732,0,2.61-2.12,4.73-4.73,4.73z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="46.6" cy="45.85" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="9.033">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.7818" stop-color="#212121"/>
-<stop offset="1" stop-color="#353535"/>
+<path d="M46.656,55.24c-2.611,0-4.732-2.124-4.732-4.733c0-2.609,2.121-4.732,4.732-4.732 c2.609,0,4.732,2.123,4.732,4.732C51.389,53.116,49.266,55.24,46.656,55.24L46.656,55.24z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="46.6006" cy="45.8501" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="9.0328">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.7818" style="stop-color:#212121"/>
+<stop offset="1" style="stop-color:#353535"/>
</radialGradient>
-<circle cx="46.66" cy="50.51" fill="url(#SVGID_10_)" r="3.944"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="46.66" x2="46.66" y1="48.19" y2="52.86">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<circle cx="46.657" cy="50.506" fill="url(#SVGID_10_)" r="3.944"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="46.6563" x2="46.6563" y1="48.1914" y2="52.8588">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M46.66,52.87c-1.305,0-2.365-1.063-2.365-2.367,0-1.305,1.061-2.366,2.365-2.366s2.365,1.061,2.365,2.366c0,1.31-1.06,2.37-2.36,2.37z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.14" x2="30.14" y1="10.16" y2="42.55">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.4606" stop-color="#BFC2C1"/>
-<stop offset="0.7333" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M46.656,52.873c-1.305,0-2.365-1.063-2.365-2.367c0-1.305,1.061-2.366,2.365-2.366 s2.365,1.061,2.365,2.366C49.021,51.811,47.961,52.873,46.656,52.873L46.656,52.873z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.1436" x2="30.1436" y1="10.1616" y2="42.5465">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.4606" style="stop-color:#BFC2C1"/>
+<stop offset="0.7333" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M12,13.34l-1.9-5.231c0-0.012-0.514-1.72-1.676-1.72h-3.363c-0.928,0-1.682,0.753-1.682,1.681s0.754,1.681,1.682,1.681h2.061l9.359,25.72s1.762,5.382,2.742,6.068c0.84,0.622,1.873,0.995,3,0.995h28.58c2.785,0,5.043-2.258,5.043-5.043l1.063-21.02-44.9-3.14zm10.83,25.25c-0.563,0.179-1.16-0.135-1.338-0.693l-5.82-18.45c-0.178-0.56,0.133-1.157,0.693-1.335,0.561-0.177,1.158,0.133,1.336,0.694l5.826,18.45c0.17,0.56-0.14,1.16-0.7,1.33zm5.72,0.18c-0.563,0.178-1.158-0.133-1.338-0.694l-5.826-18.45c-0.176-0.561,0.137-1.157,0.695-1.334,0.563-0.176,1.16,0.131,1.336,0.694l5.828,18.45c0.17,0.56-0.15,1.16-0.7,1.33zm5.81,0.19c-0.563,0.178-1.158-0.133-1.338-0.694l-5.826-18.45c-0.176-0.56,0.137-1.158,0.697-1.336s1.158,0.133,1.332,0.695l5.83,18.45c0.18,0.55-0.13,1.15-0.69,1.33zm5.22,0.16c-0.563,0.178-1.16-0.133-1.338-0.695l-5.824-18.45c-0.176-0.56,0.131-1.157,0.695-1.335,0.561-0.178,1.158,0.133,1.334,0.693l5.824,18.45c0.18,0.57-0.12,1.17-0.69,1.34zm5.72,0.19c-0.563,0.177-1.158-0.135-1.336-0.695l-5.826-18.45c-0.176-0.56,0.135-1.157,0.695-1.334,0.561-0.177,1.158,0.133,1.336,0.694l5.826,18.45c0.18,0.55-0.13,1.15-0.69,1.33zm5.62,0.18c-0.563,0.178-1.16-0.136-1.338-0.695l-5.824-18.45c-0.178-0.56,0.131-1.157,0.691-1.335,0.563-0.177,1.158,0.133,1.338,0.694l5.826,18.45c0.16,0.56-0.14,1.15-0.7,1.33zm1.63-10.84c-0.561,0.177-1.16-0.134-1.336-0.695l-2.336-7.35c-0.178-0.56,0.133-1.158,0.695-1.335,0.561-0.177,1.158,0.135,1.334,0.694l2.336,7.351c0.19,0.56-0.12,1.16-0.68,1.33z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30.14" x2="30.14" y1="10.16" y2="42.55">
-<stop offset="0" stop-color="#EFF2F0"/>
-<stop offset="0.4606" stop-color="#D5D9D7"/>
-<stop offset="0.7333" stop-color="#B0B5B5"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M12.004,13.339L10.1,8.109c0-0.012-0.514-1.72-1.676-1.72H5.061c-0.928,0-1.682,0.753-1.682,1.681 s0.754,1.681,1.682,1.681h2.061l9.359,25.72c0,0,1.762,5.382,2.742,6.068c0.84,0.622,1.873,0.995,3,0.995h28.58 c2.785,0,5.043-2.258,5.043-5.043l1.063-21.015L12.004,13.339z M22.832,38.593c-0.563,0.179-1.16-0.135-1.338-0.693L15.67,19.448 c-0.178-0.56,0.133-1.157,0.693-1.335c0.561-0.177,1.158,0.133,1.336,0.694l5.826,18.453C23.701,37.818,23.393,38.417,22.832,38.593 z M28.547,38.774c-0.563,0.178-1.158-0.133-1.338-0.694l-5.826-18.451c-0.176-0.561,0.137-1.157,0.695-1.334 c0.563-0.176,1.16,0.131,1.336,0.694l5.828,18.452C29.416,38,29.105,38.597,28.547,38.774z M34.361,38.959 c-0.563,0.178-1.158-0.133-1.338-0.694l-5.826-18.451c-0.176-0.56,0.137-1.158,0.697-1.336s1.158,0.133,1.332,0.695l5.83,18.451 C35.23,38.184,34.92,38.781,34.361,38.959z M39.584,39.125c-0.563,0.178-1.16-0.133-1.338-0.695l-5.824-18.451 c-0.176-0.56,0.131-1.157,0.695-1.335c0.561-0.178,1.158,0.133,1.334,0.693l5.824,18.453C40.453,38.352,40.146,38.95,39.584,39.125z M45.299,39.308c-0.563,0.177-1.158-0.135-1.336-0.695l-5.826-18.452c-0.176-0.56,0.135-1.157,0.695-1.334 c0.561-0.177,1.158,0.133,1.336,0.694l5.826,18.453C46.17,38.533,45.857,39.13,45.299,39.308z M50.918,39.493 c-0.563,0.178-1.16-0.136-1.338-0.695l-5.824-18.451c-0.178-0.56,0.131-1.157,0.691-1.335c0.563-0.177,1.158,0.133,1.338,0.694 l5.826,18.453C51.785,38.716,51.475,39.314,50.918,39.493z M52.553,28.654c-0.561,0.177-1.16-0.134-1.336-0.695l-2.336-7.35 c-0.178-0.56,0.133-1.158,0.695-1.335c0.561-0.177,1.158,0.135,1.334,0.694l2.336,7.351C53.424,27.879,53.111,28.476,52.553,28.654z " fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="30.1436" x2="30.1436" y1="10.1616" y2="42.5465">
+<stop offset="0" style="stop-color:#EFF2F0"/>
+<stop offset="0.4606" style="stop-color:#D5D9D7"/>
+<stop offset="0.7333" style="stop-color:#B0B5B5"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M12,13.34l-1.9-5.231c0-0.012-0.514-1.72-1.676-1.72h-3.363c-0.928,0-1.682,0.753-1.682,1.681s0.754,1.681,1.682,1.681h2.061l9.359,25.72s1.762,5.382,2.742,6.068c0.84,0.622,1.873,0.995,3,0.995h28.58c2.785,0,5.043-2.258,5.043-5.043l0.023-0.497c0.008-0.107,0.01-0.208,0.018-0.291l0.043-0.884,0.268-5.254v-0.002l0.025-0.516,0.686-13.57-44.91-3.15zm43.06,24.11c0,2.386-1.91,4.295-4.254,4.295h-28.58c-0.914,0-1.789-0.291-2.529-0.839-0.492-0.394-1.668-3.25-2.461-5.68l-9.568-26.26h-2.611c-0.492,0-0.893-0.401-0.893-0.893s0.4-0.892,0.893-0.892h3.363c0.393,0,0.756,0.696,0.885,1.044v0.015l2.129,5.854,44.64,3.118-1.02,20.24z" fill="url(#SVGID_13_)"/>
+<path d="M12.004,13.339L10.1,8.109c0-0.012-0.514-1.72-1.676-1.72H5.061c-0.928,0-1.682,0.753-1.682,1.681 s0.754,1.681,1.682,1.681h2.061l9.359,25.72c0,0,1.762,5.382,2.742,6.068c0.84,0.622,1.873,0.995,3,0.995h28.58 c2.785,0,5.043-2.258,5.043-5.043l0.023-0.497c0.008-0.107,0.01-0.208,0.018-0.291l0.043-0.884l0.268-5.254v-0.002l0.025-0.516 l0.686-13.571L12.004,13.339z M55.057,37.452c0,2.386-1.91,4.295-4.254,4.295h-28.58c-0.914,0-1.789-0.291-2.529-0.839 c-0.492-0.394-1.668-3.25-2.461-5.68L7.672,8.963H5.061c-0.492,0-0.893-0.401-0.893-0.893s0.4-0.892,0.893-0.892h3.363 c0.393,0,0.756,0.696,0.885,1.044v0.015l2.129,5.854l44.645,3.118L55.057,37.452z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5__)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mycard.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_mycard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.809" y2="50.51">
-<stop offset="0" stop-color="#E3E3E3"/>
-<stop offset="1" stop-color="#9B9B9B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="8.8086" y2="50.5088">
+<stop offset="0" style="stop-color:#E3E3E3"/>
+<stop offset="1" style="stop-color:#9B9B9B"/>
</linearGradient>
-<path d="M4.871,50.82c-1.582,0-2.871-1.29-2.871-2.87v-35.9c0-1.582,1.289-2.872,2.871-2.872h50.26c1.584,0,2.871,1.287,2.871,2.872v35.9c0,1.585-1.287,2.872-2.871,2.872h-50.26z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.539" y2="49.8">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<path d="M4.871,50.82C3.289,50.82,2,49.533,2,47.948V12.052C2,10.467,3.289,9.18,4.871,9.18h50.258 c1.584,0,2.871,1.287,2.871,2.872v35.896c0,1.585-1.287,2.872-2.871,2.872H4.871z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.001" x2="30.001" y1="9.5391" y2="49.8016">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<path d="M57.28,47.95c0,1.189-0.965,2.154-2.154,2.154h-50.26c-1.188,0-2.152-0.965-2.152-2.154v-35.9c0-1.189,0.965-2.154,2.152-2.154h50.26c1.189,0,2.154,0.965,2.154,2.154v35.9z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="10.54" y2="49.31">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<path d="M57.283,47.948c0,1.189-0.965,2.154-2.154,2.154H4.871c-1.188,0-2.152-0.965-2.152-2.154V12.052 c0-1.189,0.965-2.154,2.152-2.154h50.258c1.189,0,2.154,0.965,2.154,2.154V47.948z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="10.54" y2="49.3096">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<path d="M55.13,11.33c0.396,0,0.719,0.321,0.719,0.718v35.9c0,0.396-0.322,0.718-0.719,0.718h-50.26c-0.395,0-0.717-0.321-0.717-0.718v-35.9c0-0.396,0.322-0.718,0.717-0.718h50.26m0.001-0.71h-50.26c-0.791,0-1.436,0.644-1.436,1.437v35.9c0,0.792,0.645,1.437,1.436,1.437h50.26c0.791,0,1.436-0.645,1.436-1.437v-35.91c-0.01-0.792-0.65-1.432-1.44-1.432z" fill="url(#SVGID_3_)"/>
-<rect fill="#020202" fill-opacity="0.1" height="23.69" stroke-opacity="0.1" width="21.54" x="7.744" y="19.04"/>
-<rect fill="#FFFFFF" height="23.69" width="21.54" x="7.744" y="17.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.51" x2="18.51" y1="40.66" y2="18.41">
-<stop offset="0" stop-color="#75B1BE"/>
-<stop offset="1" stop-color="#A6C8C1"/>
+<path d="M55.129,11.334c0.396,0,0.719,0.321,0.719,0.718v35.896c0,0.396-0.322,0.718-0.719,0.718H4.871 c-0.395,0-0.717-0.321-0.717-0.718V12.052c0-0.396,0.322-0.718,0.717-0.718H55.129 M55.129,10.615H4.871 c-0.791,0-1.436,0.644-1.436,1.437v35.896c0,0.792,0.645,1.437,1.436,1.437h50.258c0.791,0,1.436-0.645,1.436-1.437V12.052 C56.564,11.259,55.92,10.615,55.129,10.615L55.129,10.615z" fill="url(#SVGID_3_)"/>
+<rect fill="#020202" fill-opacity="0.1" height="23.692" stroke-opacity="0.1" width="21.539" x="7.744" y="19.04"/>
+<rect fill="#FFFFFF" height="23.691" width="21.539" x="7.744" y="17.604"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.5137" x2="18.5137" y1="40.6636" y2="18.4058">
+<stop offset="0" style="stop-color:#75B1BE"/>
+<stop offset="1" style="stop-color:#A6C8C1"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="22.26" width="20.1" x="8.463" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="9.898" x2="25.69" y1="29.76" y2="29.76">
-<stop offset="0" stop-color="#425A81"/>
-<stop offset="1" stop-color="#242954"/>
+<rect fill="url(#SVGID_4_)" height="22.258" width="20.102" x="8.463" y="18.321"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="9.8984" x2="25.6941" y1="29.7617" y2="29.7617">
+<stop offset="0" style="stop-color:#425A81"/>
+<stop offset="1" style="stop-color:#242954"/>
</linearGradient>
-<path d="M24.94,34.52c-0.469-0.243-2.283-0.901-3.256-1.267l-0.041-0.016h-0.002c-0.01-0.004-0.018-0.007-0.027-0.011l-0.549-0.222c-0.389-0.44-0.346-1.455-0.129-1.794,0.045-0.067,0.084-0.136,0.127-0.205h-0.008c0.314-0.512,0.582-1.021,0.797-1.498,0.389,0.135,0.889-0.228,1.137-0.839,0.258-0.635,0.146-1.292-0.25-1.47-0.021-0.01-0.045-0.011-0.066-0.018v-0.002c0.051-0.199,0.072-0.318,0.072-0.318,0.682-3.054-0.801-5.475-4.391-5.595-1.473,0-2.182,0.672-2.73,1.373-0.893,0.138-2.303,0.952-1.307,4.526-0.037,0.007-0.076,0.013-0.111,0.027-0.4,0.169-0.523,0.82-0.279,1.458,0.244,0.636,0.764,1.019,1.162,0.85,0.023-0.011,0.045-0.028,0.066-0.042,0.219,0.491,0.49,1.018,0.813,1.547h-0.002c0.014,0.025,0.029,0.05,0.045,0.073,0.002,0.005,0.004,0.01,0.008,0.013v0.003c0.025,0.038,0.049,0.077,0.072,0.116,0.207,0.324,0.252,1.255-0.08,1.723l-0.572,0.249c-0.961,0.376-2.814,1.052-3.35,1.337-0.832,0.442-2.189,1.455-2.189,3.743h17.23c0.01-2.29-1.54-3.41-2.18-3.74zm-2.32-7.35c-0.021-0.006-0.041-0.012-0.063-0.013-0.029-0.005-0.055-0.012-0.084-0.017-0.006-0.002-0.006-0.002-0.012-0.003,0.04,0.01,0.1,0.02,0.15,0.03zm-8.3-0.01c0.006-0.006,0.018-0.016,0.023-0.022,0.002,0.006,0.002,0.01,0.006,0.016h-0.03z" fill="url(#SVGID_5_)"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.67" x="33.59" y="21.91"/>
-<rect fill="#020202" fill-opacity="0.5" height="1.256" stroke-opacity="0.5" width="18.67" x="33.59" y="22.63"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.67" x="33.59" y="28.37"/>
-<rect fill="#020202" fill-opacity="0.5" height="1.256" stroke-opacity="0.5" width="18.67" x="33.59" y="29.09"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.67" x="33.59" y="34.84"/>
-<rect fill="#020202" fill-opacity="0.5" height="1.257" stroke-opacity="0.5" width="18.67" x="33.59" y="35.55"/>
+<path d="M24.939,34.517c-0.469-0.243-2.283-0.901-3.256-1.267l-0.041-0.016h-0.002 c-0.01-0.004-0.018-0.007-0.027-0.011l-0.549-0.222c-0.389-0.44-0.346-1.455-0.129-1.794c0.045-0.067,0.084-0.136,0.127-0.205 h-0.008c0.314-0.512,0.582-1.021,0.797-1.498c0.389,0.135,0.889-0.228,1.137-0.839c0.258-0.635,0.146-1.292-0.25-1.47 c-0.021-0.01-0.045-0.011-0.066-0.018c0-0.002,0-0.002,0-0.002c0.051-0.199,0.072-0.318,0.072-0.318 c0.682-3.054-0.801-5.475-4.391-5.595c-1.473,0-2.182,0.672-2.73,1.373c-0.893,0.138-2.303,0.952-1.307,4.526 c-0.037,0.007-0.076,0.013-0.111,0.027c-0.4,0.169-0.523,0.82-0.279,1.458c0.244,0.636,0.764,1.019,1.162,0.85 c0.023-0.011,0.045-0.028,0.066-0.042c0.219,0.491,0.49,1.018,0.813,1.547h-0.002c0.014,0.025,0.029,0.05,0.045,0.073 c0.002,0.005,0.004,0.01,0.008,0.013v0.003c0.025,0.038,0.049,0.077,0.072,0.116c0.207,0.324,0.252,1.255-0.08,1.723l-0.572,0.249 c-0.961,0.376-2.814,1.052-3.35,1.337c-0.832,0.442-2.189,1.455-2.189,3.743h17.23C27.129,35.972,25.578,34.85,24.939,34.517z M22.619,27.168c-0.021-0.006-0.041-0.012-0.063-0.013c-0.029-0.005-0.055-0.012-0.084-0.017c-0.006-0.002-0.006-0.002-0.012-0.003 C22.514,27.146,22.566,27.156,22.619,27.168z M14.322,27.162c0.006-0.006,0.018-0.016,0.023-0.022 c0.002,0.006,0.002,0.01,0.006,0.016C14.34,27.156,14.332,27.161,14.322,27.162z" fill="url(#SVGID_5_)"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.668" x="33.59" y="21.912"/>
+<rect fill="#020202" fill-opacity="0.5" height="1.256" stroke-opacity="0.5" width="18.668" x="33.59" y="22.63"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.668" x="33.59" y="28.374"/>
+<rect fill="#020202" fill-opacity="0.5" height="1.256" stroke-opacity="0.5" width="18.668" x="33.59" y="29.092"/>
+<rect fill="#020202" fill-opacity="0.2" height="0.718" stroke-opacity="0.2" width="18.668" x="33.59" y="34.835"/>
+<rect fill="#020202" fill-opacity="0.5" height="1.257" stroke-opacity="0.5" width="18.668" x="33.59" y="35.553"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,44 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.47" x2="33.47" y1="32.45" y2="32.45">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4722" x2="33.4727" y1="32.4502" y2="32.4502">
+<stop offset="0" style="stop-color:#6A6C6E"/>
+<stop offset="0.0788" style="stop-color:#ABB0AF"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#9A9C9C"/>
+<stop offset="1" style="stop-color:#C8CAC9"/>
</linearGradient>
-<path d="M26.47,10.75v42.01c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-42.01h-6.998z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="5.627" y2="33.08">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M26.472,10.75v42.014c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387V10.75 H26.472z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="5.6274" y2="33.0842">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M57.89,7.582c-0.316-1.029-1.268-1.732-2.346-1.732h-51.09c-1.078,0-2.029,0.703-2.345,1.732s0.078,2.145,0.971,2.747l23.39,22.59v-9.161l-14.01-13.01h35.09l-14.08,13.23v9.074l23.45-22.72c0.89-0.603,1.29-1.719,0.97-2.748z" fill="url(#SVGID_2_)"/>
-<path d="M2.108,8.384c0.315-1.03,1.267-1.834,2.345-1.834h51.1c1.078,0,2.029,0.804,2.346,1.834,0.033,0.106,0.053,0.214,0.07,0.322,0.063-0.368,0.043-0.751-0.07-1.124-0.316-1.029-1.268-1.732-2.346-1.732h-51.09c-1.078,0-2.029,0.703-2.345,1.732-0.115,0.373-0.133,0.756-0.071,1.124,0.017-0.108,0.038-0.216,0.071-0.322z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.18,24.72,48.69,10.74,47.58,10.74,34.18,23.43" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.32,10.75,25.78,24.5,25.78,23.22,12.45,10.75" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.481" y2="32.12">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
+<path d="M57.893,7.582c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453 c-1.078,0-2.029,0.703-2.345,1.732c-0.316,1.029,0.078,2.145,0.971,2.747l23.394,22.586v-9.161L12.455,10.75h17.518h0.35h17.223 L33.473,23.975v9.074l23.449-22.72C57.814,9.727,58.207,8.611,57.893,7.582z" fill="url(#SVGID_2_)"/>
+<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 " stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="6.481" y2="32.1174">
+<stop offset="0" style="stop-color:#EDEFEE"/>
+<stop offset="0.5" style="stop-color:#BCBEBE"/>
+<stop offset="0.5" style="stop-color:#A5A6A7"/>
+<stop offset="1" style="stop-color:#C9CBCA"/>
</linearGradient>
-<path d="M34.17,24.74l15.55-14.69h-39.47l15.52,14.47v7.094l-22.29-21.86c-0.65-0.44-0.929-1.228-0.702-1.968s0.9-1.237,1.676-1.237h51.09c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962l-22.37,22.11v-7.122z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.74" x2="45.74" y1="7.993" y2="30.65">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M34.172,24.738L49.715,10.05H10.251l15.521,14.472v7.094L3.479,9.755 C2.829,9.315,2.55,8.527,2.777,7.787s0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962 L34.172,31.855V24.738z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.7363" x2="45.7363" y1="7.9927" y2="30.6518">
+<stop offset="0" style="stop-color:#69696A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M57.15,7.602c-0.129,0.295-0.336,0.557-0.619,0.748l-22.36,22.11v1.4l22.36-22.11c0.641-0.434,0.92-1.222,0.693-1.962-0.02-0.064-0.04-0.125-0.07-0.185z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.24" x2="14.24" y1="7.992" y2="30.67">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M57.148,7.602c-0.129,0.295-0.336,0.557-0.619,0.748L34.172,30.455v1.4L56.529,9.749 c0.641-0.434,0.92-1.222,0.693-1.962C57.203,7.723,57.176,7.662,57.148,7.602z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.2354" x2="14.2354" y1="7.9922" y2="30.666">
+<stop offset="0" style="stop-color:#69696A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M2.851,7.6c-0.026,0.062-0.054,0.123-0.074,0.187-0.227,0.74,0.052,1.528,0.702,1.968l22.29,21.86v-1.4l-22.29-21.87c-0.288-0.194-0.497-0.458-0.628-0.754z" fill="url(#SVGID_5_)"/>
-<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.09c0.775,0,1.449,0.497,1.676,1.237,0.018,0.058,0.027,0.116,0.037,0.174,0.061-0.283,0.053-0.582-0.037-0.874-0.227-0.74-0.9-1.237-1.676-1.237h-51.1c-0.775,0-1.449,0.497-1.676,1.237-0.09,0.291-0.098,0.59-0.038,0.873,0.011-0.057,0.02-0.115,0.038-0.173z" fill="#FFFFFF"/>
-<path d="M32.07,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-0.7c0,0.77-0.62,1.39-1.4,1.39z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M32.07,52.74h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-0.7c0,0.77-0.62,1.39-1.4,1.39z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.47" y="10.75"/>
-<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.47" y="11.45"/>
-<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.47" y="10.75"/>
+<path d="M2.851,7.6C2.825,7.662,2.797,7.723,2.777,7.787C2.55,8.527,2.829,9.315,3.479,9.755l22.293,21.86 v-1.4L3.479,8.354C3.191,8.16,2.982,7.896,2.851,7.6z" fill="url(#SVGID_5_)"/>
+<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237 c0.018,0.058,0.027,0.116,0.037,0.174c0.061-0.283,0.053-0.582-0.037-0.874c-0.227-0.74-0.9-1.237-1.676-1.237H4.453 c-0.775,0-1.449,0.497-1.676,1.237c-0.09,0.291-0.098,0.59-0.038,0.873C2.75,8.603,2.759,8.545,2.777,8.487z" fill="#FFFFFF"/>
+<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.472" y="10.75"/>
+<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.472" y="11.45"/>
+<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.472" y="10.75"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,55 +1,57 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.47" x2="33.47" y1="32.45" y2="32.45">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4722" x2="33.4727" y1="32.4502" y2="32.4502">
+<stop offset="0" style="stop-color:#6A6C6E"/>
+<stop offset="0.0788" style="stop-color:#ABB0AF"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#9A9C9C"/>
+<stop offset="1" style="stop-color:#C8CAC9"/>
</linearGradient>
-<path d="M26.47,10.75v42.01c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-42.01h-6.998z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="5.627" y2="33.08">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M26.472,10.75v42.014c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387V10.75 H26.472z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="5.6274" y2="33.0842">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M57.89,7.582c-0.316-1.029-1.268-1.732-2.346-1.732h-51.09c-1.078,0-2.029,0.703-2.345,1.732s0.078,2.145,0.971,2.747l23.39,22.59v-9.161l-14.01-13.01h35.09l-14.08,13.23v9.074l23.45-22.72c0.89-0.603,1.29-1.719,0.97-2.748z" fill="url(#SVGID_2_)"/>
-<path d="M2.108,8.384c0.315-1.03,1.267-1.834,2.345-1.834h51.1c1.078,0,2.029,0.804,2.346,1.834,0.033,0.106,0.053,0.214,0.07,0.322,0.063-0.368,0.043-0.751-0.07-1.124-0.316-1.029-1.268-1.732-2.346-1.732h-51.09c-1.078,0-2.029,0.703-2.345,1.732-0.115,0.373-0.133,0.756-0.071,1.124,0.017-0.108,0.038-0.216,0.071-0.322z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.18,24.72,48.69,10.74,47.58,10.74,34.18,23.43" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.32,10.75,25.78,24.5,25.78,23.22,12.45,10.75" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.481" y2="32.12">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
+<path d="M57.893,7.582c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453 c-1.078,0-2.029,0.703-2.345,1.732c-0.316,1.029,0.078,2.145,0.971,2.747l23.394,22.586v-9.161L12.455,10.75h17.518h0.35h17.223 L33.473,23.975v9.074l23.449-22.72C57.814,9.727,58.207,8.611,57.893,7.582z" fill="url(#SVGID_2_)"/>
+<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 " stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="6.481" y2="32.1174">
+<stop offset="0" style="stop-color:#EDEFEE"/>
+<stop offset="0.5" style="stop-color:#BCBEBE"/>
+<stop offset="0.5" style="stop-color:#A5A6A7"/>
+<stop offset="1" style="stop-color:#C9CBCA"/>
+</linearGradient>
+<path d="M34.172,24.738L49.715,10.05H10.251l15.521,14.472v7.094L3.479,9.755 C2.829,9.315,2.55,8.527,2.777,7.787s0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962 L34.172,31.855V24.738z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.7363" x2="45.7363" y1="7.9927" y2="30.6518">
+<stop offset="0" style="stop-color:#69696A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M34.17,24.74l15.55-14.69h-39.47l15.52,14.47v7.094l-22.29-21.86c-0.65-0.44-0.929-1.228-0.702-1.968s0.9-1.237,1.676-1.237h51.09c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962l-22.37,22.11v-7.122z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.74" x2="45.74" y1="7.993" y2="30.65">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M57.148,7.602c-0.129,0.295-0.336,0.557-0.619,0.748L34.172,30.455v1.4L56.529,9.749 c0.641-0.434,0.92-1.222,0.693-1.962C57.203,7.723,57.176,7.662,57.148,7.602z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.2354" x2="14.2354" y1="7.9922" y2="30.666">
+<stop offset="0" style="stop-color:#69696A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M57.15,7.602c-0.129,0.295-0.336,0.557-0.619,0.748l-22.36,22.11v1.4l22.36-22.11c0.641-0.434,0.92-1.222,0.693-1.962-0.02-0.064-0.04-0.125-0.07-0.185z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.24" x2="14.24" y1="7.992" y2="30.67">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M2.851,7.6c-0.026,0.062-0.054,0.123-0.074,0.187-0.227,0.74,0.052,1.528,0.702,1.968l22.29,21.86v-1.4l-22.29-21.87c-0.288-0.194-0.497-0.458-0.628-0.754z" fill="url(#SVGID_5_)"/>
-<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.09c0.775,0,1.449,0.497,1.676,1.237,0.018,0.058,0.027,0.116,0.037,0.174,0.061-0.283,0.053-0.582-0.037-0.874-0.227-0.74-0.9-1.237-1.676-1.237h-51.1c-0.775,0-1.449,0.497-1.676,1.237-0.09,0.291-0.098,0.59-0.038,0.873,0.011-0.057,0.02-0.115,0.038-0.173z" fill="#FFFFFF"/>
-<path d="M32.07,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-0.7c0,0.77-0.62,1.39-1.4,1.39z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M32.07,52.74h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-0.7c0,0.77-0.62,1.39-1.4,1.39z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.47" y="10.75"/>
-<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.47" y="11.45"/>
-<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.47" y="10.75"/>
+<path d="M2.851,7.6C2.825,7.662,2.797,7.723,2.777,7.787C2.55,8.527,2.829,9.315,3.479,9.755l22.293,21.86 v-1.4L3.479,8.354C3.191,8.16,2.982,7.896,2.851,7.6z" fill="url(#SVGID_5_)"/>
+<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237 c0.018,0.058,0.027,0.116,0.037,0.174c0.061-0.283,0.053-0.582-0.037-0.874c-0.227-0.74-0.9-1.237-1.676-1.237H4.453 c-0.775,0-1.449,0.497-1.676,1.237c-0.09,0.291-0.098,0.59-0.038,0.873C2.75,8.603,2.759,8.545,2.777,8.487z" fill="#FFFFFF"/>
+<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.472" y="10.75"/>
+<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.472" y="11.45"/>
+<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.472" y="10.75"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(2 0 0 2 0 0)">
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.35" height="33.87" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.15" y="-2.239"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="656" y2="656">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="0.8424" stop-color="#954B50"/>
-<stop offset="1" stop-color="#B36B4D"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="0.8424" style="stop-color:#954B50"/>
+<stop offset="1" style="stop-color:#B36B4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="25.81,26.43,3,4.177,4.191,2.956,27,25.21"/>
+<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_settings.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_network_settings.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,67 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.47" x2="33.47" y1="32.45" y2="32.45">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
-</linearGradient>
-<path d="M26.47,10.75v42.01c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-42.01h-6.998z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="5.627" y2="33.08">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.4722" x2="33.4727" y1="32.4502" y2="32.4502">
+<stop offset="0" style="stop-color:#6A6C6E"/>
+<stop offset="0.0788" style="stop-color:#ABB0AF"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#9A9C9C"/>
+<stop offset="1" style="stop-color:#C8CAC9"/>
</linearGradient>
-<path d="M57.89,7.582c-0.316-1.029-1.268-1.732-2.346-1.732h-51.09c-1.078,0-2.029,0.703-2.345,1.732s0.078,2.145,0.971,2.747l23.39,22.59v-9.161l-14.01-13.01h35.09l-14.08,13.23v9.074l23.45-22.72c0.89-0.603,1.29-1.719,0.97-2.748z" fill="url(#SVGID_2_)"/>
-<path d="M2.108,8.384c0.315-1.03,1.267-1.834,2.345-1.834h51.1c1.078,0,2.029,0.804,2.346,1.834,0.033,0.106,0.053,0.214,0.07,0.322,0.063-0.368,0.043-0.751-0.07-1.124-0.316-1.029-1.268-1.732-2.346-1.732h-51.09c-1.078,0-2.029,0.703-2.345,1.732-0.115,0.373-0.133,0.756-0.071,1.124,0.017-0.108,0.038-0.216,0.071-0.322z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.18,24.72,48.69,10.74,47.58,10.74,34.18,23.43" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.32,10.75,25.78,24.5,25.78,23.22,12.45,10.75" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="6.481" y2="32.12">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
+<path d="M26.472,10.75v42.014c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387V10.75 H26.472z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="5.6274" y2="33.0842">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M34.17,24.74l15.55-14.69h-39.47l15.52,14.47v7.094l-22.29-21.86c-0.65-0.44-0.929-1.228-0.702-1.968s0.9-1.237,1.676-1.237h51.09c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962l-22.37,22.11v-7.122z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.74" x2="45.74" y1="7.993" y2="30.65">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M57.893,7.582c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453 c-1.078,0-2.029,0.703-2.345,1.732c-0.316,1.029,0.078,2.145,0.971,2.747l23.394,22.586v-9.161L12.455,10.75h17.518h0.35h17.223 L33.473,23.975v9.074l23.449-22.72C57.814,9.727,58.207,8.611,57.893,7.582z" fill="url(#SVGID_2_)"/>
+<path d="M2.108,8.384C2.423,7.354,3.375,6.55,4.453,6.55h25.52h0.35h25.225 c1.078,0,2.029,0.804,2.346,1.834c0.033,0.106,0.053,0.214,0.07,0.322c0.063-0.368,0.043-0.751-0.07-1.124 c-0.316-1.029-1.268-1.732-2.346-1.732H30.322h-0.35H4.453c-1.078,0-2.029,0.703-2.345,1.732C1.993,7.955,1.975,8.338,2.037,8.706 C2.054,8.598,2.075,8.49,2.108,8.384z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="34.184,24.717 48.693,10.742 47.58,10.742 34.184,23.428 " stroke-opacity="0.6"/>
+<polygon fill="#FFFFFF" fill-opacity="0.6" points="11.317,10.753 25.783,24.498 25.783,23.216 12.451,10.753 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="6.481" y2="32.1174">
+<stop offset="0" style="stop-color:#EDEFEE"/>
+<stop offset="0.5" style="stop-color:#BCBEBE"/>
+<stop offset="0.5" style="stop-color:#A5A6A7"/>
+<stop offset="1" style="stop-color:#C9CBCA"/>
+</linearGradient>
+<path d="M34.172,24.738L49.715,10.05H10.251l15.521,14.472v7.094L3.479,9.755 C2.829,9.315,2.55,8.527,2.777,7.787s0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237s-0.053,1.528-0.693,1.962 L34.172,31.855V24.738z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.7363" x2="45.7363" y1="7.9927" y2="30.6518">
+<stop offset="0" style="stop-color:#69696A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M57.15,7.602c-0.129,0.295-0.336,0.557-0.619,0.748l-22.36,22.11v1.4l22.36-22.11c0.641-0.434,0.92-1.222,0.693-1.962-0.02-0.064-0.04-0.125-0.07-0.185z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.24" x2="14.24" y1="7.992" y2="30.67">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M57.148,7.602c-0.129,0.295-0.336,0.557-0.619,0.748L34.172,30.455v1.4L56.529,9.749 c0.641-0.434,0.92-1.222,0.693-1.962C57.203,7.723,57.176,7.662,57.148,7.602z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.2354" x2="14.2354" y1="7.9922" y2="30.666">
+<stop offset="0" style="stop-color:#69696A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M2.851,7.6c-0.026,0.062-0.054,0.123-0.074,0.187-0.227,0.74,0.052,1.528,0.702,1.968l22.29,21.86v-1.4l-22.29-21.87c-0.288-0.194-0.497-0.458-0.628-0.754z" fill="url(#SVGID_5_)"/>
-<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.09c0.775,0,1.449,0.497,1.676,1.237,0.018,0.058,0.027,0.116,0.037,0.174,0.061-0.283,0.053-0.582-0.037-0.874-0.227-0.74-0.9-1.237-1.676-1.237h-51.1c-0.775,0-1.449,0.497-1.676,1.237-0.09,0.291-0.098,0.59-0.038,0.873,0.011-0.057,0.02-0.115,0.038-0.173z" fill="#FFFFFF"/>
-<path d="M32.07,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-0.7c0,0.77-0.62,1.39-1.4,1.39z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M32.07,52.74h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201c0.773,0,1.4-0.621,1.4-1.387v-0.7c0,0.77-0.62,1.39-1.4,1.39z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.47" y="10.75"/>
-<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.47" y="11.45"/>
-<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.47" y="10.75"/>
+<path d="M2.851,7.6C2.825,7.662,2.797,7.723,2.777,7.787C2.55,8.527,2.829,9.315,3.479,9.755l22.293,21.86 v-1.4L3.479,8.354C3.191,8.16,2.982,7.896,2.851,7.6z" fill="url(#SVGID_5_)"/>
+<path d="M2.777,8.487c0.227-0.74,0.9-1.237,1.676-1.237h51.094c0.775,0,1.449,0.497,1.676,1.237 c0.018,0.058,0.027,0.116,0.037,0.174c0.061-0.283,0.053-0.582-0.037-0.874c-0.227-0.74-0.9-1.237-1.676-1.237H4.453 c-0.775,0-1.449,0.497-1.676,1.237c-0.09,0.291-0.098,0.59-0.038,0.873C2.75,8.603,2.759,8.545,2.777,8.487z" fill="#FFFFFF"/>
+<path d="M32.072,53.45h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.829,32.846,53.45,32.072,53.45z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M32.072,52.736h-4.201c-0.772,0-1.399-0.621-1.399-1.387v0.7c0,0.766,0.626,1.387,1.399,1.387h4.201 c0.773,0,1.4-0.621,1.4-1.387v-0.7C33.473,52.115,32.846,52.736,32.072,52.736z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.3" height="0.7" stroke-opacity="0.3" width="7" x="26.472" y="10.75"/>
+<rect fill-opacity="0.2" height="0.7" stroke-opacity="0.2" width="7" x="26.472" y="11.45"/>
+<rect fill-opacity="0.1" height="2.8" stroke-opacity="0.1" width="7" x="26.472" y="10.75"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<path d="M15,29.5c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854l-0.37-0.49,0.616-1.23c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157l-0.557-1.35c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434-0.083-0.594c-0.096-0.68-0.144-1.36-0.144-2.03s0.048-1.34,0.144-2.02l0.083-0.594,1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224l-0.48-0.485c-0.385-0.386-0.857-1.041-1.098-1.524l-0.615-1.229,0.361-0.479c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362,1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017,0.064-0.014,1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16v-0.676c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304,0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143,0.662,0,1.342,0.048,2.02,0.143l0.595,0.083,0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551,0.098,0.031c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613,0.476,0.36c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479-0.66,1.346c-0.253,0.506-0.391,0.758-1.04,1.407l-0.49,0.487c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156h0.678c0.544,0,1.343,0.13,1.854,0.302l1.303,0.433,0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021,0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593-1.303,0.434c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226-0.36,0.479c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017-0.066,0.015-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306-0.595,0.082c-0.68,0.11-1.36,0.15-2.02,0.15zm0-18.29c-2.094,0-3.798,1.704-3.798,3.798s1.704,3.798,3.798,3.798,3.797-1.704,3.797-3.798c0-2.1-1.71-3.8-3.8-3.8z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.5" x2="282.5" y1="-361.5" y2="-388.4">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1" stop-color="#FFFFFF"/>
-<stop offset="0.74" stop-color="#939595"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<path d="M15,29.505c-0.657,0-1.337-0.048-2.019-0.144l-0.594-0.082l-0.435-1.304c-0.171-0.517-0.3-1.313-0.3-1.854 v-0.687c-0.006-0.031-0.063-0.11-0.102-0.131l-1.339-0.548l-0.099-0.032c-0.06,0-0.112,0.021-0.127,0.031l-0.479,0.479 c-0.383,0.383-1.038,0.855-1.522,1.098l-1.232,0.612l-0.477-0.36c-1.081-0.815-2.042-1.775-2.856-2.854L3.057,23.25l0.616-1.23 c0.246-0.489,0.718-1.144,1.099-1.523l0.484-0.485c0.018-0.026,0.033-0.119,0.021-0.157L4.72,18.511 c-0.041-0.095-0.118-0.151-0.159-0.158l-0.676,0.001c-0.545,0-1.343-0.13-1.855-0.302l-1.303-0.434l-0.083-0.594 C0.548,16.346,0.5,15.666,0.5,15.005s0.048-1.34,0.144-2.02l0.083-0.594l1.305-0.434c0.507-0.171,1.306-0.301,1.853-0.301h0.687 c0.031-0.006,0.108-0.062,0.127-0.099l0.553-1.344c0.04-0.098,0.025-0.19,0-0.224L4.772,9.511C4.387,9.125,3.915,8.47,3.674,7.987 L3.059,6.758L3.42,6.279c0.814-1.079,1.774-2.04,2.855-2.855l0.479-0.362l1.231,0.617c0.486,0.244,1.14,0.715,1.522,1.097 l0.487,0.485c0.008,0.005,0.06,0.025,0.119,0.025l0.034-0.017l0.064-0.014l1.285-0.531c0.094-0.04,0.15-0.118,0.156-0.16l0-0.676 c0-0.543,0.129-1.34,0.301-1.854l0.435-1.304l0.594-0.083c0.676-0.095,1.356-0.143,2.02-0.143c0.662,0,1.342,0.048,2.02,0.143 l0.595,0.083l0.434,1.305c0.17,0.515,0.301,1.312,0.301,1.853v0.687c0.006,0.031,0.063,0.11,0.1,0.129l1.341,0.551l0.098,0.031 c0.061,0,0.113-0.02,0.129-0.031l0.478-0.478c0.385-0.385,1.038-0.856,1.521-1.098l1.233-0.613l0.476,0.36 c1.08,0.813,2.041,1.773,2.856,2.855l0.362,0.479L26.27,8.106c-0.253,0.506-0.391,0.758-1.04,1.407L24.744,10 c-0.017,0.026-0.032,0.119-0.021,0.158l0.557,1.344c0.04,0.093,0.117,0.15,0.158,0.156l0.678,0c0.544,0,1.343,0.13,1.854,0.302 l1.303,0.433l0.083,0.594c0.095,0.677,0.144,1.356,0.144,2.021c0,0.666-0.049,1.345-0.144,2.021l-0.085,0.593l-1.303,0.434 c-0.508,0.172-1.305,0.302-1.853,0.302h-0.688c-0.032,0.006-0.109,0.063-0.131,0.102l-0.547,1.339 c-0.04,0.097-0.026,0.191-0.002,0.226l0.479,0.479c0.383,0.381,0.857,1.038,1.099,1.525l0.613,1.226l-0.36,0.479 c-0.815,1.08-1.774,2.041-2.854,2.855l-0.479,0.361l-1.231-0.615c-0.485-0.244-1.14-0.716-1.521-1.097l-0.487-0.486 c-0.006-0.004-0.059-0.023-0.119-0.023l-0.031,0.017l-0.066,0.015l-1.284,0.529c-0.094,0.04-0.15,0.118-0.156,0.159v0.677 c0,0.54-0.129,1.337-0.301,1.853l-0.434,1.306l-0.595,0.082C16.335,29.457,15.656,29.505,15,29.505L15,29.505z M15,11.208 c-2.094,0-3.798,1.704-3.798,3.798c0,2.094,1.704,3.798,3.798,3.798s3.797-1.704,3.797-3.798C18.797,12.912,17.094,11.208,15,11.208 L15,11.208z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="282.4795" x2="282.4795" y1="-361.4912" y2="-388.438">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1" style="stop-color:#FFFFFF"/>
+<stop offset="0.74" style="stop-color:#939595"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<path d="M26.12,12.62h-0.69c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486c-0.31,0.309-0.882,0.401-1.271,0.203l-1.29-0.525c-0.417-0.137-0.755-0.608-0.755-1.044v-0.687c0-0.437-0.113-1.134-0.251-1.548l-0.246-0.735c-0.61-0.087-1.24-0.134-1.88-0.134-0.641,0-1.27,0.047-1.886,0.133l-0.24,0.735c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53c-0.39,0.199-0.96,0.107-1.269-0.201l-0.487-0.486c-0.309-0.309-0.882-0.721-1.271-0.917l-0.695-0.348c-1.007,0.761-1.905,1.659-2.666,2.667l0.347,0.694c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286c-0.136,0.415-0.605,0.754-1.042,0.754h-0.687c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886,0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271l-0.347,0.68c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134,0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885,0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245c-0.41-0.14-1.11-0.26-1.54-0.26zm-11.12,7.15c-2.632,0-4.765-2.133-4.765-4.765,0-2.631,2.132-4.765,4.765-4.765,2.63,0,4.764,2.134,4.764,4.765,0,2.64-2.13,4.77-4.76,4.77z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.7" x2="287.3" y1="-377.2" y2="-377.2">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.5" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M26.116,12.624H25.43c-0.437,0-0.906-0.339-1.042-0.754l-0.531-1.285 c-0.196-0.389-0.105-0.96,0.204-1.269l0.485-0.486c0.615-0.615,0.659-0.759,0.916-1.271l0.349-0.695 c-0.761-1.008-1.659-1.906-2.668-2.666l-0.694,0.346c-0.389,0.195-0.961,0.608-1.271,0.917l-0.485,0.486 c-0.31,0.309-0.882,0.401-1.271,0.203L18.138,5.62c-0.417-0.137-0.755-0.608-0.755-1.044V3.889c0-0.437-0.113-1.134-0.251-1.548 l-0.246-0.735C16.269,1.519,15.641,1.472,15,1.472c-0.641,0-1.27,0.047-1.886,0.133L12.869,2.34 c-0.138,0.415-0.251,1.111-0.251,1.548v0.687c0,0.436-0.339,0.906-0.754,1.042l-1.285,0.53C10.19,6.346,9.62,6.254,9.311,5.946 L8.824,5.46C8.515,5.151,7.942,4.739,7.553,4.543L6.858,4.195C5.851,4.956,4.953,5.854,4.192,6.862l0.347,0.694 c0.195,0.391,0.608,0.963,0.917,1.272l0.486,0.486c0.309,0.309,0.4,0.88,0.202,1.269l-0.531,1.286 c-0.136,0.415-0.605,0.754-1.042,0.754H3.884c-0.438,0-1.134,0.112-1.548,0.252l-0.736,0.245c-0.086,0.617-0.134,1.245-0.134,1.886 c0,0.64,0.047,1.269,0.134,1.885l0.736,0.246c0.414,0.139,1.11,0.251,1.548,0.251h0.687c0.438,0,0.906,0.34,1.042,0.755l0.53,1.284 c0.198,0.389,0.106,0.961-0.203,1.269l-0.486,0.486c-0.309,0.308-0.721,0.882-0.917,1.271L4.19,23.146 c0.761,1.008,1.659,1.905,2.667,2.665l0.694-0.345c0.391-0.196,0.963-0.608,1.271-0.917l0.486-0.485 c0.309-0.309,0.881-0.401,1.27-0.203l1.284,0.529c0.416,0.138,0.755,0.608,0.755,1.044v0.687c0,0.438,0.113,1.133,0.251,1.549 l0.245,0.734c0.617,0.086,1.245,0.134,1.886,0.134c0.64,0,1.267-0.048,1.886-0.134l0.244-0.734c0.138-0.416,0.251-1.111,0.251-1.549 v-0.687c0-0.438,0.34-0.906,0.755-1.043l1.284-0.53c0.391-0.197,0.959-0.105,1.269,0.203l0.485,0.485 c0.31,0.309,0.882,0.721,1.272,0.917l0.695,0.347c1.008-0.76,1.904-1.657,2.665-2.666l-0.347-0.693 c-0.194-0.391-0.608-0.964-0.918-1.271l-0.483-0.486c-0.31-0.309-0.4-0.88-0.204-1.27l0.529-1.284 c0.14-0.416,0.607-0.755,1.044-0.755h0.688c0.435,0,1.132-0.111,1.547-0.251l0.736-0.246c0.087-0.615,0.134-1.245,0.134-1.885 c0-0.641-0.047-1.269-0.134-1.886l-0.736-0.245C27.249,12.736,26.553,12.624,26.116,12.624z M15,19.771 c-2.632,0-4.765-2.133-4.765-4.765c0-2.631,2.132-4.765,4.765-4.765c2.63,0,4.764,2.134,4.764,4.765 C19.764,17.638,17.63,19.771,15,19.771z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="277.6816" x2="287.2746" y1="-377.2241" y2="-377.2241">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M15,19.77c2.63,0,4.764-2.133,4.764-4.765,0-0.125-0.01-0.246-0.018-0.367-0.188,2.459-2.239,4.398-4.746,4.398-2.508,0-4.558-1.939-4.746-4.398-0.01,0.122-0.019,0.243-0.019,0.367,0.02,2.64,2.15,4.77,4.78,4.77z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.5" x2="282.5" y1="-383.1" y2="-366.8">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.52" stop-color="#C8C8C8"/>
-<stop offset="1" stop-color="#939595"/>
+<path d="M15,19.771c2.63,0,4.764-2.133,4.764-4.765c0-0.125-0.01-0.246-0.018-0.367 c-0.188,2.459-2.239,4.398-4.746,4.398c-2.508,0-4.558-1.939-4.746-4.398c-0.01,0.122-0.019,0.243-0.019,0.367 C10.235,17.638,12.367,19.771,15,19.771z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -360.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="282.4805" x2="282.4805" y1="-383.0635" y2="-366.7921">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.52" style="stop-color:#C8C8C8"/>
+<stop offset="1" style="stop-color:#939595"/>
</linearGradient>
-<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486,8.487-3.799,8.487-8.486-3.8-8.49-8.49-8.49zm0,15.04c-3.621,0-6.559-2.935-6.559-6.557s2.937-6.558,6.559-6.558c3.62,0,6.557,2.936,6.557,6.558,0,3.63-2.94,6.56-6.56,6.56z" fill="url(#SVGID_3__)"/>
+<path d="M15,6.52c-4.687,0-8.487,3.8-8.487,8.487s3.8,8.486,8.487,8.486s8.487-3.799,8.487-8.486 S19.687,6.52,15,6.52z M15,21.563c-3.621,0-6.559-2.935-6.559-6.557c0-3.622,2.937-6.558,6.559-6.558 c3.62,0,6.557,2.936,6.557,6.558C21.557,18.629,18.619,21.563,15,21.563z" fill="url(#SVGID_3__)"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_message.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_message.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,68 +1,70 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.896" y2="49.8">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="0.5091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="9.8965" y2="49.8018">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="0.5091" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="58,50.4,2,50.4,2,9.6,30.46,10.4,58,9.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.702" y2="50.64">
-<stop offset="0" stop-color="#AD8C4A"/>
-<stop offset="0.3394" stop-color="#F4F3E6"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_1_)" points="58,50.4 2,50.4 2,9.6 30.463,10.4 58,9.6 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="9.7017" y2="50.6398">
+<stop offset="0" style="stop-color:#AD8C4A"/>
+<stop offset="0.3394" style="stop-color:#F4F3E6"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<path d="M57.38,10.22v39.56h-54.77v-39.56h54.77m0.615-0.62l-28.2,0.336-27.8-0.336v40.8h56v-40.8z" fill="url(#SVGID_2_)"/>
-<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71,58,49.71,58,48.92,30,24.33,2,48.92" stroke-opacity="0.3"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4,58,50.4,58,49.6,30,25.02,2,49.6" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831" x2="-1831" y1="1215" y2="1190">
-<stop offset="0" stop-color="#AE804B"/>
-<stop offset="0.7273" stop-color="#C2AC76"/>
-<stop offset="1" stop-color="#D2C997"/>
+<path d="M57.385,10.22v39.56H2.613V10.22H57.385 M58,9.6L29.802,9.936L2,9.6v40.8h56V9.6L58,9.6z" fill="url(#SVGID_2_)"/>
+<polygon fill="#B59659" fill-opacity="0.3" points="2,49.71 58,49.71 58,48.916 29.998,24.328 2,48.916 " stroke-opacity="0.3"/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="2,50.4 58,50.4 58,49.603 29.998,25.019 2,49.603 " stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -1801.0049 1240.3164)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1831.0049" x2="-1831.0049" y1="1214.7607" y2="1190.0703">
+<stop offset="0" style="stop-color:#AE804B"/>
+<stop offset="0.7273" style="stop-color:#C2AC76"/>
+<stop offset="1" style="stop-color:#D2C997"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="58,50.38,30,25.69,2,50.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.5" y2="51.07">
-<stop offset="0" stop-color="#E9E5CB"/>
-<stop offset="1" stop-color="#D1C794"/>
+<polygon fill="url(#SVGID_3_)" points="58,50.38 29.998,25.689 2,50.38 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="25.4995" y2="51.0736">
+<stop offset="0" style="stop-color:#E9E5CB"/>
+<stop offset="1" style="stop-color:#D1C794"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="58,50.38,30,25.69,2,50.38,30,26.56"/>
-<polygon fill="#A97B48" fill-opacity="0.3" points="30.06,10.4,2,9.6,30,38.62,58,9.6" stroke-opacity="0.3"/>
-<polygon fill="#88573A" fill-opacity="0.4" points="30.01,10.4,2,9.6,30,37.09,58,9.6" stroke-opacity="0.4"/>
-<polygon fill="#784833" fill-opacity="0.4" points="29.9,10.3,2,9.6,30,35.8,58,9.6" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.96" y2="8.009">
-<stop offset="0" stop-color="#C2B470"/>
-<stop offset="0.25" stop-color="#DED7B3"/>
-<stop offset="1" stop-color="#FDFCFA"/>
+<polygon fill="url(#SVGID_4_)" points="58,50.38 29.998,25.689 2,50.38 29.998,26.563 "/>
+<polygon fill="#A97B48" fill-opacity="0.3" points="30.057,10.4 2,9.6 29.998,38.617 58,9.6 " stroke-opacity="0.3"/>
+<polygon fill="#88573A" fill-opacity="0.4" points="30.006,10.4 2,9.6 29.998,37.091 58,9.6 " stroke-opacity="0.4"/>
+<polygon fill="#784833" fill-opacity="0.4" points="29.904,10.297 2,9.6 29.998,35.802 58,9.6 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="32.9619" y2="8.0088">
+<stop offset="0" style="stop-color:#C2B470"/>
+<stop offset="0.25" style="stop-color:#DED7B3"/>
+<stop offset="1" style="stop-color:#FDFCFA"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="2,9.6,30,34.29,58,9.6"/>
+<polygon fill="url(#SVGID_5_)" points="2,9.6 29.998,34.29 58,9.6 "/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 0)">
-<polygon fill-opacity="0.35" points="23.49,5.563,16.72,12.33,19.34,2.565,12.05,0.611,8.829,12.62,14.82,14.23,12.97,16.08,18.31,21.42,28.83,10.9" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="298" x2="295.2" y1="-378.2" y2="-388.8">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill-opacity="0.35" points="23.487,5.563 16.725,12.331 19.341,2.565 12.047,0.611 8.829,12.621 14.825,14.229 12.973,16.083 18.312,21.421 28.829,10.901 " stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="297.9736" x2="295.2261" y1="-378.1689" y2="-388.7774">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="9.714,12.11,12.56,1.496,18.45,3.077,15.61,13.69"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="297.8" x2="295.3" y1="-378.9" y2="-388.4">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_1__)" points="9.714,12.11 12.558,1.496 18.453,3.077 15.611,13.691 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="297.7822" x2="295.3409" y1="-378.8926" y2="-388.3527">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="15.18,12.94,10.46,11.68,12.99,2.246,17.71,3.508"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="308" x2="298.6" y1="-384.8" y2="-394.4">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill="url(#SVGID_2__)" points="15.18,12.942 10.463,11.679 12.989,2.246 17.706,3.508 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="308.0273" x2="298.6434" y1="-384.7505" y2="-394.3634">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="14,16.08,23.49,6.585,27.8,10.9,18.31,20.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="307.7" x2="299.2" y1="-385.2" y2="-393.8">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_3__)" points="13.995,16.083 23.487,6.585 27.805,10.901 18.312,20.398 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="307.7012" x2="299.1582" y1="-385.1528" y2="-393.7721">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="18.31,19.53,14.86,16.08,23.49,7.449,26.94,10.9"/>
+<polygon fill="url(#SVGID_4__)" points="18.312,19.532 14.858,16.083 23.487,7.449 26.944,10.901 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_voice_message.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_new_voice_message.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.39" y2="58.45">
<stop offset="0" stop-color="#F2F2F2"/>
<stop offset="1" stop-color="#A8A8A8"/>
@@ -24,32 +25,33 @@
</linearGradient>
<path d="M40.38,24.82c-4.26,0-7.725,3.465-7.725,7.72,0,1.766,0.602,3.385,1.598,4.686h-8.513c0.998-1.301,1.598-2.92,1.598-4.686,0-4.255-3.465-7.72-7.724-7.72-4.26,0-7.726,3.465-7.726,7.72,0,4.262,3.466,7.727,7.726,7.727h20.77c4.26,0,7.723-3.465,7.723-7.727-0.01-4.25-3.48-7.72-7.74-7.72zm-25.45,7.72c0-2.58,2.101-4.681,4.685-4.681,2.583,0,4.685,2.102,4.685,4.681,0,2.584-2.102,4.686-4.685,4.686-2.59,0-4.69-2.1-4.69-4.69zm25.45,4.69c-2.584,0-4.686-2.102-4.686-4.686,0-2.58,2.102-4.681,4.686-4.681,2.583,0,4.684,2.102,4.684,4.681,0.01,2.59-2.09,4.69-4.68,4.69z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 0)">
-<polygon fill-opacity="0.35" points="23.49,5.563,16.72,12.33,19.34,2.565,12.05,0.611,8.829,12.62,14.82,14.23,12.97,16.08,18.31,21.42,28.83,10.9" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="298" x2="295.2" y1="-378.2" y2="-388.8">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill-opacity="0.35" points="23.487,5.563 16.725,12.331 19.341,2.565 12.047,0.611 8.829,12.621 14.825,14.229 12.973,16.083 18.312,21.421 28.829,10.901 " stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="297.9736" x2="295.2261" y1="-378.1689" y2="-388.7774">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="9.714,12.11,12.56,1.496,18.45,3.077,15.61,13.69"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="297.8" x2="295.3" y1="-378.9" y2="-388.4">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_1__)" points="9.714,12.11 12.558,1.496 18.453,3.077 15.611,13.691 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="297.7822" x2="295.3409" y1="-378.8926" y2="-388.3527">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="15.18,12.94,10.46,11.68,12.99,2.246,17.71,3.508"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="308" x2="298.6" y1="-384.8" y2="-394.4">
-<stop offset="0" stop-color="#CDB18B"/>
-<stop offset="0.703" stop-color="#985954"/>
-<stop offset="1" stop-color="#BE997B"/>
+<polygon fill="url(#SVGID_2__)" points="15.18,12.942 10.463,11.679 12.989,2.246 17.706,3.508 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="308.0273" x2="298.6434" y1="-384.7505" y2="-394.3634">
+<stop offset="0" style="stop-color:#CDB18B"/>
+<stop offset="0.703" style="stop-color:#985954"/>
+<stop offset="1" style="stop-color:#BE997B"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="14,16.08,23.49,6.585,27.8,10.9,18.31,20.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="307.7" x2="299.2" y1="-385.2" y2="-393.8">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<polygon fill="url(#SVGID_3__)" points="13.995,16.083 23.487,6.585 27.805,10.901 18.312,20.398 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -376.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="307.7012" x2="299.1582" y1="-385.1528" y2="-393.7721">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="18.31,19.53,14.86,16.08,23.49,7.449,26.94,10.9"/>
+<polygon fill="url(#SVGID_4__)" points="18.312,19.532 14.858,16.083 23.487,7.449 26.944,10.901 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_non_default.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_non_default.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,155 +1,159 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.39" x2="29.39" y1="52.66" y2="57.61">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.3877" x2="29.3877" y1="52.6611" y2="57.6064">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M52.04,56.94c0,0.339-0.274,0.612-0.612,0.612h-44.08c-0.338,0-0.612-0.273-0.612-0.612v-3.673c0-0.339,0.274-0.612,0.612-0.612h44.08c0.338,0,0.612,0.273,0.612,0.612v3.668z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.41" x2="49.59" y1="22.65" y2="22.65">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<path d="M52.041,56.938c0,0.339-0.274,0.612-0.612,0.612H7.347c-0.338,0-0.612-0.273-0.612-0.612v-3.673 c0-0.339,0.274-0.612,0.612-0.612h44.082c0.338,0,0.612,0.273,0.612,0.612V56.938z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.4082" x2="49.5918" y1="22.6533" y2="22.6533">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M48.11,2.449h-36.22c-0.815,0-1.48,0.668-1.48,1.485v38.92h39.18v-38.92c0-0.818-0.66-1.486-1.48-1.486z" fill="url(#SVGID_2_)"/>
-<path d="M48.11,2.449c0.813,0,1.479,0.668,1.479,1.485v38.92h-39.18v-38.92c0-0.817,0.666-1.485,1.48-1.485h36.22m-0.003,1.176h-36.22c-0.173,0-0.318,0.142-0.318,0.309v37.75h36.86v-37.74c0-0.167-0.15-0.309-0.32-0.309z" fill="#FFFFFF"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.59" y2="6.374">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<path d="M48.113,2.449H11.889c-0.815,0-1.48,0.668-1.48,1.485v38.923h39.184V3.935 C49.592,3.117,48.926,2.449,48.113,2.449z" fill="url(#SVGID_2_)"/>
+<path d="M48.113,2.449c0.813,0,1.479,0.668,1.479,1.485v38.923H10.408V3.935c0-0.817,0.666-1.485,1.48-1.485H48.113 M48.113,3.626H11.889c-0.173,0-0.318,0.142-0.318,0.309v37.747H48.43V3.935C48.43,3.768,48.285,3.626,48.113,3.626L48.113,3.626z" fill="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.5947" y2="6.3742">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.7" y="6.183"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.7" y="15.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="7.408" y2="14.37">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.705" y="6.183"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.705" y="15.595"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0015" x2="30.0015" y1="7.4082" y2="14.3725">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="7.058" width="30.26" x="14.87" y="7.359"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="8.297" y2="13.24">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_4_)" height="7.058" width="30.263" x="14.87" y="7.359"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="8.2974" y2="13.2402">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="4.706" width="27.94" x="16.03" y="8.534"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.08" x2="20.08" y1="9.593" y2="12.06">
-<stop offset="0" stop-color="#5DA9B9"/>
-<stop offset="1" stop-color="#313C62"/>
+<rect fill="url(#SVGID_5_)" height="4.706" width="27.939" x="16.031" y="8.534"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.0767" x2="20.0767" y1="9.5928" y2="12.0647">
+<stop offset="0" style="stop-color:#5DA9B9"/>
+<stop offset="1" style="stop-color:#313C62"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.15" y="9.711"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.15" y="9.711"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28" y2="18.78">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.153" y="9.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.153" y="9.711"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28.0029" y2="18.7824">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.7" y="18.59"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.7" y="28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="19.82" y2="26.78">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.705" y="18.591"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.705" y="28.003"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.0015" x2="30.0015" y1="19.8154" y2="26.7816">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="7.06" width="30.26" x="14.87" y="19.77"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="20.71" y2="25.65">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_8_)" height="7.06" width="30.263" x="14.87" y="19.767"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0005" x2="30.0005" y1="20.7056" y2="25.6484">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="4.706" width="27.94" x="16.03" y="20.94"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.96" x2="31.92" y1="50.51" y2="50.51">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_9_)" height="4.706" width="27.939" x="16.031" y="20.942"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.957" x2="31.9189" y1="50.5098" y2="50.5098">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M26.94,48.37v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612v-3.674h-4.891z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.96" x2="31.92" y1="48.67" y2="48.67">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M26.939,48.367v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612 v-3.674H26.939z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.9565" x2="31.918" y1="48.6738" y2="48.6738">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.94" y="48.37"/>
+<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.938" y="48.367"/>
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="48.93" y2="42.98">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="48.9316" y2="42.9805">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="6.122" width="38" x="11" y="42.86"/>
-<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="42.86"/>
-<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="38" x="11" y="43.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.86" x2="12.86" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_12_)" height="6.122" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="37.996" x="11.002" y="43.47"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.8589" x2="12.8589" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.62" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.81" x2="17.81" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.621" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.8115" x2="17.8115" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.57" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.76" x2="22.76" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.574" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.7642" x2="22.7642" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.53" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.72" x2="27.72" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.526" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.7158" x2="27.7158" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.48" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.67" x2="32.67" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.478" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.668" x2="32.668" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.62" x2="37.62" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.6211" x2="37.6211" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.38" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.57" x2="42.57" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.383" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.5723" x2="42.5723" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.33" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.53" x2="47.53" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.334" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.5254" x2="47.5254" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.29" y="44.08"/>
-<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="48.37"/>
-<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="47.76"/>
-<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.94" y="48.98"/>
-<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.94" y="49.59"/>
-<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.98" y="52.65"/>
-<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.18" y="52.65"/>
-<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.37" y="52.65"/>
-<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.8" y="52.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.39" x2="29.39" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.287" y="44.082"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="48.367"/>
+<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="47.755"/>
+<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.938" y="48.979"/>
+<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.938" y="49.592"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.979" y="52.653"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.184" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.367" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.796" y="52.653"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.3872" x2="29.3872" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_21_)" height="6.122" width="18.37" x="20.2" y="52.04"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9" x2="19.9" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_21_)" height="6.122" width="18.367" x="20.204" y="52.041"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.8979" x2="19.8979" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M19.59,52.65v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122c-0.33,0-0.61,0.27-0.61,0.61z" fill="url(#SVGID_22_)"/>
-<path d="M19.59,52.65v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122c-0.33,0-0.61,0.27-0.61,0.61z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.88" x2="38.88" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122 C19.866,52.041,19.592,52.314,19.592,52.653z" fill="url(#SVGID_22_)"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.877" x2="38.877" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M38.57,52.04v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897c0-0.34-0.27-0.61-0.61-0.61z" fill="url(#SVGID_23_)"/>
-<path d="M38.57,52.04v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897c0-0.34-0.27-0.61-0.61-0.61z" fill-opacity="0.3" stroke-opacity="0.3"/>
-</svg>
\ No newline at end of file
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897 C39.184,52.314,38.91,52.041,38.571,52.041z" fill="url(#SVGID_23_)"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" fill-opacity="0.3" stroke-opacity="0.3"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_notes.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_notes.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,98 +1,100 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="37.2" x2="11.67" y1="17.82" y2="61.02">
-<stop offset="0" stop-color="#724A31"/>
-<stop offset="0.8303" stop-color="#724A31"/>
-<stop offset="1" stop-color="#9C7943"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="37.1992" x2="11.6714" y1="17.8169" y2="61.0179">
+<stop offset="0" style="stop-color:#724A31"/>
+<stop offset="0.8303" style="stop-color:#724A31"/>
+<stop offset="1" style="stop-color:#9C7943"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="53" width="51.29" x="4.354" y="3.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.073" y2="54.36">
-<stop offset="0" stop-color="#D6CEA2"/>
-<stop offset="0.3758" stop-color="#B39C4D"/>
-<stop offset="0.7818" stop-color="#AC8A4A"/>
-<stop offset="1" stop-color="#B1964C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.0728" y2="54.3618">
+<stop offset="0" style="stop-color:#D6CEA2"/>
+<stop offset="0.3758" style="stop-color:#B39C4D"/>
+<stop offset="0.7818" style="stop-color:#AC8A4A"/>
+<stop offset="1" style="stop-color:#B1964C"/>
</linearGradient>
-<path d="M55.64,54.79h-26.5s-13.25-0.381-20.09-3.348c-4.56-1.977-4.702-4.18-4.702-4.18v-43.76h51.29v51.29z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.073" y2="54.36">
-<stop offset="0" stop-color="#F3F1E3"/>
-<stop offset="0.3758" stop-color="#D6CC9E"/>
-<stop offset="0.7818" stop-color="#BDA365"/>
-<stop offset="1" stop-color="#BBAD64"/>
+<path d="M55.645,54.789h-26.5c0,0-13.249-0.381-20.088-3.348c-4.56-1.977-4.702-4.18-4.702-4.18V3.5h51.29 V54.789z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.0728" y2="54.3618">
+<stop offset="0" style="stop-color:#F3F1E3"/>
+<stop offset="0.3758" style="stop-color:#D6CC9E"/>
+<stop offset="0.7818" style="stop-color:#BDA365"/>
+<stop offset="1" style="stop-color:#BBAD64"/>
</linearGradient>
-<path d="M4.354,3.5v43.76s0.048,0.672,0.854,1.609v-44.52h49.58v49.58h-35.47c5.195,0.721,9.82,0.854,9.82,0.854h26.5v-51.29h-51.29z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.82" x2="16.38" y1="50.92" y2="54.73">
-<stop offset="0" stop-color="#E3DFC0"/>
-<stop offset="0.8182" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<path d="M4.354,3.5v43.762c0,0,0.048,0.672,0.854,1.609V4.354h49.58v49.582H19.324 c5.195,0.721,9.82,0.854,9.82,0.854h26.5V3.5H4.354z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="17.8213" x2="16.3792" y1="50.9248" y2="54.7289">
+<stop offset="0" style="stop-color:#E3DFC0"/>
+<stop offset="0.8182" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
-<path d="M31.21,54.79s-15.51-0.139-21.28-8.045c0,0-4.133,5.094-5.573,0.518,0.61,3.14,6.143,7.64,26.85,7.53z" fill="url(#SVGID_4_)"/>
-<rect fill="#E3DEBE" height="0.855" width="42.74" x="8.633" y="39.55"/>
-<rect fill="#5F382B" height="1.709" width="42.74" x="8.633" y="37.84"/>
-<rect fill="#E3DEBE" height="0.854" width="42.74" x="8.633" y="31.86"/>
-<rect fill="#5F382B" height="1.711" width="42.74" x="8.633" y="30.14"/>
-<rect fill="#E3DEBE" height="0.854" width="42.74" x="8.633" y="24.16"/>
-<rect fill="#5F382B" height="1.711" width="42.74" x="8.633" y="22.45"/>
-<rect fill="#E3DEBE" height="0.854" width="42.74" x="8.633" y="16.47"/>
-<rect fill="#5F382B" height="1.709" width="42.74" x="8.633" y="14.76"/>
+<path d="M31.211,54.789c0,0-15.514-0.139-21.283-8.045 c0,0-4.133,5.094-5.573,0.518C4.967,50.404,10.504,54.902,31.211,54.789z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
+<rect fill="#E3DEBE" height="0.855" width="42.742" x="8.633" y="39.549"/>
+<rect fill="#5F382B" height="1.709" width="42.742" x="8.633" y="37.84"/>
+<rect fill="#E3DEBE" height="0.854" width="42.742" x="8.633" y="31.855"/>
+<rect fill="#5F382B" height="1.711" width="42.742" x="8.633" y="30.145"/>
+<rect fill="#E3DEBE" height="0.854" width="42.742" x="8.633" y="24.162"/>
+<rect fill="#5F382B" height="1.711" width="42.742" x="8.633" y="22.451"/>
+<rect fill="#E3DEBE" height="0.854" width="42.742" x="8.633" y="16.469"/>
+<rect fill="#5F382B" height="1.709" width="42.742" x="8.633" y="14.76"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M29.39,4.245c-0.311-0.683-0.854-1.43-1.527-2.103-1.146-1.146-2.387-1.829-3.32-1.829-0.574,0-0.936,0.242-1.137,0.444l-12.61,12.61,0.555,0.554-8.305,8.304,0.439,0.439c-0.057,0.029-0.113,0.055-0.168,0.077-0.318,0.129-0.545,0.145-0.537,0.145l-0.757,0.02-1.699,6.786,6.047-1.51,0.715-0.198,0.041-0.734c0.002-0.002,0.016-0.23,0.146-0.559,0.021-0.051,0.045-0.104,0.076-0.165l0.439,0.439,8.305-8.305,0.553,0.553,12.61-12.61c0.32-0.312,0.75-1.033,0.15-2.357z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-675" x2="-668.8" y1="184.3" y2="184.3">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M29.387,4.245c-0.311-0.683-0.854-1.43-1.527-2.103 c-1.146-1.146-2.387-1.829-3.32-1.829c-0.574,0-0.936,0.242-1.137,0.444L10.791,13.367l0.555,0.554l-8.305,8.304l0.439,0.439 c-0.057,0.029-0.113,0.055-0.168,0.077c-0.318,0.129-0.545,0.145-0.537,0.145l0,0L2.012,22.9l-1.699,6.786l6.047-1.51l0.715-0.198 l0.041-0.734c0.002-0.002,0.016-0.23,0.146-0.559c0.021-0.051,0.045-0.104,0.076-0.165l0.439,0.439l8.305-8.305l0.553,0.553 L29.244,6.602C29.555,6.29,29.988,5.569,29.387,4.245z" fill-opacity="0.35" fill-rule="evenodd" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-675.0313" x2="-668.7666" y1="184.2666" y2="184.2666">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M27.15,2.85c-1.223-1.223-2.586-1.844-3.043-1.385l-10.8,10.8,4.43,4.429,10.8-10.8c0.46-0.459-0.16-1.823-1.39-3.045z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-674.2" x2="-669.5" y1="199.5" y2="199.5">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="0.3455" stop-color="#969696"/>
-<stop offset="0.7818" stop-color="#3B3B3B"/>
-<stop offset="1" stop-color="#2B2B2B"/>
+<path d="M27.152,2.85c-1.223-1.223-2.586-1.844-3.043-1.385 L13.313,12.26l4.43,4.429L28.537,5.895C28.996,5.436,28.377,4.072,27.152,2.85z" fill="url(#SVGID_1__)" fill-rule="evenodd"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-674.248" x2="-669.5498" y1="199.5332" y2="199.5332">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="0.3455" style="stop-color:#969696"/>
+<stop offset="0.7818" style="stop-color:#3B3B3B"/>
+<stop offset="1" style="stop-color:#2B2B2B"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="8.33,24.99,5.008,21.67,12.76,13.92,16.08,17.24"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.0471 -0.0471 -85.8835 1066.085)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-674.2" x2="-669.5" y1="12050" y2="12050">
-<stop offset="0" stop-color="#B2B2B2"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#B2B2B2"/>
+<polygon fill="url(#SVGID_2__)" fill-rule="evenodd" points="8.33,24.992 5.008,21.672 12.76,13.921 16.082,17.242 "/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.0471 -0.0471 -85.8835 1066.085)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-674.2476" x2="-669.5498" y1="12046.2031" y2="12046.2031">
+<stop offset="0" style="stop-color:#B2B2B2"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#B2B2B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="8.33,24.99,5.008,21.67,4.455,22.22,7.777,25.55"/>
-<rect fill="#020202" fill-opacity="0.2" height="0.782" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.5849 -4.8019)" width="4.696" x="11.24" y="16.02"/>
-<rect fill="#020202" fill-opacity="0.5" height="0.784" stroke-opacity="0.5" transform="matrix(0.7072 0.707 -0.707 0.7072 15.353 -5.3564)" width="4.698" x="11.8" y="15.47"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-674.2" x2="-669.6" y1="208.9" y2="208.9">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#EAEDEB"/>
-<stop offset="0.7455" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<polygon fill="url(#SVGID_3__)" fill-rule="evenodd" points="8.33,24.992 5.008,21.672 4.455,22.225 7.777,25.546 "/>
+<rect fill="#020202" fill-opacity="0.2" fill-rule="evenodd" height="0.782" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.5849 -4.8019)" width="4.696" x="11.241" y="16.02"/>
+<rect fill="#020202" fill-opacity="0.5" fill-rule="evenodd" height="0.784" stroke-opacity="0.5" transform="matrix(0.7072 0.707 -0.707 0.7072 15.353 -5.3564)" width="4.698" x="11.795" y="15.467"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-674.2476" x2="-669.5503" y1="208.9268" y2="208.9268">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#EAEDEB"/>
+<stop offset="0.7455" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M7.225,24.99l-1.107-1.106-1.109-1.107c-1.105,1.107-2.213,1.107-2.213,1.107l-1.107,4.427,4.43-1.106c-0.002,0.01-0.002-1.1,1.106-2.21z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-675" x2="-668.8" y1="176.8" y2="176.8">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="0.3455" stop-color="#969696"/>
-<stop offset="0.7818" stop-color="#3B3B3B"/>
-<stop offset="1" stop-color="#2B2B2B"/>
+<path d="M7.225,24.992l-1.107-1.106l-1.109-1.107c-1.105,1.107-2.213,1.107-2.213,1.107l-1.107,4.427 l4.43-1.106C6.117,27.206,6.117,26.1,7.225,24.992z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-675.0298" x2="-668.7666" y1="176.8291" y2="176.8291">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="0.3455" style="stop-color:#969696"/>
+<stop offset="0.7818" style="stop-color:#3B3B3B"/>
+<stop offset="1" style="stop-color:#2B2B2B"/>
</linearGradient>
-<path d="M27.15,2.85c-1.223-1.223-2.586-1.844-3.043-1.385l-0.277,0.277,4.428,4.43,0.277-0.277c0.46-0.459-0.16-1.823-1.39-3.045z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-675" x2="-668.8" y1="193.3" y2="193.3">
-<stop offset="0" stop-color="#B2B2B2"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.8" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#B2B2B2"/>
+<path d="M27.152,2.85c-1.223-1.223-2.586-1.844-3.043-1.385 l-0.277,0.277l4.428,4.43l0.277-0.277C28.996,5.436,28.377,4.072,27.152,2.85z" fill="url(#SVGID_5_)" fill-rule="evenodd"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-675.0313" x2="-668.7676" y1="193.2695" y2="193.2695">
+<stop offset="0" style="stop-color:#B2B2B2"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.8" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#B2B2B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="16.64,17.8,12.2,13.37,13.31,12.26,17.74,16.69"/>
-<path d="M3.686,23.67l2.648,2.648c0.086-0.219,0.215-0.461,0.391-0.718l-2.322-2.322c-0.258,0.17-0.499,0.3-0.717,0.39z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M6.725,25.6c0.137-0.197,0.293-0.4,0.5-0.606l-1.107-1.106-1.109-1.107c-0.205,0.205-0.406,0.362-0.605,0.498l2.321,2.33z" fill="#020202" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-672.7" x2="-671.1" y1="207.8" y2="207.8">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="0.3455" stop-color="#969696"/>
-<stop offset="0.7818" stop-color="#3B3B3B"/>
-<stop offset="1" stop-color="#2B2B2B"/>
+<polygon fill="url(#SVGID_6_)" fill-rule="evenodd" points="16.635,17.795 12.205,13.367 13.313,12.26 17.742,16.688 "/>
+<path d="M3.686,23.668l2.648,2.648 c0.086-0.219,0.215-0.461,0.391-0.718l-2.322-2.322C4.145,23.452,3.904,23.58,3.686,23.668z" fill="#020202" fill-opacity="0.1" fill-rule="evenodd" stroke-opacity="0.1"/>
+<path d="M6.725,25.599c0.137-0.197,0.293-0.4,0.5-0.606 l-1.107-1.106l-1.109-1.107c-0.205,0.205-0.406,0.362-0.605,0.498L6.725,25.599z" fill="#020202" fill-opacity="0.3" fill-rule="evenodd" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 626.7343 353.4672)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-672.6821" x2="-671.1157" y1="207.7534" y2="207.7534">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="0.3455" style="stop-color:#969696"/>
+<stop offset="0.7818" style="stop-color:#3B3B3B"/>
+<stop offset="1" style="stop-color:#2B2B2B"/>
</linearGradient>
-<path d="M5.287,25.82c-0.152,0.152-0.525,0.029-0.832-0.276-0.305-0.307-0.428-0.679-0.275-0.831s0.525-0.029,0.828,0.277c0.308,0.31,0.431,0.68,0.279,0.83z" fill="url(#SVGID_7_)"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M5.287,25.822c-0.152,0.152-0.525,0.029-0.832-0.276 c-0.305-0.307-0.428-0.679-0.275-0.831s0.525-0.029,0.828,0.277C5.316,25.298,5.439,25.67,5.287,25.822z" fill="url(#SVGID_7_)" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ok.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ok.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="5.122" y2="44.93">
-<stop offset="0" stop-color="#DCE3BF"/>
-<stop offset="0.7758" stop-color="#769365"/>
-<stop offset="1" stop-color="#AFBE95"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="5.1221" y2="44.929">
+<stop offset="0" style="stop-color:#DCE3BF"/>
+<stop offset="0.7758" style="stop-color:#769365"/>
+<stop offset="1" style="stop-color:#AFBE95"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="58,15.94,50.14,8.078,21.99,36.23,9.854,24.09,2,31.95,21.97,51.92"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.745" y2="43.95">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<polygon fill="url(#SVGID_1_)" points="58,15.935 50.143,8.078 21.992,36.227 9.854,24.092 2,31.948 21.971,51.922 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.7451" y2="43.9537">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="3.432,31.95,9.854,25.52,21.99,37.66,50.14,9.508,56.57,15.94,21.97,50.49"/>
+<polygon fill="url(#SVGID_2_)" points="3.432,31.948 9.854,25.522 21.992,37.658 50.143,9.508 56.568,15.935 21.971,50.491 "/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_online.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_online.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,76 +1,78 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="57.68" y2="2.078">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.998" x2="29.998" y1="57.6797" y2="2.0783">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M58,30c0,15.46-12.54,28-28,28s-28-12.54-28-28,12.54-28,28-28,28,12.54,28,28z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="26.94" cy="12.71" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="33.87">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M57.998,30.001C57.998,45.464,45.461,58,30,58C14.535,58,1.998,45.464,1.998,30.001 C1.998,14.54,14.535,2,30,2C45.461,2,57.998,14.54,57.998,30.001z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="26.9434" cy="12.7056" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="33.8669">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="30" cy="30" fill="url(#SVGID_2_)" r="27.28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="2.478" y2="57.42">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<circle cx="29.999" cy="30.001" fill="url(#SVGID_2_)" r="27.282"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="2.4785" y2="57.4196">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M30,2.718c-15.07,0-27.28,12.22-27.28,27.28,0,15.07,12.22,27.28,27.28,27.28,15.07,0,27.28-12.21,27.28-27.28,0-15.06-12.21-27.28-27.28-27.28zm0,52.17c-14.17,0-25.69-11.52-25.69-25.69-0.001-14.16,11.52-25.68,25.69-25.68s25.69,11.52,25.69,25.7c0,14.16-11.52,25.68-25.69,25.68z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.162" x2="7.498" y1="33.71" y2="33.71">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M30,2.718c-15.066,0-27.283,12.218-27.283,27.283c0,15.069,12.217,27.28,27.283,27.28 c15.07,0,27.281-12.211,27.281-27.28C57.281,14.937,45.07,2.718,30,2.718z M30,54.894c-14.166,0-25.691-11.524-25.691-25.688 C4.309,15.04,15.834,3.515,30,3.515S55.689,15.04,55.689,29.206C55.689,43.37,44.166,54.894,30,54.894z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.1621" x2="7.498" y1="33.7139" y2="33.7139">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M5.277,29.56c-0.289-0.39-0.945-0.39-1.236-0.39-0.57,0-0.873,0.406-0.879,0.804v0.069c0,0.702,0.039,1.489,0.123,2.446,0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633,0.117,0.53,0.26,1.08,0.434,1.687,0.025,0.087,0.049,0.175,0.07,0.26,0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02,0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106c0.025-0.243,0.033-0.497,0.025-0.751-0.013-0.39-0.029-0.88-0.14-1.29l1.455-1.951,0.154-0.213v-2.115l-0.232-0.232-1.989-2z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.53" x2="56.9" y1="25.77" y2="25.77">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M5.277,29.556C4.988,29.17,4.332,29.17,4.041,29.17c-0.57,0-0.873,0.406-0.879,0.804 v0.028v0.041c0,0.702,0.039,1.489,0.123,2.446c0.018,0.179,0.039,0.36,0.061,0.54l0.033,0.263c0.072,0.566,0.158,1.125,0.256,1.665 l0.043,0.237c0.043,0.213,0.084,0.424,0.129,0.633c0.117,0.53,0.26,1.08,0.434,1.687c0.025,0.087,0.049,0.175,0.07,0.26 c0.039,0.142,0.076,0.283,0.121,0.419l0.004,0.02l0.016,0.043c-0.002-0.011-0.01-0.03-0.012-0.048l1.564-0.106 c0.025-0.243,0.033-0.497,0.025-0.751C6.016,36.956,6,36.467,5.889,36.056l1.455-1.951l0.154-0.213v-0.264v-1.52v-0.331 l-0.232-0.232L5.277,29.556z" fill="url(#SVGID_4_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.5254" x2="56.9043" y1="25.7695" y2="25.7695">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M56.9,24.65c-0.02-0.103-0.039-0.176-0.057-0.25-0.016-0.055-0.027-0.109-0.037-0.162-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457-0.248-0.767-0.514-1.5-0.797-2.177-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353-0.385-0.695-0.789-1.358-1.199-1.974-0.043-0.065-0.092-0.134-0.141-0.202-0.031-0.041-0.059-0.081-0.086-0.121-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218-0.498-0.596-1.023-1.174-1.566-1.72-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139-0.582-0.48-1.215-0.952-1.875-1.405-0.08-0.055-0.164-0.109-0.248-0.162l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088-0.693-0.371-1.414-0.72-2.146-1.035l-0.2-0.078-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934-0.574-0.077-1.961-0.251-3.359-0.386,0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573-0.07-0.016c-0.051-0.014-0.102-0.025-0.152-0.037l-0.12-0.023-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38v-0.001l-0.109-0.01c-0.914-0.093-1.844-0.139-2.762-0.139-0.809,0-1.648,0.042-2.564,0.13-0.145,0.013-0.281,0.029-0.422,0.043-0.906,0.101-1.697,0.221-2.447,0.373l-0.03,0.005-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762-0.057,0.023-0.094,0.037-0.131,0.051l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055c-0.205,0.113-0.412,0.242-0.617,0.37l-0.26,0.166-1.461,0.893,1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123,0.875,0,1.721-0.43,2.402-0.776,0.273-0.138,0.678-0.344,0.848-0.376,0.199,0.06,0.396,0.089,0.596,0.089,0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391,0.607-0.229,1.717-0.645,2.01-0.715,0.578-0.006,1.264-0.088,1.752-0.392,0.459,0.075,1.273,0.204,2.115,0.314-0.06,0.038-0.12,0.078-0.17,0.128-0.273,0.251-1.742,0.696-2.195,0.755-0.848,0.106-1.186,0.532-1.322,0.871-0.176,0.439-0.068,0.878,0.104,1.235-0.32,0.212-0.713,0.448-1.049,0.625,0-0.007,0.002-0.015,0.004-0.024,0.121-0.675,0.209-1.163-0.119-1.556-0.166-0.2-0.414-0.314-0.676-0.314-0.387,0-0.688,0.239-0.93,0.473-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207-0.074,0.051-0.287,0.132-0.582,0.132-0.041,0-0.076-0.002-0.105-0.005-0.191-0.205-0.453-0.322-0.752-0.322-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49,0.377,0.484,0.354,0.449c-5.51,4.257-5.551,4.5-5.609,4.855-0.01,0.032-0.057,0.18-0.123,0.383-0.822,2.552-1.275,4.46-0.834,5.482,1.025,2.368,2.182,4.579,3.68,4.701,0.133,0.011,0.277,0.017,0.434,0.017,1.373,0,3.6-0.416,4.668-0.635,0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421,0.484-0.016s0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022,0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269,0.088,0.14,0.168,0.266,0.232,0.374,0.424,1.204,0.934,2.002,2.02,2.002,0.078,0,0.16-0.005,0.244-0.009,0.063-0.004,0.125-0.007,0.191-0.007,0.121,0,0.207,0.014,0.293,0.045l0.1,0.036,0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071,0.334,0.047,0.68,0.095,1.031,0.095,0.941,0,1.689-0.357,2.336-1.119,0.021-0.004,0.045-0.005,0.068-0.008,0.678-0.095,0.932-0.433,1.018-0.737,0.051-0.05,0.117-0.112,0.172-0.164,0.268-0.244,0.584-0.537,0.803-0.88,0.1-0.059,0.213-0.125,0.338-0.2,0.219-0.134,0.465-0.283,0.658-0.382,0.172-0.052,0.322-0.153,0.436-0.293,0.273-0.335,0.217-0.717,0.172-1.023-0.047-0.318-0.092-0.642,0.078-0.99,0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712,0.264,0.301,0.641,0.468,1.063,0.468,0.131,0,0.271-0.017,0.416-0.05,1.342-0.304,3.723-3.531,3.916-5.312,0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24-0.398,0.396-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425,0.016-0.627-0.047-1.27-0.113-1.896-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043,0.051-0.051c0.418-0.426,0.883-0.799,1.373-1.193,1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158-0.115-0.167-0.359-0.426-0.814-0.518,0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059,0.109-0.104,2.48-2.381,0.363-0.35-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977,0.725,0.099,1.344,0.272,1.549,0.427,0.074,0.163,0.221,0.519,0.379,0.892,2.732,6.435,3.115,6.766,3.824,6.777,0.027,0,0.049,0.002,0.066,0.005,0.057,0.002,0.109,0.006,0.156,0.006,0.404,0,0.635-0.207,0.736-0.331,0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536,0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58-0.01-0.06zm-21.51-7.87c-0.113,0.005-0.238,0.012-0.367,0.017-0.422,0.018-0.902,0.04-1.377,0.04-1.25,0-1.533-0.155-1.564-0.171-0.146-0.107-0.297-0.188-0.457-0.246,0.285-0.063,0.607-0.279,0.939-0.924,0.33,0.636,0.773,1.198,1.457,1.198,0.184,0,0.363-0.045,0.531-0.131,0.23,0,0.61,0.13,0.84,0.21zm-0.49-3.48c-0.094,0-0.172-0.005-0.23-0.009,0.064-0.167,0.141-0.264,0.201-0.319,0.08,0.122,0.186,0.229,0.305,0.32-0.1,0.01-0.19,0.01-0.28,0.01zm-4.97,1.67c0.428,0.837,0.744,1.198,0.994,1.355-0.619,0.049-1.086,0.443-1.469,0.817-0.271-0.09-0.74-0.374-0.879-0.572-0.084-0.117-0.18-0.217-0.287-0.304,0.69-0.19,1.28-0.82,1.65-1.3zm-2.36-0.61l-0.889-0.043-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745,0.055-0.02,0.27-0.078,0.793-0.078,0.314,0,0.617,0.021,0.809,0.037l1.36,0.98z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="27.81" cy="3.104" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="30.94">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.896,24.654c-0.02-0.103-0.039-0.176-0.057-0.25 c-0.016-0.055-0.027-0.109-0.037-0.162c-0.141-0.646-0.313-1.314-0.514-1.994l-0.023-0.074c-0.041-0.153-0.086-0.306-0.135-0.457 c-0.248-0.767-0.514-1.5-0.797-2.177c-0.035-0.085-0.074-0.163-0.109-0.245l-0.059-0.131c-0.268-0.619-0.568-1.238-0.883-1.833 l-0.041-0.077c-0.061-0.117-0.119-0.236-0.184-0.353c-0.385-0.695-0.789-1.358-1.199-1.974c-0.043-0.065-0.092-0.134-0.141-0.202 c-0.031-0.041-0.059-0.081-0.086-0.121c-0.395-0.571-0.807-1.126-1.236-1.656l-0.084-0.106c-0.059-0.071-0.115-0.146-0.176-0.218 c-0.498-0.596-1.023-1.174-1.566-1.72c-0.072-0.074-0.152-0.15-0.23-0.226l-0.064-0.062c-0.49-0.481-1.01-0.956-1.547-1.402 l-0.104-0.091c-0.055-0.048-0.107-0.096-0.164-0.139c-0.582-0.48-1.215-0.952-1.875-1.405c-0.08-0.055-0.164-0.109-0.248-0.162 l-0.1-0.066c-0.594-0.393-1.213-0.77-1.834-1.114l-0.098-0.055c-0.051-0.029-0.102-0.059-0.152-0.088 c-0.693-0.371-1.414-0.72-2.146-1.035L40.82,4.985l-0.199-0.083c-0.193-0.079-0.387-0.147-0.578-0.215 c-0.102-0.035-0.199-0.069-0.299-0.104l-0.371-0.138l-0.33,0.212c-0.223,0.14-1.098,0.64-1.613,0.934 c-0.574-0.077-1.961-0.251-3.359-0.386c0.432-0.042,1.025-0.09,1.869-0.146l0.117-1.573L35.994,3.47 c-0.051-0.014-0.102-0.025-0.152-0.037L35.723,3.41l-0.098-0.02c-0.857-0.172-1.662-0.297-2.461-0.38L33.16,3.009l-0.109-0.01 c-0.914-0.093-1.844-0.139-2.762-0.139c-0.809,0-1.648,0.042-2.564,0.13c-0.145,0.013-0.281,0.029-0.422,0.043 c-0.906,0.101-1.697,0.221-2.447,0.373L24.83,3.411l-0.018,0.003c-0.789,0.163-1.582,0.367-2.428,0.624 c-0.074,0.022-0.15,0.048-0.227,0.071l-0.17,0.056c-0.713,0.23-1.412,0.485-2.084,0.762c-0.057,0.023-0.094,0.037-0.131,0.051 l-0.102,0.041c-0.738,0.314-1.475,0.668-2.205,1.06c-0.078,0.041-0.156,0.087-0.232,0.13l-0.094,0.055 c-0.205,0.113-0.412,0.242-0.617,0.37L16.258,6.8l-1.461,0.893l1.623,0.542c0.242,0.082,0.504,0.123,0.773,0.123 c0.875,0,1.721-0.43,2.402-0.776c0.273-0.138,0.678-0.344,0.848-0.376c0.199,0.06,0.396,0.089,0.596,0.089 c0.746,0,1.354-0.401,1.893-0.754l0.145-0.094c0.174-0.057,0.473-0.167,1.07-0.391c0.607-0.229,1.717-0.645,2.01-0.715 c0.578-0.006,1.264-0.088,1.752-0.392c0.459,0.075,1.273,0.204,2.115,0.314C29.961,5.301,29.9,5.341,29.85,5.391 c-0.273,0.251-1.742,0.696-2.195,0.755c-0.848,0.106-1.186,0.532-1.322,0.871c-0.176,0.439-0.068,0.878,0.104,1.235 c-0.32,0.212-0.713,0.448-1.049,0.625c0-0.007,0.002-0.015,0.004-0.024c0.121-0.675,0.209-1.163-0.119-1.556 c-0.166-0.2-0.414-0.314-0.676-0.314c-0.387,0-0.688,0.239-0.93,0.473c-0.68,0.656-1.09,1.476-1.246,1.783l-0.027,0.059 l-0.025,0.044c-0.293,0.563-0.414,0.962-0.25,2.207c-0.074,0.051-0.287,0.132-0.582,0.132c-0.041,0-0.076-0.002-0.105-0.005 c-0.191-0.205-0.453-0.322-0.752-0.322l0,0c-0.684,0-1.619,0.771-2.773,2.292l-0.371,0.49l0.377,0.484l0.354,0.449 c-5.51,4.257-5.551,4.5-5.609,4.855c-0.01,0.032-0.057,0.18-0.123,0.383c-0.822,2.552-1.275,4.46-0.834,5.482 c1.025,2.368,2.182,4.579,3.68,4.701c0.133,0.011,0.277,0.017,0.434,0.017c1.373,0,3.6-0.416,4.668-0.635 c0.197,0.371,0.436,0.804,0.568,1.04l0.238,0.421l0.484-0.016c0,0,0.26-0.008,0.584-0.008c0.375,0,0.625,0.011,0.787,0.022 c0.584,1.708,1.699,5.643,1.492,6.459l-0.004,0.004c-1.885,2.821,0.4,6.499,1.494,8.269c0.088,0.14,0.168,0.266,0.232,0.374 c0.424,1.204,0.934,2.002,2.02,2.002c0.078,0,0.16-0.005,0.244-0.009c0.063-0.004,0.125-0.007,0.191-0.007 c0.121,0,0.207,0.014,0.293,0.045l0.1,0.036l0.105,0.01c0.205,0.017,0.4,0.045,0.592,0.071c0.334,0.047,0.68,0.095,1.031,0.095 c0.941,0,1.689-0.357,2.336-1.119c0.021-0.004,0.045-0.005,0.068-0.008c0.678-0.095,0.932-0.433,1.018-0.737 c0.051-0.05,0.117-0.112,0.172-0.164c0.268-0.244,0.584-0.537,0.803-0.88c0.1-0.059,0.213-0.125,0.338-0.2 c0.219-0.134,0.465-0.283,0.658-0.382c0.172-0.052,0.322-0.153,0.436-0.293c0.273-0.335,0.217-0.717,0.172-1.023 c-0.047-0.318-0.092-0.642,0.078-0.99c0.965-0.465,2.68-1.608,2.957-1.796v0.022c-0.02,0.153-0.064,0.563-0.133,0.822 c-0.363,0.366-0.67,0.919-0.766,1.105l-0.063,0.121l-0.02,0.137c-0.023,0.18-0.123,1.11,0.4,1.712 c0.264,0.301,0.641,0.468,1.063,0.468c0.131,0,0.271-0.017,0.416-0.05c1.342-0.304,3.723-3.531,3.916-5.312 c0.096-0.859-0.24-1.534-0.918-1.852l-0.506-0.24l-0.398,0.396l-1.469,1.471c-0.498,0.046-0.887,0.193-1.148,0.425 c0.016-0.627-0.047-1.27-0.113-1.896c-0.201-1.891-0.24-3.097,0.92-3.915l0.059-0.043l0.051-0.051 c0.418-0.426,0.883-0.799,1.373-1.193c1.15-0.924,2.34-1.878,3.047-3.604l0.031-0.074c0.227-0.59,0.568-1.478,0.104-2.158 c-0.115-0.167-0.359-0.426-0.814-0.518c0.604-0.242,1.066-0.435,1.111-0.452l0.141-0.059l0.109-0.104l2.48-2.381l0.363-0.35 l-0.16-0.479c-0.021-0.062-0.158-0.438-0.537-0.977c0.725,0.099,1.344,0.272,1.549,0.427c0.074,0.163,0.221,0.519,0.379,0.892 c2.732,6.435,3.115,6.766,3.824,6.777c0.027,0,0.049,0.002,0.066,0.005c0.057,0.002,0.109,0.006,0.156,0.006 c0.404,0,0.635-0.207,0.736-0.331c0.297-0.357,0.215-0.795,0.184-0.959l-0.012-0.056c-0.033-0.384-0.012-2.113,0.045-3.536 c0.004,0.004,0.006,0.008,0.008,0.013l1.463-0.58L56.896,24.654z M35.391,16.784c-0.113,0.005-0.238,0.012-0.367,0.017 c-0.422,0.018-0.902,0.04-1.377,0.04c-1.25,0-1.533-0.155-1.564-0.171c-0.146-0.107-0.297-0.188-0.457-0.246 c0.285-0.063,0.607-0.279,0.939-0.924c0.33,0.636,0.773,1.198,1.457,1.198c0.184,0,0.363-0.045,0.531-0.131 C34.783,16.568,35.162,16.7,35.391,16.784z M34.9,13.303c-0.094,0-0.172-0.005-0.23-0.009c0.064-0.167,0.141-0.264,0.201-0.319 c0.08,0.122,0.186,0.229,0.305,0.32C35.078,13.301,34.986,13.303,34.9,13.303z M29.932,14.974c0.428,0.837,0.744,1.198,0.994,1.355 c-0.619,0.049-1.086,0.443-1.469,0.817c-0.271-0.09-0.74-0.374-0.879-0.572c-0.084-0.117-0.18-0.217-0.287-0.304 C28.969,16.077,29.564,15.447,29.932,14.974z M27.57,14.355l-0.889-0.043l-2.975-0.146c0.361-0.299,0.707-0.579,0.91-0.745 c0.055-0.02,0.27-0.078,0.793-0.078c0.314,0,0.617,0.021,0.809,0.037L27.57,14.355z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="27.8105" cy="3.104" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="30.9363">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M3.957,29.98v0.002c0,0.01,0.002,0.014,0.002,0.021,0,0.813,0.051,1.615,0.119,2.41,0.023,0.259,0.063,0.52,0.092,0.781,0.07,0.544,0.15,1.082,0.248,1.615,0.055,0.283,0.107,0.567,0.166,0.845,0.123,0.553,0.266,1.097,0.422,1.632,0.063,0.222,0.113,0.447,0.184,0.663,0.007,0.05,0.017,0.07,0.023,0.09,0.021-0.212,0.027-0.427,0.021-0.648-0.053-1.568-0.303-1.367-0.303-1.367l1.771-2.381v-1.52l-2.077-2.07s-0.666-0.1-0.668-0.05z" fill="url(#SVGID_6_)"/>
-<radialGradient cx="27.81" cy="3.107" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="30.94">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M3.957,29.985c0,0,0,0,0,0.002c0,0.01,0.002,0.014,0.002,0.021c0,0.813,0.051,1.615,0.119,2.41 c0.023,0.259,0.063,0.52,0.092,0.781c0.07,0.544,0.15,1.082,0.248,1.615c0.055,0.283,0.107,0.567,0.166,0.845 c0.123,0.553,0.266,1.097,0.422,1.632c0.063,0.222,0.113,0.447,0.184,0.663C5.197,37.978,5.207,38,5.213,38.023 c0.021-0.212,0.027-0.427,0.021-0.648c-0.053-1.568-0.303-1.367-0.303-1.367l1.771-2.381v-1.52L4.625,30.03 C4.625,30.03,3.959,29.926,3.957,29.985z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="27.8096" cy="3.1069" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="30.9388">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M20.63,6.433c0.766,0.252,1.395-0.26,2.109-0.717,0.252-0.051,3.055-1.17,3.357-1.17,0.301,0,1.32-0.04,1.572-0.444,0,0,4.387,0.763,5.049,0.508,0.359-0.141,1.869-0.26,3.17-0.346-0.074-0.016-0.141-0.037-0.213-0.052-0.07-0.014-0.141-0.026-0.211-0.04-0.814-0.163-1.637-0.295-2.475-0.378-0.006,0-0.012,0-0.02-0.004-0.881-0.088-1.775-0.135-2.682-0.135-0.84,0-1.67,0.05-2.492,0.127-0.143,0.015-0.287,0.031-0.434,0.046-0.793,0.086-1.578,0.203-2.35,0.357-0.03,0.006-0.04,0.007-0.06,0.008-0.801,0.166-1.584,0.371-2.355,0.606-0.133,0.039-0.26,0.085-0.393,0.125-0.684,0.221-1.357,0.466-2.02,0.737-0.076,0.034-0.156,0.063-0.234,0.095-0.727,0.31-1.438,0.654-2.129,1.024-0.104,0.056-0.203,0.116-0.307,0.175-0.299,0.165-0.576,0.349-0.861,0.525,1.42,0.477,3.2-1.302,3.95-1.047z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="27.81" cy="3.105" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="30.93">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M20.631,6.433c0.766,0.252,1.395-0.26,2.109-0.717c0.252-0.051,3.055-1.17,3.357-1.17 c0.301,0,1.32-0.04,1.572-0.444c0,0,4.387,0.763,5.049,0.508c0.359-0.141,1.869-0.26,3.17-0.346 c-0.074-0.016-0.141-0.037-0.213-0.052c-0.07-0.014-0.141-0.026-0.211-0.04c-0.814-0.163-1.637-0.295-2.475-0.378 c-0.006,0-0.012,0-0.02-0.004c-0.881-0.088-1.775-0.135-2.682-0.135c-0.84,0-1.67,0.05-2.492,0.127 c-0.143,0.015-0.287,0.031-0.434,0.046c-0.793,0.086-1.578,0.203-2.35,0.357C25,4.191,24.986,4.192,24.973,4.193 c-0.801,0.166-1.584,0.371-2.355,0.606c-0.133,0.039-0.26,0.085-0.393,0.125c-0.684,0.221-1.357,0.466-2.02,0.737 c-0.076,0.034-0.156,0.063-0.234,0.095c-0.727,0.31-1.438,0.654-2.129,1.024c-0.104,0.056-0.203,0.116-0.307,0.175 c-0.299,0.165-0.576,0.349-0.861,0.525C18.098,7.957,19.877,6.178,20.631,6.433z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="27.8066" cy="3.105" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="30.9346">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M56.11,24.79c-0.027-0.133-0.064-0.258-0.09-0.388-0.141-0.65-0.307-1.292-0.494-1.924-0.051-0.171-0.102-0.346-0.154-0.515-0.23-0.718-0.484-1.426-0.773-2.113-0.051-0.121-0.109-0.24-0.16-0.358-0.266-0.606-0.553-1.201-0.861-1.782-0.07-0.139-0.143-0.282-0.217-0.417-0.365-0.657-0.75-1.297-1.166-1.919-0.068-0.107-0.15-0.21-0.223-0.316-0.379-0.553-0.777-1.086-1.195-1.605-0.086-0.103-0.166-0.209-0.254-0.313-0.482-0.578-0.986-1.135-1.518-1.669-0.09-0.092-0.188-0.183-0.281-0.272-0.482-0.475-0.984-0.933-1.506-1.369-0.09-0.073-0.17-0.151-0.26-0.223-0.584-0.478-1.195-0.933-1.822-1.362-0.109-0.075-0.223-0.148-0.334-0.219-0.578-0.384-1.174-0.747-1.785-1.085-0.084-0.045-0.16-0.094-0.244-0.141-0.68-0.363-1.371-0.696-2.082-1.003-0.125-0.053-0.256-0.103-0.379-0.155-0.277-0.115-0.563-0.206-0.844-0.309-0.334,0.213-1.881,1.088-1.881,1.088s-6.717-0.917-7.174-0.462c-0.459,0.462-2.248,0.929-2.656,0.981-0.406,0.053-1.25,0.27-0.238,1.518-0.152,0.155-3.039,2.165-3.039,1.25,0-0.916,0.645-2.552-0.26-1.676-0.652,0.631-1.039,1.483-1.127,1.643-0.211,0.409-0.342,0.604-0.188,1.773,0.154,1.171-1.869,1.164-2.004,0.862-0.363-0.813-2.363,1.821-2.363,1.821l0.844,1.082s-5.893,4.539-5.941,4.844c-0.053,0.307-1.523,4.247-1.016,5.418,0.512,1.174,1.797,4.127,3.016,4.226,1.598,0.131,5.469-0.73,5.469-0.73,0.104,0.257,0.834,1.556,0.834,1.556s1.896-0.063,2.004,0.143c0.035,0.069,2.287,6.693,1.543,7.571-1.773,2.656,1.014,6.548,1.789,7.864,0.775,2.262,1.277,1.25,2.297,1.62,1.258,0.108,2.318,0.573,3.385-0.8,0.309-0.255,0.836-0.054,0.836-0.408,0-0.198,0.912-0.781,1.146-1.33,0.248-0.114,0.881-0.542,1.313-0.748,0.391-0.025-0.371-1.071,0.402-2.177,0.836-0.33,3.088-1.849,3.088-1.849,0.104-2.227-1.094-4.979,1.141-6.559,1.445-1.47,3.336-2.306,4.256-4.544,0.252-0.661,0.818-2.014-0.813-1.609-1.531,0.386-3.238,0.474-2.432-0.201-0.092-0.828-1.111-1.218-2.023-2.026-0.473-1.117-1.215-3.108-1.215-3.108l-1.621-2.463,0.203-0.508,1.926,2.836,1.926,2.328c0.707,2.33,1.314,2.535,1.314,2.535,1.068-0.377,3.596-1.419,3.596-1.419l2.484-2.381s-0.256-0.761-1.264-1.722l-0.764-0.455c-0.166,0.467-1.049,0.642-1.049,0.642l-2.145-2.564,0.801-0.162,0.613,1.171,1.473,0.509s0.408-0.298,1.166,0.484c0.619-0.051,3.029,0.117,3.594,0.832,0.109,0.142,2.986,7.325,3.555,7.336,0.248,0.001,0.43,0.099,0.348-0.335-0.102-0.205,0-4.717,0.154-5.683,0.385-0.821,0.445-0.002,1.357,1.553-0.04-0.03-0.04-0.07-0.05-0.1zm-25.31-17.41c0.201-0.6,1.367-0.804,1.367-0.804s-0.334,0.618-0.258,0.937c0.08,0.322-0.533,0.524-0.6,1.282-0.066,0.755-1.459,0.313-1.574,0.047-0.12-0.263,0.85-0.863,1.06-1.462zm4.99,10.19c-0.865,0-3.455,0.257-4.17-0.253-0.711-0.508-1.266,0.052-1.781,0.562-0.334,0.331-1.559-0.339-1.916-0.848-0.355-0.509-1.553-0.472-1.553-0.472l0.271-1.452-3.445-0.167-1.957,0.574-1.844,0.052,1.031-0.491,1.287-0.304s1.867-1.536,2.43-1.993c0.475-0.388,2.365-0.169,2.365-0.169l2.074,1.497s-0.459,1.174-0.662,1.426c0.76-0.05,1.658-1.436,1.658-1.436-1.621-1.488-1.555-1.992-1.555-1.992l2.133,1.498,0.021,0.013s0.865,2.035,1.225,2.035c0.352,0,0.809-1.401,0.809-1.401l0.609-0.153c0.27,0.642,0.773,2.094,1.381,1.754,0.35-0.193,0.928-0.017,1.588,0.236,0.664,0.255,1.115-0.137,1.654,0.337-0.08,2.08-1.31,1.23-1.67,1.13zm1.36-3.5c-0.891-0.339-3.9,0.766-3.229-1.04,0.359-0.975,1.281-1.179,1.598-0.531,0.082,0.267,1.084,0.679,1.076,0.117-0.006-0.562,1.01-0.86,1.154-0.441-0.54,0.38,2.11,2.41-0.6,1.89zm5.67,1.71c-0.492-0.397,0.223-0.738-0.506-1.359-1.041-0.895-1.855-1.278-0.436-2.002,1.754-0.221,0.283,0.559,0.576,1.027,0.156,0.247,1.039,1.08,1.73,2.103,0.58,0.85-0.87,0.63-1.36,0.23z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="27.81" cy="3.106" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="30.93">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M56.111,24.787c-0.027-0.133-0.064-0.258-0.09-0.388c-0.141-0.65-0.307-1.292-0.494-1.924 c-0.051-0.171-0.102-0.346-0.154-0.515c-0.23-0.718-0.484-1.426-0.773-2.113c-0.051-0.121-0.109-0.24-0.16-0.358 c-0.266-0.606-0.553-1.201-0.861-1.782c-0.07-0.139-0.143-0.282-0.217-0.417c-0.365-0.657-0.75-1.297-1.166-1.919 c-0.068-0.107-0.15-0.21-0.223-0.316c-0.379-0.553-0.777-1.086-1.195-1.605c-0.086-0.103-0.166-0.209-0.254-0.313 c-0.482-0.578-0.986-1.135-1.518-1.669c-0.09-0.092-0.188-0.183-0.281-0.272c-0.482-0.475-0.984-0.933-1.506-1.369 c-0.09-0.073-0.17-0.151-0.26-0.223c-0.584-0.478-1.195-0.933-1.822-1.362c-0.109-0.075-0.223-0.148-0.334-0.219 c-0.578-0.384-1.174-0.747-1.785-1.085c-0.084-0.045-0.16-0.094-0.244-0.141c-0.68-0.363-1.371-0.696-2.082-1.003 c-0.125-0.053-0.256-0.103-0.379-0.155c-0.277-0.115-0.563-0.206-0.844-0.309c-0.334,0.213-1.881,1.088-1.881,1.088 s-6.717-0.917-7.174-0.462c-0.459,0.462-2.248,0.929-2.656,0.981c-0.406,0.053-1.25,0.27-0.238,1.518 c-0.152,0.155-3.039,2.165-3.039,1.25c0-0.916,0.645-2.552-0.26-1.676c-0.652,0.631-1.039,1.483-1.127,1.643 c-0.211,0.409-0.342,0.604-0.188,1.773c0.154,1.171-1.869,1.164-2.004,0.862c-0.363-0.813-2.363,1.821-2.363,1.821l0.844,1.082 c0,0-5.893,4.539-5.941,4.844c-0.053,0.307-1.523,4.247-1.016,5.418c0.512,1.174,1.797,4.127,3.016,4.226 c1.598,0.131,5.469-0.73,5.469-0.73c0.104,0.257,0.834,1.556,0.834,1.556s1.896-0.063,2.004,0.143 c0.035,0.069,2.287,6.693,1.543,7.571c-1.773,2.656,1.014,6.548,1.789,7.864c0.775,2.262,1.277,1.25,2.297,1.62 c1.258,0.108,2.318,0.573,3.385-0.8c0.309-0.255,0.836-0.054,0.836-0.408c0-0.198,0.912-0.781,1.146-1.33 c0.248-0.114,0.881-0.542,1.313-0.748c0.391-0.025-0.371-1.071,0.402-2.177c0.836-0.33,3.088-1.849,3.088-1.849 c0.104-2.227-1.094-4.979,1.141-6.559c1.445-1.47,3.336-2.306,4.256-4.544c0.252-0.661,0.818-2.014-0.813-1.609 c-1.531,0.386-3.238,0.474-2.432-0.201c-0.092-0.828-1.111-1.218-2.023-2.026c-0.473-1.117-1.215-3.108-1.215-3.108l-1.621-2.463 l0.203-0.508l1.926,2.836l1.926,2.328c0.707,2.33,1.314,2.535,1.314,2.535c1.068-0.377,3.596-1.419,3.596-1.419l2.484-2.381 c0,0-0.256-0.761-1.264-1.722l-0.764-0.455c-0.166,0.467-1.049,0.642-1.049,0.642l-2.145-2.564l0.801-0.162l0.613,1.171l1.473,0.509 c0,0,0.408-0.298,1.166,0.484c0.619-0.051,3.029,0.117,3.594,0.832c0.109,0.142,2.986,7.325,3.555,7.336 c0.248,0.001,0.43,0.099,0.348-0.335c-0.102-0.205,0-4.717,0.154-5.683c0.385-0.821,0.445-0.002,1.357,1.553 C56.121,24.862,56.119,24.824,56.111,24.787z M30.797,7.378c0.201-0.6,1.367-0.804,1.367-0.804s-0.334,0.618-0.258,0.937 c0.08,0.322-0.533,0.524-0.6,1.282c-0.066,0.755-1.459,0.313-1.574,0.047C29.617,8.577,30.592,7.977,30.797,7.378z M35.793,17.571 c-0.865,0-3.455,0.257-4.17-0.253c-0.711-0.508-1.266,0.052-1.781,0.562c-0.334,0.331-1.559-0.339-1.916-0.848 c-0.355-0.509-1.553-0.472-1.553-0.472l0.271-1.452l-3.445-0.167l-1.957,0.574l-1.844,0.052l1.031-0.491l1.287-0.304 c0,0,1.867-1.536,2.43-1.993c0.475-0.388,2.365-0.169,2.365-0.169l2.074,1.497c0,0-0.459,1.174-0.662,1.426 c0.76-0.05,1.658-1.436,1.658-1.436c-1.621-1.488-1.555-1.992-1.555-1.992l2.133,1.498l0.021,0.013c0,0,0.865,2.035,1.225,2.035 c0.352,0,0.809-1.401,0.809-1.401l0.609-0.153c0.27,0.642,0.773,2.094,1.381,1.754c0.35-0.193,0.928-0.017,1.588,0.236 c0.664,0.255,1.115-0.137,1.654,0.337C37.381,18.519,36.15,17.674,35.793,17.571z M37.148,14.068c-0.891-0.339-3.9,0.766-3.229-1.04 c0.359-0.975,1.281-1.179,1.598-0.531c0.082,0.267,1.084,0.679,1.076,0.117c-0.006-0.562,1.01-0.86,1.154-0.441 C37.207,12.563,39.863,14.589,37.148,14.068z M42.816,15.78c-0.492-0.397,0.223-0.738-0.506-1.359 c-1.041-0.895-1.855-1.278-0.436-2.002c1.754-0.221,0.283,0.559,0.576,1.027c0.156,0.247,1.039,1.08,1.73,2.103 C44.756,16.397,43.307,16.175,42.816,15.78z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="27.8125" cy="3.1055" gradientTransform="matrix(0.9953 0 0 0.9952 2.7861 7.6702)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="30.9328">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M43.52,38.98l-1.689,1.688-1.064,0.406c-0.023,0.174-0.082,0.927-0.252,1.315-0.338,0.235-0.742,1.012-0.742,1.012s-0.211,1.504,0.912,1.249c1.12-0.26,4.57-4.86,2.83-5.68z" fill="url(#SVGID_9_)"/>
+<path d="M43.523,38.979l-1.689,1.688c0,0-1.016,0-1.064,0.406c-0.023,0.174-0.082,0.927-0.252,1.315 c-0.338,0.235-0.742,1.012-0.742,1.012s-0.211,1.504,0.912,1.249C41.809,44.395,45.256,39.795,43.523,38.979z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15,0-8.271,6.729-15,15-15s15,6.729,15,15c0,8.27-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="15.24" cy="7.124" gradientTransform="matrix(1 0 0 1 0 0.2666)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="27.42">
-<stop offset="0" stop-color="#B6CA82"/>
-<stop offset="0.1273" stop-color="#B6CA82"/>
-<stop offset="0.5576" stop-color="#356742"/>
-<stop offset="0.9758" stop-color="#B6CA82"/>
-<stop offset="1" stop-color="#B6CA82"/>
+<path d="M15,30C6.729,30,0,23.271,0,15.001C0,6.729,6.729,0,15,0c8.271,0,15,6.729,15,15.001 C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="15.2446" cy="7.1245" gradientTransform="matrix(1 0 0 1 0 0.2666)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="27.4219">
+<stop offset="0" style="stop-color:#B6CA82"/>
+<stop offset="0.1273" style="stop-color:#B6CA82"/>
+<stop offset="0.5576" style="stop-color:#356742"/>
+<stop offset="0.9758" style="stop-color:#B6CA82"/>
+<stop offset="1" style="stop-color:#B6CA82"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="14"/>
-<path d="M14.94,13.57c-4.122,0-8.019-0.584-11.5-1.616,0.27-5.423,5.34-9.751,11.57-9.751,6.215,0,11.27,4.304,11.57,9.707-3.51,1.06-7.46,1.66-11.64,1.66z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M15.02,2.936c5.939,0,10.81,3.934,11.49,9,0.025-0.007,0.053-0.015,0.078-0.022-0.295-5.403-5.354-9.707-11.57-9.707-6.23,0-11.3,4.328-11.57,9.751,0.024,0.006,0.05,0.013,0.075,0.02,0.653-5.087,5.537-9.044,11.5-9.044z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="15" cy="15.001" fill="url(#SVGID_1__)" r="14"/>
+<path d="M14.945,13.573c-4.122,0-8.019-0.584-11.498-1.616c0.27-5.423,5.34-9.751,11.57-9.751 c6.215,0,11.274,4.304,11.569,9.707C23.071,12.973,19.125,13.573,14.945,13.573z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15.017,2.936c5.939,0,10.813,3.934,11.491,9c0.025-0.007,0.053-0.015,0.078-0.022 c-0.295-5.403-5.354-9.707-11.569-9.707c-6.23,0-11.301,4.328-11.57,9.751c0.024,0.006,0.05,0.013,0.075,0.02 C4.178,6.893,9.062,2.936,15.017,2.936z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_outbox.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_outbox.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,46 +1,48 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="5.35" y2="38.02">
-<stop offset="0" stop-color="#719355"/>
-<stop offset="1" stop-color="#1C4033"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.0044" x2="30.0044" y1="5.3496" y2="38.0188">
+<stop offset="0" style="stop-color:#719355"/>
+<stop offset="1" style="stop-color:#1C4033"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="23.45,37.82,23.45,19.44,17.36,19.44,30.12,5.075,42.65,19.44,36.72,19.44,36.72,37.82"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.01" x2="30.01" y1="5.69" y2="37.33">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="1" stop-color="#2F613B"/>
+<polygon fill="url(#SVGID_1_)" points="23.453,37.822 23.453,19.443 17.357,19.443 30.118,5.075 42.652,19.443 36.719,19.443 36.719,37.823 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0132" x2="30.0132" y1="5.6895" y2="37.326">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="1" style="stop-color:#2F613B"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="41.82,18.76,30.11,5.424,18.2,18.76,24.14,18.76,24.14,37.14,36.03,37.14,36.03,18.76"/>
-<rect fill="#5D894A" height="0.688" width="11.89" x="24.14" y="36.45"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.01" x2="30.01" y1="5.536" y2="18.84">
-<stop offset="0" stop-color="#EBF0DB"/>
-<stop offset="1" stop-color="#A6B58C"/>
+<polygon fill="url(#SVGID_2_)" points="41.822,18.757 30.113,5.424 18.205,18.757 24.14,18.757 24.14,37.136 36.031,37.137 36.031,18.757 "/>
+<rect fill="#5D894A" height="0.688" width="11.892" x="24.14" y="36.449"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0132" x2="30.0132" y1="5.5356" y2="18.8368">
+<stop offset="0" style="stop-color:#EBF0DB"/>
+<stop offset="1" style="stop-color:#A6B58C"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="30.11,6.471,40.9,18.76,41.82,18.76,30.11,5.424,18.2,18.76,19.14,18.76"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="33.42" y2="54.68">
-<stop offset="0" stop-color="#CBCECD"/>
-<stop offset="1" stop-color="#868889"/>
+<polygon fill="url(#SVGID_3_)" points="30.113,6.471 40.903,18.757 41.822,18.757 30.113,5.424 18.205,18.757 19.139,18.757 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.9995" x2="29.9995" y1="33.4199" y2="54.6772">
+<stop offset="0" style="stop-color:#CBCECD"/>
+<stop offset="1" style="stop-color:#868889"/>
</linearGradient>
-<path d="M4.57,54.92c-1.417,0-2.57-1.152-2.57-2.57v-18.87h10.79v9.457c0,0.658,0.538,1.195,1.197,1.195h32.02c0.66,0,1.196-0.537,1.196-1.195v-9.46h10.79v18.87c0,1.418-1.152,2.57-2.568,2.57h-50.86z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="33.42" y2="53.32">
-<stop offset="0" stop-color="#E3E4E4"/>
-<stop offset="0.8061" stop-color="#BCBEBE"/>
-<stop offset="0.9152" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
+<path d="M4.57,54.924c-1.417,0-2.57-1.152-2.57-2.57V33.48h10.791v9.457c0,0.658,0.538,1.195,1.197,1.195 h32.023c0.66,0,1.196-0.537,1.196-1.195V33.48H58v18.873c0,1.418-1.152,2.57-2.568,2.57H4.57z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="33.4238" y2="53.3199">
+<stop offset="0" style="stop-color:#E3E4E4"/>
+<stop offset="0.8061" style="stop-color:#BCBEBE"/>
+<stop offset="0.9152" style="stop-color:#A5A6A7"/>
+<stop offset="1" style="stop-color:#C9CBCA"/>
</linearGradient>
-<path d="M47.9,33.48v8.77c0,1.035-0.848,1.883-1.883,1.883h-32.03c-1.035,0-1.883-0.848-1.883-1.883v-8.77h-9.413v18.19c0,1.036,0.848,1.884,1.884,1.884h50.86c1.035,0,1.883-0.848,1.883-1.884v-18.19h-9.415z" fill="url(#SVGID_5_)"/>
-<path d="M12.1,42.94c0,1.034,0.848,1.882,1.883,1.882h32.02c1.035,0,1.883-0.848,1.883-1.882v-0.69c0,1.035-0.848,1.883-1.883,1.883h-32.01c-1.035,0-1.883-0.848-1.883-1.883v0.688z" fill="#FFFFFF" fill-opacity="0.75"/>
+<path d="M47.895,33.48v8.77c0,1.035-0.848,1.883-1.883,1.883H13.988c-1.035,0-1.883-0.848-1.883-1.883v-8.77 H2.687v18.187c0,1.036,0.848,1.884,1.884,1.884h50.861c1.035,0,1.883-0.848,1.883-1.884V33.48H47.895z" fill="url(#SVGID_5_)"/>
+<path d="M12.105,42.938c0,1.034,0.848,1.882,1.883,1.882h32.023 c1.035,0,1.883-0.848,1.883-1.882V42.25c0,1.035-0.848,1.883-1.883,1.883H13.988c-1.035,0-1.883-0.848-1.883-1.883V42.938z" fill="#FFFFFF" fill-opacity="0.75"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="0.687" width="9.419" x="2.687" y="33.48"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="0.687" width="9.42" x="47.9" y="33.48"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="18.22" x2="24.07" y1="18.41" y2="18.41">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.687" width="9.42" x="47.895" y="33.48"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="18.2197" x2="24.0671" y1="18.4141" y2="18.4141">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="24.14,18.07,18.82,18.07,18.2,18.76,24.14,18.76"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="41.85" x2="35.96" y1="18.41" y2="18.41">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<polygon fill="url(#SVGID_6_)" points="24.14,18.07 18.818,18.07 18.205,18.757 24.14,18.757 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="41.8545" x2="35.9584" y1="18.4136" y2="18.4136">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="36.03,18.07,36.03,18.76,41.82,18.76,41.22,18.07"/>
+<polygon fill="url(#SVGID_7_)" points="36.031,18.07 36.031,18.757 41.822,18.757 41.219,18.07 "/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_personalization.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_personalization.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<radialGradient cx="39.64" cy="18.27" gradientUnits="userSpaceOnUse" id="SVGID_1" r="29.22">
<stop offset="0" stop-color="#E4E0C1"/>
@@ -13,7 +14,7 @@
<stop offset="0" stop-color="#F4F3E7"/>
<stop offset="1" stop-color="#B39C4D"/>
</linearGradient>
-<path d="M49.31,18.16s0.613,5.736-0.727,8.807l0.689,2.203s0,2.285-1.544,3.735-0.859,10.66-6.812,14.74c0,0,7.912-0.771,10.89-16.29,0,0,1.596-8.988,1.453-12.57l-3.95-0.62z" fill="url(#SVGID_2)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M49.31,18.16s0.613,5.736-0.727,8.807l0.689,2.203s0,2.285-1.544,3.735c0,0-0.859,10.66-6.812,14.74,0,0,7.912-0.771,10.89-16.29,0,0,1.596-8.988,1.453-12.57l-3.95-0.62z" fill="url(#SVGID_2)" fill-opacity="0.5" stroke-opacity="0.5"/>
<radialGradient cx="41.63" cy="21.03" gradientUnits="userSpaceOnUse" id="SVGID_3" r="25.72">
<stop offset="0" stop-color="#F2F0E1"/>
<stop offset="0.59" stop-color="#DEDBB2"/>
@@ -24,7 +25,7 @@
<stop offset="0" stop-color="#B4924F"/>
<stop offset="1" stop-color="#65392C"/>
</linearGradient>
-<path d="M41.43,35.78s-3.164,1.717-4.564,0.686,2.5,3.56,4.56-0.69z" fill="url(#SVGID_4)"/>
+<path d="M41.43,35.78s-3.164,1.717-4.564,0.686c0,0,2.5,3.56,4.56-0.69z" fill="url(#SVGID_4)"/>
<radialGradient cx="45.76" cy="29.42" gradientUnits="userSpaceOnUse" id="SVGID_5" r="3.74">
<stop offset="0" stop-color="#DED7B2"/>
<stop offset="1" stop-color="#B49D4F"/>
@@ -77,12 +78,12 @@
<stop offset="0" stop-color="#F2F5F3"/>
<stop offset="1" stop-color="#AAAFAF"/>
</linearGradient>
-<path d="M34.28,12.67l-0.998,8.469,1.688,3.757s0.281,1.327-1.755,4.562-0.277,12.19-8.179,15.75c0,0,8.539-0.847,11.75-17.88,0,0,1.322-9.31,1.168-14.05l-3.68-0.61z" fill="url(#SVGID_12)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M34.28,12.67l-0.998,8.469,1.688,3.757s0.281,1.327-1.755,4.562c0,0-0.277,12.19-8.179,15.75,0,0,8.539-0.847,11.75-17.88,0,0,1.322-9.31,1.168-14.05l-3.68-0.61z" fill="url(#SVGID_12)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13" x1="13.22" x2="13.22" y1="12.67" y2="45.35">
<stop offset="0" stop-color="#F2F5F3"/>
<stop offset="1" stop-color="#AAAFAF"/>
</linearGradient>
-<path d="M11.02,12.67l0.459,8.469-1.034,4.051s-0.141,1.26,1.102,4.268,0.338,12.56,7.939,15.95c0,0-8.465-0.29-11.51-18.07,0,0-1.15-9.425-0.995-14.09l4.035-0.58z" fill="url(#SVGID_13)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M11.02,12.67l0.459,8.469-1.034,4.051s-0.141,1.26,1.102,4.268c0,0,0.338,12.56,7.939,15.95,0,0-8.465-0.29-11.51-18.07,0,0-1.15-9.425-0.995-14.09l4.035-0.58z" fill="url(#SVGID_13)" fill-opacity="0.5" stroke-opacity="0.5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14" x1="27.38" x2="27.38" y1="34.15" y2="18.18">
<stop offset="0" stop-color="#909495"/>
<stop offset="1" stop-color="#D3DBD7"/>
@@ -128,35 +129,36 @@
</linearGradient>
<path d="M17.06,36.96h11.35s-1.151,3.451-5.674,3.451-5.68-3.45-5.68-3.45z" fill="url(#SVGID_23)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2_)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4_)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5_)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phone_as_modem.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phone_as_modem.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,253 +1,255 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="291" x2="291" y1="-358.7" y2="-363.4">
-<stop offset="0" stop-color="#393B41"/>
-<stop offset="1" stop-color="#4E555C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="291.0005" x2="291.0005" y1="-358.7285" y2="-363.4325">
+<stop offset="0" style="stop-color:#393B41"/>
+<stop offset="1" style="stop-color:#4E555C"/>
</linearGradient>
-<path d="M29,28.06c0,0.173-0.139,0.311-0.311,0.311h-27.38c-0.172,0.01-0.312-0.13-0.312-0.31v-4.045c0-0.17,0.14-0.31,0.312-0.31h27.38c0.172,0,0.311,0.14,0.311,0.311v4.045z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="291" x2="291" y1="-359" y2="-363.1">
-<stop offset="0" stop-color="#393B41"/>
-<stop offset="1" stop-color="#728185"/>
+<path d="M29,28.065c0,0.173-0.139,0.311-0.311,0.311H1.312C1.14,28.376,1,28.238,1,28.065v-4.045 C1,23.85,1.14,23.71,1.312,23.71H28.69c0.172,0,0.311,0.14,0.311,0.311V28.065z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="291.0005" x2="291.0005" y1="-359.0366" y2="-363.114">
+<stop offset="0" style="stop-color:#393B41"/>
+<stop offset="1" style="stop-color:#728185"/>
</linearGradient>
-<path d="M1.312,24.02v4.045h27.38v-4.045h-27.38zm27.07,3.42h-26.76v-3.111h26.76v3.114z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="291" x2="291" y1="-363.4" y2="-358.7">
-<stop offset="0" stop-color="#393B41"/>
-<stop offset="1" stop-color="#4E555C"/>
+<path d="M1.312,24.021v4.045H28.69v-4.045H1.312z M28.377,27.444H1.623v-3.111h26.755V27.444z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="291.0005" x2="291.0005" y1="-363.3579" y2="-358.6539">
+<stop offset="0" style="stop-color:#393B41"/>
+<stop offset="1" style="stop-color:#4E555C"/>
</linearGradient>
-<path d="M28.69,23.71h-27.38c-0.172,0-0.312,0.14-0.312,0.31v4.045c0,0.173,0.139,0.311,0.311,0.311h27.38c0.172,0,0.311-0.138,0.311-0.311v-4.045c0-0.17-0.14-0.31-0.31-0.31zm0,4.35h-27.38v-4.045h27.38v4.045h-0.002z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="294.5" x2="297.8" y1="-348.6" y2="-348.6">
-<stop offset="0" stop-color="#DBDBDB"/>
-<stop offset="0.097" stop-color="#DBDBDB"/>
-<stop offset="0.6848" stop-color="#B0B0B0"/>
-<stop offset="1" stop-color="#DEDEDE"/>
+<path d="M28.688,23.71H1.312C1.14,23.71,1,23.85,1,24.021v4.045c0,0.173,0.139,0.311,0.311,0.311H28.69 c0.172,0,0.311-0.138,0.311-0.311v-4.045C29,23.85,28.862,23.71,28.688,23.71z M28.688,28.065H1.312v-4.045H28.69v4.045H28.688z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="294.5269" x2="297.7813" y1="-348.5991" y2="-348.5991">
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#B0B0B0"/>
+<stop offset="1" style="stop-color:#DEDEDE"/>
</linearGradient>
-<path d="M21.84,17.49c0,0.171-0.139,0.311-0.311,0.311h-2.8c-0.173,0-0.312-0.14-0.312-0.311l0.312-7.778c0-0.172,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.139,0.311,0.311l0.31,7.778z" fill="url(#SVGID_4__)"/>
-<rect fill-opacity="0.3" height="0.312" stroke-opacity="0.3" width="3.422" x="18.42" y="16.56"/>
-<rect fill-opacity="0.1" height="0.934" stroke-opacity="0.1" width="3.422" x="18.42" y="15.93"/>
-<rect fill-opacity="0.1" height="0.312" stroke-opacity="0.1" width="3.422" x="18.42" y="16.24"/>
-<path d="M21.22,9.399h-2.18c-0.17,0-0.31,0.139-0.31,0.311v0.311c0-0.171,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.14,0.311,0.311v-0.31c0-0.172-0.14-0.311-0.31-0.311z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="294.9" x2="297.4" y1="-341.8" y2="-341.8">
-<stop offset="0" stop-color="#DBDBDB"/>
-<stop offset="0.097" stop-color="#DBDBDB"/>
-<stop offset="0.6848" stop-color="#919191"/>
-<stop offset="1" stop-color="#B8B8B8"/>
+<path d="M21.844,17.488c0,0.171-0.139,0.311-0.311,0.311h-2.8c-0.173,0-0.312-0.14-0.312-0.311l0.312-7.778 c0-0.172,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.139,0.311,0.311L21.844,17.488z" fill="url(#SVGID_4__)"/>
+<rect fill-opacity="0.3" height="0.312" stroke-opacity="0.3" width="3.422" x="18.422" y="16.555"/>
+<rect fill-opacity="0.1" height="0.934" stroke-opacity="0.1" width="3.422" x="18.422" y="15.933"/>
+<rect fill-opacity="0.1" height="0.312" stroke-opacity="0.1" width="3.422" x="18.422" y="16.243"/>
+<path d="M21.223,9.399h-2.18c-0.17,0-0.31,0.139-0.31,0.311v0.311 c0-0.171,0.14-0.311,0.31-0.311h2.18c0.17,0,0.311,0.14,0.311,0.311V9.71C21.534,9.538,21.393,9.399,21.223,9.399z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="294.856" x2="297.4459" y1="-341.7549" y2="-341.7549">
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#B8B8B8"/>
</linearGradient>
-<path d="M21.22,9.399l-0.313-4.979c0-0.172-0.139-0.311-0.311-0.311h-0.934c-0.172,0-0.311,0.139-0.311,0.311l-0.311,4.979h2.173z" fill="url(#SVGID_5__)"/>
-<path d="M20.6,4.11h-0.934c-0.172,0-0.311,0.139-0.311,0.311v0.311c0-0.172,0.139-0.311,0.311-0.311h0.93c0.172,0,0.311,0.139,0.311,0.311v-0.311c0-0.172-0.14-0.311-0.31-0.311z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect fill-opacity="0.3" height="0.313" stroke-opacity="0.3" width="2.18" x="19.04" y="9.087"/>
-<rect fill-opacity="0.1" height="0.312" stroke-opacity="0.1" width="2.18" x="19.04" y="8.775"/>
-<rect fill-opacity="0.1" height="0.934" stroke-opacity="0.1" width="2.18" x="19.04" y="8.466"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="291" x2="291" y1="-351.9" y2="-359.4">
-<stop offset="0" stop-color="#E2E4E3"/>
-<stop offset="1" stop-color="#565656"/>
+<path d="M21.223,9.399l-0.313-4.979c0-0.172-0.139-0.311-0.311-0.311h-0.934 c-0.172,0-0.311,0.139-0.311,0.311l-0.311,4.979H21.223z" fill="url(#SVGID_5__)"/>
+<path d="M20.6,4.11h-0.934c-0.172,0-0.311,0.139-0.311,0.311v0.311 c0-0.172,0.139-0.311,0.311-0.311H20.6c0.172,0,0.311,0.139,0.311,0.311V4.421C20.911,4.249,20.772,4.11,20.6,4.11z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.3" height="0.313" stroke-opacity="0.3" width="2.18" x="19.043" y="9.087"/>
+<rect fill-opacity="0.1" height="0.312" stroke-opacity="0.1" width="2.18" x="19.043" y="8.775"/>
+<rect fill-opacity="0.1" height="0.934" stroke-opacity="0.1" width="2.18" x="19.043" y="8.466"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="291.0005" x2="291.0005" y1="-351.8955" y2="-359.4225">
+<stop offset="0" style="stop-color:#E2E4E3"/>
+<stop offset="1" style="stop-color:#565656"/>
</linearGradient>
-<path d="M29,18.08c0-0.667-0.543-1.21-1.213-1.21h-25.58c-0.669,0-1.212,0.54-1.212,1.21v6.257h28v-6.264z" fill="url(#SVGID_6__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="291" x2="291" y1="-352.4" y2="-359.4">
-<stop offset="0" stop-color="#D5D5D5"/>
-<stop offset="1" stop-color="#919191"/>
+<path d="M29,18.076c0-0.667-0.543-1.21-1.213-1.21H2.212C1.543,16.866,1,17.408,1,18.076v6.257h28V18.076z" fill="url(#SVGID_6__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="290.9995" x2="290.9995" y1="-352.3604" y2="-359.4167">
+<stop offset="0" style="stop-color:#D5D5D5"/>
+<stop offset="1" style="stop-color:#919191"/>
</linearGradient>
-<path d="M28.75,17.95c0-0.343-0.278-0.621-0.623-0.621h-26.26c-0.345,0-0.623,0.278-0.623,0.621v6.379h27.5v-6.376z" fill="url(#SVGID_7__)"/>
-<path d="M1.029,17.8c0.07-0.268,0.551-0.466,0.841-0.466h26.26c0.291,0,0.768,0.198,0.837,0.466-0.126-0.534-0.604-0.933-1.177-0.933h-25.58c-0.573,0-1.057,0.39-1.183,0.93z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="282.4" x2="282.4" y1="-357.3" y2="-353.5">
-<stop offset="0" stop-color="#9F9F9F"/>
-<stop offset="1" stop-color="#7E7E7F"/>
+<path d="M28.752,17.954c0-0.343-0.278-0.621-0.623-0.621H1.87c-0.345,0-0.623,0.278-0.623,0.621v6.379h27.505 V17.954z" fill="url(#SVGID_7__)"/>
+<path d="M1.029,17.799c0.07-0.268,0.551-0.466,0.841-0.466h26.259 c0.291,0,0.768,0.198,0.837,0.466l0,0c-0.126-0.534-0.604-0.933-1.177-0.933H2.212C1.639,16.866,1.155,17.265,1.029,17.799 L1.029,17.799z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="282.4448" x2="282.4448" y1="-357.3369" y2="-353.5188">
+<stop offset="0" style="stop-color:#9F9F9F"/>
+<stop offset="1" style="stop-color:#7E7E7F"/>
</linearGradient>
<rect fill="url(#SVGID_8__)" height="4.166" width="1.666" x="5.611" y="18.36"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="282.4" x2="282.4" y1="-357.2" y2="-353.6">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_9__" x1="282.4438" x2="282.4438" y1="-357.249" y2="-353.6387">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<rect fill="url(#SVGID_9__)" height="3.61" width="1.112" x="5.888" y="18.64"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="279.4" x2="279.4" y1="-357.3" y2="-353.5">
-<stop offset="0" stop-color="#9F9F9F"/>
-<stop offset="1" stop-color="#7E7E7F"/>
+<rect fill="url(#SVGID_9__)" height="3.61" width="1.112" x="5.888" y="18.639"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_10__" x1="279.3892" x2="279.3892" y1="-357.3369" y2="-353.5188">
+<stop offset="0" style="stop-color:#9F9F9F"/>
+<stop offset="1" style="stop-color:#7E7E7F"/>
</linearGradient>
<rect fill="url(#SVGID_10__)" height="4.166" width="1.667" x="2.555" y="18.36"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="279.4" x2="279.4" y1="-357.2" y2="-353.6">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_11__" x1="279.3892" x2="279.3892" y1="-357.249" y2="-353.6387">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<rect fill="url(#SVGID_11__)" height="3.61" width="1.112" x="2.833" y="18.64"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="285.5" x2="285.5" y1="-357.3" y2="-353.5">
-<stop offset="0" stop-color="#9F9F9F"/>
-<stop offset="1" stop-color="#7E7E7F"/>
+<rect fill="url(#SVGID_11__)" height="3.61" width="1.112" x="2.833" y="18.639"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_12__" x1="285.5005" x2="285.5005" y1="-357.3369" y2="-353.5188">
+<stop offset="0" style="stop-color:#9F9F9F"/>
+<stop offset="1" style="stop-color:#7E7E7F"/>
</linearGradient>
<rect fill="url(#SVGID_12__)" height="4.166" width="1.667" x="8.666" y="18.36"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="285.5" x2="285.5" y1="-357.2" y2="-353.6">
-<stop offset="0" stop-color="#393B41"/>
-<stop offset="1" stop-color="#4E555C"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_13__" x1="285.5005" x2="285.5005" y1="-357.249" y2="-353.6387">
+<stop offset="0" style="stop-color:#393B41"/>
+<stop offset="1" style="stop-color:#4E555C"/>
</linearGradient>
-<rect fill="url(#SVGID_13__)" height="3.61" width="1.111" x="8.944" y="18.64"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="0.278" stroke-opacity="0.5" width="1.112" x="5.888" y="18.64"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="0.278" stroke-opacity="0.5" width="1.112" x="2.833" y="18.64"/>
-<rect fill-opacity="0.3" height="0.311" stroke-opacity="0.3" width="28" x="1" y="24.33"/>
-<rect fill-opacity="0.1" height="0.311" stroke-opacity="0.1" width="28" x="1" y="24.64"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="0.312" stroke-opacity="0.2" width="28" x="1" y="24.02"/>
+<rect fill="url(#SVGID_13__)" height="3.61" width="1.111" x="8.944" y="18.639"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.278" stroke-opacity="0.5" width="1.112" x="5.888" y="18.639"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.278" stroke-opacity="0.5" width="1.112" x="2.833" y="18.639"/>
+<rect fill-opacity="0.3" height="0.311" stroke-opacity="0.3" width="28" x="1" y="24.333"/>
+<rect fill-opacity="0.1" height="0.311" stroke-opacity="0.1" width="28" x="1" y="24.644"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.312" stroke-opacity="0.2" width="28" x="1" y="24.021"/>
<rect fill-opacity="0.1" height="0.311" stroke-opacity="0.1" width="28" x="1" y="23.71"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 442.0565 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="309.5" x2="302.8" y1="-296.5" y2="-303.1">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 442.0565 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_14__" x1="309.5308" x2="302.8252" y1="-296.5103" y2="-303.1235">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M13.82,1.625l1.387,1.386c-1.81,1.809-1.809,4.753,0,6.563l-1.386,1.387c-2.58-2.574-2.58-6.762,0-9.335z" fill="url(#SVGID_14__)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 442.0565 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_15__" x1="307.1" x2="300.4" y1="-294" y2="-300.6">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M13.818,1.625l1.387,1.386c-1.81,1.809-1.809,4.753,0,6.563l-1.386,1.387 C11.245,8.386,11.245,4.198,13.818,1.625z" fill="url(#SVGID_14__)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 0.7071 -0.7071 442.0565 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_15__" x1="307.0698" x2="300.3655" y1="-294.0181" y2="-300.6301">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M16.96,3.382l1.387,1.385c-0.841,0.842-0.841,2.209,0,3.049l-1.387,1.387c-1.6-1.604-1.6-4.216,0-5.821z" fill="url(#SVGID_15__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_16__" x1="289.6" x2="289.6" y1="-345.8" y2="-334.9">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M16.963,3.382l1.387,1.385c-0.841,0.842-0.841,2.209,0,3.049l-1.387,1.387 C15.359,7.599,15.359,4.987,16.963,3.382z" fill="url(#SVGID_15__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_16__" x1="289.5513" x2="289.5513" y1="-345.8452" y2="-334.9367">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M13.82,10.53c-1.231-1.232-1.867-2.835-1.919-4.452-0.057,1.76,0.58,3.54,1.919,4.881l1.386-1.386c-0.072-0.073-0.137-0.15-0.203-0.226l-1.19,1.182z" fill="url(#SVGID_16__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_17__" x1="293.1" x2="293.1" y1="-344.2" y2="-339">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M13.819,10.529c-1.231-1.232-1.867-2.835-1.919-4.452c-0.057,1.76,0.58,3.54,1.919,4.881 l1.386-1.386c-0.072-0.073-0.137-0.15-0.203-0.226L13.819,10.529z" fill="url(#SVGID_16__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_17__" x1="293.0571" x2="293.0571" y1="-344.208" y2="-338.9822">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M16.96,8.772c-0.748-0.749-1.141-1.714-1.193-2.695-0.06,1.123,0.34,2.268,1.19,3.123l1.387-1.387c-0.074-0.072-0.133-0.154-0.193-0.235l-1.2,1.194z" fill="url(#SVGID_17__)"/>
-<path d="M13.82,2.055l1.184,1.181c0.066-0.074,0.131-0.152,0.203-0.225l-1.387-1.386c-1.341,1.342-1.975,3.12-1.918,4.881,0.06-1.618,0.7-3.219,1.93-4.451z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M16.96,3.812l1.193,1.192c0.061-0.08,0.119-0.162,0.193-0.237l-1.387-1.385c-0.857,0.856-1.25,2.002-1.193,3.124,0.06-0.982,0.46-1.946,1.2-2.694z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 -0.7071 -0.7071 201.7121 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-117.3" x2="-124" y1="130.3" y2="123.7">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M16.963,8.772c-0.748-0.749-1.141-1.714-1.193-2.695C15.713,7.2,16.106,8.345,16.963,9.2 l1.387-1.387c-0.074-0.072-0.133-0.154-0.193-0.235L16.963,8.772z" fill="url(#SVGID_17__)"/>
+<path d="M13.818,2.055l1.184,1.181c0.066-0.074,0.131-0.152,0.203-0.225l-1.387-1.386 c-1.341,1.342-1.975,3.12-1.918,4.881C11.952,4.888,12.586,3.287,13.818,2.055z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M16.963,3.812l1.193,1.192c0.061-0.08,0.119-0.162,0.193-0.237l-1.387-1.385 c-0.857,0.856-1.25,2.002-1.193,3.124C15.823,5.524,16.217,4.56,16.963,3.812z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 -0.7071 -0.7071 201.7121 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-117.2642" x2="-123.9698" y1="130.2861" y2="123.6729">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M26.38,1.625l-1.387,1.386c1.809,1.809,1.809,4.753,0,6.563l1.385,1.387c2.57-2.574,2.57-6.762,0-9.335z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 -0.7071 -0.7071 201.7121 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-119.7" x2="-126.4" y1="132.8" y2="126.2">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M26.377,1.625l-1.387,1.386c1.809,1.809,1.809,4.753,0,6.563l1.385,1.387 C28.95,8.386,28.95,4.198,26.377,1.625z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 -0.7071 -0.7071 201.7121 10.7984)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="-119.7256" x2="-126.43" y1="132.7783" y2="126.1663">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M23.23,3.382l-1.387,1.385c0.842,0.842,0.842,2.209,0,3.049l1.387,1.387c1.61-1.604,1.61-4.216,0-5.821z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 919.7686 -335)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="893.1" x2="893.1" y1="-345.8" y2="-334.9">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M23.231,3.382l-1.387,1.385c0.842,0.842,0.842,2.209,0,3.049l1.387,1.387 C24.836,7.599,24.836,4.987,23.231,3.382z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 919.7686 -335)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="893.1245" x2="893.1245" y1="-345.8447" y2="-334.9362">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M26.38,10.53c1.232-1.232,1.867-2.835,1.92-4.452,0.057,1.76-0.578,3.54-1.92,4.881l-1.387-1.386c0.072-0.073,0.137-0.15,0.204-0.226l1.19,1.182z" fill="url(#SVGID_20_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 919.7686 -335)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="896.6" x2="896.6" y1="-344.2" y2="-339">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M26.375,10.529c1.232-1.232,1.867-2.835,1.92-4.452c0.057,1.76-0.578,3.54-1.92,4.881l-1.387-1.386 c0.072-0.073,0.137-0.15,0.204-0.226L26.375,10.529z" fill="url(#SVGID_20_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 919.7686 -335)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="896.6313" x2="896.6313" y1="-344.2075" y2="-338.9817">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M23.23,8.772c0.746-0.749,1.143-1.714,1.193-2.695,0.06,1.123-0.33,2.268-1.19,3.123l-1.387-1.387c0.074-0.072,0.133-0.154,0.191-0.235l1.2,1.194z" fill="url(#SVGID_21_)"/>
-<path d="M26.38,2.055l-1.185,1.181c-0.067-0.074-0.132-0.152-0.202-0.225l1.387-1.386c1.34,1.342,1.975,3.12,1.918,4.881-0.07-1.618-0.7-3.219-1.93-4.451z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M23.23,3.812l-1.195,1.192c-0.059-0.08-0.117-0.162-0.191-0.237l1.387-1.385c0.855,0.856,1.251,2.002,1.193,3.124-0.06-0.982-0.45-1.946-1.2-2.694z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="302.5" x2="302.5" y1="-360.3" y2="-362.1">
-<stop offset="0" stop-color="#393B41"/>
-<stop offset="1" stop-color="#4E555C"/>
+<path d="M23.231,8.772c0.746-0.749,1.143-1.714,1.193-2.695C24.482,7.2,24.086,8.345,23.231,9.2 l-1.387-1.387c0.074-0.072,0.133-0.154,0.191-0.235L23.231,8.772z" fill="url(#SVGID_21_)"/>
+<path d="M26.377,2.055l-1.185,1.181c-0.067-0.074-0.132-0.152-0.202-0.225l1.387-1.386 c1.34,1.342,1.975,3.12,1.918,4.881C28.243,4.888,27.608,3.287,26.377,2.055z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M23.231,3.812l-1.195,1.192c-0.059-0.08-0.117-0.162-0.191-0.237l1.387-1.385 c0.855,0.856,1.251,2.002,1.193,3.124C24.374,5.524,23.977,4.56,23.231,3.812z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -276 -335)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="302.5112" x2="302.5112" y1="-360.3394" y2="-362.1274">
+<stop offset="0" style="stop-color:#393B41"/>
+<stop offset="1" style="stop-color:#4E555C"/>
</linearGradient>
-<path d="M25.58,27.13c-0.35,0-0.623-0.233-0.623-0.533v-0.711c0-0.299,0.273-0.533,0.623-0.533h1.867c0.348,0,0.621,0.234,0.621,0.533v0.711c0,0.3-0.273,0.533-0.621,0.533h-1.871z" fill="url(#SVGID_22_)"/>
-<path d="M27.76,26.6c0,0.123-0.138,0.223-0.31,0.223h-1.867c-0.172,0-0.311-0.1-0.311-0.223v-0.711c0-0.121,0.139-0.222,0.311-0.222h1.867c0.172,0,0.31,0.099,0.31,0.222v0.709z" fill="#76B2BE" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M25.579,27.132c-0.35,0-0.623-0.233-0.623-0.533v-0.711c0-0.299,0.273-0.533,0.623-0.533h1.867 c0.348,0,0.621,0.234,0.621,0.533v0.711c0,0.3-0.273,0.533-0.621,0.533H25.579z" fill="url(#SVGID_22_)"/>
+<path d="M27.755,26.599c0,0.123-0.138,0.223-0.31,0.223h-1.867 c-0.172,0-0.311-0.1-0.311-0.223v-0.711c0-0.121,0.139-0.222,0.311-0.222h1.867c0.172,0,0.31,0.099,0.31,0.222V26.599z" fill="#76B2BE" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phonebook.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_phonebook.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,64 +1,66 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.81" x2="30.81" y1="3.352" y2="56.92">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.8115" x2="30.8115" y1="3.3521" y2="56.9221">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M54.35,56.38c0,0.085-0.727,0.813-1.622,0.813h-43.83c-0.896,0-1.624-0.728-1.624-1.623v-51.14c0-0.896,0.728-1.623,1.624-1.623h43.83c0.896,0,1.622,0.728,1.622,2.437v51.13z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="51.51" x2="55.77" y1="16.96" y2="16.96">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.897" stop-color="#F0F0F0"/>
-<stop offset="0.9091" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M54.349,56.377c0,0.085-0.727,0.813-1.622,0.813H8.898c-0.896,0-1.624-0.728-1.624-1.623V4.434 c0-0.896,0.728-1.623,1.624-1.623h43.828c0.896,0,1.622,0.728,1.622,2.437V56.377z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="51.5088" x2="55.7697" y1="16.9629" y2="16.9629">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.897" style="stop-color:#F0F0F0"/>
+<stop offset="0.9091" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M55.26,22.51c0.438-0.225,0.713-0.678,0.713-1.17v-9.238c0-0.492-0.275-0.945-0.713-1.169l-3.399-1.187v14.43l3.4-1.67z" fill="url(#SVGID_2_)"/>
-<polygon fill="#222021" fill-opacity="0.35" points="51.77,21.19,55.08,22.48,52.51,23.73,51.77,23.71" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="55.61" x2="51.14" y1="30.52" y2="30.52">
-<stop offset="0" stop-color="#ADC18C"/>
-<stop offset="0.0485" stop-color="#ADC18C"/>
-<stop offset="0.0606" stop-color="#6A8E5E"/>
-<stop offset="1" stop-color="#1E443C"/>
+<path d="M55.259,22.511c0.438-0.225,0.713-0.678,0.713-1.17v-9.238c0-0.492-0.275-0.945-0.713-1.169 l-3.399-1.187v14.432L55.259,22.511z" fill="url(#SVGID_2_)"/>
+<polygon fill="#222021" fill-opacity="0.35" points="51.769,21.19 55.08,22.481 52.512,23.733 51.769,23.71 " stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="55.6133" x2="51.1445" y1="30.522" y2="30.522">
+<stop offset="0" style="stop-color:#ADC18C"/>
+<stop offset="0.0485" style="stop-color:#ADC18C"/>
+<stop offset="0.0606" style="stop-color:#6A8E5E"/>
+<stop offset="1" style="stop-color:#1E443C"/>
</linearGradient>
-<path d="M55.09,36.31c0.438-0.224,0.715-0.678,0.715-1.169v-9.239c0-0.49-0.277-0.943-0.715-1.167l-3.754-1.427v14.44l3.76-1.43z" fill="url(#SVGID_3_)"/>
-<polygon fill="#222021" fill-opacity="0.35" points="50.64,35.2,54.73,36.61,51.83,37.74,50.63,37.7" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="55.57" x2="50.89" y1="44.64" y2="44.64">
-<stop offset="0" stop-color="#C7DAD3"/>
-<stop offset="0.0667" stop-color="#86BBBF"/>
-<stop offset="1" stop-color="#3D568F"/>
+<path d="M55.093,36.307c0.438-0.224,0.715-0.678,0.715-1.169v-9.239c0-0.49-0.277-0.943-0.715-1.167 l-3.754-1.427v14.435L55.093,36.307z" fill="url(#SVGID_3_)"/>
+<polygon fill="#222021" fill-opacity="0.35" points="50.641,35.196 54.729,36.608 51.83,37.739 50.629,37.705 " stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="55.5654" x2="50.8946" y1="44.645" y2="44.645">
+<stop offset="0" style="stop-color:#C7DAD3"/>
+<stop offset="0.0667" style="stop-color:#86BBBF"/>
+<stop offset="1" style="stop-color:#3D568F"/>
</linearGradient>
-<path d="M55.19,50.92c0.438-0.224,0.715-0.677,0.715-1.169v-10.21c0-0.492-0.277-0.944-0.715-1.169l-4.172-1.427v15.4l4.18-1.42z" fill="url(#SVGID_4_)"/>
-<rect fill="#404041" fill-opacity="0.2" height="54.38" stroke-opacity="0.2" width="18.67" x="34.06" y="2.811"/>
-<rect fill="#404041" fill-opacity="0.2" height="54.38" stroke-opacity="0.2" width="18.67" x="33.25" y="2.811"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="27.57" x2="27.57" y1="1.901" y2="57.18">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.5333" stop-color="#426E4B"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M55.193,50.915c0.438-0.224,0.715-0.677,0.715-1.169V39.538c0-0.492-0.277-0.944-0.715-1.169 l-4.172-1.427v15.405L55.193,50.915z" fill="url(#SVGID_4_)"/>
+<rect fill="#404041" fill-opacity="0.2" height="54.379" stroke-opacity="0.2" width="18.668" x="34.059" y="2.811"/>
+<rect fill="#404041" fill-opacity="0.2" height="54.379" stroke-opacity="0.2" width="18.668" x="33.246" y="2.811"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="27.5664" x2="27.5664" y1="1.9009" y2="57.1847">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.5333" style="stop-color:#426E4B"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M51.1,56.38c0,0.898-0.729,1.623-1.624,1.623h-43.83c-0.896,0-1.623-0.725-1.623-1.623v-52.76c0-0.895,0.727-1.623,1.623-1.623h43.83c0.896,0,1.624,0.728,1.624,1.623v52.75z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.41" x2="30.41" y1="1.73" y2="72.47">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M51.104,56.377c0,0.898-0.729,1.623-1.624,1.623H5.652c-0.896,0-1.623-0.725-1.623-1.623V3.623 C4.029,2.728,4.756,2,5.652,2h43.827c0.896,0,1.624,0.728,1.624,1.623V56.377z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.4072" x2="30.4072" y1="1.73" y2="72.4742">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M49.48,2.811c0.448,0,0.811,0.365,0.811,0.813v52.75c0,0.449-0.362,0.813-0.811,0.813h-38.96v-54.38h38.96m0.001-0.811h-39.77v56h39.77c0.896,0,1.624-0.725,1.624-1.623v-52.76c0-0.895-0.72-1.623-1.62-1.623z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6.87" x2="6.87" y1="1.73" y2="58.81">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#A0A0A0"/>
+<path d="M49.479,2.811c0.448,0,0.811,0.365,0.811,0.813v52.754c0,0.449-0.362,0.813-0.811,0.813H10.521V2.811 H49.479 M49.479,2H9.711v56h39.769c0.896,0,1.624-0.725,1.624-1.623V3.623C51.104,2.728,50.375,2,49.479,2L49.479,2z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6.8701" x2="6.8701" y1="1.73" y2="58.813">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#A0A0A0"/>
</linearGradient>
-<path d="M5.652,2c-0.896,0-1.623,0.728-1.623,1.623v52.75c0,0.9,0.727,1.62,1.623,1.62h4.059v-56h-4.059z" fill="url(#SVGID_7_)"/>
+<path d="M5.652,2C4.756,2,4.029,2.728,4.029,3.623v52.754C4.029,57.275,4.756,58,5.652,58h4.059V2H5.652z" fill="url(#SVGID_7_)"/>
<rect fill="#737373" height="56" width="0.813" x="8.898" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="8.493" x2="8.493" y1="1.73" y2="58.81">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="8.4932" x2="8.4932" y1="1.73" y2="58.813">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="56" width="0.811" x="8.088" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.81" x2="30.81" y1="21.35" y2="47.43">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.8125" x2="30.8125" y1="21.3486" y2="47.4313">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M39.31,37.2c-1.072-0.559-2.147-0.521-4.064-1.728-3.053-1.921,0.533-4.525,1.326-6.673,0.652,0.225,1.488-0.381,1.904-1.406,0.431-1.063,0.244-2.166-0.416-2.463-0.037-0.016-0.078-0.02-0.114-0.031,0.083-0.337,0.122-0.533,0.122-0.533,1.142-5.12-1.34-9.179-7.358-9.381-2.473,0-3.661,1.126-4.58,2.301-1.491,0.23-3.853,1.596-2.196,7.566-0.059,0.021-0.115,0.041-0.181,0.07-0.667,0.28-0.875,1.374-0.469,2.441,0.409,1.066,1.282,1.705,1.947,1.424,0.042-0.017,0.076-0.047,0.114-0.071,0.729,2.23,4.109,5.207,1.46,6.626-0.192,0.104-3.283,1.211-4.5,1.857-1.396,0.74-3.671,2.441-3.671,6.275h24.35c0.01-3.84-2.59-5.72-3.67-6.28z" fill="url(#SVGID_9_)"/>
-<rect fill="#DDE5C5" fill-opacity="0.5" height="0.813" stroke-opacity="0.5" width="24.35" x="18.64" y="43.48"/>
-</svg>
\ No newline at end of file
+<path d="M39.314,37.199c-1.072-0.559-2.147-0.521-4.064-1.728c-3.053-1.921,0.533-4.525,1.326-6.673 c0.652,0.225,1.488-0.381,1.904-1.406c0.431-1.063,0.244-2.166-0.416-2.463c-0.037-0.016-0.078-0.02-0.114-0.031l0,0 c0.083-0.337,0.122-0.533,0.122-0.533c1.142-5.12-1.34-9.179-7.358-9.381c-2.473,0-3.661,1.126-4.58,2.301 c-1.491,0.23-3.853,1.596-2.196,7.566c-0.059,0.021-0.115,0.041-0.181,0.07c-0.667,0.28-0.875,1.374-0.469,2.441 c0.409,1.066,1.282,1.705,1.947,1.424c0.042-0.017,0.076-0.047,0.114-0.071c0.729,2.23,4.109,5.207,1.46,6.626 c-0.192,0.104-3.283,1.211-4.5,1.857c-1.396,0.74-3.671,2.441-3.671,6.275h24.348C42.986,39.641,40.389,37.76,39.314,37.199z" fill="url(#SVGID_9_)"/>
+<rect fill="#DDE5C5" fill-opacity="0.5" height="0.813" stroke-opacity="0.5" width="24.348" x="18.639" y="43.475"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_photos.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_photos.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,112 +1,114 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="28.05" x2="28.05" y1="7.735" y2="49.76">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.2485" stop-color="#F1F2F1"/>
-<stop offset="0.6121" stop-color="#D7DBD9"/>
-<stop offset="0.9152" stop-color="#E4E6E5"/>
-<stop offset="0.9818" stop-color="#FDFEFD"/>
-<stop offset="1" stop-color="#FDFEFD"/>
+<g>
+<rect fill="none" height="60" width="59.999"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="28.0479" x2="28.0478" y1="7.7354" y2="49.7556">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2485" style="stop-color:#F1F2F1"/>
+<stop offset="0.6121" style="stop-color:#D7DBD9"/>
+<stop offset="0.9152" style="stop-color:#E4E6E5"/>
+<stop offset="0.9818" style="stop-color:#FDFEFD"/>
+<stop offset="1" style="stop-color:#FDFEFD"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="54.1,47.98,4.005,50.45,1.999,9.095,52.09,6.622"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="28.05" x2="28.05" y1="8.281" y2="49.24">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.2485" stop-color="#EBECEB"/>
-<stop offset="0.6121" stop-color="#AFB3B2"/>
-<stop offset="0.9152" stop-color="#CED0CE"/>
-<stop offset="0.9818" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#E7E8E7"/>
+<polygon fill="url(#SVGID_1_)" points="54.098,47.98 4.005,50.45 1.999,9.095 52.092,6.622 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="28.0479" x2="28.0478" y1="8.2808" y2="49.2366">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.2485" style="stop-color:#EBECEB"/>
+<stop offset="0.6121" style="stop-color:#AFB3B2"/>
+<stop offset="0.9152" style="stop-color:#CED0CE"/>
+<stop offset="0.9818" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#E7E8E7"/>
</linearGradient>
-<path d="M51.49,7.289l1.943,40.09-48.83,2.405-1.939-40.08,48.83-2.409" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5.356" x2="50.48" y1="26.77" y2="24.74">
-<stop offset="0" stop-color="#AACBC0"/>
-<stop offset="1" stop-color="#59769E"/>
+<path d="M51.492,7.289l1.943,40.087l-48.83,2.405L2.661,9.698L51.492,7.289" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5.3555" x2="50.48" y1="26.7739" y2="24.7415">
+<stop offset="0" style="stop-color:#AACBC0"/>
+<stop offset="1" style="stop-color:#59769E"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="51.11,39.23,6.322,41.44,4.908,12.28,49.7,10.07"/>
-<polygon fill="#222021" fill-opacity="0.3" points="53.86,50.16,52.51,14.28,7.008,14.28,7.008,50.16" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="32.92" x2="32.92" y1="14.94" y2="53.51">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.297" stop-color="#DCDCDC"/>
-<stop offset="0.6121" stop-color="#AFB3B2"/>
-<stop offset="0.9152" stop-color="#CED0CE"/>
-<stop offset="0.9818" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#E7E8E7"/>
+<polygon fill="url(#SVGID_3_)" points="51.11,39.233 6.322,41.44 4.908,12.275 49.697,10.066 "/>
+<polygon fill="#222021" fill-opacity="0.3" points="53.861,50.161 52.514,14.279 7.008,14.279 7.008,50.161 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="32.9248" x2="32.9248" y1="14.937" y2="53.5091">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.297" style="stop-color:#DCDCDC"/>
+<stop offset="0.6121" style="stop-color:#AFB3B2"/>
+<stop offset="0.9152" style="stop-color:#CED0CE"/>
+<stop offset="0.9818" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#E7E8E7"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="38.25" width="50.15" x="7.85" y="15.13"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="32.92" x2="32.92" y1="15.13" y2="53.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.2485" stop-color="#F1F2F1"/>
-<stop offset="0.6121" stop-color="#D7DBD9"/>
-<stop offset="0.9152" stop-color="#E4E6E5"/>
-<stop offset="0.9818" stop-color="#FDFEFD"/>
-<stop offset="1" stop-color="#FDFEFD"/>
+<rect fill="url(#SVGID_4_)" height="38.25" width="50.149" x="7.85" y="15.128"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="32.9248" x2="32.9248" y1="15.1279" y2="53.5738">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2485" style="stop-color:#F1F2F1"/>
+<stop offset="0.6121" style="stop-color:#D7DBD9"/>
+<stop offset="0.9152" style="stop-color:#E4E6E5"/>
+<stop offset="0.9818" style="stop-color:#FDFEFD"/>
+<stop offset="1" style="stop-color:#FDFEFD"/>
</linearGradient>
-<path d="M57.37,15.77v36.97h-48.89v-36.97h48.89m0.63-0.637h-50.15v38.25h50.15v-38.25,0.002z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="33.02" x2="33.02" y1="18.27" y2="50.54">
-<stop offset="0" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#666666"/>
+<path d="M57.37,15.767v36.973H8.479V15.767H57.37 M57.999,15.128H7.85v38.25h50.149V15.128L57.999,15.128z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="33.0215" x2="33.0215" y1="18.2749" y2="50.5403">
+<stop offset="0" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="31.32" width="44.84" x="10.6" y="18.45"/>
-<radialGradient cx="54.02" cy="18.9" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="52.49">
-<stop offset="0" stop-color="#869D67"/>
-<stop offset="0.503" stop-color="#476358"/>
-<stop offset="1" stop-color="#182637"/>
+<rect fill="url(#SVGID_6_)" height="31.317" width="44.844" x="10.6" y="18.45"/>
+<radialGradient cx="54.0225" cy="18.9033" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="52.4862">
+<stop offset="0" style="stop-color:#869D67"/>
+<stop offset="0.503" style="stop-color:#476358"/>
+<stop offset="1" style="stop-color:#182637"/>
</radialGradient>
-<rect fill="url(#SVGID_7_)" height="30.03" width="43.32" x="11.34" y="19.17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.39" x2="65.19" y1="23.5" y2="49.74">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<rect fill="url(#SVGID_7_)" height="30.029" width="43.32" x="11.344" y="19.173"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.3887" x2="65.1917" y1="23.498" y2="49.7402">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M54.66,39.15c-0.629-0.43-1.334-0.841-2.129-1.204-4.343-1.972-17.96-4.564-27.09-7.607-9.131-3.045-5.986-6.29-5.986-6.29-0.202-0.711-0.709-1.421-1.521-0.204-2.154,3.23,2.193,5.898,7,7.608,5.986,2.132,19.84,4.423,25.26,8.016,1.836,1.216,3.296,2.394,4.463,3.482v-3.814z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="25.01" x2="27.85" y1="32.65" y2="39.55">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M54.664,39.146c-0.629-0.43-1.334-0.841-2.129-1.204c-4.343-1.972-17.958-4.564-27.088-7.607 c-9.131-3.045-5.986-6.29-5.986-6.29c-0.202-0.711-0.709-1.421-1.521-0.204c-2.154,3.23,2.193,5.898,7,7.608 c5.986,2.132,19.838,4.423,25.262,8.016c1.836,1.216,3.296,2.394,4.463,3.482V39.146z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="25.0088" x2="27.8499" y1="32.647" y2="39.5468">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M21.49,39.97c1.014,0.813,4.647,1.473,8.219-1.927,2.129-2.029,2.129-5.073,2.129-5.073s-3.854-1.116-7.405,1.319c-3.56,2.44-3.96,4.87-2.95,5.68z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="15.87" x2="16.07" y1="27.71" y2="31.66">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M21.49,39.972c1.014,0.813,4.647,1.473,8.219-1.927c2.129-2.029,2.129-5.073,2.129-5.073 s-3.854-1.116-7.405,1.319C20.882,36.726,20.477,39.159,21.49,39.972z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="15.8662" x2="16.0691" y1="27.7065" y2="31.6628">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M12.54,30.37c0.415,0.624,2.298,1.62,4.854,0.377,1.524-0.744,2.057-2.417,2.057-2.417s-1.925-1.286-4.302-0.567c-2.37,0.72-3.02,1.99-2.61,2.61z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.8" x2="26.72" y1="25.43" y2="29.89">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M12.544,30.37c0.415,0.624,2.298,1.62,4.854,0.377c1.524-0.744,2.057-2.417,2.057-2.417 s-1.925-1.286-4.302-0.567C12.775,28.479,12.129,29.746,12.544,30.37z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.8027" x2="26.7159" y1="25.4258" y2="29.8901">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M29.51,25.06c-0.711-0.71-2.659-1.55-5.275,0.61-1.563,1.288-1.581,3.556-1.581,3.556s2.595,0.298,4.675-0.817c2.39-1.29,2.8-2.72,2.17-3.35z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="40.09" x2="42.12" y1="28.49" y2="39.17">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M29.506,25.059c-0.711-0.71-2.659-1.55-5.275,0.61c-1.563,1.288-1.581,3.556-1.581,3.556 s2.595,0.298,4.675-0.817C29.73,27.116,30.14,25.693,29.506,25.059z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="40.0938" x2="42.1227" y1="28.4878" y2="39.1729">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M43.96,28.81c-0.614-0.793-2.64-1.47-4.871,0.71-1.446,1.414-1.935,4.57-1.935,4.57s2.595,0.3,4.674-0.816c2.41-1.29,2.99-3.34,2.13-4.46z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="43.76" x2="43.22" y1="36.45" y2="47.27">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M43.962,28.813c-0.614-0.793-2.64-1.47-4.871,0.71c-1.446,1.414-1.935,4.57-1.935,4.57 s2.595,0.3,4.674-0.816C44.236,31.985,44.824,29.929,43.962,28.813z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="43.7607" x2="43.2202" y1="36.4453" y2="47.2661">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M37.24,46c1.288,0.863,6.896,2.138,11.43-1.479,2.711-2.159,1.725-5.969,1.725-5.969s-5.83-2.202-10.35,0.391c-4.51,2.59-4.1,6.2-2.81,7.06z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="52.26" x2="56.59" y1="29.8" y2="42.38">
-<stop offset="0" stop-color="#8FB34D"/>
-<stop offset="1" stop-color="#2B644B"/>
+<path d="M37.245,46.001c1.288,0.863,6.896,2.138,11.433-1.479c2.711-2.159,1.725-5.969,1.725-5.969 s-5.83-2.202-10.347,0.391C35.539,41.532,35.954,45.136,37.245,46.001z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="52.2568" x2="56.5859" y1="29.7988" y2="42.3786">
+<stop offset="0" style="stop-color:#8FB34D"/>
+<stop offset="1" style="stop-color:#2B644B"/>
</linearGradient>
-<path d="M54.66,29.37c-1.041,1.038-1.97,2.361-2.577,4.026-1.184,3.254,1.644,5.99,1.644,5.99s0.359-0.069,0.934-0.233v-9.786z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="47.45" x2="44.53" y1="29.75" y2="35.45">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1333" stop-color="#7DC7BB"/>
-<stop offset="0.5333" stop-color="#6292A3"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M54.664,29.374c-1.041,1.038-1.97,2.361-2.577,4.026c-1.184,3.254,1.644,5.99,1.644,5.99 s0.359-0.069,0.934-0.233V29.374z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="47.4512" x2="44.533" y1="29.749" y2="35.4486">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.1333" style="stop-color:#7DC7BB"/>
+<stop offset="0.5333" style="stop-color:#6292A3"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M44.2,35.91s1.608-8.439,3.197-5.71c0.97,1.67-1.84,5.47-3.2,5.71z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.94" x2="43.3" y1="29.69" y2="36.06">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.5152" stop-color="#6292A3"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M44.197,35.911c0,0,1.608-8.439,3.197-5.71C48.369,31.871,45.559,35.674,44.197,35.911z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="40.9365" x2="43.3032" y1="29.688" y2="36.0635">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.5152" style="stop-color:#6292A3"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M44.32,35.96s-0.502-10.26-3.893-6.101c-2.31,2.84,1.16,4.84,3.89,6.1z" fill="url(#SVGID_16_)"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="58,25.07,58,15.13,7.85,15.13,7.85,31.06" stroke-opacity="0.3"/>
-<rect fill="#FFFFFF" fill-opacity="0.05" height="1.396" stroke-opacity="0.05" width="44.84" x="10.6" y="48.37"/>
-<rect fill="#FFFFFF" fill-opacity="0.05" height="2.204" stroke-opacity="0.05" width="44.84" x="10.6" y="47.56"/>
-<rect fill="#FFFFFF" fill-opacity="0.05" height="3.012" stroke-opacity="0.05" width="44.84" x="10.6" y="46.76"/>
-<rect fill="#FFFFFF" fill-opacity="0.05" height="3.82" stroke-opacity="0.05" width="44.84" x="10.6" y="45.95"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<path d="M44.324,35.956c0,0-0.502-10.259-3.893-6.101C38.119,32.696,41.59,34.696,44.324,35.956z" fill="url(#SVGID_16_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="57.999,25.07 57.999,15.128 7.85,15.128 7.85,31.056 " stroke-opacity="0.3"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="1.396" stroke-opacity="0.05" width="44.844" x="10.6" y="48.371"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="2.204" stroke-opacity="0.05" width="44.844" x="10.6" y="47.563"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="3.012" stroke-opacity="0.05" width="44.844" x="10.6" y="46.756"/>
+<rect fill="#FFFFFF" fill-opacity="0.05" height="3.82" stroke-opacity="0.05" width="44.844" x="10.6" y="45.947"/>
+<rect fill="none" height="60" width="59.999"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_pin_code.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_pin_code.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,36 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="19.17" y2="39.88">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3879" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A4A6A6"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="19.1738" y2="39.8846">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3879" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A4A6A6"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="20.8" width="56" x="2" y="19.07"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="22.81" y2="37.29">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#000000"/>
+<rect fill="url(#SVGID_1_)" height="20.795" width="56" x="2" y="19.068"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.0005" x2="30.0005" y1="22.8101" y2="37.2885">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="14.54" width="47.48" x="6.262" y="22.74"/>
-<rect fill="#222021" fill-opacity="0.2" height="14.56" stroke-opacity="0.2" width="1.068" x="52.66" y="22.66"/>
-<rect fill="#222021" fill-opacity="0.2" height="14.56" stroke-opacity="0.2" width="1.068" x="6.41" y="22.66"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="19.18" y2="40.95">
-<stop offset="0" stop-color="#D2D3D2"/>
-<stop offset="1" stop-color="#7D7E7F"/>
+<rect fill="url(#SVGID_2_)" height="14.537" width="47.479" x="6.262" y="22.736"/>
+<rect fill="#222021" fill-opacity="0.2" height="14.562" stroke-opacity="0.2" width="1.068" x="52.658" y="22.657"/>
+<rect fill="#222021" fill-opacity="0.2" height="14.562" stroke-opacity="0.2" width="1.068" x="6.41" y="22.657"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="19.1792" y2="40.952">
+<stop offset="0" style="stop-color:#D2D3D2"/>
+<stop offset="1" style="stop-color:#7D7E7F"/>
</linearGradient>
-<path d="M2,19.07v21.86h56v-21.86h-56zm54.93,20.79h-53.86v-19.72h53.86v19.73z" fill="url(#SVGID_3_)"/>
-<polygon points="36.74,27.79,35.88,27.29,34.58,29.56,33.27,27.29,32.41,27.79,33.72,30.05,31.11,30.05,31.11,31.04,33.72,31.04,32.41,33.3,33.27,33.8,34.58,31.54,35.88,33.8,36.74,33.3,35.44,31.04,38.05,31.04,38.05,30.05,35.44,30.05"/>
-<polygon points="26.82,27.79,25.96,27.29,24.66,29.56,23.35,27.29,22.49,27.79,23.8,30.05,21.19,30.05,21.19,31.04,23.8,31.04,22.49,33.3,23.35,33.8,24.66,31.54,25.96,33.8,26.82,33.3,25.52,31.04,28.13,31.04,28.13,30.05,25.52,30.05"/>
-<polygon points="16.9,27.79,16.05,27.29,14.74,29.56,13.43,27.29,12.57,27.79,13.88,30.05,11.27,30.05,11.27,31.04,13.88,31.04,12.57,33.3,13.43,33.8,14.74,31.54,16.05,33.8,16.9,33.3,15.6,31.04,18.21,31.04,18.21,30.05,15.6,30.05"/>
-<rect height="1.217" width="6.086" x="41.57" y="32.75"/>
-<polygon fill-opacity="0.2" points="31.58,32.86,32.67,30.98,30.5,30.98,30.5,28.77,32.67,28.77,31.58,26.89,33.5,25.79,34.58,27.66,35.66,25.79,37.57,26.89,36.49,28.77,38.66,28.77,38.66,30.98,36.49,30.98,37.58,32.86,35.66,33.96,34.58,32.08,33.49,33.96" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="38.05,29.38,35.44,29.38,36.74,27.11,35.88,26.62,34.58,28.88,33.27,26.62,32.41,27.11,33.72,29.38,31.11,29.38,31.11,30.37,33.72,30.37,32.41,32.63,33.27,33.13,34.58,30.87,35.88,33.13,36.74,32.63,35.44,30.37,38.05,30.37"/>
-<polygon fill-opacity="0.2" points="21.66,32.86,22.75,30.98,20.58,30.98,20.58,28.77,22.75,28.77,21.66,26.89,23.58,25.79,24.66,27.66,25.74,25.79,27.66,26.89,26.57,28.77,28.74,28.77,28.74,30.98,26.57,30.98,27.66,32.86,25.74,33.96,24.66,32.08,23.57,33.96" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="28.13,29.38,25.52,29.38,26.82,27.11,25.96,26.62,24.66,28.88,23.35,26.62,22.49,27.11,23.8,29.38,21.19,29.38,21.19,30.37,23.8,30.37,22.49,32.63,23.35,33.13,24.66,30.87,25.96,33.13,26.82,32.63,25.52,30.37,28.13,30.37"/>
-<polygon fill-opacity="0.2" points="11.74,32.86,12.83,30.98,10.66,30.98,10.66,28.77,12.83,28.77,11.74,26.89,13.66,25.79,14.74,27.66,15.82,25.79,17.74,26.89,16.65,28.77,18.82,28.77,18.82,30.98,16.65,30.98,17.74,32.86,15.82,33.96,14.74,32.08,13.66,33.96" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="18.21,29.38,15.6,29.38,16.9,27.11,16.05,26.62,14.74,28.88,13.43,26.62,12.57,27.11,13.88,29.38,11.27,29.38,11.27,30.37,13.88,30.37,12.57,32.63,13.43,33.13,14.74,30.87,16.05,33.13,16.9,32.63,15.6,30.37,18.21,30.37"/>
-<rect fill-opacity="0.2" height="2.436" stroke-opacity="0.2" width="7.305" x="40.96" y="31.46"/>
-<rect fill="#E6E6E6" height="1.217" width="6.086" x="41.57" y="32.07"/>
-<rect fill-opacity="0.3" height="0.607" stroke-opacity="0.3" width="47.48" x="6.262" y="22.74"/>
+<path d="M2,19.068V40.93h56V19.068H2z M56.932,39.863H3.068V20.135h53.863V39.863z" fill="url(#SVGID_3_)"/>
+<polygon points="36.742,27.786 35.885,27.292 34.578,29.555 33.271,27.292 32.412,27.786 33.721,30.051 31.107,30.051 31.107,31.043 33.721,31.043 32.412,33.305 33.271,33.799 34.578,31.537 35.885,33.799 36.744,33.305 35.438,31.043 38.051,31.043 38.051,30.051 35.436,30.051 "/>
+<polygon points="26.824,27.786 25.965,27.292 24.659,29.555 23.353,27.292 22.494,27.786 23.801,30.051 21.187,30.051 21.187,31.043 23.801,31.043 22.494,33.305 23.352,33.799 24.659,31.537 25.965,33.799 26.825,33.305 25.518,31.043 28.131,31.043 28.131,30.051 25.518,30.051 "/>
+<polygon points="16.904,27.786 16.047,27.292 14.739,29.555 13.434,27.292 12.574,27.786 13.881,30.051 11.268,30.051 11.268,31.043 13.881,31.043 12.574,33.305 13.434,33.799 14.739,31.537 16.047,33.799 16.905,33.305 15.599,31.043 18.211,31.043 18.211,30.051 15.598,30.051 "/>
+<rect height="1.217" width="6.086" x="41.566" y="32.748"/>
+<polygon fill-opacity="0.2" points="31.582,32.855 32.666,30.979 30.499,30.979 30.499,28.768 32.666,28.768 31.582,26.891 33.496,25.787 34.578,27.665 35.662,25.787 37.574,26.891 36.49,28.768 38.658,28.768 38.658,30.979 36.492,30.979 37.576,32.855 35.662,33.959 34.578,32.082 33.494,33.959 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="38.051,29.377 35.436,29.377 36.742,27.114 35.885,26.62 34.578,28.881 33.271,26.62 32.412,27.114 33.721,29.377 31.107,29.377 31.107,30.37 33.721,30.37 32.412,32.633 33.271,33.127 34.578,30.866 35.885,33.127 36.744,32.633 35.438,30.37 38.051,30.37 "/>
+<polygon fill-opacity="0.2" points="21.662,32.855 22.746,30.979 20.578,30.979 20.578,28.768 22.746,28.768 21.662,26.891 23.576,25.787 24.659,27.665 25.742,25.787 27.655,26.891 26.571,28.768 28.739,28.768 28.739,30.979 26.572,30.979 27.656,32.855 25.742,33.959 24.659,32.082 23.574,33.959 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="28.131,29.377 25.518,29.377 26.824,27.114 25.965,26.62 24.659,28.881 23.353,26.62 22.494,27.114 23.801,29.377 21.187,29.377 21.187,30.37 23.801,30.37 22.494,32.633 23.352,33.127 24.659,30.866 25.965,33.127 26.825,32.633 25.518,30.37 28.131,30.37 "/>
+<polygon fill-opacity="0.2" points="11.742,32.855 12.826,30.979 10.659,30.979 10.659,28.768 12.826,28.768 11.742,26.891 13.656,25.787 14.74,27.665 15.823,25.787 17.736,26.891 16.652,28.768 18.82,28.768 18.82,30.979 16.652,30.979 17.737,32.855 15.823,33.959 14.739,32.082 13.656,33.959 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="18.211,29.377 15.598,29.377 16.904,27.114 16.047,26.62 14.739,28.881 13.434,26.62 12.574,27.114 13.881,29.377 11.268,29.377 11.268,30.37 13.881,30.37 12.574,32.633 13.434,33.127 14.739,30.866 16.047,33.127 16.905,32.633 15.599,30.37 18.211,30.37 "/>
+<rect fill-opacity="0.2" height="2.436" stroke-opacity="0.2" width="7.305" x="40.957" y="31.465"/>
+<rect fill="#E6E6E6" height="1.217" width="6.086" x="41.566" y="32.074"/>
+<rect fill-opacity="0.3" height="0.607" stroke-opacity="0.3" width="47.479" x="6.262" y="22.736"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_play.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_play.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 590.3462 -1619.0369)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1121" x2="-1121" y1="3242" y2="3354">
-<stop offset="0" stop-color="#D9E2C8"/>
-<stop offset="1" stop-color="#347940"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 590.3462 -1619.0369)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1120.6924" x2="-1120.6924" y1="3241.8101" y2="3353.8101">
+<stop offset="0" style="stop-color:#D9E2C8"/>
+<stop offset="1" style="stop-color:#347940"/>
</linearGradient>
-<path d="M30,58c-15.44,0-28-12.56-28-28s12.56-28,28-28,28,12.56,28,28-12.56,28-28,28z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3204.8525)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3202" y2="3146">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<path d="M30,58C14.561,58,2,45.44,2,30C2,14.562,14.561,2,30,2c15.436,0,28,12.562,28,28 C58,45.44,45.436,58,30,58L30,58z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3204.8525)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164.001" x2="-2164.001" y1="3202.0542" y2="3146.4495">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M57.2,30c0,15.02-12.18,27.2-27.2,27.2s-27.2-12.18-27.2-27.2,12.18-27.2,27.2-27.2,27.2,12.18,27.2,27.2z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.02" x2="33.02" y1="42.73" y2="14.43">
-<stop offset="0" stop-color="#89AA6B"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M57.197,30c0,15.024-12.18,27.201-27.197,27.201C14.975,57.201,2.801,45.024,2.801,30 C2.801,14.981,14.975,2.799,30,2.799C45.018,2.799,57.197,14.981,57.197,30z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.0234" x2="33.0234" y1="42.7275" y2="14.4317">
+<stop offset="0" style="stop-color:#89AA6B"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="20.7,14.27,45.34,28.42,20.7,42.86"/>
-<polygon fill="#FFFFFF" points="22.22,16.89,44.02,29.47,22.22,42.05"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_3_)" points="20.705,14.267 45.342,28.42 20.705,42.858 "/>
+<polygon fill="#FFFFFF" points="22.221,16.888 44.016,29.469 22.221,42.054 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_playlist.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_playlist.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,69 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.67" x2="23.66" y1="61.09" y2="51.12">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="0.7455" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.6719" x2="23.6638" y1="61.0908" y2="51.1174">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="0.7455" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="53" width="51.29" x="4.354" y="3.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.073" y2="54.36">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_1_)" height="53" width="51.291" x="4.354" y="3.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M55.64,54.79h-26.5s-13.25-0.381-20.09-3.347c-4.56-1.975-4.702-4.181-4.702-4.181v-43.76h51.29v51.29z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.073" y2="54.36">
-<stop offset="0" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<path d="M55.645,54.79h-26.5c0,0-13.249-0.381-20.089-3.347c-4.56-1.975-4.702-4.181-4.702-4.181V3.5h51.291 V54.79z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
+<stop offset="0" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<path d="M4.354,3.5v43.76s0.048,0.672,0.855,1.611v-44.51h49.58v49.58h-35.47c5.195,0.719,9.82,0.852,9.82,0.852h26.5v-51.29h-51.29z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.72" x2="16.8" y1="47.94" y2="54.27">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1939" stop-color="#E7E8E7"/>
-<stop offset="0.9333" stop-color="#868788"/>
-<stop offset="1" stop-color="#868788"/>
+<path d="M4.354,3.5v43.763c0,0,0.048,0.672,0.855,1.611V4.356h49.58v49.582H19.324 c5.195,0.719,9.82,0.852,9.82,0.852h26.5V3.5H4.354z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.7158" x2="16.7993" y1="47.938" y2="54.272">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1939" style="stop-color:#E7E8E7"/>
+<stop offset="0.9333" style="stop-color:#868788"/>
+<stop offset="1" style="stop-color:#868788"/>
</linearGradient>
-<path d="M31.21,54.79s-12.41,0.569-17.91-8.515c0,0-7.511,5.564-8.951,0.987,0.618,3.14,6.151,7.63,26.86,7.52z" fill="url(#SVGID_4_)"/>
-<rect fill="#F5F5F5" height="0.855" width="42.74" x="8.628" y="39.55"/>
-<rect fill="#666666" height="1.71" width="42.74" x="8.628" y="37.84"/>
-<rect fill="#F5F5F5" height="0.854" width="42.74" x="8.628" y="31.86"/>
-<rect fill="#666666" height="1.711" width="42.74" x="8.628" y="30.15"/>
-<rect fill="#F5F5F5" height="0.854" width="42.74" x="8.628" y="24.16"/>
-<rect fill="#666666" height="1.71" width="42.74" x="8.628" y="22.45"/>
-<rect fill="#F5F5F5" height="0.853" width="42.74" x="8.628" y="16.47"/>
-<rect fill="#666666" height="1.71" width="42.74" x="8.628" y="14.76"/>
+<path d="M31.211,54.79c0,0-12.406,0.569-17.906-8.515 c0,0-7.511,5.564-8.951,0.987C4.967,50.406,10.504,54.903,31.211,54.79z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
+<rect fill="#F5F5F5" height="0.855" width="42.741" x="8.628" y="39.55"/>
+<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="37.84"/>
+<rect fill="#F5F5F5" height="0.854" width="42.741" x="8.628" y="31.856"/>
+<rect fill="#666666" height="1.711" width="42.741" x="8.628" y="30.146"/>
+<rect fill="#F5F5F5" height="0.854" width="42.741" x="8.628" y="24.162"/>
+<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="22.452"/>
+<rect fill="#F5F5F5" height="0.853" width="42.741" x="8.628" y="16.47"/>
+<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="14.76"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5_)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_power_management.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_power_management.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,109 +1,115 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.46" x2="48.9" y1="32.15" y2="32.15">
-<stop offset="0" stop-color="#B2B7B6"/>
-<stop offset="0.2667" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.8788" stop-color="#DBDFDD"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.4556" x2="48.9027" y1="32.1465" y2="32.1465">
+<stop offset="0" style="stop-color:#B2B7B6"/>
+<stop offset="0.2667" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.8788" style="stop-color:#DBDFDD"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M48.54,55.77c0,0.678-0.55,1.228-1.228,1.228h-34.63c-0.678,0-1.228-0.55-1.228-1.228v-47.25c0-0.678,0.55-1.228,1.228-1.228h34.63c0.678,0,1.228,0.55,1.228,1.228v47.25z" fill="url(#SVGID_1_)"/>
-<rect fill-opacity="0.4" height="36.82" width="29.73" x="15.14" y="12.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.46" x2="48.54" y1="55.77" y2="55.77">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.5" stop-color="#222021"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M48.544,55.771c0,0.678-0.55,1.228-1.228,1.228H12.684c-0.678,0-1.228-0.55-1.228-1.228V8.522 c0-0.678,0.55-1.228,1.228-1.228h34.633c0.678,0,1.228,0.55,1.228,1.228V55.771z" fill="url(#SVGID_1_)"/>
+<rect fill-opacity="0.4" height="36.816" width="29.726" x="15.137" y="12.204"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4556" x2="48.5444" y1="55.7715" y2="55.7715">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M47.32,55.77h-34.64c-0.678,0-1.228-0.55-1.228-1.228v1.227c0,0.678,0.55,1.228,1.228,1.228h34.63c0.678,0,1.228-0.55,1.228-1.228v-1.227c-0.01,0.68-0.55,1.23-1.23,1.23z" fill="url(#SVGID_2_)" fill-opacity="0.4"/>
-<path d="M47.32,7.295h-34.64c-0.678,0-1.228,0.55-1.228,1.228v0.613c0-0.678,0.55-1.227,1.228-1.227h34.63c0.678,0,1.228,0.549,1.228,1.227v-0.614c-0.01-0.677-0.55-1.227-1.23-1.227z" fill="#FFFFFF" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22.23" x2="37.77" y1="5.147" y2="5.147">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.303" stop-color="#FFFFFF"/>
-<stop offset="0.7212" stop-color="#929494"/>
-<stop offset="1" stop-color="#D3D5D4"/>
+<path d="M47.317,55.771H12.684c-0.678,0-1.228-0.55-1.228-1.228v0.614v0.613 c0,0.678,0.55,1.228,1.228,1.228h34.633c0.678,0,1.228-0.55,1.228-1.228v-0.613v-0.614C48.544,55.222,47.995,55.771,47.317,55.771z" fill="url(#SVGID_2_)" fill-opacity="0.4"/>
+<path d="M47.317,7.295H12.684c-0.678,0-1.228,0.55-1.228,1.228v0.613 c0-0.678,0.55-1.227,1.228-1.227h34.633c0.678,0,1.228,0.549,1.228,1.227V8.522C48.544,7.845,47.995,7.295,47.317,7.295z" fill="#FFFFFF" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22.2319" x2="37.769" y1="5.147" y2="5.147">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.303" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#929494"/>
+<stop offset="1" style="stop-color:#D3D5D4"/>
</linearGradient>
-<path d="M37.77,7.295v-2.456c0-1.016-0.792-1.84-1.768-1.84h-12c-0.976,0-1.767,0.824-1.767,1.84v2.456h15.54z" fill="url(#SVGID_3_)"/>
-<path d="M36,2.999h-12c-0.976,0-1.767,0.824-1.767,1.84v0.615c0-1.018,0.791-1.842,1.767-1.842h12c0.976,0,1.768,0.824,1.768,1.842v-0.615c0-1.016-0.79-1.84-1.77-1.84z" fill="#FFFFFF" fill-opacity="0.4"/>
-<rect fill-opacity="0.4" height="0.613" width="15.54" x="22.23" y="6.682"/>
-<rect fill-opacity="0.2" height="0.614" width="15.54" x="22.23" y="6.067"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.66" x2="44.69" y1="38.28" y2="38.28">
-<stop offset="0" stop-color="#417C40"/>
-<stop offset="0.3212" stop-color="#97B460"/>
-<stop offset="0.7697" stop-color="#407B40"/>
-<stop offset="1" stop-color="#799C54"/>
+<path d="M37.769,7.295V4.839c0-1.016-0.792-1.84-1.768-1.84H23.999c-0.976,0-1.767,0.824-1.767,1.84v2.456 H37.769z" fill="url(#SVGID_3_)"/>
+<path d="M36.001,2.999H23.999c-0.976,0-1.767,0.824-1.767,1.84v0.615 c0-1.018,0.791-1.842,1.767-1.842h12.003c0.976,0,1.768,0.824,1.768,1.842V4.839C37.769,3.823,36.977,2.999,36.001,2.999z" fill="#FFFFFF" fill-opacity="0.4"/>
+<rect fill-opacity="0.4" height="0.613" width="15.537" x="22.232" y="6.682"/>
+<rect fill-opacity="0.2" height="0.614" width="15.537" x="22.232" y="6.067"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.6558" x2="44.6947" y1="38.2822" y2="38.2822">
+<stop offset="0" style="stop-color:#417C40"/>
+<stop offset="0.3212" style="stop-color:#97B460"/>
+<stop offset="0.7697" style="stop-color:#407B40"/>
+<stop offset="1" style="stop-color:#799C54"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="21.48" width="29.73" x="15.14" y="27.54"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="0.612" width="29.73" x="15.14" y="27.54"/>
-<rect fill-opacity="0.4" height="0.614" width="29.73" x="15.14" y="48.41"/>
-<rect fill-opacity="0.2" height="0.613" width="29.73" x="15.14" y="47.79"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="29.73" x="15.14" y="49.02"/>
-<rect fill-opacity="0.3" height="0.613" width="29.73" x="15.14" y="11.59"/>
-<path d="M15.14,12.2v36.82h29.73v-36.82h-29.73zm29.11,36.21h-28.5v-35.59h28.5v35.59z" fill-opacity="0.1"/>
-<rect fill-opacity="0.3" height="1.227" width="29.73" x="15.14" y="12.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.46" x2="48.54" y1="53.01" y2="53.01">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.5" stop-color="#222021"/>
-<stop offset="1" stop-color="#A8A9AA"/>
+<rect fill="url(#SVGID_4_)" height="21.477" width="29.726" x="15.137" y="27.544"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.612" width="29.726" x="15.137" y="27.544"/>
+<rect fill-opacity="0.4" height="0.614" width="29.726" x="15.137" y="48.408"/>
+<rect fill-opacity="0.2" height="0.613" width="29.726" x="15.137" y="47.794"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="29.726" x="15.137" y="49.022"/>
+<rect fill-opacity="0.3" height="0.613" width="29.726" x="15.137" y="11.591"/>
+<path d="M15.137,12.204v36.816h29.726V12.204H15.137z M44.249,48.407H15.751V12.818h28.497V48.407z" fill-opacity="0.1"/>
+<rect fill-opacity="0.3" height="1.227" width="29.726" x="15.137" y="12.204"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.4556" x2="48.5444" y1="53.0107" y2="53.0107">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.5" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#A8A9AA"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" fill-opacity="0.3" height="0.613" width="37.09" x="11.46" y="52.7"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="37.09" x="11.46" y="53.32"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="21.48" width="2.455" x="41.79" y="27.54"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="34.36" width="12.54" x="20.05" y="13.43"/>
+<rect fill="url(#SVGID_5_)" fill-opacity="0.3" height="0.613" width="37.089" x="11.456" y="52.704"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="37.089" x="11.456" y="53.317"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="21.477" width="2.455" x="41.793" y="27.544"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="34.363" width="12.542" x="20.047" y="13.431"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M4.702,29.6v-4.874h5.554c0.938,0,1.606-0.196,1.932-0.566,0.384-0.438,0.411-1.195,0.39-1.449l-0.017-0.254-0.001-2.041h-4.893c-0.845,0-1.532-0.681-1.532-1.518l-0.725-8.18c-0.641-0.182-1.112-0.768-1.112-1.46v-2.448c0-0.837,0.687-1.519,1.531-1.519h2.755v-3.438c0-0.806,0.611-1.46,1.363-1.46h0.922c0.752,0,1.363,0.654,1.363,1.46v3.438h5.229v-3.438c0-0.806,0.611-1.46,1.363-1.46h0.922c0.752,0,1.363,0.654,1.363,1.46v3.438h3.061c0.846,0,1.531,0.682,1.531,1.519v2.449c0,0.692-0.471,1.279-1.112,1.46l-0.726,8.235c0.002,0.784-0.686,1.465-1.529,1.465h-4.897v0.612h-0.011v1.298c0.061,0.65,0.131,3.098-1.582,5.051-1.295,1.475-3.176,2.224-5.588,2.224h-5.538z" fill-opacity="0.35"/>
-<path d="M16.83,22.33v-2.51h-3.667v2.602l0.015,0.235c0.001,0.012,0.105,1.172-0.536,1.902-0.449,0.512-1.251,0.771-2.383,0.771h-4.958v3.674h4.954c2.232,0,3.961-0.679,5.137-2.019,1.55-1.77,1.48-4.02,1.43-4.65z" fill="#333333"/>
-<path d="M16.22,22.38l-0.004-0.027v-2.536h-2.441v2.583l0.014,0.216-0.002-0.012c0.019,0.209,0.09,1.473-0.685,2.356-0.571,0.65-1.527,0.979-2.843,0.979h-4.958v2.449h4.954c2.049,0,3.622-0.609,4.676-1.811,1.39-1.59,1.33-3.61,1.28-4.2z" fill="#4D4D4D"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="6.472" x2="16.73" y1="29.02" y2="21.2">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+</g>
+<path d="M4.702,29.605v-4.874h5.554c0.938,0,1.606-0.196,1.932-0.566c0.384-0.438,0.411-1.195,0.39-1.449 l-0.017-0.254l-0.001-2.041H7.667c-0.845,0-1.532-0.681-1.532-1.518L5.41,10.721c-0.641-0.182-1.112-0.768-1.112-1.46V6.812 c0-0.837,0.687-1.519,1.531-1.519h2.755V1.855c0-0.806,0.611-1.46,1.363-1.46h0.922c0.752,0,1.363,0.654,1.363,1.46v3.438h5.229 V1.855c0-0.806,0.611-1.46,1.363-1.46h0.922c0.752,0,1.363,0.654,1.363,1.46v3.438h3.061c0.846,0,1.531,0.682,1.531,1.519v2.449 c0,0.692-0.471,1.279-1.112,1.46l-0.726,8.235c0.002,0.784-0.686,1.465-1.529,1.465h-4.897v0.612h-0.011v1.298 c0.061,0.65,0.131,3.098-1.582,5.051c-1.295,1.475-3.176,2.224-5.588,2.224H4.702z" fill-opacity="0.35"/>
+<path d="M16.827,22.331v-2.51h-3.667v2.602l0.015,0.235c0.001,0.012,0.105,1.172-0.536,1.902 c-0.449,0.512-1.251,0.771-2.383,0.771H5.302v3.674h4.954c2.232,0,3.961-0.679,5.137-2.019 C16.954,25.208,16.881,22.957,16.827,22.331z" fill="#333333"/>
+<path d="M16.217,22.385l-0.004-0.027v-2.536h-2.441v2.583l0.014,0.216l-0.002-0.012 c0.019,0.209,0.09,1.473-0.685,2.356c-0.571,0.65-1.527,0.979-2.843,0.979H5.302v2.449h4.954c2.049,0,3.622-0.609,4.676-1.811 C16.327,24.993,16.268,22.968,16.217,22.385z" fill="#4D4D4D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="6.4722" x2="16.7294" y1="29.0205" y2="21.2034">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M15.6,22.41l-0.002-0.027v-2.563h-1.219v2.563l0.014,0.196c0.025,0.334,0.072,1.751-0.838,2.788-0.693,0.787-1.803,1.187-3.303,1.187h-4.948v1.225h4.954c1.864,0,3.284-0.539,4.216-1.602,1.23-1.41,1.17-3.22,1.12-3.77z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="9.184" x2="11.63" y1="4.362" y2="4.362">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M15.604,22.412l-0.002-0.027v-2.563h-1.219v2.563l0.014,0.196c0.025,0.334,0.072,1.751-0.838,2.788 c-0.693,0.787-1.803,1.187-3.303,1.187H5.302v1.225h4.954c1.864,0,3.284-0.539,4.216-1.602 C15.708,24.771,15.653,22.96,15.604,22.412z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="9.1841" x2="11.6328" y1="4.3623" y2="4.3623">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M11.63,6.87c0,0.475-0.342,0.859-0.764,0.859h-0.923c-0.422,0-0.763-0.385-0.763-0.859v-5.015c0-0.476,0.341-0.86,0.763-0.86h0.922c0.422,0,0.764,0.385,0.764,0.86v5.015z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.06" x2="20.51" y1="4.362" y2="4.362">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M11.633,6.87c0,0.475-0.342,0.859-0.764,0.859H9.947c-0.422,0-0.763-0.385-0.763-0.859V1.855 c0-0.476,0.341-0.86,0.763-0.86h0.922c0.422,0,0.764,0.385,0.764,0.86V6.87z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="18.061" x2="20.5103" y1="4.3623" y2="4.3623">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M20.51,6.87c0,0.475-0.342,0.859-0.764,0.859h-0.922c-0.422,0-0.764-0.385-0.764-0.859v-5.015c0-0.476,0.342-0.86,0.764-0.86h0.922c0.422,0,0.764,0.385,0.764,0.86v5.015z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="7.677" y2="19.85">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#333333"/>
+<path d="M20.51,6.87c0,0.475-0.342,0.859-0.764,0.859h-0.922c-0.422,0-0.764-0.385-0.764-0.859V1.855 c0-0.476,0.342-0.86,0.764-0.86h0.922c0.422,0,0.764,0.385,0.764,0.86V6.87z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="7.6772" y2="19.8455">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<path d="M23.27,18.9c0,0.507-0.418,0.918-0.932,0.918h-14.67c-0.515,0-0.932-0.411-0.932-0.918l-0.919-10.4c0-0.508,0.417-0.919,0.931-0.919h16.5c0.514,0,0.932,0.411,0.932,0.919l-0.91,10.4z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="5.577" x2="24.38" y1="13.64" y2="13.64">
-<stop offset="0" stop-color="#333333"/>
-<stop offset="0.3" stop-color="#AAABAC"/>
-<stop offset="0.7" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#333333"/>
+<path d="M23.266,18.903c0,0.507-0.418,0.918-0.932,0.918H7.667c-0.515,0-0.932-0.411-0.932-0.918L5.816,8.495 c0-0.508,0.417-0.919,0.931-0.919h16.505c0.514,0,0.932,0.411,0.932,0.919L23.266,18.903z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="5.5771" x2="24.3763" y1="13.6392" y2="13.6392">
+<stop offset="0" style="stop-color:#333333"/>
+<stop offset="0.3" style="stop-color:#AAABAC"/>
+<stop offset="0.7" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<path d="M7.667,19.09c-0.176,0-0.32-0.137-0.32-0.306v-0.027l-0.918-10.27c0.01-0.16,0.149-0.286,0.318-0.286h16.5c0.168,0,0.308,0.126,0.318,0.286l-0.918,10.28v0.027c0,0.169-0.143,0.306-0.318,0.306h-14.66z" fill="url(#SVGID_5__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="4.898" x2="25.04" y1="8.036" y2="8.036">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M7.667,19.089c-0.176,0-0.32-0.137-0.32-0.306v-0.027L6.429,8.476c0.01-0.16,0.149-0.286,0.318-0.286 h16.505c0.168,0,0.308,0.126,0.318,0.286l-0.918,10.28v0.027c0,0.169-0.143,0.306-0.318,0.306H7.667z" fill="url(#SVGID_5__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="4.8979" x2="25.0414" y1="8.0356" y2="8.0356">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M25.1,9.261c0,0.507-0.416,0.918-0.932,0.918h-18.34c-0.514,0-0.931-0.411-0.931-0.918v-2.45c0-0.508,0.417-0.919,0.931-0.919h18.34c0.516,0,0.932,0.411,0.932,0.919v2.449z" fill="url(#SVGID_6_)"/>
-<path d="M24.17,5.893h-18.34c-0.514,0-0.931,0.411-0.931,0.919v0.306c0-0.507,0.417-0.918,0.931-0.918h18.34c0.516,0,0.932,0.411,0.932,0.918v-0.306c0-0.508-0.41-0.919-0.93-0.919z" fill="#FFFFFF" fill-opacity="0.3"/>
-<path d="M24.17,10.18h-18.34c-0.514,0-0.931-0.411-0.931-0.918v-0.308c0,0.507,0.417,0.918,0.931,0.918h18.34c0.516,0,0.932-0.411,0.932-0.918v0.307c0,0.507-0.41,0.919-0.93,0.919z" fill-opacity="0.2"/>
-<polygon fill-opacity="0.1" points="6.046,11.1,23.95,11.1,23.98,10.79,6.019,10.79"/>
-<polygon fill-opacity="0.3" points="6.019,10.79,23.98,10.79,24.01,10.48,5.992,10.48"/>
-<polygon fill-opacity="0.5" points="5.992,10.48,24.01,10.48,24.04,10.18,5.965,10.18"/>
+<path d="M25.102,9.261c0,0.507-0.416,0.918-0.932,0.918H5.829c-0.514,0-0.931-0.411-0.931-0.918V6.812 c0-0.508,0.417-0.919,0.931-0.919H24.17c0.516,0,0.932,0.411,0.932,0.919V9.261z" fill="url(#SVGID_6_)"/>
+<path d="M24.17,5.893H5.829c-0.514,0-0.931,0.411-0.931,0.919v0.306 c0-0.507,0.417-0.918,0.931-0.918H24.17c0.516,0,0.932,0.411,0.932,0.918V6.812C25.102,6.304,24.686,5.893,24.17,5.893z" fill="#FFFFFF" fill-opacity="0.3"/>
+<path d="M24.17,10.179H5.829c-0.514,0-0.931-0.411-0.931-0.918V8.954c0,0.507,0.417,0.918,0.931,0.918H24.17 c0.516,0,0.932-0.411,0.932-0.918v0.307C25.102,9.768,24.686,10.179,24.17,10.179z" fill-opacity="0.2"/>
+<polygon fill-opacity="0.1" points="6.046,11.097 23.954,11.097 23.981,10.791 6.019,10.791 "/>
+<polygon fill-opacity="0.3" points="6.019,10.791 23.981,10.791 24.008,10.485 5.992,10.485 "/>
+<polygon fill-opacity="0.5" points="5.992,10.485 24.008,10.485 24.036,10.179 5.965,10.179 "/>
<rect fill-opacity="0.4" height="0.306" width="2.449" x="9.184" y="5.587"/>
-<rect fill-opacity="0.4" height="0.306" width="2.449" x="18.06" y="5.587"/>
+<rect fill-opacity="0.4" height="0.306" width="2.449" x="18.061" y="5.587"/>
<rect fill-opacity="0.2" height="0.307" width="2.449" x="9.184" y="5.28"/>
-<rect fill-opacity="0.2" height="0.307" width="2.449" x="18.06" y="5.28"/>
-<rect fill-opacity="0.3" height="0.306" width="3.673" x="13.16" y="19.82"/>
-<rect fill-opacity="0.2" height="0.307" width="3.673" x="13.16" y="20.13"/>
+<rect fill-opacity="0.2" height="0.307" width="2.449" x="18.061" y="5.28"/>
+<rect fill-opacity="0.3" height="0.306" width="3.673" x="13.163" y="19.821"/>
+<rect fill-opacity="0.2" height="0.307" width="3.673" x="13.163" y="20.127"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_presentation_player.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_presentation_player.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,127 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="51.48" y2="10.78">
-<stop offset="0" stop-color="#EBEBEB"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="51.4814" y2="10.7829">
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="41.25" width="51.16" x="4.42" y="10.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="50.57" y2="11.46">
-<stop offset="0" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#808080"/>
+<rect fill="url(#SVGID_1_)" height="41.251" width="51.16" x="4.42" y="10.346"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="50.5747" y2="11.4563">
+<stop offset="0" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="38.48" width="46.32" x="6.84" y="11.73"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="11.28" y2="49.87">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_2_)" height="38.485" width="46.32" x="6.84" y="11.729"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="11.2798" y2="49.8705">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="37.1" width="44.94" x="7.531" y="12.42"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="48.49" y2="13.22">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_3_)" height="37.103" width="44.938" x="7.531" y="12.42"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="48.4854" y2="13.2231">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="35.72" width="43.56" x="8.223" y="13.11"/>
-<rect fill-opacity="0.1" height="3.111" stroke-opacity="0.1" width="51.16" x="4.42" y="10.35"/>
-<rect fill-opacity="0.2" height="1.729" stroke-opacity="0.2" width="51.16" x="4.42" y="10.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.733" y2="10.69">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<rect fill="url(#SVGID_4_)" height="35.72" width="43.555" x="8.223" y="13.111"/>
+<rect fill-opacity="0.1" height="3.111" stroke-opacity="0.1" width="51.16" x="4.42" y="10.346"/>
+<rect fill-opacity="0.2" height="1.729" stroke-opacity="0.2" width="51.16" x="4.42" y="10.346"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="5.7334" y2="10.6915">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="4.873" width="56" x="2" y="5.818"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="56.94" x2="56.94" y1="5.733" y2="10.69">
-<stop offset="0" stop-color="#292929"/>
-<stop offset="0.3455" stop-color="#8C8C8C"/>
-<stop offset="0.7" stop-color="#171717"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="56.9375" x2="56.9375" y1="5.7334" y2="10.6915">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="4.873" width="2.125" x="55.88" y="5.818"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="3.062" x2="3.062" y1="5.733" y2="10.69">
-<stop offset="0" stop-color="#292929"/>
-<stop offset="0.3455" stop-color="#8C8C8C"/>
-<stop offset="0.7" stop-color="#171717"/>
-<stop offset="1" stop-color="#646464"/>
+<rect fill="url(#SVGID_6_)" height="4.873" width="2.125" x="55.875" y="5.818"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="3.0615" x2="3.0615" y1="5.7334" y2="10.6915">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="4.873" width="2.123" x="2" y="5.818"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="54.11" y2="51.28">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.999" x2="29.999" y1="54.1147" y2="51.2821">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="2.683" width="54.58" x="2.707" y="51.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="56.58" x2="56.58" y1="54.11" y2="51.28">
-<stop offset="0" stop-color="#292929"/>
-<stop offset="0.3455" stop-color="#8C8C8C"/>
-<stop offset="0.7" stop-color="#171717"/>
-<stop offset="1" stop-color="#646464"/>
+<rect fill="url(#SVGID_8_)" height="2.683" width="54.584" x="2.707" y="51.498"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="56.583" x2="56.583" y1="54.1147" y2="51.2821">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2.683" width="1.416" x="55.88" y="51.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="3.415" x2="3.415" y1="54.11" y2="51.28">
-<stop offset="0" stop-color="#292929"/>
-<stop offset="0.3455" stop-color="#8C8C8C"/>
-<stop offset="0.7" stop-color="#171717"/>
-<stop offset="1" stop-color="#646464"/>
+<rect fill="url(#SVGID_9_)" height="2.683" width="1.416" x="55.875" y="51.498"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="3.415" x2="3.415" y1="54.1147" y2="51.2821">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="2.683" width="1.416" x="2.707" y="51.5"/>
-<rect fill="url(#SVGID_11_)" height="29.04" width="6.221" x="42.39" y="16.1"/>
-<rect fill="url(#SVGID_12_)" height="21.43" width="6.223" x="32.02" y="23.71"/>
-<rect fill-opacity="0.25" height="24.89" stroke-opacity="0.25" width="6.223" x="22.34" y="20.94"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.76" x2="24.76" y1="20.19" y2="44.97">
-<stop offset="0" stop-color="#89A16C"/>
-<stop offset="1" stop-color="#326644"/>
+<rect fill="url(#SVGID_10_)" height="2.683" width="1.416" x="2.707" y="51.498"/>
+<rect fill="url(#SVGID_11_)" height="29.037" width="6.221" x="42.387" y="16.105"/>
+<rect fill="url(#SVGID_12_)" height="21.432" width="6.223" x="32.016" y="23.711"/>
+<rect fill-opacity="0.25" height="24.889" stroke-opacity="0.25" width="6.223" x="22.336" y="20.945"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="24.7559" x2="24.7559" y1="20.1851" y2="44.97">
+<stop offset="0" style="stop-color:#89A16C"/>
+<stop offset="1" style="stop-color:#326644"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="24.89" width="6.223" x="21.64" y="20.25"/>
-<rect fill-opacity="0.25" height="7.604" stroke-opacity="0.25" width="6.221" x="11.97" y="38.23"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="14.39" x2="14.39" y1="37.54" y2="45.37">
-<stop offset="0" stop-color="#A7815E"/>
-<stop offset="1" stop-color="#9A5148"/>
+<rect fill="url(#SVGID_13_)" height="24.889" width="6.223" x="21.645" y="20.254"/>
+<rect fill-opacity="0.25" height="7.604" stroke-opacity="0.25" width="6.221" x="11.967" y="38.229"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="14.3857" x2="14.3857" y1="37.5381" y2="45.3728">
+<stop offset="0" style="stop-color:#A7815E"/>
+<stop offset="1" style="stop-color:#9A5148"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="7.604" width="6.221" x="11.28" y="37.54"/>
-<rect fill-opacity="0.25" height="29.04" stroke-opacity="0.25" width="6.221" x="43.08" y="16.8"/>
-<rect fill="url(#SVGID_11_)" height="29.04" width="6.221" x="42.39" y="16.1"/>
-<rect fill-opacity="0.25" height="21.43" stroke-opacity="0.25" width="6.223" x="32.71" y="24.4"/>
-<rect fill="url(#SVGID_12_)" height="21.43" width="6.223" x="32.02" y="23.71"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.221" x="42.39" y="16.1"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.223" x="32.02" y="23.71"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.223" x="21.64" y="20.25"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.221" x="11.28" y="37.54"/>
+<rect fill="url(#SVGID_14_)" height="7.604" width="6.221" x="11.275" y="37.538"/>
+<rect fill-opacity="0.25" height="29.037" stroke-opacity="0.25" width="6.221" x="43.078" y="16.797"/>
+<rect fill="url(#SVGID_11_)" height="29.037" width="6.221" x="42.387" y="16.105"/>
+<rect fill-opacity="0.25" height="21.432" stroke-opacity="0.25" width="6.223" x="32.707" y="24.402"/>
+<rect fill="url(#SVGID_12_)" height="21.432" width="6.223" x="32.016" y="23.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.221" x="42.387" y="16.105"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.223" x="32.016" y="23.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.223" x="21.645" y="20.254"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="1.153" stroke-opacity="0.5" width="6.221" x="11.275" y="37.538"/>
<rect fill="none" height="60" width="60"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="45.5" x2="45.5" y1="15.57" y2="44.61">
-<stop offset="0" stop-color="#89A16C"/>
-<stop offset="1" stop-color="#326644"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="45.4971" x2="45.4971" y1="15.5684" y2="44.6055">
+<stop offset="0" style="stop-color:#89A16C"/>
+<stop offset="1" style="stop-color:#326644"/>
</linearGradient>
</defs>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.13" x2="35.13" y1="23.85" y2="45.93">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.127" x2="35.127" y1="23.854" y2="45.9286">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
</defs>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15c8.271,0,15,6.729,15,15s-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1130" x2="-1130" y1="3388" y2="3444">
-<stop offset="0" stop-color="#D9E2C8"/>
-<stop offset="1" stop-color="#347940"/>
+<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1129.9209" x2="-1129.9209" y1="3388.3521" y2="3444.3481">
+<stop offset="0" style="stop-color:#D9E2C8"/>
+<stop offset="1" style="stop-color:#347940"/>
</linearGradient>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.719,6.279-14,14-14,7.718,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179" x2="-2179" y1="2907" y2="2879">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<path d="M15,28.999C7.279,28.999,1,22.72,1,15C1,7.281,7.279,1.001,15,1.001c7.718,0,14,6.28,14,13.999 C29,22.72,22.718,28.999,15,28.999L15,28.999z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.0005" x2="-2179.0005" y1="2906.6362" y2="2878.8359">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M28.6,15c0,7.512-6.09,13.6-13.6,13.6-7.514,0-13.6-6.09-13.6-13.6,0-7.509,6.086-13.6,13.6-13.6,7.51,0,13.6,6.091,13.6,13.6z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.51" x2="16.51" y1="21.36" y2="7.216">
-<stop offset="0" stop-color="#89AA6B"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M28.599,15c0,7.512-6.09,13.6-13.599,13.6C7.486,28.6,1.4,22.512,1.4,15C1.4,7.491,7.486,1.4,15,1.4 C22.509,1.4,28.599,7.491,28.599,15z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.5117" x2="16.5117" y1="21.3633" y2="7.2163">
+<stop offset="0" style="stop-color:#89AA6B"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="10.35,7.134,22.67,14.21,10.35,21.43"/>
-<polygon fill="#FFFFFF" points="11.11,8.444,22.01,14.73,11.11,21.03"/>
+<polygon fill="url(#SVGID_3__)" points="10.353,7.134 22.671,14.21 10.353,21.429 "/>
+<polygon fill="#FFFFFF" points="11.11,8.444 22.008,14.734 11.11,21.026 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_profiles.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_profiles.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,97 +1,99 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.94" x2="17.94" y1="5.036" y2="34.05">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="17.9414" x2="17.9414" y1="5.0361" y2="34.0517">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M7.014,26.61h21.86v-21.86c-12.07,0-21.86,9.787-21.86,21.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.97" x2="17.97" y1="6.01" y2="52.23">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M7.014,26.609h21.855V4.753C16.799,4.753,7.014,14.538,7.014,26.609z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.9678" x2="17.9678" y1="6.0098" y2="52.2334">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M7.82,25.86c0.743-10.86,9.44-19.56,20.3-20.3v20.3h-20.3z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="16.43" x2="16.43" y1="31.77" y2="55.48">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M7.82,25.855C8.563,15.003,17.264,6.301,28.115,5.559v20.296H7.82z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="16.4346" x2="16.4346" y1="31.7661" y2="55.483">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M27.41,55.25c-12.49,0-22.65-10.16-22.65-22.65v-0.708h23.36v23.36h-0.712z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="16.44" x2="16.44" y1="32.53" y2="54.7">
-<stop offset="0" stop-color="#DDDFDD"/>
-<stop offset="1" stop-color="#808485"/>
+<path d="M27.408,55.246c-12.492,0-22.654-10.163-22.654-22.654v-0.708h23.361v23.362H27.408z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="16.4404" x2="16.4404" y1="32.5273" y2="54.7021">
+<stop offset="0" style="stop-color:#DDDFDD"/>
+<stop offset="1" style="stop-color:#808485"/>
</linearGradient>
-<path d="M27.36,54.48c-11.87-0.39-21.45-9.97-21.84-21.84h21.84v21.84z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="44.32" x2="44.32" y1="5.036" y2="34.05">
-<stop offset="0" stop-color="#9DD5C4"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M27.361,54.48C15.492,54.09,5.91,44.507,5.52,32.638h21.842V54.48z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="44.3184" x2="44.3184" y1="5.0361" y2="34.0517">
+<stop offset="0" style="stop-color:#9DD5C4"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M33.39,4.753v21.86h21.86c0.01-12.07-9.78-21.86-21.85-21.86z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="44.29" x2="44.29" y1="6.01" y2="52.23">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M33.391,4.753v21.855h21.855C55.246,14.538,45.461,4.753,33.391,4.753z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="44.293" x2="44.293" y1="6.0098" y2="52.2334">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M34.14,25.86v-20.3c10.85,0.743,19.56,9.445,20.3,20.3h-20.3z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="44.32" x2="44.32" y1="31.25" y2="52.76">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M34.145,25.855V5.559c10.852,0.743,19.555,9.445,20.297,20.296H34.145z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="44.3184" x2="44.3184" y1="31.248" y2="52.7565">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M33.39,52.98c12.07,0,21.86-9.784,21.86-21.85h-21.86v21.86z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="44.29" x2="44.29" y1="6.011" y2="52.23">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M33.391,52.985c12.07,0,21.855-9.784,21.855-21.854H33.391V52.985z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="44.293" x2="44.293" y1="6.0107" y2="52.2332">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M34.14,31.88h20.3c-0.742,10.85-9.445,19.55-20.3,20.3v-20.3z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="17.94" x2="17.94" y1="4.565" y2="41.59">
-<stop offset="0" stop-color="#557499"/>
-<stop offset="1" stop-color="#242141"/>
+<path d="M34.145,31.884h20.297c-0.742,10.852-9.445,19.553-20.297,20.296V31.884z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="17.9414" x2="17.9414" y1="4.5654" y2="41.5914">
+<stop offset="0" style="stop-color:#557499"/>
+<stop offset="1" style="stop-color:#242141"/>
</linearGradient>
-<path d="M28.87,4.766v21.84h-21.84c0.389-11.87,9.973-21.45,21.84-21.84m0.75-0.766c-12.9,0-23.36,10.46-23.36,23.36h23.36v-23.36z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="16.43" x2="16.43" y1="31.01" y2="55.88">
-<stop offset="0" stop-color="#DDE1DF"/>
-<stop offset="1" stop-color="#525455"/>
+<path d="M28.869,4.766v21.843H7.027C7.416,14.739,17,5.156,28.869,4.766 M29.623,4 C16.721,4,6.26,14.459,6.26,27.362h23.363V4L29.623,4z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="16.4346" x2="16.4346" y1="31.0054" y2="55.875">
+<stop offset="0" style="stop-color:#DDE1DF"/>
+<stop offset="1" style="stop-color:#525455"/>
</linearGradient>
-<path d="M28.12,31.88v23.36c-12.88,0-23.36-10.48-23.36-23.36h23.36m0.755-0.75h-24.87v0.754c0,13.3,10.82,24.12,24.12,24.12h0.754v-24.87z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.32" x2="44.32" y1="4.565" y2="41.59">
-<stop offset="0" stop-color="#557499"/>
-<stop offset="1" stop-color="#242141"/>
+<path d="M28.115,31.884v23.362c-12.881,0-23.361-10.48-23.361-23.362H28.115 M28.869,31.13H4v0.754 C4,45.181,14.818,56,28.115,56h0.754V31.13L28.869,31.13z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="44.3184" x2="44.3184" y1="4.5654" y2="41.5914">
+<stop offset="0" style="stop-color:#557499"/>
+<stop offset="1" style="stop-color:#242141"/>
</linearGradient>
-<path d="M33.39,4.766c11.87,0.39,21.45,9.973,21.84,21.84h-21.84v-21.84m-0.751-0.766v23.36h23.36c0-12.9-10.46-23.36-23.36-23.36z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="44.32" x2="44.32" y1="30.13" y2="53.88">
-<stop offset="0" stop-color="#557499"/>
-<stop offset="1" stop-color="#242141"/>
+<path d="M33.391,4.766c11.869,0.39,21.453,9.973,21.844,21.843H33.391V4.766 M32.637,4v23.362H56 C56,14.459,45.541,4,32.637,4L32.637,4z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="44.3184" x2="44.3184" y1="30.1255" y2="53.881">
+<stop offset="0" style="stop-color:#557499"/>
+<stop offset="1" style="stop-color:#242141"/>
</linearGradient>
-<path d="M55.23,31.13c-0.39,11.87-9.97,21.45-21.84,21.84v-21.84h21.84m0.766-0.75h-23.36v23.36c12.9,0,23.36-10.46,23.36-23.36z" fill="url(#SVGID_12_)"/>
+<path d="M55.234,31.13C54.844,43,45.26,52.583,33.391,52.973V31.13H55.234 M56,30.376H32.637v23.362 C45.541,53.739,56,43.279,56,30.376L56,30.376z" fill="url(#SVGID_12_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5__)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_psm.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_psm.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,67 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="137.5" x2="174.9" y1="-47.15" y2="-47.15">
-<stop offset="0" stop-color="#B2B7B6"/>
-<stop offset="0.2667" stop-color="#E0E3E1"/>
-<stop offset="0.6545" stop-color="#989D9D"/>
-<stop offset="0.8788" stop-color="#DBDFDD"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="137.4561" x2="174.9032" y1="-47.1479" y2="-47.1479">
+<stop offset="0" style="stop-color:#B2B7B6"/>
+<stop offset="0.2667" style="stop-color:#E0E3E1"/>
+<stop offset="0.6545" style="stop-color:#989D9D"/>
+<stop offset="0.8788" style="stop-color:#DBDFDD"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M48.54,55.77c0,0.678-0.55,1.229-1.228,1.229h-34.62c-0.679,0-1.229-0.551-1.229-1.229v-47.25c0-0.678,0.55-1.228,1.229-1.228h34.63c0.679,0,1.229,0.55,1.229,1.228l-0.01,47.25z" fill="url(#SVGID_1_)"/>
-<rect fill-opacity="0.4" height="36.82" width="29.73" x="15.14" y="12.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="137.5" x2="174.5" y1="-70.77" y2="-70.77">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.5" stop-color="#222021"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M48.544,55.771c0,0.678-0.55,1.229-1.228,1.229H12.685c-0.679,0-1.229-0.551-1.229-1.229V8.522 c0-0.678,0.55-1.228,1.229-1.228h34.632c0.679,0,1.229,0.55,1.229,1.228L48.544,55.771L48.544,55.771z" fill="url(#SVGID_1_)"/>
+<rect fill-opacity="0.4" height="36.815" width="29.726" x="15.138" y="12.204"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="137.4561" x2="174.5449" y1="-70.772" y2="-70.772">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M47.32,55.77h-34.64c-0.679,0-1.229-0.551-1.229-1.229v1.226c0,0.68,0.55,1.229,1.229,1.229h34.63c0.679,0,1.229-0.549,1.229-1.229v-1.226c-0.01,0.68-0.55,1.23-1.23,1.23z" fill="url(#SVGID_2_)" fill-opacity="0.4"/>
-<path d="M47.32,7.295h-34.64c-0.679,0-1.229,0.55-1.229,1.228v0.613c0-0.678,0.55-1.227,1.229-1.227h34.63c0.679,0,1.229,0.549,1.229,1.227v-0.614c-0.01-0.677-0.55-1.227-1.23-1.227z" fill="#FFFFFF" fill-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="148.2" x2="163.8" y1="-20.15" y2="-20.15">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.303" stop-color="#FFFFFF"/>
-<stop offset="0.7212" stop-color="#929494"/>
-<stop offset="1" stop-color="#D3D5D4"/>
+<path d="M47.316,55.771H12.685c-0.679,0-1.229-0.551-1.229-1.229v0.615v0.611 c0,0.68,0.55,1.229,1.229,1.229h34.632c0.679,0,1.229-0.549,1.229-1.229v-0.611v-0.615C48.544,55.222,47.995,55.771,47.316,55.771z" fill="url(#SVGID_2_)" fill-opacity="0.4"/>
+<path d="M47.316,7.295H12.685c-0.679,0-1.229,0.55-1.229,1.228v0.613 c0-0.678,0.55-1.227,1.229-1.227h34.632c0.679,0,1.229,0.549,1.229,1.227V8.522C48.544,7.845,47.995,7.295,47.316,7.295z" fill="#FFFFFF" fill-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="148.2314" x2="163.7695" y1="-20.1479" y2="-20.1479">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.303" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#929494"/>
+<stop offset="1" style="stop-color:#D3D5D4"/>
</linearGradient>
-<path d="M37.77,7.295v-2.456c0-1.016-0.793-1.84-1.769-1.84h-12c-0.977,0-1.768,0.824-1.768,1.84v2.456h15.54z" fill="url(#SVGID_3_)"/>
-<path d="M36,2.999h-12c-0.977,0-1.768,0.824-1.768,1.84v0.615c0-1.018,0.791-1.842,1.768-1.842h12c0.977,0,1.768,0.824,1.768,1.842v-0.615c0-1.016-0.79-1.84-1.77-1.84z" fill="#FFFFFF" fill-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="141.7" x2="170.7" y1="-54.51" y2="-54.51">
-<stop offset="0" stop-color="#417C40"/>
-<stop offset="0.3212" stop-color="#97B460"/>
-<stop offset="0.7697" stop-color="#407B40"/>
-<stop offset="1" stop-color="#799C54"/>
+<path d="M37.77,7.295V4.839c0-1.016-0.793-1.84-1.769-1.84H23.999c-0.977,0-1.768,0.824-1.768,1.84v2.456 H37.77z" fill="url(#SVGID_3_)"/>
+<path d="M36.001,2.999H23.999c-0.977,0-1.768,0.824-1.768,1.84v0.615 c0-1.018,0.791-1.842,1.768-1.842h12.003c0.977,0,1.768,0.824,1.768,1.842V4.839C37.77,3.823,36.977,2.999,36.001,2.999z" fill="#FFFFFF" fill-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="141.6563" x2="170.6951" y1="-54.5112" y2="-54.5112">
+<stop offset="0" style="stop-color:#417C40"/>
+<stop offset="0.3212" style="stop-color:#97B460"/>
+<stop offset="0.7697" style="stop-color:#407B40"/>
+<stop offset="1" style="stop-color:#799C54"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="19.02" width="29.73" x="15.14" y="30"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="0.613" width="29.73" x="15.14" y="30"/>
-<rect fill="#FFFFFF" fill-opacity="0.1" height="19.02" width="2.455" x="41.79" y="30"/>
-<rect fill-opacity="0.4" height="0.613" width="15.54" x="22.23" y="6.682"/>
-<rect fill-opacity="0.2" height="0.614" width="15.54" x="22.23" y="6.067"/>
-<rect fill-opacity="0.4" height="0.613" width="29.73" x="15.14" y="48.41"/>
-<rect fill-opacity="0.2" height="0.613" width="29.73" x="15.14" y="47.79"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="29.73" x="15.14" y="49.02"/>
-<rect fill-opacity="0.3" height="0.613" width="29.73" x="15.14" y="11.59"/>
-<path d="M15.14,12.2v36.82h29.73v-36.82h-29.73zm29.11,36.21h-28.5v-35.59h28.5v35.59z" fill-opacity="0.1"/>
-<rect fill-opacity="0.3" height="1.227" width="29.73" x="15.14" y="12.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="137.5" x2="174.5" y1="-68.01" y2="-68.01">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.5" stop-color="#222021"/>
-<stop offset="1" stop-color="#A8A9AA"/>
+<rect fill="url(#SVGID_4_)" height="19.021" width="29.726" x="15.138" y="30"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="0.613" width="29.726" x="15.138" y="30"/>
+<rect fill="#FFFFFF" fill-opacity="0.1" height="19.021" width="2.455" x="41.793" y="30"/>
+<rect fill-opacity="0.4" height="0.613" width="15.538" x="22.231" y="6.682"/>
+<rect fill-opacity="0.2" height="0.614" width="15.538" x="22.231" y="6.067"/>
+<rect fill-opacity="0.4" height="0.613" width="29.726" x="15.138" y="48.408"/>
+<rect fill-opacity="0.2" height="0.613" width="29.726" x="15.138" y="47.794"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="29.726" x="15.138" y="49.021"/>
+<rect fill-opacity="0.3" height="0.613" width="29.726" x="15.138" y="11.591"/>
+<path d="M15.138,12.204v36.815h29.726V12.204H15.138z M44.249,48.408H15.751v-35.59h28.497L44.249,48.408 L44.249,48.408z" fill-opacity="0.1"/>
+<rect fill-opacity="0.3" height="1.227" width="29.726" x="15.138" y="12.204"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -126 -15.001)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="137.4561" x2="174.5449" y1="-68.0103" y2="-68.0103">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.5" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#A8A9AA"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" fill-opacity="0.3" height="0.611" width="37.09" x="11.46" y="52.7"/>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="37.09" x="11.46" y="53.32"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="34.36" width="12.54" x="20.05" y="13.43"/>
-<path d="M31.69,41.02c-4.318,0-8.339-2.324-10.49-6.063-3.324-5.779-1.327-13.18,4.451-16.51,1.828-1.051,3.904-1.606,6.006-1.606,1.105,0,2.208,0.151,3.277,0.449,0.316,0.088,0.537,0.374,0.545,0.702,0.006,0.328-0.203,0.622-0.516,0.723-0.549,0.178-1.029,0.387-1.471,0.641-3.531,2.031-4.752,6.558-2.72,10.09,1.314,2.287,3.772,3.707,6.413,3.707,1.285,0,2.558-0.342,3.679-0.986,0.44-0.256,0.876-0.576,1.292-0.951,0.141-0.127,0.319-0.191,0.499-0.191,0.133,0,0.266,0.035,0.385,0.107,0.281,0.17,0.418,0.504,0.336,0.822-0.818,3.174-2.83,5.82-5.665,7.453-1.84,1.06-3.92,1.62-6.03,1.62z" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="31.49" x2="31.49" y1="17.1" y2="40.84">
-<stop offset="0" stop-color="#C1B682"/>
-<stop offset="0.4788" stop-color="#9F7844"/>
-<stop offset="1" stop-color="#A68C47"/>
+<rect fill="url(#SVGID_5_)" fill-opacity="0.3" height="0.611" width="37.089" x="11.456" y="52.705"/>
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.613" width="37.089" x="11.456" y="53.316"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="34.363" width="12.542" x="20.047" y="13.431"/>
+<path d="M31.69,41.021c-4.318,0-8.339-2.324-10.49-6.063c-3.324-5.779-1.327-13.185,4.451-16.51 c1.828-1.051,3.904-1.606,6.006-1.606c1.105,0,2.208,0.151,3.277,0.449c0.316,0.088,0.537,0.374,0.545,0.702 c0.006,0.328-0.203,0.622-0.516,0.723c-0.549,0.178-1.029,0.387-1.471,0.641c-3.531,2.031-4.752,6.558-2.72,10.09 c1.314,2.287,3.772,3.707,6.413,3.707c1.285,0,2.558-0.342,3.679-0.986c0.44-0.256,0.876-0.576,1.292-0.951 c0.141-0.127,0.319-0.191,0.499-0.191c0.133,0,0.266,0.035,0.385,0.107c0.281,0.17,0.418,0.504,0.336,0.822 c-0.818,3.174-2.83,5.82-5.665,7.453C35.877,40.462,33.796,41.021,31.69,41.021L31.69,41.021z" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="31.4941" x2="31.4941" y1="17.105" y2="40.8411">
+<stop offset="0" style="stop-color:#C1B682"/>
+<stop offset="0.4788" style="stop-color:#9F7844"/>
+<stop offset="1" style="stop-color:#A68C47"/>
</linearGradient>
-<path d="M41.24,32.81c-3.896,2.242-8.87,0.9-11.11-2.994-2.24-3.896-0.898-8.867,2.994-11.11,0.522-0.299,1.066-0.526,1.612-0.703-2.831-0.79-5.962-0.497-8.712,1.084-5.433,3.126-7.303,10.06-4.178,15.49,3.126,5.432,10.06,7.301,15.5,4.176,2.747-1.582,4.581-4.145,5.315-6.994-0.43,0.39-0.9,0.74-1.42,1.04z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="31.11" x2="31.11" y1="18.7" y2="41.07">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5" stop-color="#CAC184"/>
-<stop offset="1" stop-color="#BAB563"/>
+<path d="M41.237,32.812c-3.896,2.242-8.87,0.9-11.109-2.994c-2.24-3.896-0.898-8.867,2.994-11.106 c0.522-0.299,1.066-0.526,1.612-0.703c-2.831-0.79-5.962-0.497-8.712,1.084c-5.433,3.126-7.303,10.062-4.178,15.494 c3.126,5.432,10.063,7.301,15.496,4.176c2.747-1.582,4.581-4.145,5.315-6.994C42.227,32.156,41.757,32.511,41.237,32.812z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="31.1113" x2="31.1113" y1="18.7026" y2="41.0685">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#CAC184"/>
+<stop offset="1" style="stop-color:#BAB563"/>
</linearGradient>
-<path d="M31.69,39.53c-3.788,0-7.313-2.037-9.201-5.316-2.914-5.067-1.163-11.56,3.904-14.48,1.603-0.921,3.422-1.408,5.264-1.408,0.211,0,0.424,0.006,0.635,0.02-3.887,2.559-5.159,7.753-2.809,11.84,1.579,2.746,4.531,4.453,7.703,4.453,1.37,0,2.727-0.322,3.956-0.936-0.919,1.836-2.353,3.363-4.173,4.41-1.6,0.94-3.42,1.43-5.27,1.43z" fill="url(#SVGID_7_)"/>
-</svg>
\ No newline at end of file
+<path d="M31.69,39.533c-3.788,0-7.313-2.037-9.201-5.316c-2.914-5.067-1.163-11.562,3.904-14.478 c1.603-0.921,3.422-1.408,5.264-1.408c0.211,0,0.424,0.006,0.635,0.02c-3.887,2.559-5.159,7.753-2.809,11.839 c1.579,2.746,4.531,4.453,7.703,4.453c1.37,0,2.727-0.322,3.956-0.936c-0.919,1.836-2.353,3.363-4.173,4.41 C35.36,39.042,33.536,39.533,31.69,39.533L31.69,39.533z" fill="url(#SVGID_7_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_query.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_query.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,29 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.093" y2="37.93">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.7636" stop-color="#3F4A78"/>
-<stop offset="1" stop-color="#72B9C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0928" y2="37.9271">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.7636" style="stop-color:#3F4A78"/>
+<stop offset="1" style="stop-color:#72B9C3"/>
</linearGradient>
-<path d="M14.81,10.72v-7.212c4.37-1.003,8.5-1.508,12.43-1.508,5.785,0,10.22,1.121,13.31,3.364s4.635,5.532,4.635,9.873c0,2.526-0.596,4.665-1.783,6.417-1.191,1.752-9.396,9.994-10.2,11.12-0.809,1.128-1.213,2.465-1.213,4.01v1.544h-11.51v-2.06c0-2.502,0.547-4.612,1.639-6.342,1.09-1.729,2.994-3.868,5.715-6.419,2.133-1.985,4.781-6.593,4.781-7.573,0-4.436-2.674-6.655-8.018-6.655-3.02-0.005-6.28,0.474-9.79,1.435z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.559" y2="37.8">
-<stop offset="0" stop-color="#94CAC2"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M14.814,10.715V3.508C19.178,2.505,23.314,2,27.238,2c5.785,0,10.221,1.121,13.311,3.364 s4.635,5.532,4.635,9.873c0,2.526-0.596,4.665-1.783,6.417c-1.191,1.752-9.396,9.994-10.205,11.121 c-0.809,1.128-1.213,2.465-1.213,4.01v1.544h-11.51v-2.06c0-2.502,0.547-4.612,1.639-6.342c1.09-1.729,2.994-3.868,5.715-6.419 c2.133-1.985,4.781-6.593,4.781-7.573c0-4.436-2.674-6.655-8.018-6.655C21.576,9.28,18.322,9.759,14.814,10.715z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="2.5591" y2="37.7967">
+<stop offset="0" style="stop-color:#94CAC2"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M21.22,37.58v-1.31c0-2.343,0.512-4.342,1.521-5.941,1.051-1.666,2.934-3.776,5.596-6.272,2.016-1.876,5.018-6.732,5.018-8.12,0-3.378-1.521-7.405-8.768-7.405-2.695,0-5.629,0.383-8.717,1.137l-0.309,0.075v-5.64l0.197-0.043c4.018-0.872,7.879-1.314,11.48-1.314,5.596,0,9.928,1.084,12.87,3.222,2.912,2.112,4.326,5.144,4.326,9.266,0,2.359-0.557,4.376-1.654,5.996-0.646,0.95-3.703,4.159-6.158,6.737-2.273,2.389-3.68,3.872-4.035,4.367-0.898,1.254-1.354,2.75-1.354,4.447v0.794h-10.03z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="26.69" x2="26.69" y1="43.68" y2="58.18">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.7636" stop-color="#3F4A78"/>
-<stop offset="1" stop-color="#72B9C3"/>
+<path d="M21.223,37.579v-1.31c0-2.343,0.512-4.342,1.521-5.941c1.051-1.666,2.934-3.776,5.596-6.272 c2.016-1.876,5.018-6.732,5.018-8.12c0-3.378-1.521-7.405-8.768-7.405c-2.695,0-5.629,0.383-8.717,1.137l-0.309,0.075V4.107 l0.197-0.043c4.018-0.872,7.879-1.314,11.477-1.314c5.596,0,9.928,1.084,12.869,3.222c2.912,2.112,4.326,5.144,4.326,9.266 c0,2.359-0.557,4.376-1.654,5.996c-0.646,0.95-3.703,4.159-6.158,6.737c-2.273,2.389-3.68,3.872-4.035,4.367 c-0.898,1.254-1.354,2.75-1.354,4.447v0.794H21.223z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="26.6924" x2="26.6924" y1="43.6758" y2="58.1758">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.7636" style="stop-color:#3F4A78"/>
+<stop offset="1" style="stop-color:#72B9C3"/>
</linearGradient>
-<path d="M26.67,58c-1.938,0-3.602-0.686-5-2.059-1.396-1.373-2.094-3.052-2.094-5.037,0-1.962,0.693-3.641,2.076-5.038,1.385-1.397,3.059-2.095,5.018-2.095,1.961,0,3.641,0.697,5.037,2.095,1.398,1.397,2.098,3.076,2.098,5.038,0,1.985-0.699,3.664-2.098,5.037-1.41,1.37-3.09,2.06-5.05,2.06z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.69" x2="26.69" y1="44.44" y2="57.41">
-<stop offset="0" stop-color="#8DC5C2"/>
-<stop offset="0.1152" stop-color="#8DC5C2"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M26.672,58c-1.938,0-3.602-0.686-5-2.059c-1.396-1.373-2.094-3.052-2.094-5.037 c0-1.962,0.693-3.641,2.076-5.038c1.385-1.397,3.059-2.095,5.018-2.095c1.961,0,3.641,0.697,5.037,2.095 c1.398,1.397,2.098,3.076,2.098,5.038c0,1.985-0.699,3.664-2.098,5.037C30.313,57.314,28.633,58,26.672,58z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.6924" x2="26.6924" y1="44.436" y2="57.4074">
+<stop offset="0" style="stop-color:#8DC5C2"/>
+<stop offset="0.1152" style="stop-color:#8DC5C2"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M26.67,57.25c-1.748,0-3.211-0.604-4.475-1.844-1.258-1.237-1.869-2.71-1.869-4.502,0-1.771,0.607-3.245,1.859-4.511,1.248-1.26,2.715-1.872,4.484-1.872,1.771,0,3.246,0.613,4.508,1.875,1.264,1.263,1.877,2.737,1.877,4.508,0,1.792-0.613,3.265-1.873,4.503-1.27,1.24-2.75,1.84-4.52,1.84z" fill="url(#SVGID_4_)"/>
+<path d="M26.672,57.25c-1.748,0-3.211-0.604-4.475-1.844c-1.258-1.237-1.869-2.71-1.869-4.502 c0-1.771,0.607-3.245,1.859-4.511c1.248-1.26,2.715-1.872,4.484-1.872c1.771,0,3.246,0.613,4.508,1.875 c1.264,1.263,1.877,2.737,1.877,4.508c0,1.792-0.613,3.265-1.873,4.503C29.92,56.647,28.445,57.25,26.672,57.25L26.672,57.25z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_radio.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_radio.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,306 +1,308 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.65" y2="52.33">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="11.647" y2="52.3348">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
-<path d="M58,50.78c0,0.858-0.697,1.556-1.557,1.556h-52.88c-0.861-0.01-1.555-0.7-1.555-1.56v-37.34c0-0.859,0.694-1.556,1.555-1.556h52.89c0.859,0,1.557,0.696,1.557,1.556v37.33z" fill="url(#SVGID_1_)"/>
-<path d="M56.44,11.89h-52.88c-0.861,0-1.555,0.69-1.555,1.55v12.06l56-6.158v-5.897c0-0.86-0.7-1.55-1.56-1.55z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M56.44,12.67c0.428,0,0.777,0.349,0.777,0.777v37.33c0,0.428-0.35,0.778-0.777,0.778h-52.88c-0.43,0-0.778-0.351-0.778-0.778v-37.34c0-0.429,0.349-0.777,0.778-0.777h52.89m-0.003-0.78h-52.88c-0.861,0-1.555,0.69-1.555,1.55v37.33c0,0.858,0.694,1.556,1.555,1.556h52.89c0.859,0,1.557-0.697,1.557-1.556v-37.33c0-0.863-0.7-1.553-1.56-1.553z" fill="#995145"/>
-<path d="M56.44,51.56h-52.88c-0.861,0-1.555-0.7-1.555-1.56v0.777c0,0.858,0.694,1.556,1.555,1.556h52.89c0.859,0,1.557-0.697,1.557-1.556v-0.777c0,0.86-0.7,1.56-1.56,1.56z" fill="#46232D"/>
-<path d="M56.44,11.89h-52.88c-0.861,0-1.555,0.69-1.555,1.55v0.778c0-0.86,0.694-1.556,1.555-1.556h52.89c0.859,0,1.557,0.695,1.557,1.556v-0.778c0-0.86-0.7-1.55-1.56-1.55z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="45.94" x2="45.94" y1="32.64" y2="20.91">
-<stop offset="0" stop-color="#434343"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M58,50.776c0,0.858-0.697,1.556-1.557,1.556H3.555C2.694,52.332,2,51.635,2,50.776V13.443 c0-0.859,0.694-1.556,1.555-1.556h52.889c0.859,0,1.557,0.696,1.557,1.556V50.776z" fill="url(#SVGID_1_)"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v12.056l56-6.158v-5.897 C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M56.443,12.666c0.428,0,0.777,0.349,0.777,0.777v37.333c0,0.428-0.35,0.778-0.777,0.778H3.555 c-0.43,0-0.778-0.351-0.778-0.778V13.443c0-0.429,0.349-0.777,0.778-0.777H56.443 M56.443,11.888H3.555 C2.694,11.888,2,12.584,2,13.443v37.333c0,0.858,0.694,1.556,1.555,1.556h52.889c0.859,0,1.557-0.697,1.557-1.556V13.443 C58,12.584,57.303,11.888,56.443,11.888L56.443,11.888z" fill="#995145"/>
+<path d="M56.443,51.555H3.555C2.694,51.555,2,50.857,2,49.999v0.777c0,0.858,0.694,1.556,1.555,1.556h52.889 c0.859,0,1.557-0.697,1.557-1.556v-0.777C58,50.857,57.303,51.555,56.443,51.555z" fill="#46232D"/>
+<path d="M56.443,11.888H3.555C2.694,11.888,2,12.584,2,13.443v0.778c0-0.86,0.694-1.556,1.555-1.556 h52.889c0.859,0,1.557,0.695,1.557,1.556v-0.778C58,12.584,57.303,11.888,56.443,11.888z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="45.9424" x2="45.9424" y1="32.6411" y2="20.912">
+<stop offset="0" style="stop-color:#434343"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<circle cx="45.94" cy="26.61" fill="url(#SVGID_2_)" r="6.946"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="45.94" x2="45.94" y1="33.97" y2="28.64">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#404040"/>
+<circle cx="45.942" cy="26.611" fill="url(#SVGID_2_)" r="6.946"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="45.9424" x2="45.9424" y1="33.9702" y2="28.6358">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M45.94,33.56c-3.754,0-6.803-2.979-6.935-6.698-0.003,0.084-0.013,0.163-0.013,0.248,0,3.836,3.109,6.946,6.947,6.946,3.836,0,6.945-3.11,6.945-6.946,0-0.085-0.01-0.164-0.01-0.248-0.13,3.72-3.17,6.7-6.93,6.7z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.94" x2="45.94" y1="35.32" y2="17.44">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#733A43"/>
-</linearGradient>
-<path d="M45.94,35.61c-4.933,0-8.944-4.013-8.944-8.943,0-4.933,4.012-8.945,8.944-8.945s8.945,4.013,8.945,8.945c0.01,4.94-4,8.95-8.94,8.95zm0-16.72c-4.29,0-7.778,3.488-7.778,7.778,0,4.287,3.488,7.776,7.778,7.776,4.287,0,7.779-3.489,7.779-7.776,0-4.29-3.49-7.78-7.78-7.78z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="45.94" x2="45.94" y1="20.54" y2="32.75">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<path d="M45.943,33.558c-3.754,0-6.803-2.979-6.935-6.698c-0.003,0.084-0.013,0.163-0.013,0.248 c0,3.836,3.109,6.946,6.947,6.946c3.836,0,6.945-3.11,6.945-6.946c0-0.085-0.01-0.164-0.01-0.248 C52.744,30.578,49.695,33.558,45.943,33.558z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="45.9443" x2="45.9443" y1="35.3247" y2="17.436">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#733A43"/>
</linearGradient>
-<circle cx="45.94" cy="26.64" fill="url(#SVGID_5_)" r="6.104"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.94" x2="45.94" y1="20.97" y2="32.31">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.2848" stop-color="#FFFFFF"/>
-<stop offset="0.7212" stop-color="#7B7B7B"/>
-<stop offset="1" stop-color="#A7A7A7"/>
+<path d="M45.943,35.609c-4.933,0-8.944-4.013-8.944-8.943c0-4.933,4.012-8.945,8.944-8.945 s8.945,4.013,8.945,8.945C54.889,31.597,50.876,35.609,45.943,35.609L45.943,35.609z M45.943,18.888 c-4.29,0-7.778,3.488-7.778,7.778c0,4.287,3.488,7.776,7.778,7.776c4.287,0,7.779-3.489,7.779-7.776 C53.723,22.376,50.23,18.888,45.943,18.888L45.943,18.888z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="45.9434" x2="45.9434" y1="20.5371" y2="32.7461">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<circle cx="45.94" cy="26.64" fill="url(#SVGID_6_)" r="5.67"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="45.94" x2="45.94" y1="21.47" y2="31.94">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.8242" stop-color="#636363"/>
-<stop offset="1" stop-color="#636363"/>
+<circle cx="45.943" cy="26.642" fill="url(#SVGID_5_)" r="6.104"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="45.9434" x2="45.9434" y1="20.9736" y2="32.3105">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
-<path d="M50.7,24.47c0.303,0.662,0.471,1.396,0.471,2.174,0,2.889-2.342,5.233-5.232,5.233-2.888,0-5.232-2.345-5.232-5.233s2.345-5.232,5.232-5.232c2.12,0,3.94,1.25,4.76,3.06z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.94" x2="45.94" y1="25.5" y2="22.93">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="1" stop-color="#323232"/>
+<circle cx="45.943" cy="26.642" fill="url(#SVGID_6_)" r="5.67"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="45.9434" x2="45.9434" y1="21.4746" y2="31.9404">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.8242" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="44.64,25.4,45.94,22.78,47.25,25.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="20.28" x2="20.28" y1="30.68" y2="20.67">
-<stop offset="0" stop-color="#636363"/>
-<stop offset="0.6667" stop-color="#515151"/>
-<stop offset="1" stop-color="#323232"/>
+<path d="M50.705,24.468c0.303,0.662,0.471,1.396,0.471,2.174c0,2.889-2.342,5.233-5.232,5.233 c-2.888,0-5.232-2.345-5.232-5.233s2.345-5.232,5.232-5.232C48.058,21.409,49.879,22.663,50.705,24.468z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="45.9434" x2="45.9434" y1="25.4961" y2="22.9348">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="10.89" width="28" x="6.277" y="20.06"/>
-<rect fill="#D9D9D9" height="0.777" width="28" x="6.277" y="30.94"/>
-<polygon fill="#A8A9AA" points="31.94,25.5,31.94,27.83,29.61,27.83,29.61,26.28,28.83,26.28,28.83,27.83,26.5,27.83,26.5,26.28,25.72,26.28,25.72,27.83,23.39,27.83,23.39,26.28,22.61,26.28,22.61,27.83,20.28,27.83,20.28,25.5,19.5,25.5,19.5,27.83,17.17,27.83,17.17,26.28,16.39,26.28,16.39,27.83,14.06,27.83,14.06,26.28,13.28,26.28,13.28,27.83,10.94,27.83,10.94,26.28,10.16,26.28,10.16,27.83,8.609,27.83,8.609,25.5,7.833,25.5,7.833,28.61,8.609,28.61,10.16,28.61,10.94,28.61,13.28,28.61,14.06,28.61,16.39,28.61,17.17,28.61,19.5,28.61,20.28,28.61,22.61,28.61,23.39,28.61,25.72,28.61,26.5,28.61,28.83,28.61,29.61,28.61,31.94,28.61,32.72,28.61,32.72,27.83,32.72,25.5"/>
-<rect fill="#9D4349" height="10.89" width="1.556" x="20.3" y="20.06"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="9.127" x2="9.127" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<polygon fill="url(#SVGID_8_)" points="44.636,25.397 45.943,22.782 47.251,25.397 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="20.2773" x2="20.2773" y1="30.6846" y2="20.667">
+<stop offset="0" style="stop-color:#636363"/>
+<stop offset="0.6667" style="stop-color:#515151"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
-<circle cx="9.127" cy="41.83" fill="url(#SVGID_10_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.126" x2="9.126" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<rect fill="url(#SVGID_9_)" height="10.889" width="28" x="6.277" y="20.055"/>
+<rect fill="#D9D9D9" height="0.777" width="28" x="6.277" y="30.943"/>
+<polygon fill="#A8A9AA" points="31.945,25.499 31.945,27.832 29.609,27.832 29.609,26.276 28.832,26.276 28.832,27.832 26.498,27.832 26.498,26.276 25.723,26.276 25.723,27.832 23.387,27.832 23.387,26.276 22.61,26.276 22.61,27.832 20.277,27.832 20.277,25.499 19.499,25.499 19.499,27.832 17.166,27.832 17.166,26.276 16.388,26.276 16.388,27.832 14.056,27.832 14.056,26.276 13.276,26.276 13.276,27.832 10.944,27.832 10.944,26.276 10.165,26.276 10.165,27.832 8.609,27.832 8.609,25.499 7.833,25.499 7.833,28.609 8.609,28.609 10.165,28.609 10.944,28.609 13.276,28.609 14.056,28.609 16.388,28.609 17.166,28.609 19.499,28.609 20.277,28.609 22.61,28.609 23.387,28.609 25.723,28.609 26.498,28.609 28.832,28.609 29.609,28.609 31.945,28.609 32.721,28.609 32.721,27.832 32.721,25.499 "/>
+<rect fill="#9D4349" height="10.889" width="1.556" x="20.301" y="20.055"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="9.127" x2="9.127" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="9.126" cy="41.83" fill="url(#SVGID_11_)" r="1.039"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.73" x2="13.73" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="9.127" cy="41.832" fill="url(#SVGID_10_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="9.126" x2="9.126" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<path d="M15.28,41.83c0,0.858-0.693,1.556-1.556,1.556-0.857,0-1.555-0.697-1.555-1.556,0-0.861,0.697-1.556,1.555-1.556,0.87,0.01,1.56,0.7,1.56,1.56z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.73" x2="13.73" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="9.126" cy="41.832" fill="url(#SVGID_11_)" r="1.039"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.7295" x2="13.7295" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="13.73" cy="41.83" fill="url(#SVGID_13_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="18.4" x2="18.4" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M15.285,41.832c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,40.276,15.285,40.971,15.285,41.832z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="13.7295" x2="13.7295" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="18.4" cy="41.83" fill="url(#SVGID_14_)" r="1.555"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.4" x2="18.4" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="13.73" cy="41.832" fill="url(#SVGID_13_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="18.3955" x2="18.3955" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="18.4" cy="41.83" fill="url(#SVGID_15_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.06" x2="23.06" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="18.396" cy="41.832" fill="url(#SVGID_14_)" r="1.555"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="18.3955" x2="18.3955" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="23.06" cy="41.83" fill="url(#SVGID_16_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.06" x2="23.06" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="18.396" cy="41.832" fill="url(#SVGID_15_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.0615" x2="23.0615" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="23.06" cy="41.83" fill="url(#SVGID_17_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="27.73" x2="27.73" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="23.062" cy="41.832" fill="url(#SVGID_16_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.0635" x2="23.0635" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="27.73" cy="41.83" fill="url(#SVGID_18_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="27.73" x2="27.73" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="23.063" cy="41.832" fill="url(#SVGID_17_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="27.7295" x2="27.7295" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
+</linearGradient>
+<circle cx="27.729" cy="41.832" fill="url(#SVGID_18_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="27.7295" x2="27.7295" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="27.73" cy="41.83" fill="url(#SVGID_19_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="32.4" x2="32.4" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="27.729" cy="41.832" fill="url(#SVGID_19_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="32.3965" x2="32.3965" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="32.4" cy="41.83" fill="url(#SVGID_20_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="32.4" x2="32.4" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="32.396" cy="41.832" fill="url(#SVGID_20_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="32.3965" x2="32.3965" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="32.4" cy="41.83" fill="url(#SVGID_21_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="9.127" x2="9.127" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="32.396" cy="41.832" fill="url(#SVGID_21_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="9.127" x2="9.127" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="9.127" cy="46.5" fill="url(#SVGID_22_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="9.126" x2="9.126" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="9.127" cy="46.499" fill="url(#SVGID_22_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="9.126" x2="9.126" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="9.126" cy="46.5" fill="url(#SVGID_23_)" r="1.039"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="13.73" x2="13.73" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="9.126" cy="46.499" fill="url(#SVGID_23_)" r="1.039"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="13.7295" x2="13.7295" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M15.28,46.5c0,0.858-0.693,1.556-1.556,1.556-0.857,0-1.555-0.697-1.555-1.556,0-0.861,0.697-1.556,1.555-1.556,0.87,0,1.56,0.7,1.56,1.56z" fill="url(#SVGID_24_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="13.73" x2="13.73" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<path d="M15.285,46.499c0,0.858-0.693,1.556-1.556,1.556c-0.857,0-1.555-0.697-1.555-1.556 c0-0.861,0.697-1.556,1.555-1.556C14.592,44.943,15.285,45.638,15.285,46.499z" fill="url(#SVGID_24_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="13.7295" x2="13.7295" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="13.73" cy="46.5" fill="url(#SVGID_25_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="18.4" x2="18.4" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="13.73" cy="46.499" fill="url(#SVGID_25_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="18.3955" x2="18.3955" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="18.4" cy="46.5" fill="url(#SVGID_26_)" r="1.555"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="18.4" x2="18.4" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="18.396" cy="46.499" fill="url(#SVGID_26_)" r="1.555"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="18.3955" x2="18.3955" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="18.4" cy="46.5" fill="url(#SVGID_27_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="23.06" x2="23.06" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="18.396" cy="46.499" fill="url(#SVGID_27_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="23.0615" x2="23.0615" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="23.06" cy="46.5" fill="url(#SVGID_28_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="23.06" x2="23.06" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="23.062" cy="46.499" fill="url(#SVGID_28_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="23.0635" x2="23.0635" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="23.06" cy="46.5" fill="url(#SVGID_29_)" r="1.038"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="27.73" x2="27.73" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="23.063" cy="46.499" fill="url(#SVGID_29_)" r="1.038"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_30_" x1="27.7295" x2="27.7295" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="27.73" cy="46.5" fill="url(#SVGID_30_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="27.73" x2="27.73" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="27.729" cy="46.499" fill="url(#SVGID_30_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_31_" x1="27.7295" x2="27.7295" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="27.73" cy="46.5" fill="url(#SVGID_31_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="32.4" x2="32.4" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="27.729" cy="46.499" fill="url(#SVGID_31_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_32_" x1="32.3965" x2="32.3965" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="32.4" cy="46.5" fill="url(#SVGID_32_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="32.4" x2="32.4" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="32.396" cy="46.499" fill="url(#SVGID_32_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_33_" x1="32.3965" x2="32.3965" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="32.4" cy="46.5" fill="url(#SVGID_33_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="37" x2="37" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="32.396" cy="46.499" fill="url(#SVGID_33_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_34_" x1="36.999" x2="36.999" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="37" cy="41.83" fill="url(#SVGID_34_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="37" x2="37" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="36.999" cy="41.832" fill="url(#SVGID_34_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_35_" x1="36.999" x2="36.999" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="37" cy="41.83" fill="url(#SVGID_35_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="41.67" x2="41.67" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="36.999" cy="41.832" fill="url(#SVGID_35_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36_" x1="41.666" x2="41.666" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="41.67" cy="41.83" fill="url(#SVGID_36_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="41.67" x2="41.67" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="41.666" cy="41.832" fill="url(#SVGID_36_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37_" x1="41.666" x2="41.666" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="41.67" cy="41.83" fill="url(#SVGID_37_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.33" x2="46.33" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="41.666" cy="41.832" fill="url(#SVGID_37_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_38_" x1="46.333" x2="46.333" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="46.33" cy="41.83" fill="url(#SVGID_38_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="46.33" x2="46.33" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="46.333" cy="41.832" fill="url(#SVGID_38_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_39_" x1="46.333" x2="46.333" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="46.33" cy="41.83" fill="url(#SVGID_39_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="51" x2="51" y1="40.24" y2="43.36">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="46.333" cy="41.832" fill="url(#SVGID_39_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_40_" x1="50.999" x2="50.999" y1="40.2437" y2="43.355">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M52.55,41.83c0,0.858-0.691,1.556-1.553,1.556-0.858,0-1.556-0.697-1.556-1.556,0-0.861,0.697-1.556,1.556-1.556,0.86,0.01,1.55,0.7,1.55,1.56z" fill="url(#SVGID_40_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="51" x2="51" y1="40.77" y2="42.85">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<path d="M52.553,41.832c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,40.276,52.553,40.971,52.553,41.832z" fill="url(#SVGID_40_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_41_" x1="50.999" x2="50.999" y1="40.7729" y2="42.8472">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<path d="M52.04,41.83c0,0.573-0.467,1.037-1.037,1.037-0.573,0-1.039-0.464-1.039-1.037s0.466-1.037,1.039-1.037c0.57,0.01,1.04,0.47,1.04,1.04z" fill="url(#SVGID_41_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="37" x2="37" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M52.037,41.832c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,40.795,52.037,41.259,52.037,41.832z" fill="url(#SVGID_41_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_42_" x1="36.999" x2="36.999" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="37" cy="46.5" fill="url(#SVGID_42_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="37" x2="37" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="36.999" cy="46.499" fill="url(#SVGID_42_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_43_" x1="36.999" x2="36.999" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="37" cy="46.5" fill="url(#SVGID_43_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="41.67" x2="41.67" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="36.999" cy="46.499" fill="url(#SVGID_43_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_44_" x1="41.666" x2="41.666" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="41.67" cy="46.5" fill="url(#SVGID_44_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="41.67" x2="41.67" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="41.666" cy="46.499" fill="url(#SVGID_44_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_45_" x1="41.666" x2="41.666" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="41.67" cy="46.5" fill="url(#SVGID_45_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="46.33" x2="46.33" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="41.666" cy="46.499" fill="url(#SVGID_45_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_46_" x1="46.333" x2="46.333" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<circle cx="46.33" cy="46.5" fill="url(#SVGID_46_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="46.33" x2="46.33" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<circle cx="46.333" cy="46.499" fill="url(#SVGID_46_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_47_" x1="46.333" x2="46.333" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<circle cx="46.33" cy="46.5" fill="url(#SVGID_47_)" r="1.037"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="51" x2="51" y1="44.91" y2="48.02">
-<stop offset="0" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<circle cx="46.333" cy="46.499" fill="url(#SVGID_47_)" r="1.037"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48_" x1="50.999" x2="50.999" y1="44.9106" y2="48.022">
+<stop offset="0" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M52.55,46.5c0,0.858-0.691,1.556-1.553,1.556-0.858,0-1.556-0.697-1.556-1.556,0-0.861,0.697-1.556,1.556-1.556,0.86,0,1.55,0.7,1.55,1.56z" fill="url(#SVGID_48_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="51" x2="51" y1="45.44" y2="47.51">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#383838"/>
+<path d="M52.553,46.499c0,0.858-0.691,1.556-1.553,1.556c-0.858,0-1.556-0.697-1.556-1.556 c0-0.861,0.697-1.556,1.556-1.556C51.861,44.943,52.553,45.638,52.553,46.499z" fill="url(#SVGID_48_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49_" x1="50.999" x2="50.999" y1="45.4399" y2="47.5142">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#383838"/>
</linearGradient>
-<path d="M52.04,46.5c0,0.573-0.467,1.037-1.037,1.037-0.573,0-1.039-0.464-1.039-1.037s0.466-1.037,1.039-1.037c0.57,0,1.04,0.47,1.04,1.04z" fill="url(#SVGID_49_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.83" x2="49.83" y1="11.59" y2="6.285">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<path d="M52.037,46.499c0,0.573-0.467,1.037-1.037,1.037c-0.573,0-1.039-0.464-1.039-1.037 s0.466-1.037,1.039-1.037C51.57,45.462,52.037,45.926,52.037,46.499z" fill="url(#SVGID_49_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_50_" x1="49.833" x2="49.833" y1="11.5854" y2="6.285">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<rect fill="url(#SVGID_50_)" height="5.443" width="6.999" x="46.33" y="6.444"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="37.39" x2="37.39" y1="10.16" y2="7.13">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<rect fill="url(#SVGID_50_)" height="5.443" width="6.999" x="46.333" y="6.444"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_51_" x1="37.3877" x2="37.3877" y1="10.1592" y2="7.1295">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<rect fill="url(#SVGID_51_)" height="3.111" width="17.89" x="28.44" y="7.221"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="19.11" x2="19.11" y1="9.468" y2="7.953">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<rect fill="url(#SVGID_51_)" height="3.111" width="17.89" x="28.443" y="7.221"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_52_" x1="19.1104" x2="19.1104" y1="9.4683" y2="7.9534">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<rect fill="url(#SVGID_52_)" height="1.556" width="18.67" x="9.777" y="7.999"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="8.61" x2="8.61" y1="10.16" y2="7.13">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="0.1576" stop-color="#808080"/>
-<stop offset="0.6545" stop-color="#E5E5E5"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<rect fill="url(#SVGID_52_)" height="1.556" width="18.666" x="9.777" y="7.999"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_53_" x1="8.6104" x2="8.6104" y1="10.1592" y2="7.1295">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="0.1576" style="stop-color:#808080"/>
+<stop offset="0.6545" style="stop-color:#E5E5E5"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_53_)" height="3.111" width="2.334" x="7.443" y="7.221"/>
-<path d="M49.83,11.5c-1.285,0-2.333-1.047-2.333-2.332,0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334c0.01,1.282-1.04,2.332-2.33,2.332z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<circle cx="49.83" cy="9.166" fill-opacity="0.2" r="1.944" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="49.83" x2="49.83" y1="8.032" y2="10.3">
-<stop offset="0" stop-color="#E5E5E5"/>
-<stop offset="0.7576" stop-color="#A7A7A7"/>
-<stop offset="1" stop-color="#CBCBCB"/>
+<path d="M49.832,11.498c-1.285,0-2.333-1.047-2.333-2.332c0-1.288,1.048-2.334,2.333-2.334s2.334,1.046,2.334,2.334 C52.166,10.451,51.117,11.498,49.832,11.498L49.832,11.498z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<circle cx="49.833" cy="9.166" fill-opacity="0.2" r="1.944" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_54_" x1="49.8311" x2="49.8311" y1="8.0317" y2="10.2999">
+<stop offset="0" style="stop-color:#E5E5E5"/>
+<stop offset="0.7576" style="stop-color:#A7A7A7"/>
+<stop offset="1" style="stop-color:#CBCBCB"/>
</linearGradient>
-<circle cx="49.83" cy="9.166" fill="url(#SVGID_54_)" r="1.556"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="49.83" x2="49.83" y1="7.659" y2="10.67">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.2848" stop-color="#FFFFFF"/>
-<stop offset="0.7212" stop-color="#7B7B7B"/>
-<stop offset="1" stop-color="#A7A7A7"/>
+<circle cx="49.831" cy="9.166" fill="url(#SVGID_54_)" r="1.556"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_55_" x1="49.8311" x2="49.8311" y1="7.6592" y2="10.6737">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.2848" style="stop-color:#FFFFFF"/>
+<stop offset="0.7212" style="stop-color:#7B7B7B"/>
+<stop offset="1" style="stop-color:#A7A7A7"/>
</linearGradient>
-<path d="M49.83,7.999c0.65,0,1.17,0.522,1.17,1.167,0,0.643-0.525,1.166-1.168,1.166s-1.166-0.523-1.166-1.166c0.01-0.643,0.53-1.165,1.17-1.165m0-0.389c-0.859,0-1.557,0.694-1.557,1.556,0,0.858,0.697,1.556,1.557,1.556,0.857,0,1.555-0.697,1.555-1.556,0.01-0.859-0.69-1.554-1.55-1.554z" fill="url(#SVGID_55_)"/>
+<path d="M49.832,7.999C50.475,7.999,51,8.521,51,9.166c0,0.643-0.525,1.166-1.168,1.166 s-1.166-0.523-1.166-1.166C48.666,8.521,49.189,7.999,49.832,7.999 M49.832,7.61c-0.859,0-1.557,0.694-1.557,1.556 c0,0.858,0.697,1.556,1.557,1.556c0.857,0,1.555-0.697,1.555-1.556C51.387,8.305,50.689,7.61,49.832,7.61L49.832,7.61z" fill="url(#SVGID_55_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_received_voice_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_received_voice_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<g>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2204.0161)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6116.6025" x2="6116.4023" y1="4426.6328" y2="4519.0361">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.73" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_1_)" points="6.052,34.437 26.636,55.941 47.556,34.437 36.274,34.437 36.274,9.834 17.095,9.832 17.095,34.437 "/>
+<line fill="none" x1="36.274" x2="17.095" y1="9.842" y2="9.84"/>
+<polygon fill="#E4EACE" points="17.095,9.34 36.274,9.342 36.274,10.342 17.095,10.34 "/>
+<polygon fill="#E4EACE" fill-opacity="0.5" points="36.274,34.437 48.054,34.437 47.175,35.461 36.274,35.461 " stroke-opacity="0.5"/>
+<polygon fill="#E4EACE" fill-opacity="0.5" points="5.397,34.437 17.075,34.437 17.075,35.461 6.453,35.461 " stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2204.0161)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6153.1982" x2="6077.7983" y1="4499.1309" y2="4499.1309">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<polygon fill="url(#SVGID_2_)" points="46.896,34.437 26.636,55.219 6.604,34.437 5.214,34.437 26.636,56.66 48.296,34.437 "/>
<rect fill="none" height="60" width="60"/>
-<polygon fill="none" points="30.1,0,0.096,0,0.096,14.83,0,14.83,0.096,14.93,0.096,30,14.6,30,15.02,30.44,15.45,30,30.1,30,30.1,14.96,30.22,14.84,30.1,14.84"/>
-<polygon fill-opacity="0.35" points="0,14.83,3.596,14.83,3.625,14.86,8.375,14.86,8.375,0,21.73,0.001,21.73,14.84,30.22,14.84,15.02,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2985" y2="2957">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="2.846,15.86,15.02,28.58,27.4,15.84,20.73,15.84,20.73,1.292,9.375,1.291,9.375,15.86"/>
-<line fill="none" x1="20.73" x2="9.375" y1="1.297" y2="1.296"/>
-<polygon fill="#E4EACE" points="9.375,1,20.73,1.001,20.73,1.593,9.375,1.592"/>
-<polygon fill="#E4EACE" points="20.56,15.87,27.53,15.87,27,16.46,20.56,16.46"/>
-<polygon fill="#E4EACE" points="2.459,15.86,9.365,15.86,9.365,16.45,3.08,16.45"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2166" x2="-2188" y1="2963" y2="2963">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="27.02,15.84,15.02,28.15,3.172,15.83,2.348,15.83,15.02,29,27.84,15.84"/>
-<rect fill="none" height="30" width="30" x="0.096"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_reset.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_reset.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,143 +1,151 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="49.85" y2="54.1">
-<stop offset="0" stop-color="#E4E0C1"/>
-<stop offset="1" stop-color="#B39C4D"/>
-</linearGradient>
-<rect fill="url(#SVGID_1_)" height="4.254" width="56" x="2" y="49.85"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.79" x2="13.59" y1="18.22" y2="18.22">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
+<g>
+<g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="49.8477" y2="54.1016">
+<stop offset="0" style="stop-color:#E4E0C1"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</linearGradient>
-<path d="M14.52,30c0,0.301-0.243,0.545-0.544,0.545h-7.626c-0.301,0-0.544-0.244-0.544-0.545l1.634-23.56c0-0.301,0.243-0.545,0.544-0.545h4.356c0.301,0,0.545,0.244,0.545,0.545l1.64,23.56z" fill="url(#SVGID_2_)"/>
-<rect fill="#FFFFFF" fill-opacity="0.5" height="0.709" stroke-opacity="0.5" width="56" x="2" y="49.85"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="18.81" y2="49.38">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<rect fill="url(#SVGID_1_)" height="4.254" width="56" x="2" y="49.848"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6.7896" x2="13.5899" y1="18.2217" y2="18.2217">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3152" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#9A9C9C"/>
+<stop offset="1" style="stop-color:#C8CAC9"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="47.37,18.54,17.6,18.54,17.6,28.54,3.418,28.54,3.418,49.85,56.58,49.85,56.58,27.16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10.51" x2="10.51" y1="30.71" y2="27.43">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<path d="M14.522,30c0,0.301-0.243,0.545-0.544,0.545H6.354c-0.301,0-0.544-0.244-0.544-0.545L7.444,6.443 c0-0.301,0.243-0.545,0.544-0.545h4.356c0.301,0,0.545,0.244,0.545,0.545L14.522,30z" fill="url(#SVGID_2_)"/>
+<rect fill="#FFFFFF" fill-opacity="0.5" height="0.709" stroke-opacity="0.5" width="56" x="2" y="49.848"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.9995" x2="29.9995" y1="18.8145" y2="49.3814">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="2.836" width="14.18" x="3.418" y="27.83"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="44.18" y2="49.14">
-<stop offset="0" stop-color="#7E675C"/>
-<stop offset="1" stop-color="#583636"/>
+<polygon fill="url(#SVGID_3_)" points="47.367,18.536 17.595,18.536 17.595,28.538 3.418,28.538 3.418,49.848 56.582,49.848 56.582,27.164 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10.5063" x2="10.5063" y1="30.7095" y2="27.4292">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
+</linearGradient>
+<rect fill="url(#SVGID_4_)" height="2.836" width="14.177" x="3.418" y="27.829"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="44.1777" y2="49.1389">
+<stop offset="0" style="stop-color:#7E675C"/>
+<stop offset="1" style="stop-color:#583636"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="5.67" width="53.16" x="3.418" y="44.18"/>
-<rect fill-opacity="0.4" height="0.709" stroke-opacity="0.4" width="53.16" x="3.418" y="49.14"/>
-<rect fill-opacity="0.2" height="0.709" stroke-opacity="0.2" width="53.16" x="3.418" y="48.43"/>
-<rect fill="#E6E6E6" height="0.709" width="53.16" x="3.418" y="44.18"/>
-<rect fill="#705950" fill-opacity="0.4" height="0.709" stroke-opacity="0.4" width="56" x="2" y="53.39"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.28" x2="12.28" y1="49.95" y2="35.3">
-<stop offset="0" stop-color="#684E48"/>
-<stop offset="1" stop-color="#43292B"/>
+<rect fill="url(#SVGID_5_)" height="5.67" width="53.164" x="3.418" y="44.178"/>
+<rect fill-opacity="0.4" height="0.709" stroke-opacity="0.4" width="53.164" x="3.418" y="49.139"/>
+<rect fill-opacity="0.2" height="0.709" stroke-opacity="0.2" width="53.164" x="3.418" y="48.43"/>
+<rect fill="#E6E6E6" height="0.709" width="53.164" x="3.418" y="44.178"/>
+<rect fill="#705950" fill-opacity="0.4" height="0.709" stroke-opacity="0.4" width="56" x="2" y="53.393"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.2778" x2="12.2778" y1="49.9531" y2="35.3014">
+<stop offset="0" style="stop-color:#684E48"/>
+<stop offset="1" style="stop-color:#43292B"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="14.89" width="10.63" x="6.961" y="34.96"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="12.28" x2="12.28" y1="35.57" y2="49.52">
-<stop offset="0" stop-color="#BAA287"/>
-<stop offset="1" stop-color="#70504A"/>
+<rect fill="url(#SVGID_6_)" height="14.887" width="10.634" x="6.961" y="34.961"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="12.2778" x2="12.2778" y1="35.5713" y2="49.5233">
+<stop offset="0" style="stop-color:#BAA287"/>
+<stop offset="1" style="stop-color:#70504A"/>
+</linearGradient>
+<rect fill="url(#SVGID_7_)" height="14.176" width="9.216" x="7.67" y="35.672"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.2778" x2="12.2778" y1="36.2832" y2="49.5394">
+<stop offset="0" style="stop-color:#7E675C"/>
+<stop offset="1" style="stop-color:#583636"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="14.18" width="9.216" x="7.67" y="35.67"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="12.28" x2="12.28" y1="36.28" y2="49.54">
-<stop offset="0" stop-color="#7E675C"/>
-<stop offset="1" stop-color="#583636"/>
+<rect fill="url(#SVGID_8_)" height="13.469" width="7.798" x="8.379" y="36.379"/>
+<rect fill-opacity="0.2" height="4.252" stroke-opacity="0.2" width="2.836" x="13.234" y="40.988"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.6523" x2="14.6523" y1="41.6748" y2="44.466">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="13.47" width="7.798" x="8.379" y="36.38"/>
-<rect fill-opacity="0.2" height="4.252" stroke-opacity="0.2" width="2.836" x="13.23" y="40.99"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.65" x2="14.65" y1="41.67" y2="44.47">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<rect fill="url(#SVGID_9_)" height="2.836" width="1.418" x="13.943" y="41.695"/>
+<g>
+<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.215" x="21.375" y="26.545"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="25.9824" x2="25.9824" y1="31.5059" y2="27.2524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C9C9"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2.836" width="1.418" x="13.94" y="41.7"/>
-<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.215" x="21.38" y="26.54"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="25.98" x2="25.98" y1="31.51" y2="27.25">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C9C9"/>
-</linearGradient>
-<rect fill="url(#SVGID_10_)" height="4.254" width="7.797" x="22.08" y="27.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.98" x2="25.98" y1="27.96" y2="30.8">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_10_)" height="4.254" width="7.797" x="22.084" y="27.252"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="25.9824" x2="25.9824" y1="27.9629" y2="30.7969">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="2.834" width="6.379" x="22.79" y="27.96"/>
-<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.215" x="31.3" y="26.54"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.91" x2="35.91" y1="31.51" y2="27.25">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C9C9"/>
+<rect fill="url(#SVGID_11_)" height="2.834" width="6.379" x="22.793" y="27.963"/>
+<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.215" x="31.299" y="26.545"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="35.9063" x2="35.9063" y1="31.5059" y2="27.2524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C9C9"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="4.254" width="7.797" x="32.01" y="27.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.91" x2="35.91" y1="27.96" y2="30.8">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_12_)" height="4.254" width="7.797" x="32.008" y="27.252"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="35.9063" x2="35.9063" y1="27.9629" y2="30.7969">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
+</linearGradient>
+<rect fill="url(#SVGID_13_)" height="2.834" width="6.38" x="32.717" y="27.963"/>
+<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.215" x="21.375" y="34.342"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="25.9824" x2="25.9824" y1="39.3027" y2="35.0508">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C9C9"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="2.834" width="6.38" x="32.72" y="27.96"/>
-<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.215" x="21.38" y="34.34"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="25.98" x2="25.98" y1="39.3" y2="35.05">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C9C9"/>
+<rect fill="url(#SVGID_14_)" height="4.252" width="7.797" x="22.084" y="35.051"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.9824" x2="25.9824" y1="35.7598" y2="38.5957">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="4.252" width="7.797" x="22.08" y="35.05"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.98" x2="25.98" y1="35.76" y2="38.6">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_15_)" height="2.836" width="6.379" x="22.793" y="35.76"/>
+<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.215" x="31.299" y="34.342"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="35.9063" x2="35.9063" y1="39.3027" y2="35.0508">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C9C9"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="2.836" width="6.379" x="22.79" y="35.76"/>
-<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.215" x="31.3" y="34.34"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="35.91" x2="35.91" y1="39.3" y2="35.05">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C9C9"/>
+<rect fill="url(#SVGID_16_)" height="4.252" width="7.797" x="32.008" y="35.051"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="35.9063" x2="35.9063" y1="35.7598" y2="38.5957">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" height="4.252" width="7.797" x="32.01" y="35.05"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="35.91" x2="35.91" y1="35.76" y2="38.6">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_17_)" height="2.836" width="6.38" x="32.717" y="35.76"/>
+<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.216" x="41.223" y="26.545"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="45.8301" x2="45.8301" y1="31.5059" y2="27.2524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C9C9"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" height="2.836" width="6.38" x="32.72" y="35.76"/>
-<rect fill-opacity="0.2" height="5.67" stroke-opacity="0.2" width="9.216" x="41.22" y="26.54"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="45.83" x2="45.83" y1="31.51" y2="27.25">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C9C9"/>
-</linearGradient>
-<rect fill="url(#SVGID_18_)" height="4.254" width="7.798" x="41.93" y="27.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="45.83" x2="45.83" y1="27.96" y2="30.8">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_18_)" height="4.254" width="7.798" x="41.932" y="27.252"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="45.8301" x2="45.8301" y1="27.9629" y2="30.7969">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_19_)" height="2.834" width="6.38" x="42.64" y="27.96"/>
-<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.216" x="41.22" y="34.34"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="45.83" x2="45.83" y1="39.3" y2="35.05">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C9C9"/>
+<rect fill="url(#SVGID_19_)" height="2.834" width="6.38" x="42.641" y="27.963"/>
+<rect fill-opacity="0.2" height="5.672" stroke-opacity="0.2" width="9.216" x="41.223" y="34.342"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="45.8301" x2="45.8301" y1="39.3027" y2="35.0508">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C9C9"/>
</linearGradient>
-<rect fill="url(#SVGID_20_)" height="4.252" width="7.798" x="41.93" y="35.05"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="45.83" x2="45.83" y1="35.76" y2="38.6">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#3B3B3B"/>
+<rect fill="url(#SVGID_20_)" height="4.252" width="7.798" x="41.932" y="35.051"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="45.8301" x2="45.8301" y1="35.7598" y2="38.5957">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#3B3B3B"/>
</linearGradient>
-<rect fill="url(#SVGID_21_)" height="2.836" width="6.38" x="42.64" y="35.76"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="6.351" x2="13.98" y1="17.95" y2="17.95">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_21_)" height="2.836" width="6.38" x="42.641" y="35.76"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="6.3506" x2="13.9824" y1="17.9492" y2="17.9492">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_22_)" points="6.941,13.7,6.351,22.2,13.98,22.2,13.39,13.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="51.26" x2="52.74" y1="24.33" y2="22.74">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="0.5091" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<polygon fill="url(#SVGID_22_)" points="6.941,13.695 6.351,22.203 13.982,22.203 13.393,13.695 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="51.2598" x2="52.737" y1="24.3311" y2="22.7358">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="0.5091" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
-<polygon fill="url(#SVGID_23_)" points="47.37,17.83,47.37,20.66,56.58,29.29,56.58,26.46"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="32.48" x2="32.48" y1="20.55" y2="17.82">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<polygon fill="url(#SVGID_23_)" points="47.367,17.827 47.367,20.663 56.582,29.291 56.582,26.455 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="32.4805" x2="32.4805" y1="20.5488" y2="17.8204">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
-<rect fill="url(#SVGID_24_)" height="2.836" width="29.77" x="17.6" y="17.83"/>
+<rect fill="url(#SVGID_24_)" height="2.836" width="29.772" x="17.595" y="17.827"/>
+</g>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ring_tone.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_ring_tone.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,141 +1,143 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="24.73,0,23.61,0.487,0,0.487,0,30.49,30,30.49,30,0.487,24.93,0.487"/>
-<path d="M7.991,30.32c-3.295,0-5.976-1.69-6.668-4.205-0.366-1.331-0.159-2.734,0.6-4.06,1.063-1.86,3.062-3.301,5.478-3.952,0.873-0.235,1.762-0.355,2.639-0.355,0.927,0,1.816,0.133,2.635,0.389v-12.9l12.05-5.247,1.526,3.717,0.018-0.007,0.389,0.963,0.609,1.563-10.56,4.318c0.008,2.6,0.003,5.635-0.001,8.204-0.003,2.014-0.006,3.74-0.002,4.745,0.016,2.839-2.473,5.497-6.049,6.463-0.899,0.24-1.795,0.36-2.679,0.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2180" x2="-2180" y1="2903" y2="2880">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<polygon fill="none" points="24.728,0 23.608,0.487 0,0.487 0,30.487 30,30.487 30,0.487 24.928,0.487 "/>
+<path d="M7.991,30.324c-3.295,0-5.976-1.69-6.668-4.205c-0.366-1.331-0.159-2.734,0.6-4.06 c1.063-1.86,3.062-3.301,5.478-3.952c0.873-0.235,1.762-0.355,2.639-0.355c0.927,0,1.816,0.133,2.635,0.389V5.247L24.728,0 l1.526,3.717l0.018-0.007l0.389,0.963l0.609,1.563l-10.565,4.318c0.008,2.6,0.003,5.635-0.001,8.204 c-0.003,2.014-0.006,3.74-0.002,4.745c0.016,2.839-2.473,5.497-6.049,6.463C9.771,30.203,8.875,30.324,7.991,30.324L7.991,30.324z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179.9351" x2="-2179.9351" y1="2902.811" y2="2880.1646">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M25.98,5.682l-1.79-4.357-10.29,4.577,0.016,13.9c-1.574-1.029-3.896-1.366-6.257-0.729-3.722,1.003-6.127,4.041-5.374,6.78,0.756,2.742,4.383,4.15,8.104,3.146,3.146-0.849,5.324-3.094,5.311-5.493-0.01-2.399,0.02-8.913,0-13.62l10.28-4.208z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1202" x2="-1202" y1="3393" y2="3404">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M25.98,5.682l-1.79-4.357L13.902,5.902l0.016,13.899c-1.574-1.029-3.896-1.366-6.257-0.729 c-3.722,1.003-6.127,4.041-5.374,6.78c0.756,2.742,4.383,4.15,8.104,3.146c3.146-0.849,5.324-3.094,5.311-5.493 c-0.01-2.399,0.02-8.913,0-13.625L25.98,5.682z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-1201.8184" x2="-1201.8184" y1="3393.1226" y2="3404.4397">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="13.92,17.41,13.91,5.902,13.9,5.902,13.92,17.41"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1188" x2="-1188" y1="3393" y2="3404">
-<stop offset="0" stop-color="#A6C87E"/>
-<stop offset="1" stop-color="#1C3533"/>
+<polygon fill="url(#SVGID_2__)" points="13.918,17.409 13.907,5.902 13.902,5.902 13.916,17.408 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 614.8193 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-1187.957" x2="-1187.957" y1="3393.1177" y2="3404.4392">
+<stop offset="0" style="stop-color:#A6C87E"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<path d="M15.7,9.169c0.005,0.759,0.006-0.117,0.008,0.711l10.27-4.198-0.252-0.646-10.03,4.133z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188" x2="-1188" y1="3402" y2="3430">
-<stop offset="0" stop-color="#BCD39A"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M15.701,9.169c0.005,0.759,0.006-0.117,0.008,0.711L25.98,5.682l-0.252-0.646L15.701,9.169z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(0.5 -0.0026 0.0026 0.5 604.1579 -1699.019)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="-1188.0039" x2="-1188.0039" y1="3402.1909" y2="3430.4734">
+<stop offset="0" style="stop-color:#BCD39A"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_4__)" points="14.07,20.2,14.07,6.3,24.39,1.807,24.19,1.324,13.67,5.902,13.67,19.8"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185" x2="-2185" y1="2888" y2="2880">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_4__)" points="14.072,20.2 14.072,6.3 24.389,1.807 24.19,1.324 13.674,5.902 13.674,19.803 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="-2185.0737" x2="-2185.0737" y1="2887.9233" y2="2879.6807">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<path d="M7.96,28.53c-2.474,0.012-4.447-1.129-4.909-2.839-0.28-1.039,0.018-2.187,0.84-3.229,0.9-1.141,2.291-2.007,3.923-2.436,0.688-0.184,1.385-0.277,2.075-0.281,2.474-0.013,4.445,1.129,4.91,2.84,0.615,2.267-1.522,4.807-4.764,5.664-0.693,0.19-1.393,0.28-2.08,0.29z" fill="url(#SVGID_5__)"/>
+<path d="M7.96,28.527c-2.474,0.012-4.447-1.129-4.909-2.839c-0.28-1.039,0.018-2.187,0.84-3.229 c0.9-1.141,2.291-2.007,3.923-2.436c0.688-0.184,1.385-0.277,2.075-0.281c2.474-0.013,4.445,1.129,4.91,2.84 c0.615,2.267-1.522,4.807-4.764,5.664C9.347,28.43,8.647,28.522,7.96,28.527L7.96,28.527z" fill="url(#SVGID_5__)"/>
<rect fill="none" height="30" width="30" y="0.487"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sat.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sat.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,110 +1,112 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.999" y2="57.91">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.8182" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#7D7E7F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="1.999" y2="57.9139">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.8182" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#7D7E7F"/>
</linearGradient>
-<path d="M8.957,58c-1.365,0-2.473-1.108-2.473-2.473v-51.06c0-1.364,1.107-2.473,2.473-2.473h30.8c1.115,0,2.607,0.619,3.396,1.406l8.951,8.95c0.789,0.79,1.408,2.281,1.408,3.396v39.77c0,1.364-1.111,2.473-2.473,2.473h-42.09z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.265" y2="56.73">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
-</linearGradient>
-<path d="M51.04,56.67h-42.08c-0.633,0-1.146-0.513-1.146-1.147v-51.05c0-0.629,0.514-1.145,1.146-1.145h30.8c0.766,0,1.912,0.477,2.459,1.021l8.953,8.948c0.543,0.546,1.018,1.693,1.018,2.459v39.77c0,0.64-0.51,1.15-1.15,1.15z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.653" y2="55.35">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M8.957,57.999c-1.365,0-2.473-1.108-2.473-2.473V4.472c0-1.364,1.107-2.473,2.473-2.473h30.801 c1.115,0,2.607,0.619,3.396,1.406l8.951,8.95c0.789,0.79,1.408,2.281,1.408,3.396v39.774c0,1.364-1.111,2.473-2.473,2.473H8.957z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.2646" y2="56.7327">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<path d="M50.86,55.35h-41.72v-50.7h30.62c0.412,0,1.227,0.336,1.521,0.629l8.957,8.95c0.289,0.293,0.627,1.105,0.627,1.52v39.6l-0.01,0.002z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.37" x2="27.37" y1="51.11" y2="24.53">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M51.041,56.674H8.957c-0.633,0-1.146-0.513-1.146-1.147V4.469c0-0.629,0.514-1.145,1.146-1.145 h30.801c0.766,0,1.912,0.477,2.459,1.021l8.953,8.948c0.543,0.546,1.018,1.693,1.018,2.459v39.774 C52.188,56.161,51.676,56.674,51.041,56.674L51.041,56.674z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.6533" y2="55.3477">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+</linearGradient>
+<path d="M50.863,55.348H9.137V4.653h30.621c0.412,0,1.227,0.336,1.521,0.629l8.957,8.95 c0.289,0.293,0.627,1.105,0.627,1.52V55.348L50.863,55.348z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.3711" x2="27.3711" y1="51.1084" y2="24.5269">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="26.78" width="31.23" x="11.76" y="24.43"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.326" stroke-opacity="0.4" width="31.23" x="11.76" y="51.21"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.22" x2="16.22" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_4_)" height="26.784" width="31.227" x="11.758" y="24.426"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.326" stroke-opacity="0.4" width="31.227" x="11.758" y="51.21"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.2236" x2="16.2236" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="7.305" width="5.682" x="13.38" y="42.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.19" x2="30.19" y1="25.98" y2="48.93">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_5_)" height="7.305" width="5.682" x="13.383" y="42.197"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.1895" x2="30.1895" y1="25.9839" y2="48.9336">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="7.304" width="5.254" x="27.56" y="25.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23.31" x2="23.31" y1="25.98" y2="48.93">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_6_)" height="7.304" width="5.254" x="27.563" y="25.967"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23.3125" x2="23.3125" y1="25.9839" y2="48.9336">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="7.304" width="5.254" x="20.69" y="25.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="37.88" x2="37.88" y1="25.98" y2="48.93">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_7_)" height="7.304" width="5.254" x="20.686" y="25.967"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="37.8779" x2="37.8779" y1="25.9839" y2="48.9336">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="7.304" width="6.877" x="34.44" y="25.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.19" x2="30.19" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_8_)" height="7.304" width="6.877" x="34.439" y="25.967"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.1895" x2="30.1895" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="7.305" width="5.254" x="27.56" y="42.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="23.31" x2="23.31" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_9_)" height="7.305" width="5.254" x="27.563" y="42.197"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="23.3125" x2="23.3125" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="7.305" width="5.254" x="20.69" y="42.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27.35" x2="27.35" y1="25.98" y2="48.89">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_10_)" height="7.305" width="5.254" x="20.686" y="42.197"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27.3496" x2="27.3496" y1="25.9839" y2="48.8929">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<polygon fill="url(#SVGID_11_)" points="18.98,34.89,18.98,25.97,13.38,25.97,13.38,40.57,41.32,40.57,41.32,34.89"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="37.88" x2="37.88" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<polygon fill="url(#SVGID_11_)" points="18.975,34.894 18.975,25.967 13.383,25.967 13.383,40.574 41.316,40.574 41.316,34.894 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="37.8779" x2="37.8779" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="7.305" width="6.877" x="34.44" y="42.2"/>
+<rect fill="url(#SVGID_12_)" height="7.305" width="6.877" x="34.439" y="42.197"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15,0-8.271,6.729-15,15-15s15,6.729,15,15c0,8.27-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M15.16,10.7c0.525,0,0.947-0.13,1.264-0.39,0.316-0.259,0.474-0.615,0.474-1.07,0-0.44-0.164-0.795-0.49-1.061-0.326-0.264-0.741-0.398-1.248-0.398-0.531,0-0.951,0.132-1.261,0.395-0.311,0.262-0.465,0.617-0.465,1.064,0,0.455,0.159,0.812,0.474,1.07,0.33,0.26,0.75,0.39,1.27,0.39z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M15.16,10.37c0.525,0,0.947-0.129,1.264-0.389,0.316-0.26,0.474-0.615,0.474-1.07,0-0.441-0.164-0.795-0.49-1.061s-0.741-0.398-1.248-0.398c-0.531,0-0.951,0.13-1.261,0.394-0.311,0.263-0.465,0.616-0.465,1.064,0,0.455,0.159,0.812,0.474,1.07,0.33,0.26,0.75,0.39,1.27,0.39z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="-2179" cy="3345" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M15,30C6.729,30,0,23.271,0,15C0,6.729,6.729,0,15,0s15,6.729,15,15C30,23.271,23.271,30,15,30L15,30z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.159,10.697c0.525,0,0.947-0.13,1.264-0.39 c0.316-0.259,0.474-0.615,0.474-1.07c0-0.44-0.164-0.795-0.49-1.061c-0.326-0.264-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.132-1.261,0.395c-0.311,0.262-0.465,0.617-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.567,14.641,10.697,15.159,10.697z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.159,10.369c0.525,0,0.947-0.129,1.264-0.389 c0.316-0.26,0.474-0.615,0.474-1.07c0-0.441-0.164-0.795-0.49-1.061c-0.326-0.266-0.741-0.398-1.248-0.398 c-0.531,0-0.951,0.13-1.261,0.394c-0.311,0.263-0.465,0.616-0.465,1.064c0,0.455,0.159,0.812,0.474,1.07 C14.224,10.24,14.641,10.369,15.159,10.369z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="-2178.8628" cy="3345.4287" gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="26.49">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</radialGradient>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1__)"/>
-<polygon fill-opacity="0.1" points="12.46,13.85,13.56,13.85,13.56,23.32,16.74,23.32,16.74,12.03,12.46,12.03" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.2" points="12.46,13.52,13.56,13.52,13.56,22.99,16.74,22.99,16.74,11.7,12.46,11.7" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179" x2="-2179" y1="3340" y2="3325">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1c7.721,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill="url(#SVGID_1__)"/>
+<polygon fill-opacity="0.1" points="12.46,13.847 13.555,13.847 13.555,23.318 16.741,23.318 16.741,12.032 12.46,12.032 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.2" points="12.46,13.519 13.555,13.519 13.555,22.99 16.741,22.99 16.741,11.704 12.46,11.704 " stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.3994" x2="-2179.3994" y1="3340.2148" y2="3324.8184">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="12.46,13.19,13.56,13.19,13.56,22.66,16.74,22.66,16.74,11.38,12.46,11.38"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2179" x2="-2179" y1="3340" y2="3325">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<polygon fill="url(#SVGID_2__)" points="12.46,13.191 13.555,13.191 13.555,22.663 16.741,22.663 16.741,11.377 12.46,11.377 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="-2178.8477" x2="-2178.8477" y1="3340.2158" y2="3324.8235">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M15.15,10.2c0.524,0,0.945-0.129,1.262-0.389,0.316-0.259,0.475-0.615,0.475-1.07,0-0.441-0.163-0.795-0.489-1.061-0.327-0.264-0.743-0.397-1.248-0.397-0.531,0-0.952,0.131-1.262,0.394-0.312,0.262-0.466,0.617-0.466,1.064,0,0.455,0.159,0.812,0.477,1.07,0.32,0.269,0.74,0.389,1.26,0.389z" fill="url(#SVGID_3__)"/>
+<path d="M15.148,10.205c0.524,0,0.945-0.129,1.262-0.389c0.316-0.259,0.475-0.615,0.475-1.07 c0-0.441-0.163-0.795-0.489-1.061c-0.327-0.264-0.743-0.397-1.248-0.397c-0.531,0-0.952,0.131-1.262,0.394 c-0.312,0.262-0.466,0.617-0.466,1.064c0,0.455,0.159,0.812,0.477,1.07C14.212,10.076,14.63,10.205,15.148,10.205z" fill="url(#SVGID_3__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_search.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_search.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.4471 0.4471 4918.8623 1940.7473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4812" x2="4805" y1="3354" y2="3354">
-<stop offset="0" stop-color="#292929"/>
-<stop offset="0.3455" stop-color="#8C8C8C"/>
-<stop offset="0.7" stop-color="#171717"/>
-<stop offset="1" stop-color="#646464"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.4471 0.4471 4918.8623 1940.7473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4811.7705" x2="4804.6846" y1="3354.4326" y2="3354.4326">
+<stop offset="0" style="stop-color:#292929"/>
+<stop offset="0.3455" style="stop-color:#8C8C8C"/>
+<stop offset="0.7" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="17.73,47.07,12.72,42.06,20.64,34.14,25.65,39.15"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 4302.3848 0)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4287" x2="4294" y1="52.22" y2="45.01">
-<stop offset="0" stop-color="#B3B3B3"/>
-<stop offset="0.3758" stop-color="#969696"/>
-<stop offset="0.7515" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D5D5D5"/>
+<polygon fill="url(#SVGID_1_)" points="17.729,47.067 12.72,42.057 20.639,34.138 25.649,39.148 "/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 4302.3848 0)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4287.2246" x2="4294.4331" y1="52.2168" y2="45.0081">
+<stop offset="0" style="stop-color:#B3B3B3"/>
+<stop offset="0.3758" style="stop-color:#969696"/>
+<stop offset="0.7515" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D5D5D5"/>
</linearGradient>
-<path d="M2.565,50.13c-0.754,0.753-0.754,1.987,0,2.74l4.568,4.568c0.752,0.754,1.986,0.754,2.74,0l10.5-10.5c0.753-0.754,0.753-1.986,0-2.74l-4.56-4.58c-0.752-0.753-1.984-0.752-2.738,0l-10.5,10.51z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.5071 0.5071 5299.6968 1575.5687)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="4824" x2="4814" y1="3709" y2="3709">
-<stop offset="0" stop-color="#E2E4E3"/>
-<stop offset="0.3333" stop-color="#B2B6B5"/>
-<stop offset="0.3333" stop-color="#A2A5A5"/>
-<stop offset="0.6848" stop-color="#6D6F70"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M2.565,50.126c-0.754,0.753-0.754,1.987,0,2.74l4.568,4.568c0.752,0.754,1.986,0.754,2.74,0 l10.505-10.505c0.753-0.754,0.753-1.986,0-2.74L15.81,39.62c-0.752-0.753-1.984-0.752-2.738,0L2.565,50.126z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.5071 0.5071 5299.6968 1575.5687)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="4824.3057" x2="4813.9697" y1="3708.6299" y2="3708.6299">
+<stop offset="0" style="stop-color:#E2E4E3"/>
+<stop offset="0.3333" style="stop-color:#B2B6B5"/>
+<stop offset="0.3333" style="stop-color:#A2A5A5"/>
+<stop offset="0.6848" style="stop-color:#6D6F70"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="10.98,56.33,3.668,49.02,11.86,40.83,19.16,48.14"/>
-<path d="M36.65,25.26c-7.902,0-15.16-1.912-20.89-5.105,1.64-10.12,10.41-17.84,20.98-17.84,10.54,0,19.29,7.673,20.97,17.74-5.76,3.25-13.08,5.2-21.06,5.2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(-0.9773 0 0 0.9773 4277.1611 57.5776)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="4339" x2="4339" y1="-19.53" y2="-50.7">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4667" stop-color="#347940"/>
-<stop offset="1" stop-color="#173636"/>
+<polygon fill="url(#SVGID_3_)" points="10.976,56.332 3.668,49.023 11.857,40.833 19.165,48.143 "/>
+<path d="M36.649,25.261c-7.902,0-15.16-1.912-20.893-5.105C17.397,10.043,26.169,2.321,36.743,2.321 c10.541,0,19.287,7.673,20.97,17.737C51.954,23.309,44.632,25.261,36.649,25.261z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(-0.9773 0 0 0.9773 4277.1611 57.5776)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="4338.9121" x2="4338.9121" y1="-19.5293" y2="-50.7046">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4667" style="stop-color:#347940"/>
+<stop offset="1" style="stop-color:#173636"/>
</linearGradient>
-<circle cx="36.74" cy="23.26" fill="url(#SVGID_4_)" fill-opacity="0.7" r="15.23" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="36.74" x2="36.74" y1="44.63" y2="1.958">
-<stop offset="0" stop-color="#C2C8C6"/>
-<stop offset="0.1939" stop-color="#9EA2A2"/>
-<stop offset="0.697" stop-color="#D6D9D7"/>
-<stop offset="0.897" stop-color="#EFF2F0"/>
-<stop offset="1" stop-color="#EFF2F0"/>
+<circle cx="36.742" cy="23.257" fill="url(#SVGID_4_)" fill-opacity="0.7" r="15.233" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="36.7432" x2="36.7432" y1="44.6318" y2="1.9579">
+<stop offset="0" style="stop-color:#C2C8C6"/>
+<stop offset="0.1939" style="stop-color:#9EA2A2"/>
+<stop offset="0.697" style="stop-color:#D6D9D7"/>
+<stop offset="0.897" style="stop-color:#EFF2F0"/>
+<stop offset="1" style="stop-color:#EFF2F0"/>
</linearGradient>
-<path d="M36.74,2c-11.74,0-21.26,9.518-21.26,21.26s9.52,21.26,21.26,21.26,21.26-9.518,21.26-21.26-9.52-21.26-21.26-21.26zm0,37.29c-8.413,0-16.07-7.617-16.07-16.03,0-8.42,7.66-16.26,16.07-16.26,8.414,0,16.22,7.844,16.22,16.26,0,8.41-7.8,16.03-16.22,16.03z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="36.74" x2="36.74" y1="2.232" y2="42.87">
-<stop offset="0" stop-color="#E7EBE8"/>
-<stop offset="0.5818" stop-color="#C7CBC9"/>
-<stop offset="0.8545" stop-color="#919595"/>
-<stop offset="0.9758" stop-color="#CDD1CF"/>
-<stop offset="1" stop-color="#CDD1CF"/>
+<path d="M36.743,2c-11.738,0-21.258,9.518-21.258,21.257s9.52,21.257,21.258,21.257 s21.258-9.518,21.258-21.257S48.481,2,36.743,2z M36.743,39.287c-8.413,0-16.07-7.617-16.07-16.03C20.673,14.844,28.33,7,36.743,7 c8.414,0,16.216,7.844,16.216,16.257C52.959,31.67,45.157,39.287,36.743,39.287z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="36.7422" x2="36.7422" y1="2.2324" y2="42.8653">
+<stop offset="0" style="stop-color:#E7EBE8"/>
+<stop offset="0.5818" style="stop-color:#C7CBC9"/>
+<stop offset="0.8545" style="stop-color:#919595"/>
+<stop offset="0.9758" style="stop-color:#CDD1CF"/>
+<stop offset="1" style="stop-color:#CDD1CF"/>
</linearGradient>
-<path d="M36.74,3.063c-11.15,0-20.2,9.042-20.2,20.19s9.044,20.19,20.2,20.19c11.15,0,20.19-9.043,20.19-20.19,0.01-11.15-9.03-20.19-20.19-20.19zm0,36.23c-8.413,0-16.07-7.617-16.07-16.03,0-8.42,7.66-16.26,16.07-16.26,8.414,0,16.22,7.844,16.22,16.26,0,8.41-7.8,16.03-16.22,16.03z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.74" x2="36.74" y1="39.61" y2="7.504">
-<stop offset="0" stop-color="#E7EBE8"/>
-<stop offset="1" stop-color="#535557"/>
+<path d="M36.743,3.063c-11.151,0-20.195,9.042-20.195,20.193c0,11.151,9.044,20.194,20.195,20.194 c11.152,0,20.193-9.043,20.193-20.194C56.937,12.105,47.896,3.063,36.743,3.063z M36.743,39.287c-8.413,0-16.07-7.617-16.07-16.03 C20.673,14.844,28.33,7,36.743,7c8.414,0,16.216,7.844,16.216,16.257C52.959,31.67,45.157,39.287,36.743,39.287z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.7422" x2="36.7422" y1="39.6108" y2="7.5044">
+<stop offset="0" style="stop-color:#E7EBE8"/>
+<stop offset="1" style="stop-color:#535557"/>
</linearGradient>
-<path d="M36.74,6.96c-9.002,0-16.3,7.297-16.3,16.3s7.296,16.3,16.3,16.3c9,0,16.3-7.297,16.3-16.3s-7.3-16.3-16.3-16.3zm0,31.53c-8.413,0-15.23-6.821-15.23-15.23,0-8.413,6.821-15.23,15.23-15.23,8.414,0,15.23,6.821,15.23,15.23,0.01,8.41-6.81,15.23-15.23,15.23z" fill="url(#SVGID_7_)"/>
-<path d="M36.65,24.87c-5.037,0-9.799-0.81-14.05-2.244,0.332-7.532,6.525-13.54,14.14-13.54,7.594,0,13.78,5.979,14.14,13.48-4.3,1.47-9.12,2.3-14.23,2.3z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M36.64,10.14c7.035,0,12.87,5.031,14.16,11.69-0.722-7.15-6.722-12.74-14.06-12.74-6.607,0-12.14,4.527-13.7,10.65,2-5.6,7.33-9.6,13.6-9.6z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M36.743,6.96c-9.002,0-16.298,7.297-16.298,16.297s7.296,16.297,16.298,16.297 c9,0,16.296-7.297,16.296-16.297S45.743,6.96,36.743,6.96z M36.743,38.491c-8.413,0-15.234-6.821-15.234-15.234 c0-8.413,6.821-15.233,15.234-15.233c8.414,0,15.232,6.821,15.232,15.233C51.976,31.67,45.157,38.491,36.743,38.491z" fill="url(#SVGID_7_)"/>
+<path d="M36.653,24.873c-5.037,0-9.799-0.81-14.051-2.244c0.332-7.532,6.525-13.543,14.141-13.543 c7.594,0,13.775,5.979,14.135,13.484C46.583,24.04,41.76,24.873,36.653,24.873z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M36.642,10.138c7.035,0,12.868,5.031,14.165,11.688c-0.722-7.15-6.722-12.74-14.063-12.74 c-6.607,0-12.139,4.527-13.705,10.646C25.038,14.141,30.366,10.138,36.642,10.138z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_security.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_security.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-89.66" x2="-54.9" y1="24.07" y2="24.07">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.5333" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#8F8F8F"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-89.6592" x2="-54.9037" y1="24.0742" y2="24.0742">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
-<path d="M30.24,2.865c-9.661,0-17.5,7.771-17.64,17.4v6.473h5.966v-6.473c0.13-6.32,5.31-11.42,11.67-11.42,6.357,0,11.54,5.105,11.67,11.43v8.679h5.967v-8.679c-0.14-9.62-7.98-17.4-17.64-17.4z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-88.57" x2="-55.99" y1="23.52" y2="23.52">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.5152" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<path d="M30.236,2.865c-9.661,0-17.502,7.771-17.638,17.402v6.473h5.966v-6.473 C18.7,13.94,23.877,8.835,30.236,8.835c6.357,0,11.535,5.105,11.672,11.433v8.679h5.967v-8.679 C47.738,10.636,39.9,2.865,30.236,2.865z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-88.5723" x2="-55.9912" y1="23.5225" y2="23.5225">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M43.01,27.84v-7.575c-0.148-6.926-5.878-12.54-12.78-12.54-6.896,0-12.62,5.61-12.77,12.52v8.7h-3.76v-8.679c0.127-8.98,7.544-16.3,16.53-16.3,8.992,0,16.41,7.318,16.54,16.32v7.559h-3.758z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-87.89" x2="-56.67" y1="23.52" y2="23.52">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M43.012,27.843v-7.575c-0.148-6.926-5.878-12.536-12.775-12.536c-6.896,0-12.625,5.61-12.774,12.515 v8.7h-3.76v-8.679c0.127-8.98,7.544-16.299,16.534-16.299c8.992,0,16.408,7.318,16.535,16.315v7.559H43.012z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-87.8945" x2="-56.6681" y1="23.5225" y2="23.5225">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M14.39,28.26v-7.991c0.122-8.604,7.231-15.61,15.85-15.61,8.617,0,15.73,7.016,15.85,15.64v6.862h-2.385v-6.888c-0.156-7.299-6.195-13.22-13.46-13.22-7.267,0-13.31,5.915-13.46,13.19v8.027l-2.39-0.01z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-94.52" x2="-50.52" y1="-1.685" y2="-1.685">
-<stop offset="0" stop-color="#AA8250"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="0.8667" stop-color="#BCA162"/>
-<stop offset="1" stop-color="#AA8250"/>
+<path d="M14.389,28.259v-7.991c0.122-8.604,7.231-15.612,15.847-15.612c8.617,0,15.727,7.016,15.848,15.637 v6.862h-2.385v-6.888c-0.156-7.299-6.195-13.224-13.463-13.224c-7.267,0-13.306,5.915-13.462,13.188v8.027L14.389,28.259 L14.389,28.259z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-94.52" x2="-50.52" y1="-1.6851" y2="-1.6851">
+<stop offset="0" style="stop-color:#AA8250"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="0.8667" style="stop-color:#BCA162"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M52,55.76c0,0.76-0.615,1.375-1.375,1.375h-41.24c-0.759,0-1.375-0.62-1.375-1.38v-28.19c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375v28.18z" fill="url(#SVGID_4_)"/>
-<path d="M50.62,26.2h-41.24c-0.759,0-1.375,0.61-1.375,1.37v1.375c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375v-1.375c0-0.75-0.62-1.36-1.38-1.36z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<rect fill="#AC8653" fill-opacity="0.5" height="4.813" stroke-opacity="0.5" width="44" x="8" y="32.38"/>
-<rect fill-opacity="0.25" height="0.688" stroke-opacity="0.25" width="44" x="8" y="32.38"/>
-<path d="M50.62,57.14h-41.24c-0.759,0-1.375-0.62-1.375-1.38v-1.375c0,0.758,0.616,1.375,1.375,1.375h41.25c0.76,0,1.375-0.617,1.375-1.375v1.375c0,0.76-0.62,1.38-1.38,1.38z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<rect fill="#DCD5B0" fill-opacity="0.4" height="0.688" stroke-opacity="0.4" width="44" x="8" y="37.2"/>
-<path d="M30,54.67c-1.378,0-2.5-1.121-2.5-2.5v-3.67c-1.538-0.885-2.5-2.517-2.5-4.326,0-2.756,2.243-5,5-5s5,2.244,5,5c0,1.811-0.962,3.441-2.5,4.326v3.674c0,1.38-1.12,2.5-2.5,2.5z" fill="#DED7B2" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-72.52" x2="-72.52" y1="-13.21" y2="-0.4489">
-<stop offset="0" stop-color="#8D7B6B"/>
-<stop offset="1" stop-color="#492C2A"/>
+<path d="M52,55.76c0,0.76-0.615,1.375-1.375,1.375H9.375C8.616,57.135,8,56.518,8,55.76V27.571 c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375V55.76z" fill="url(#SVGID_4_)"/>
+<path d="M50.625,26.196H9.375C8.616,26.196,8,26.812,8,27.571v1.375 c0-0.759,0.616-1.375,1.375-1.375h41.25c0.76,0,1.375,0.616,1.375,1.375v-1.375C52,26.812,51.385,26.196,50.625,26.196z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<rect fill="#AC8653" fill-opacity="0.5" height="4.813" stroke-opacity="0.5" width="44" x="8" y="32.385"/>
+<rect fill-opacity="0.25" height="0.688" stroke-opacity="0.25" width="44" x="8" y="32.385"/>
+<path d="M50.625,57.135H9.375C8.616,57.135,8,56.518,8,55.76v-1.375 c0,0.758,0.616,1.375,1.375,1.375h41.25c0.76,0,1.375-0.617,1.375-1.375v1.375C52,56.518,51.385,57.135,50.625,57.135z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<rect fill="#DCD5B0" fill-opacity="0.4" height="0.688" stroke-opacity="0.4" width="44" x="8" y="37.196"/>
+<path d="M30,54.674c-1.378,0-2.5-1.121-2.5-2.5V48.5 c-1.538-0.885-2.5-2.517-2.5-4.326c0-2.756,2.243-5,5-5s5,2.244,5,5c0,1.811-0.962,3.441-2.5,4.326v3.674 C32.5,53.553,31.379,54.674,30,54.674L30,54.674z" fill="#DED7B2" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 102.52 39.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-72.52" x2="-72.52" y1="-13.209" y2="-0.4489">
+<stop offset="0" style="stop-color:#8D7B6B"/>
+<stop offset="1" style="stop-color:#492C2A"/>
</linearGradient>
-<path d="M34,44.17c0-2.209-1.791-4-4-4s-4,1.791-4,4c0,1.678,1.035,3.109,2.5,3.703v4.297c0,0.83,0.672,1.5,1.5,1.5s1.5-0.67,1.5-1.5v-4.297c1.46-0.59,2.5-2.02,2.5-3.7z" fill="url(#SVGID_5_)"/>
+<path d="M34,44.174c0-2.209-1.791-4-4-4s-4,1.791-4,4c0,1.678,1.035,3.109,2.5,3.703v4.297 c0,0.83,0.672,1.5,1.5,1.5s1.5-0.67,1.5-1.5v-4.297C32.965,47.283,34,45.852,34,44.174z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_server_locked.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_server_locked.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,194 +1,200 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.39" x2="29.39" y1="52.66" y2="57.61">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.3877" x2="29.3877" y1="52.6611" y2="57.6064">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M52.04,56.94c0,0.339-0.274,0.612-0.612,0.612h-44.08c-0.338,0-0.612-0.273-0.612-0.612v-3.673c0-0.339,0.274-0.612,0.612-0.612h44.08c0.338,0,0.612,0.273,0.612,0.612v3.668z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.41" x2="49.59" y1="22.65" y2="22.65">
-<stop offset="0" stop-color="#B7BCBA"/>
-<stop offset="0.2667" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
-</linearGradient>
-<path d="M48.11,2.449h-36.22c-0.815,0-1.48,0.668-1.48,1.485v38.92h39.18v-38.92c0-0.818-0.66-1.486-1.48-1.486z" fill="url(#SVGID_2_)"/>
-<path d="M48.11,2.449c0.813,0,1.479,0.668,1.479,1.485v38.92h-39.18v-38.92c0-0.817,0.666-1.485,1.48-1.485h36.22m-0.003,1.176h-36.22c-0.173,0-0.318,0.142-0.318,0.309v37.75h36.86v-37.74c0-0.167-0.15-0.309-0.32-0.309z" fill="#FFFFFF"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.59" y2="6.374">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<path d="M52.041,56.938c0,0.339-0.274,0.612-0.612,0.612H7.347c-0.338,0-0.612-0.273-0.612-0.612v-3.673 c0-0.339,0.274-0.612,0.612-0.612h44.082c0.338,0,0.612,0.273,0.612,0.612V56.938z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10.4082" x2="49.5918" y1="22.6533" y2="22.6533">
+<stop offset="0" style="stop-color:#B7BCBA"/>
+<stop offset="0.2667" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.7" y="6.183"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.7" y="15.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="7.408" y2="14.37">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<path d="M48.113,2.449H11.889c-0.815,0-1.48,0.668-1.48,1.485v38.923h39.184V3.935 C49.592,3.117,48.926,2.449,48.113,2.449z" fill="url(#SVGID_2_)"/>
+<path d="M48.113,2.449c0.813,0,1.479,0.668,1.479,1.485v38.923H10.408V3.935c0-0.817,0.666-1.485,1.48-1.485H48.113 M48.113,3.626H11.889c-0.173,0-0.318,0.142-0.318,0.309v37.747H48.43V3.935C48.43,3.768,48.285,3.626,48.113,3.626L48.113,3.626z" fill="#FFFFFF"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="15.5947" y2="6.3742">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="7.058" width="30.26" x="14.87" y="7.359"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="8.297" y2="13.24">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_3_)" height="9.412" width="32.59" x="13.705" y="6.183"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.177" stroke-opacity="0.25" width="32.59" x="13.705" y="15.595"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30.0015" x2="30.0015" y1="7.4082" y2="14.3725">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="4.706" width="27.94" x="16.03" y="8.534"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.08" x2="20.08" y1="9.593" y2="12.06">
-<stop offset="0" stop-color="#5DA9B9"/>
-<stop offset="1" stop-color="#313C62"/>
+<rect fill="url(#SVGID_4_)" height="7.058" width="30.263" x="14.87" y="7.359"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30.0005" x2="30.0005" y1="8.2974" y2="13.2402">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.15" y="9.711"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.15" y="9.711"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28" y2="18.78">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+<rect fill="url(#SVGID_5_)" height="4.706" width="27.939" x="16.031" y="8.534"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.0767" x2="20.0767" y1="9.5928" y2="12.0647">
+<stop offset="0" style="stop-color:#5DA9B9"/>
+<stop offset="1" style="stop-color:#313C62"/>
+</linearGradient>
+<rect fill="url(#SVGID_6_)" height="2.354" width="5.848" x="17.153" y="9.711"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="5.848" x="17.153" y="9.711"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="28.0029" y2="18.7824">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.7" y="18.59"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.7" y="28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30" x2="30" y1="19.82" y2="26.78">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="1" stop-color="#454545"/>
+<rect fill="url(#SVGID_7_)" height="9.412" width="32.59" x="13.705" y="18.591"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="1.176" stroke-opacity="0.25" width="32.59" x="13.705" y="28.003"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.0015" x2="30.0015" y1="19.8154" y2="26.7816">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="1" style="stop-color:#454545"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="7.06" width="30.26" x="14.87" y="19.77"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30" x2="30" y1="20.71" y2="25.65">
-<stop offset="0" stop-color="#525252"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<rect fill="url(#SVGID_8_)" height="7.06" width="30.263" x="14.87" y="19.767"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.0005" x2="30.0005" y1="20.7056" y2="25.6484">
+<stop offset="0" style="stop-color:#525252"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="4.706" width="27.94" x="16.03" y="20.94"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.96" x2="31.92" y1="50.51" y2="50.51">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_9_)" height="4.706" width="27.939" x="16.031" y="20.942"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="26.957" x2="31.9189" y1="50.5098" y2="50.5098">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M26.94,48.37v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612v-3.674h-4.891z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.96" x2="31.92" y1="48.67" y2="48.67">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M26.939,48.367v3.674c0,0.338,0.274,0.612,0.612,0.612h3.674c0.338,0,0.612-0.274,0.612-0.612 v-3.674H26.939z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="26.9565" x2="31.918" y1="48.6738" y2="48.6738">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.94" y="48.37"/>
+<rect fill="url(#SVGID_11_)" height="0.612" width="4.897" x="26.938" y="48.367"/>
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30" x2="30" y1="48.93" y2="42.98">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#303030"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="30.0005" x2="30.0005" y1="48.9316" y2="42.9805">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#303030"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="6.122" width="38" x="11" y="42.86"/>
-<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="42.86"/>
-<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="38" x="11" y="43.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.86" x2="12.86" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_12_)" height="6.122" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="42.857"/>
+<rect fill-opacity="0.2" height="0.612" stroke-opacity="0.2" width="37.996" x="11.002" y="43.47"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="12.8589" x2="12.8589" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.62" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.81" x2="17.81" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_13_)" height="4.897" width="2.476" x="11.621" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.8115" x2="17.8115" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.57" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.76" x2="22.76" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_14_)" height="4.897" width="2.476" x="16.574" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="22.7642" x2="22.7642" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.53" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.72" x2="27.72" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_15_)" height="4.897" width="2.476" x="21.526" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="27.7158" x2="27.7158" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.48" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.67" x2="32.67" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_16_)" height="4.897" width="2.476" x="26.478" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="32.668" x2="32.668" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.62" x2="37.62" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_17_)" height="4.897" width="2.477" x="31.43" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="37.6211" x2="37.6211" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.38" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.57" x2="42.57" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_18_)" height="4.897" width="2.477" x="36.383" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.5723" x2="42.5723" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.33" y="44.08"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.53" x2="47.53" y1="48.94" y2="44.18">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_19_)" height="4.897" width="2.477" x="41.334" y="44.082"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="47.5254" x2="47.5254" y1="48.9404" y2="44.1797">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.29" y="44.08"/>
-<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="48.37"/>
-<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="38" x="11" y="47.76"/>
-<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.94" y="48.98"/>
-<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.94" y="49.59"/>
-<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.98" y="52.65"/>
-<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.18" y="52.65"/>
-<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.37" y="52.65"/>
-<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.8" y="52.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.39" x2="29.39" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_20_)" height="4.897" width="2.477" x="46.287" y="44.082"/>
+<rect fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="48.367"/>
+<rect fill="#CCCCCC" fill-opacity="0.5" height="0.612" stroke-opacity="0.5" width="37.996" x="11.002" y="47.755"/>
+<rect fill-opacity="0.3" height="0.612" stroke-opacity="0.3" width="4.897" x="26.938" y="48.979"/>
+<rect fill-opacity="0.1" height="0.612" stroke-opacity="0.1" width="4.897" x="26.938" y="49.592"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="18.979" y="52.653"/>
+<rect fill-opacity="0.3" height="4.897" stroke-opacity="0.3" width="0.612" x="39.184" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="18.367" y="52.653"/>
+<rect fill-opacity="0.1" height="4.897" stroke-opacity="0.1" width="0.612" x="39.796" y="52.653"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="29.3872" x2="29.3872" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<rect fill="url(#SVGID_21_)" height="6.122" width="18.37" x="20.2" y="52.04"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.9" x2="19.9" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<rect fill="url(#SVGID_21_)" height="6.122" width="18.367" x="20.204" y="52.041"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="19.8979" x2="19.8979" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M19.59,52.65v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122c-0.33,0-0.61,0.27-0.61,0.61z" fill="url(#SVGID_22_)"/>
-<path d="M19.59,52.65v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122c-0.33,0-0.61,0.27-0.61,0.61z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.88" x2="38.88" y1="52.13" y2="57.93">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.3212" stop-color="#C7C7C7"/>
-<stop offset="0.6848" stop-color="#4D4D4D"/>
-<stop offset="0.8545" stop-color="#000000"/>
-<stop offset="1" stop-color="#7A7A7A"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122 C19.866,52.041,19.592,52.314,19.592,52.653z" fill="url(#SVGID_22_)"/>
+<path d="M19.592,52.653v4.897c0,0.339,0.274,0.612,0.612,0.612v-6.122C19.866,52.041,19.592,52.314,19.592,52.653z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="38.877" x2="38.877" y1="52.1279" y2="57.9301">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.3212" style="stop-color:#C7C7C7"/>
+<stop offset="0.6848" style="stop-color:#4D4D4D"/>
+<stop offset="0.8545" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#7A7A7A"/>
</linearGradient>
-<path d="M38.57,52.04v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897c0-0.34-0.27-0.61-0.61-0.61z" fill="url(#SVGID_23_)"/>
-<path d="M38.57,52.04v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897c0-0.34-0.27-0.61-0.61-0.61z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897 C39.184,52.314,38.91,52.041,38.571,52.041z" fill="url(#SVGID_23_)"/>
+<path d="M38.571,52.041v6.122c0.339,0,0.612-0.273,0.612-0.612v-4.897C39.184,52.314,38.91,52.041,38.571,52.041z" fill-opacity="0.3" stroke-opacity="0.3"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,0,0,30,4.358,30,25.64,30,30,30,30,0"/>
+<polygon fill="none" points="0,0 0,30 4.358,30 25.643,30 30,30 30,0 "/>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71v-14.54c0-0.943,0.767-1.711,1.709-1.711h0.663v-2.061c0.078-5.508,4.609-9.979,10.1-9.979s10.02,4.471,10.1,9.966v2.07h0.42c0.941,0,1.709,0.768,1.709,1.711v14.54c0,0.942-0.768,1.71-1.709,1.71h-21.28zm15.78-17.96v-2.061c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035h10.04z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="273.6" x2="291.6" y1="-368.7" y2="-368.7">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.5333" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#808080"/>
-</linearGradient>
-<path d="M15.12,1c-4.984,0-9.03,4.009-9.101,8.979v3.338h3.081v-3.341c0.069-3.266,2.74-5.9,6.021-5.9s5.951,2.635,6.021,5.9v4.477h3.078v-4.481c-0.07-4.97-4.11-8.979-9.1-8.979z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="274.2" x2="291" y1="-369" y2="-369">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.5152" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+</g>
+<path d="M4.358,30c-0.942,0-1.709-0.768-1.709-1.71V13.747 c0-0.943,0.767-1.711,1.709-1.711h0.663V9.979C5.099,4.471,9.63,0,15.122,0c5.491,0,10.022,4.471,10.101,9.966v2.07h0.42 c0.941,0,1.709,0.768,1.709,1.711V28.29c0,0.942-0.768,1.71-1.709,1.71H4.358z M20.145,12.036V9.979 c-0.058-2.692-2.312-4.9-5.021-4.9s-4.965,2.208-5.021,4.922v2.035H20.145z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="273.6377" x2="291.5699" y1="-368.7476" y2="-368.7476">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5333" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M21.71,13.89v-3.911c-0.077-3.574-3.032-6.469-6.592-6.469-3.559,0-6.514,2.895-6.592,6.458v4.488h-1.937v-4.481c0.065-4.636,3.893-8.41,8.531-8.41,4.64,0,8.465,3.774,8.53,8.418v3.9h-1.94z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="274.5" x2="290.7" y1="-369" y2="-369">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5" stop-color="#B3B3B3"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M15.122,1c-4.984,0-9.03,4.009-9.101,8.979v3.338H9.1V9.979c0.069-3.266,2.74-5.9,6.021-5.9 s5.951,2.635,6.021,5.9v4.477h3.078V9.979C24.152,5.009,20.107,1,15.122,1z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="274.1973" x2="291.0081" y1="-369.0322" y2="-369.0322">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.5152" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
+</linearGradient>
+<path d="M21.714,13.888V9.979c-0.077-3.574-3.032-6.469-6.592-6.469c-3.559,0-6.514,2.895-6.592,6.458v4.488 H6.591V9.979c0.065-4.636,3.893-8.41,8.531-8.41c4.64,0,8.465,3.774,8.53,8.418v3.9L21.714,13.888L21.714,13.888z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="274.5469" x2="290.6592" y1="-369.0322" y2="-369.0322">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5" style="stop-color:#B3B3B3"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M6.945,14.1v-4.121c0.063-4.44,3.731-8.055,8.177-8.055s8.11,3.618,8.18,8.066v3.541h-1.231v-3.551c-0.08-3.767-3.196-6.824-6.945-6.824-3.75,0-6.865,3.053-6.946,6.805v4.142h-1.229z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="271.1" x2="293.8" y1="-382" y2="-382">
-<stop offset="0" stop-color="#AA8250"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="0.8667" stop-color="#BCA162"/>
-<stop offset="1" stop-color="#AA8250"/>
+<path d="M6.945,14.102V9.979c0.063-4.44,3.731-8.055,8.177-8.055S23.234,5.542,23.3,9.99v3.541h-1.231V9.979 c-0.08-3.767-3.196-6.824-6.945-6.824c-3.75,0-6.865,3.053-6.946,6.805v4.142H6.945z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="271.1289" x2="293.832" y1="-382.0376" y2="-382.0376">
+<stop offset="0" style="stop-color:#AA8250"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="0.8667" style="stop-color:#BCA162"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M26.35,28.29c0,0.392-0.317,0.71-0.709,0.71h-21.28c-0.392,0-0.709-0.318-0.709-0.71v-14.54c0-0.392,0.317-0.711,0.709-0.711h21.28c0.393,0,0.709,0.319,0.709,0.711v14.54h0.002z" fill="url(#SVGID_4__)"/>
-<path d="M25.64,13.04h-21.28c-0.392,0-0.709,0.319-0.709,0.711v0.709c0-0.392,0.317-0.709,0.709-0.709h21.28c0.393,0,0.709,0.317,0.709,0.709v-0.709c0-0.39-0.32-0.71-0.71-0.71z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M25.64,29h-21.28c-0.392,0-0.709-0.318-0.709-0.71v-0.709c0,0.392,0.317,0.709,0.709,0.709h21.28c0.393,0,0.709-0.317,0.709-0.709v0.709c0,0.39-0.32,0.71-0.71,0.71z" fill-opacity="0.25" stroke-opacity="0.25"/>
-<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838c-0.769-0.441-1.25-1.256-1.25-2.162,0-1.379,1.122-2.5,2.5-2.5,1.379,0,2.5,1.121,2.5,2.5,0,0.904-0.48,1.721-1.25,2.162v1.838c0,0.69-0.56,1.25-1.25,1.25z" fill="#DED7B2" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="282.5" x2="282.5" y1="-386.1" y2="-379.7">
-<stop offset="0" stop-color="#8D7B6B"/>
-<stop offset="1" stop-color="#492C2A"/>
+<path d="M26.352,28.29c0,0.392-0.317,0.71-0.709,0.71H4.358c-0.392,0-0.709-0.318-0.709-0.71V13.747 c0-0.392,0.317-0.711,0.709-0.711h21.283c0.393,0,0.709,0.319,0.709,0.711V28.29H26.352z" fill="url(#SVGID_4__)"/>
+<path d="M25.643,13.036H4.358c-0.392,0-0.709,0.319-0.709,0.711v0.709 c0-0.392,0.317-0.709,0.709-0.709h21.283c0.393,0,0.709,0.317,0.709,0.709v-0.709C26.352,13.355,26.033,13.036,25.643,13.036z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.643,29H4.358c-0.392,0-0.709-0.318-0.709-0.71v-0.709 c0,0.392,0.317,0.709,0.709,0.709h21.283c0.393,0,0.709-0.317,0.709-0.709v0.709C26.352,28.682,26.033,29,25.643,29z" fill-opacity="0.25" stroke-opacity="0.25"/>
+<path d="M15,25.82c-0.689,0-1.25-0.562-1.25-1.25v-1.838 c-0.769-0.441-1.25-1.256-1.25-2.162c0-1.379,1.122-2.5,2.5-2.5c1.379,0,2.5,1.121,2.5,2.5c0,0.904-0.48,1.721-1.25,2.162v1.838 C16.25,25.26,15.689,25.82,15,25.82L15,25.82z" fill="#DED7B2" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -361.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="282.4805" x2="282.4805" y1="-386.0986" y2="-379.7186">
+<stop offset="0" style="stop-color:#8D7B6B"/>
+<stop offset="1" style="stop-color:#492C2A"/>
</linearGradient>
-<path d="M17,20.57c0-1.104-0.896-2-2-2s-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148c0.73-0.3,1.25-1.01,1.25-1.85z" fill="url(#SVGID_5__)"/>
+<path d="M17,20.57c0-1.104-0.896-2-2-2c-1.104,0-2,0.896-2,2c0,0.839,0.518,1.555,1.25,1.852v2.148 c0,0.414,0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75v-2.148C16.482,22.125,17,21.409,17,20.57z" fill="url(#SVGID_5__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_settings.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_settings.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,157 +1,159 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.5" y2="55.38">
-<stop offset="0" stop-color="#E8E8E8"/>
-<stop offset="0.3576" stop-color="#B7BDBC"/>
-<stop offset="0.7455" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#A6ABAB"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.5" y2="55.3778">
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="0.3576" style="stop-color:#B7BDBC"/>
+<stop offset="0.7455" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#A6ABAB"/>
</linearGradient>
-<path d="M6.412,55.5c-1.055,0-1.912-0.857-1.912-1.911v-47.18c0-1.054,0.857-1.911,1.912-1.911h47.18c1.055,0,1.913,0.857,1.913,1.911v47.18c0,1.054-0.858,1.911-1.913,1.911h-47.18z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="5.714" y2="54.17">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1455" stop-color="#D9DCDA"/>
-<stop offset="0.3212" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#919596"/>
-<stop offset="1" stop-color="#DAE1DD"/>
+<path d="M6.412,55.5c-1.055,0-1.912-0.857-1.912-1.911V6.411C4.5,5.357,5.357,4.5,6.412,4.5h47.176 c1.055,0,1.913,0.857,1.913,1.911v47.178c0,1.054-0.858,1.911-1.913,1.911H6.412z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.001" x2="30.001" y1="5.7139" y2="54.1698">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1455" style="stop-color:#D9DCDA"/>
+<stop offset="0.3212" style="stop-color:#FFFFFF"/>
+<stop offset="0.7333" style="stop-color:#919596"/>
+<stop offset="1" style="stop-color:#DAE1DD"/>
</linearGradient>
-<path d="M6.412,54.29c-0.385,0-0.697-0.313-0.697-0.697v-47.18c0-0.384,0.313-0.697,0.697-0.697h47.18c0.387,0,0.699,0.313,0.699,0.697v47.18c0,0.385-0.313,0.697-0.699,0.697h-47.18z" fill="url(#SVGID_2_)"/>
-<path d="M53.59,5.106h-47.18c-0.719,0-1.305,0.586-1.305,1.305v47.18c0,0.719,0.586,1.305,1.305,1.305h47.18c0.72,0,1.307-0.586,1.307-1.305v-47.19c0-0.719-0.59-1.305-1.31-1.305zm0.09,48.48c0,0.05-0.041,0.09-0.092,0.09h-47.18c-0.049,0-0.09-0.04-0.09-0.09v-47.18c0-0.049,0.041-0.09,0.09-0.09h47.18c0.051,0,0.092,0.041,0.092,0.09v47.18z" fill="#FFFFFF" fill-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="13.61" x2="13.61" y1="11.02" y2="48.39">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M6.412,54.286c-0.385,0-0.697-0.313-0.697-0.697V6.411c0-0.384,0.313-0.697,0.697-0.697h47.176 c0.387,0,0.699,0.313,0.699,0.697v47.178c0,0.385-0.313,0.697-0.699,0.697H6.412z" fill="url(#SVGID_2_)"/>
+<path d="M53.588,5.106H6.412c-0.719,0-1.305,0.586-1.305,1.305v47.178 c0,0.719,0.586,1.305,1.305,1.305h47.176c0.72,0,1.307-0.586,1.307-1.305V6.411C54.895,5.692,54.308,5.106,53.588,5.106z M53.68,53.589c0,0.05-0.041,0.09-0.092,0.09H6.412c-0.049,0-0.09-0.04-0.09-0.09V6.411c0-0.049,0.041-0.09,0.09-0.09h47.176 c0.051,0,0.092,0.041,0.092,0.09V53.589z" fill="#FFFFFF" fill-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="13.6074" x2="13.6074" y1="11.021" y2="48.3899">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M13,48.52c-1.339,0-2.428-1.09-2.428-2.429v-32.79c0-1.34,1.089-2.43,2.428-2.43h1.215c1.339,0,2.429,1.09,2.429,2.43v32.79c0,1.339-1.09,2.429-2.429,2.429h-1.22z" fill="url(#SVGID_3_)" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.95" x2="11.11" y1="29.7" y2="29.7">
-<stop offset="0" stop-color="#5B5B5D"/>
-<stop offset="0.3" stop-color="#AEB2B1"/>
-<stop offset="0.7" stop-color="#AEB2B1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M13,48.519c-1.339,0-2.428-1.09-2.428-2.429V13.304c0-1.34,1.089-2.43,2.428-2.43 h1.215c1.339,0,2.429,1.09,2.429,2.43V46.09c0,1.339-1.09,2.429-2.429,2.429H13z" fill="url(#SVGID_3_)" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.9473" x2="11.1119" y1="29.6973" y2="29.6973">
+<stop offset="0" style="stop-color:#5B5B5D"/>
+<stop offset="0.3" style="stop-color:#AEB2B1"/>
+<stop offset="0.7" style="stop-color:#AEB2B1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M16.04,46.09c0,1.006-0.815,1.822-1.821,1.822h-1.22c-1.006,0-1.821-0.816-1.821-1.822v-32.79c0-1.008,0.815-1.821,1.821-1.821h1.215c1.006,0,1.821,0.813,1.821,1.821v32.79z" fill="url(#SVGID_4_)"/>
-<path d="M14.22,11.48h-1.22c-1.006,0-1.821,0.813-1.821,1.821v32.79c0,1.006,0.815,1.822,1.821,1.822h1.215c1.006,0,1.821-0.816,1.821-1.822v-32.79c0-1.004-0.82-1.824-1.82-1.824zm1.21,34.61c0,0.669-0.544,1.214-1.214,1.214h-1.22c-0.67,0-1.214-0.545-1.214-1.214v-32.79c0-0.67,0.544-1.215,1.214-1.215h1.215c0.67,0,1.214,0.545,1.214,1.215v32.79z" fill-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.79" x2="15.43" y1="36.07" y2="36.07">
-<stop offset="0" stop-color="#417C40"/>
-<stop offset="0.497" stop-color="#93B05E"/>
-<stop offset="1" stop-color="#407B40"/>
+<path d="M16.036,46.09c0,1.006-0.815,1.822-1.821,1.822H13c-1.006,0-1.821-0.816-1.821-1.822V13.304 c0-1.008,0.815-1.821,1.821-1.821h1.215c1.006,0,1.821,0.813,1.821,1.821V46.09z" fill="url(#SVGID_4_)"/>
+<path d="M14.215,11.482H13c-1.006,0-1.821,0.813-1.821,1.821V46.09c0,1.006,0.815,1.822,1.821,1.822h1.215 c1.006,0,1.821-0.816,1.821-1.822V13.304C16.036,12.296,15.221,11.482,14.215,11.482z M15.429,46.09 c0,0.669-0.544,1.214-1.214,1.214H13c-0.67,0-1.214-0.545-1.214-1.214V13.304c0-0.67,0.544-1.215,1.214-1.215h1.215 c0.67,0,1.214,0.545,1.214,1.215V46.09z" fill-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11.7861" x2="15.4287" y1="36.0713" y2="36.0713">
+<stop offset="0" style="stop-color:#417C40"/>
+<stop offset="0.497" style="stop-color:#93B05E"/>
+<stop offset="1" style="stop-color:#407B40"/>
</linearGradient>
-<path d="M13,47.3c-0.67,0-1.214-0.545-1.214-1.214v-20.04c0-0.668,0.544-1.215,1.214-1.215h1.215c0.67,0,1.214,0.547,1.214,1.215v20.03c0,0.669-0.544,1.214-1.214,1.214h-1.22z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="13.61" x2="13.61" y1="19.68" y2="28.69">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M13,47.304c-0.67,0-1.214-0.545-1.214-1.214V26.054c0-0.668,0.544-1.215,1.214-1.215h1.215 c0.67,0,1.214,0.547,1.214,1.215V46.09c0,0.669-0.544,1.214-1.214,1.214H13z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="13.6074" x2="13.6074" y1="19.6782" y2="28.6905">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M10.57,28.48c-1.34,0-2.43-1.09-2.43-2.43v-4.25c0-1.34,1.09-2.428,2.43-2.428h6.071c1.339,0,2.429,1.088,2.429,2.428v4.25c0,1.34-1.09,2.43-2.429,2.43h-6.068z" fill="url(#SVGID_6_)" fill-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="13.61" x2="13.61" y1="19.41" y2="27.26">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M10.572,28.483c-1.34,0-2.43-1.09-2.43-2.43v-4.25c0-1.34,1.09-2.428,2.43-2.428 h6.071c1.339,0,2.429,1.088,2.429,2.428v4.25c0,1.34-1.09,2.43-2.429,2.43H10.572z" fill="url(#SVGID_6_)" fill-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="13.6074" x2="13.6074" y1="19.4058" y2="27.2627">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M10.57,27.27c-1.006,0-1.822-0.816-1.822-1.82v-4.252c0-1.004,0.816-1.819,1.822-1.819h6.071c1.004,0,1.821,0.815,1.821,1.819v4.252c0,1.004-0.817,1.82-1.821,1.82h-6.068z" fill="url(#SVGID_7_)" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.61" x2="13.61" y1="20.2" y2="26.81">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1212" stop-color="#FFFFFF"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9697" stop-color="#AFB3B2"/>
-<stop offset="0.9697" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M10.572,27.268c-1.006,0-1.822-0.816-1.822-1.82v-4.252 c0-1.004,0.816-1.819,1.822-1.819h6.071c1.004,0,1.821,0.815,1.821,1.819v4.252c0,1.004-0.817,1.82-1.821,1.82H10.572z" fill="url(#SVGID_7_)" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="13.6074" x2="13.6074" y1="20.2031" y2="26.8131">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1212" style="stop-color:#FFFFFF"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9697" style="stop-color:#AFB3B2"/>
+<stop offset="0.9697" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M17.86,25.45c0,0.671-0.543,1.214-1.214,1.214h-6.071c-0.672,0-1.215-0.543-1.215-1.214v-4.252c0-0.669,0.543-1.214,1.215-1.214h6.071c0.671,0,1.214,0.545,1.214,1.214v4.247z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="13.61" x2="13.61" y1="20.77" y2="26.18">
-<stop offset="0" stop-color="#E7E9E8"/>
-<stop offset="0.1212" stop-color="#E7E9E8"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M17.857,25.447c0,0.671-0.543,1.214-1.214,1.214h-6.071c-0.672,0-1.215-0.543-1.215-1.214v-4.252 c0-0.669,0.543-1.214,1.215-1.214h6.071c0.671,0,1.214,0.545,1.214,1.214V25.447z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="13.6074" x2="13.6074" y1="20.7715" y2="26.1783">
+<stop offset="0" style="stop-color:#E7E9E8"/>
+<stop offset="0.1212" style="stop-color:#E7E9E8"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M10.57,26.05c-0.336,0-0.607-0.272-0.607-0.606v-4.252c0-0.335,0.271-0.605,0.607-0.605h6.071c0.335,0,0.606,0.271,0.606,0.605v4.252c0,0.334-0.271,0.606-0.606,0.606h-6.068z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="25.75" x2="25.75" y1="11.02" y2="48.39">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M10.572,26.054c-0.336,0-0.607-0.272-0.607-0.606v-4.252c0-0.335,0.271-0.605,0.607-0.605h6.071 c0.335,0,0.606,0.271,0.606,0.605v4.252c0,0.334-0.271,0.606-0.606,0.606H10.572z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="25.75" x2="25.75" y1="11.021" y2="48.3899">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M25.14,48.52c-1.339,0-2.428-1.09-2.428-2.429v-32.79c0-1.34,1.089-2.43,2.428-2.43h1.215c1.339,0,2.429,1.09,2.429,2.43v32.79c0,1.339-1.09,2.429-2.429,2.429h-1.217z" fill="url(#SVGID_10_)" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="28.09" x2="23.26" y1="29.7" y2="29.7">
-<stop offset="0" stop-color="#5B5B5D"/>
-<stop offset="0.3" stop-color="#AEB2B1"/>
-<stop offset="0.7" stop-color="#AEB2B1"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M25.143,48.519c-1.339,0-2.428-1.09-2.428-2.429V13.304 c0-1.34,1.089-2.43,2.428-2.43h1.215c1.339,0,2.429,1.09,2.429,2.43V46.09c0,1.339-1.09,2.429-2.429,2.429H25.143z" fill="url(#SVGID_10_)" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="28.0898" x2="23.2554" y1="29.6973" y2="29.6973">
+<stop offset="0" style="stop-color:#5B5B5D"/>
+<stop offset="0.3" style="stop-color:#AEB2B1"/>
+<stop offset="0.7" style="stop-color:#AEB2B1"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.18,46.09c0,1.006-0.815,1.822-1.821,1.822h-1.215c-1.005,0-1.82-0.816-1.82-1.822v-32.79c0-1.008,0.815-1.821,1.82-1.821h1.215c1.006,0,1.821,0.813,1.821,1.821v32.79z" fill="url(#SVGID_11_)"/>
-<path d="M26.36,11.48h-1.215c-1.005,0-1.82,0.813-1.82,1.821v32.79c0,1.006,0.815,1.822,1.82,1.822h1.215c1.006,0,1.821-0.816,1.821-1.822v-32.79c0-1.004-0.82-1.824-1.82-1.824zm1.21,34.61c0,0.669-0.544,1.214-1.214,1.214h-1.215c-0.67,0-1.214-0.545-1.214-1.214v-32.79c0-0.67,0.544-1.215,1.214-1.215h1.215c0.67,0,1.214,0.545,1.214,1.215v32.79z" fill-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="23.93" x2="27.57" y1="37.59" y2="37.59">
-<stop offset="0" stop-color="#417C40"/>
-<stop offset="0.497" stop-color="#93B05E"/>
-<stop offset="1" stop-color="#407B40"/>
+<path d="M28.179,46.09c0,1.006-0.815,1.822-1.821,1.822h-1.215c-1.005,0-1.82-0.816-1.82-1.822V13.304 c0-1.008,0.815-1.821,1.82-1.821h1.215c1.006,0,1.821,0.813,1.821,1.821V46.09z" fill="url(#SVGID_11_)"/>
+<path d="M26.357,11.482h-1.215c-1.005,0-1.82,0.813-1.82,1.821V46.09c0,1.006,0.815,1.822,1.82,1.822h1.215 c1.006,0,1.821-0.816,1.821-1.822V13.304C28.179,12.296,27.363,11.482,26.357,11.482z M27.571,46.09 c0,0.669-0.544,1.214-1.214,1.214h-1.215c-0.67,0-1.214-0.545-1.214-1.214V13.304c0-0.67,0.544-1.215,1.214-1.215h1.215 c0.67,0,1.214,0.545,1.214,1.215V46.09z" fill-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="23.9287" x2="27.5713" y1="37.5898" y2="37.5898">
+<stop offset="0" style="stop-color:#417C40"/>
+<stop offset="0.497" style="stop-color:#93B05E"/>
+<stop offset="1" style="stop-color:#407B40"/>
</linearGradient>
-<path d="M25.14,47.3c-0.67,0-1.214-0.545-1.214-1.214v-17c0-0.67,0.544-1.214,1.214-1.214h1.215c0.67,0,1.214,0.544,1.214,1.214v17c0,0.669-0.544,1.214-1.214,1.214h-1.217z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="25.75" x2="25.75" y1="26.96" y2="35.98">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M25.143,47.304c-0.67,0-1.214-0.545-1.214-1.214v-17c0-0.67,0.544-1.214,1.214-1.214h1.215 c0.67,0,1.214,0.544,1.214,1.214v17c0,0.669-0.544,1.214-1.214,1.214H25.143z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="25.75" x2="25.75" y1="26.9634" y2="35.9757">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M22.72,35.77c-1.339,0-2.429-1.09-2.429-2.43v-4.25c0-1.34,1.09-2.429,2.429-2.429h6.071c1.339,0,2.429,1.089,2.429,2.429v4.249c0,1.34-1.09,2.43-2.429,2.43h-6.075z" fill="url(#SVGID_13_)" fill-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="25.75" x2="25.75" y1="26.69" y2="34.55">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<path d="M22.715,35.769c-1.339,0-2.429-1.09-2.429-2.43V29.09 c0-1.34,1.09-2.429,2.429-2.429h6.071c1.339,0,2.429,1.089,2.429,2.429v4.249c0,1.34-1.09,2.43-2.429,2.43H22.715z" fill="url(#SVGID_13_)" fill-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="25.75" x2="25.75" y1="26.6909" y2="34.5488">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<path d="M22.72,34.55c-1.005,0-1.822-0.816-1.822-1.821v-4.249c0-1.006,0.817-1.822,1.822-1.822h6.071c1.005,0,1.821,0.816,1.821,1.822v4.249c0,1.005-0.816,1.821-1.821,1.821h-6.075z" fill="url(#SVGID_14_)" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.75" x2="25.75" y1="27.49" y2="34.1">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1212" stop-color="#FFFFFF"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9697" stop-color="#AFB3B2"/>
-<stop offset="0.9697" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M22.715,34.554c-1.005,0-1.822-0.816-1.822-1.821v-4.249 c0-1.006,0.817-1.822,1.822-1.822h6.071c1.005,0,1.821,0.816,1.821,1.822v4.249c0,1.005-0.816,1.821-1.821,1.821H22.715z" fill="url(#SVGID_14_)" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="25.75" x2="25.75" y1="27.4893" y2="34.0982">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1212" style="stop-color:#FFFFFF"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9697" style="stop-color:#AFB3B2"/>
+<stop offset="0.9697" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M30,32.73c0,0.671-0.543,1.214-1.214,1.214h-6.071c-0.671,0-1.215-0.543-1.215-1.214v-4.249c0-0.672,0.544-1.216,1.215-1.216h6.071c0.671,0,1.214,0.544,1.214,1.216v4.252z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="25.75" x2="25.75" y1="28.06" y2="33.46">
-<stop offset="0" stop-color="#E7E9E8"/>
-<stop offset="0.1212" stop-color="#E7E9E8"/>
-<stop offset="0.4182" stop-color="#B2B6B5"/>
-<stop offset="0.4182" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M30,32.732c0,0.671-0.543,1.214-1.214,1.214h-6.071c-0.671,0-1.215-0.543-1.215-1.214v-4.249 c0-0.672,0.544-1.216,1.215-1.216h6.071c0.671,0,1.214,0.544,1.214,1.216V32.732z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="25.75" x2="25.75" y1="28.0571" y2="33.463">
+<stop offset="0" style="stop-color:#E7E9E8"/>
+<stop offset="0.1212" style="stop-color:#E7E9E8"/>
+<stop offset="0.4182" style="stop-color:#B2B6B5"/>
+<stop offset="0.4182" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M22.72,33.34c-0.335,0-0.607-0.271-0.607-0.606v-4.249c0-0.336,0.272-0.607,0.607-0.607h6.071c0.335,0,0.607,0.271,0.607,0.607v4.249c0,0.335-0.272,0.606-0.607,0.606h-6.075z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="42.14" x2="42.14" y1="14.04" y2="45.03">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M22.715,33.339c-0.335,0-0.607-0.271-0.607-0.606v-4.249c0-0.336,0.272-0.607,0.607-0.607h6.071 c0.335,0,0.607,0.271,0.607,0.607v4.249c0,0.335-0.272,0.606-0.607,0.606H22.715z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="42.1426" x2="42.1426" y1="14.0352" y2="45.034">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M36.98,45.18c-1.034,0-1.877-0.842-1.877-1.876v-27.21c0-1.035,0.843-1.876,1.877-1.876h10.32c1.035,0,1.876,0.841,1.876,1.876v27.21c0,1.034-0.841,1.876-1.876,1.876h-10.32z" fill="url(#SVGID_17_)" fill-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="42.14" x2="42.14" y1="14.51" y2="44.57">
-<stop offset="0" stop-color="#999999"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M36.982,45.179c-1.034,0-1.877-0.842-1.877-1.876V16.091 c0-1.035,0.843-1.876,1.877-1.876h10.322c1.035,0,1.876,0.841,1.876,1.876v27.212c0,1.034-0.841,1.876-1.876,1.876H36.982z" fill="url(#SVGID_17_)" fill-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="42.1426" x2="42.1426" y1="14.5083" y2="44.5696">
+<stop offset="0" style="stop-color:#999999"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M36.98,44.71c-0.775,0-1.407-0.632-1.407-1.407v-27.21c0-0.775,0.632-1.408,1.407-1.408h10.32c0.775,0,1.406,0.633,1.406,1.408v27.21c0,0.775-0.631,1.407-1.406,1.407h-10.32z" fill="url(#SVGID_18_)" fill-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.14" x2="42.14" y1="44.32" y2="15.07">
-<stop offset="0" stop-color="#616264"/>
-<stop offset="1" stop-color="#3F4041"/>
+<path d="M36.982,44.71c-0.775,0-1.407-0.632-1.407-1.407V16.091 c0-0.775,0.632-1.408,1.407-1.408h10.322c0.775,0,1.406,0.633,1.406,1.408v27.212c0,0.775-0.631,1.407-1.406,1.407H36.982z" fill="url(#SVGID_18_)" fill-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="42.1436" x2="42.1436" y1="44.3218" y2="15.0707">
+<stop offset="0" style="stop-color:#616264"/>
+<stop offset="1" style="stop-color:#3F4041"/>
</linearGradient>
-<path d="M48.24,43.3c0,0.519-0.419,0.938-0.938,0.938h-10.32c-0.518,0-0.938-0.42-0.938-0.938v-27.21c0-0.518,0.42-0.938,0.938-0.938h10.32c0.519,0,0.938,0.42,0.938,0.938v27.21z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="42.14" x2="42.14" y1="16.9" y2="43.21">
-<stop offset="0" stop-color="#9FA3A3"/>
-<stop offset="0.1" stop-color="#F1F2F1"/>
-<stop offset="0.5" stop-color="#BCBEBD"/>
-<stop offset="0.9" stop-color="#F4F4F4"/>
-<stop offset="0.95" stop-color="#919596"/>
-<stop offset="1" stop-color="#6A6C6E"/>
+<path d="M48.242,43.303c0,0.519-0.419,0.938-0.938,0.938H36.982c-0.518,0-0.938-0.42-0.938-0.938V16.091 c0-0.518,0.42-0.938,0.938-0.938h10.322c0.519,0,0.938,0.42,0.938,0.938V43.303z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="42.1436" x2="42.1436" y1="16.8999" y2="43.2099">
+<stop offset="0" style="stop-color:#9FA3A3"/>
+<stop offset="0.1" style="stop-color:#F1F2F1"/>
+<stop offset="0.5" style="stop-color:#BCBEBD"/>
+<stop offset="0.9" style="stop-color:#F4F4F4"/>
+<stop offset="0.95" style="stop-color:#919596"/>
+<stop offset="1" style="stop-color:#6A6C6E"/>
</linearGradient>
-<path d="M36.98,43.77c-0.258,0-0.469-0.21-0.469-0.468v-26.27c0-0.26,0.211-0.471,0.469-0.471h10.32c0.259,0,0.469,0.211,0.469,0.471v26.27c0,0.258-0.21,0.468-0.469,0.468h-10.32z" fill="url(#SVGID_20_)"/>
-<path d="M47.3,18.44h-10.32c-0.258,0-0.469,0.211-0.469,0.469v0.471c0-0.26,0.211-0.471,0.469-0.471h10.32c0.259,0,0.469,0.211,0.469,0.471v-0.471c0-0.26-0.21-0.47-0.47-0.47z" fill="#FFFFFF"/>
-<path d="M47.3,43.3h-10.32c-0.258,0-0.469-0.21-0.469-0.47v0.47c0,0.258,0.211,0.468,0.469,0.468h10.32c0.259,0,0.469-0.21,0.469-0.468v-0.47c0,0.26-0.21,0.47-0.47,0.47z" fill-opacity="0.3"/>
-<path d="M36.98,41.43c-0.259,0-0.469-0.212-0.469-0.47v-21.58c0-0.26,0.21-0.471,0.469-0.471h10.32c0.259,0,0.469,0.211,0.469,0.471v21.58c0,0.258-0.21,0.47-0.469,0.47h-10.32z" fill="#FFFFFF" fill-opacity="0.3"/>
-<path d="M36.51,30.16v10.79c0,0.258,0.21,0.47,0.469,0.47h10.32c0.259,0,0.469-0.212,0.469-0.47v-10.78h-11.26z" fill="#FFFFFF" fill-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="42.14" x2="42.14" y1="22.58" y2="19.88">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M36.982,43.771c-0.258,0-0.469-0.21-0.469-0.468V17.03c0-0.26,0.211-0.471,0.469-0.471h10.322 c0.259,0,0.469,0.211,0.469,0.471v26.272c0,0.258-0.21,0.468-0.469,0.468H36.982z" fill="url(#SVGID_20_)"/>
+<path d="M47.305,18.437H36.982c-0.258,0-0.469,0.211-0.469,0.469v0.471c0-0.26,0.211-0.471,0.469-0.471h10.322 c0.259,0,0.469,0.211,0.469,0.471v-0.471C47.773,18.647,47.563,18.437,47.305,18.437z" fill="#FFFFFF"/>
+<path d="M47.305,43.303H36.982c-0.258,0-0.469-0.21-0.469-0.47v0.47c0,0.258,0.211,0.468,0.469,0.468h10.322 c0.259,0,0.469-0.21,0.469-0.468v-0.47C47.773,43.093,47.563,43.303,47.305,43.303z" fill-opacity="0.3"/>
+<path d="M36.982,41.427c-0.259,0-0.469-0.212-0.469-0.47V19.376c0-0.26,0.21-0.471,0.469-0.471 h10.322c0.259,0,0.469,0.211,0.469,0.471v21.581c0,0.258-0.21,0.47-0.469,0.47H36.982z" fill="#FFFFFF" fill-opacity="0.3"/>
+<path d="M36.514,30.165v10.792c0,0.258,0.21,0.47,0.469,0.47h10.322 c0.259,0,0.469-0.212,0.469-0.47V30.165H36.514z" fill="#FFFFFF" fill-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="42.1436" x2="42.1436" y1="22.582" y2="19.8827">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M38.86,22.66c-0.26,0-0.469-0.212-0.469-0.471v-1.876c0-0.26,0.209-0.47,0.469-0.47h6.568c0.26,0,0.469,0.21,0.469,0.47v1.876c0,0.259-0.209,0.471-0.469,0.471h-6.571z" fill="url(#SVGID_21_)" fill-opacity="0.4"/>
-<rect fill="#BB6861" height="1.876" width="6.568" x="38.86" y="20.31"/>
-<polygon fill-opacity="0.3" points="44.96,20.31,39.33,20.31,38.86,20.31,38.86,20.78,38.86,22.19,39.33,22.19,39.33,20.78,44.96,20.78,44.96,22.19,45.43,22.19,45.43,20.78,45.43,20.31"/>
+<path d="M38.859,22.66c-0.26,0-0.469-0.212-0.469-0.471v-1.876 c0-0.26,0.209-0.47,0.469-0.47h6.568c0.26,0,0.469,0.21,0.469,0.47v1.876c0,0.259-0.209,0.471-0.469,0.471H38.859z" fill="url(#SVGID_21_)" fill-opacity="0.4"/>
+<rect fill="#BB6861" height="1.876" width="6.568" x="38.859" y="20.313"/>
+<polygon fill-opacity="0.3" points="44.959,20.313 39.328,20.313 38.859,20.313 38.859,20.782 38.859,22.189 39.328,22.189 39.328,20.782 44.959,20.782 44.959,22.189 45.428,22.189 45.428,20.782 45.428,20.313 "/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sim.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sim.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,85 +1,87 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.999" y2="57.91">
-<stop offset="0" stop-color="#A2A4A4"/>
-<stop offset="0.8182" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#7D7E7F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="1.999" y2="57.9139">
+<stop offset="0" style="stop-color:#A2A4A4"/>
+<stop offset="0.8182" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#7D7E7F"/>
</linearGradient>
-<path d="M8.957,58c-1.365,0-2.473-1.108-2.473-2.473v-51.06c0-1.364,1.107-2.473,2.473-2.473h30.8c1.115,0,2.607,0.619,3.396,1.406l8.951,8.95c0.789,0.79,1.408,2.281,1.408,3.396v39.77c0,1.364-1.111,2.473-2.473,2.473h-42.09z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.265" y2="56.73">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
-</linearGradient>
-<path d="M51.04,56.67h-42.08c-0.633,0-1.146-0.513-1.146-1.147v-51.05c0-0.629,0.514-1.145,1.146-1.145h30.8c0.766,0,1.912,0.477,2.459,1.021l8.953,8.948c0.543,0.546,1.018,1.693,1.018,2.459v39.77c0,0.64-0.51,1.15-1.15,1.15z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.653" y2="55.35">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M8.957,57.999c-1.365,0-2.473-1.108-2.473-2.473V4.472c0-1.364,1.107-2.473,2.473-2.473h30.801 c1.115,0,2.607,0.619,3.396,1.406l8.951,8.95c0.789,0.79,1.408,2.281,1.408,3.396v39.774c0,1.364-1.111,2.473-2.473,2.473H8.957z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.2646" y2="56.7327">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
-<path d="M50.86,55.35h-41.72v-50.7h30.62c0.412,0,1.227,0.336,1.521,0.629l8.957,8.95c0.289,0.293,0.627,1.105,0.627,1.52v39.6l-0.01,0.002z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.37" x2="27.37" y1="51.11" y2="24.53">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#282828"/>
+<path d="M51.041,56.674H8.957c-0.633,0-1.146-0.513-1.146-1.147V4.469c0-0.629,0.514-1.145,1.146-1.145 h30.801c0.766,0,1.912,0.477,2.459,1.021l8.953,8.948c0.543,0.546,1.018,1.693,1.018,2.459v39.774 C52.188,56.161,51.676,56.674,51.041,56.674L51.041,56.674z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.6533" y2="55.3477">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+</linearGradient>
+<path d="M50.863,55.348H9.137V4.653h30.621c0.412,0,1.227,0.336,1.521,0.629l8.957,8.95 c0.289,0.293,0.627,1.105,0.627,1.52V55.348L50.863,55.348z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="27.3711" x2="27.3711" y1="51.1084" y2="24.5269">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="26.78" width="31.23" x="11.76" y="24.43"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1.326" stroke-opacity="0.4" width="31.23" x="11.76" y="51.21"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.22" x2="16.22" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_4_)" height="26.784" width="31.227" x="11.758" y="24.426"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1.326" stroke-opacity="0.4" width="31.227" x="11.758" y="51.21"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.2236" x2="16.2236" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="7.305" width="5.682" x="13.38" y="42.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.19" x2="30.19" y1="25.98" y2="48.93">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_5_)" height="7.305" width="5.682" x="13.383" y="42.197"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.1895" x2="30.1895" y1="25.9839" y2="48.9336">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="7.304" width="5.254" x="27.56" y="25.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23.31" x2="23.31" y1="25.98" y2="48.93">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_6_)" height="7.304" width="5.254" x="27.563" y="25.967"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23.3125" x2="23.3125" y1="25.9839" y2="48.9336">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="7.304" width="5.254" x="20.69" y="25.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="37.88" x2="37.88" y1="25.98" y2="48.93">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_7_)" height="7.304" width="5.254" x="20.686" y="25.967"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="37.8779" x2="37.8779" y1="25.9839" y2="48.9336">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="7.304" width="6.877" x="34.44" y="25.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.19" x2="30.19" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_8_)" height="7.304" width="6.877" x="34.439" y="25.967"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="30.1895" x2="30.1895" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="7.305" width="5.254" x="27.56" y="42.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="23.31" x2="23.31" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_9_)" height="7.305" width="5.254" x="27.563" y="42.197"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="23.3125" x2="23.3125" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="7.305" width="5.254" x="20.69" y="42.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27.35" x2="27.35" y1="25.98" y2="48.89">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<rect fill="url(#SVGID_10_)" height="7.305" width="5.254" x="20.686" y="42.197"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="27.3496" x2="27.3496" y1="25.9839" y2="48.8929">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<polygon fill="url(#SVGID_11_)" points="18.98,34.89,18.98,25.97,13.38,25.97,13.38,40.57,41.32,40.57,41.32,34.89"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="37.88" x2="37.88" y1="25.72" y2="49.26">
-<stop offset="0" stop-color="#D5D19D"/>
-<stop offset="0.33" stop-color="#B9A56D"/>
-<stop offset="0.66" stop-color="#AD9861"/>
-<stop offset="1" stop-color="#B38E4E"/>
+<polygon fill="url(#SVGID_11_)" points="18.975,34.894 18.975,25.967 13.383,25.967 13.383,40.574 41.316,40.574 41.316,34.894 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="37.8779" x2="37.8779" y1="25.7173" y2="49.2631">
+<stop offset="0" style="stop-color:#D5D19D"/>
+<stop offset="0.33" style="stop-color:#B9A56D"/>
+<stop offset="0.66" style="stop-color:#AD9861"/>
+<stop offset="1" style="stop-color:#B38E4E"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="7.305" width="6.877" x="34.44" y="42.2"/>
+<rect fill="url(#SVGID_12_)" height="7.305" width="6.877" x="34.439" y="42.197"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sisx.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sisx.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,62 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.85" x2="27.85" y1="3.197" y2="48.38">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.4606" stop-color="#BFC2C1"/>
-<stop offset="0.7333" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="27.8462" x2="27.8462" y1="3.1968" y2="48.3761">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.4606" style="stop-color:#BFC2C1"/>
+<stop offset="0.7333" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M51.06,18.04h-20.03v-2.398c2.141-1.259,4.403-2.609,4.403-5.143,0-3.896-4.045-7.064-7.938-7.064-3.895,0-7.937,3.168-7.937,7.064,0,2.535,2.265,3.891,4.415,5.146v2.396h-5.701c-1.445,0-2.627,1.183-2.627,2.626v13.05h-1.453c-1.211-2.092-2.594-4.378-5.185-4.378-3.859-0.01-6.995,4-6.995,7.87,0,3.868,3.136,7.879,7.003,7.879,2.591,0,3.974-2.286,5.185-4.377h1.453v3.885c0,1.445,1.183,2.627,2.627,2.627h6.205v-3.62c-1.889-1.104-3.882-2.296-3.882-4.526,0-3.426,3.556-6.213,6.981-6.213s6.983,2.787,6.983,6.213c0,2.229-1.99,3.417-3.873,4.525v3.621h20.38c1.445,0,2.628-1.182,2.628-2.627v-23.92c-0.01-1.447-1.19-2.627-2.64-2.627z" fill="url(#SVGID_1_)"/>
-<path d="M18.27,18.76h5.701v-0.718h-5.701c-1.445,0-2.627,1.183-2.627,2.626v0.718c0-1.45,1.18-2.63,2.63-2.63z" fill="#FFFFFF"/>
-<path d="M27.49,4.153c3.78,0,7.692,2.989,7.918,6.729,0.012-0.125,0.021-0.251,0.021-0.382,0-3.896-4.045-7.064-7.938-7.064-3.895,0-7.937,3.168-7.937,7.064,0,0.131,0.01,0.257,0.021,0.382,0.23-3.737,4.14-6.727,7.92-6.727z" fill="#FFFFFF"/>
-<path d="M30.68,43.61v0.717c1.883-1.107,3.873-2.295,3.873-4.523,0-0.113-0.014-0.225-0.021-0.336-0.21,1.98-2.08,3.1-3.85,4.14z" fill="#FFFFFF"/>
-<path d="M9.003,30.06c2.591,0,3.974,2.286,5.185,4.378h1.453v-0.718h-1.453c-1.211-2.092-2.594-4.378-5.185-4.378-3.869,0-7.005,4.01-7.005,7.88,0,0.119,0.012,0.238,0.018,0.358,0.186-3.76,3.238-7.52,6.985-7.52z" fill="#FFFFFF"/>
-<path d="M51.06,18.04h-20.03v0.718h20.04c1.445,0,2.628,1.182,2.628,2.625v-0.718c0-1.44-1.18-2.62-2.63-2.62z" fill="#FFFFFF"/>
-<path d="M20.61,39.47c-0.007,0.111-0.021,0.223-0.021,0.336,0,2.229,1.993,3.422,3.882,4.525v-0.73c-1.77-1.04-3.64-2.16-3.86-4.14z" fill="#FFFFFF"/>
-<path d="M53.69,32.87h-13.18l-0.113,0.01-0.06,0.01c-1.32,0.21-2.018,1.202-2.179,1.638l-1.121,2.339c-0.058,0.08-0.11,0.163-0.155,0.242-0.064,0.112-0.118,0.222-0.127,0.247-0.047,0.096-0.09,0.197-0.148,0.367-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.326,1.911-0.836v-13.53z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M53.69,33.59h-13.18l-0.057,0.009c-0.986,0.157-1.513,0.888-1.645,1.239l-1.151,2.401c-0.056,0.073-0.106,0.149-0.153,0.231-0.045,0.078-0.082,0.154-0.102,0.201-0.037,0.073-0.067,0.15-0.109,0.273-0.076,0.233-0.114,0.452-0.114,0.67v8.615h14.6c0.754,0,1.43-0.326,1.911-0.836v-12.79z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.94" x2="47.94" y1="34.28" y2="38.73">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="1" stop-color="#66924D"/>
+<path d="M51.065,18.041H31.027v-2.398c2.141-1.259,4.403-2.609,4.403-5.143c0-3.896-4.045-7.064-7.938-7.064 c-3.895,0-7.937,3.168-7.937,7.064c0,2.535,2.265,3.891,4.415,5.146v2.396h-5.701c-1.445,0-2.627,1.183-2.627,2.626v13.048h-1.453 c-1.211-2.092-2.594-4.378-5.185-4.378C5.136,29.337,2,33.348,2,37.217c0,3.868,3.136,7.879,7.003,7.879 c2.591,0,3.974-2.286,5.185-4.377h1.453v3.885c0,1.445,1.183,2.627,2.627,2.627h6.205v-3.62c-1.889-1.104-3.882-2.296-3.882-4.526 c0-3.426,3.556-6.213,6.981-6.213s6.983,2.787,6.983,6.213c0,2.229-1.99,3.417-3.873,4.525v3.621h20.383 c1.445,0,2.628-1.182,2.628-2.627V20.667C53.693,19.224,52.51,18.041,51.065,18.041z" fill="url(#SVGID_1_)"/>
+<path d="M18.268,18.759h5.701v-0.718h-5.701c-1.445,0-2.627,1.183-2.627,2.626v0.718 C15.641,19.941,16.823,18.759,18.268,18.759z" fill="#FFFFFF"/>
+<path d="M27.492,4.153c3.78,0,7.692,2.989,7.918,6.729c0.012-0.125,0.021-0.251,0.021-0.382 c0-3.896-4.045-7.064-7.938-7.064c-3.895,0-7.937,3.168-7.937,7.064c0,0.131,0.01,0.257,0.021,0.382 C19.8,7.143,23.71,4.153,27.492,4.153z" fill="#FFFFFF"/>
+<path d="M30.682,43.609v0.717c1.883-1.107,3.873-2.295,3.873-4.523c0-0.113-0.014-0.225-0.021-0.336 C34.321,41.452,32.454,42.566,30.682,43.609z" fill="#FFFFFF"/>
+<path d="M9.003,30.055c2.591,0,3.974,2.286,5.185,4.378h1.453v-0.718h-1.453c-1.211-2.092-2.594-4.378-5.185-4.378 C5.136,29.337,2,33.348,2,37.217c0,0.119,0.012,0.238,0.018,0.358C2.204,33.822,5.256,30.055,9.003,30.055z" fill="#FFFFFF"/>
+<path d="M51.065,18.041H31.027v0.718h20.038c1.445,0,2.628,1.182,2.628,2.625v-0.718 C53.693,19.224,52.51,18.041,51.065,18.041z" fill="#FFFFFF"/>
+<path d="M20.612,39.467c-0.007,0.111-0.021,0.223-0.021,0.336c0,2.229,1.993,3.422,3.882,4.525V43.61 C22.695,42.572,20.827,41.454,20.612,39.467z" fill="#FFFFFF"/>
+<path d="M53.693,32.871H40.51l-0.113,0.01L40.34,32.89c-1.32,0.21-2.018,1.202-2.179,1.638 l-1.121,2.339c-0.058,0.08-0.11,0.163-0.155,0.242c-0.064,0.112-0.118,0.222-0.127,0.247c-0.047,0.096-0.09,0.197-0.148,0.367 c-0.1,0.307-0.148,0.6-0.148,0.893v8.615h15.32c0.754,0,1.43-0.326,1.911-0.836V32.871z" fill="#020202" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M53.693,33.59H40.51l-0.057,0.009c-0.986,0.157-1.513,0.888-1.645,1.239l-1.151,2.401 c-0.056,0.073-0.106,0.149-0.153,0.231c-0.045,0.078-0.082,0.154-0.102,0.201c-0.037,0.073-0.067,0.15-0.109,0.273 c-0.076,0.233-0.114,0.452-0.114,0.67v8.615h14.603c0.754,0,1.43-0.326,1.911-0.836V33.59z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="47.9429" x2="47.9429" y1="34.2842" y2="38.7279">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="1" style="stop-color:#66924D"/>
</linearGradient>
-<path d="M57.62,37.63l-1.189-2.479s-0.269-0.707-1.11-0.841h-14.75c-0.843,0.134-1.111,0.841-1.111,0.841l-1.188,2.479c-0.289,0.325-0.356,0.74-0.371,0.987h20.09c-0.01-0.25-0.08-0.67-0.37-0.99z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="47.95" x2="47.95" y1="37.07" y2="57.07">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#984D51"/>
+<path d="M57.619,37.628l-1.189-2.479c0,0-0.269-0.707-1.11-0.841H40.568 c-0.843,0.134-1.111,0.841-1.111,0.841l-1.188,2.479c-0.289,0.325-0.356,0.74-0.371,0.987h20.092 C57.975,38.368,57.908,37.953,57.619,37.628z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="47.9487" x2="47.9487" y1="37.0742" y2="57.0715">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#984D51"/>
</linearGradient>
-<path d="M58,55.13c0,0.793-0.644,1.437-1.436,1.437h-17.23c-0.791,0-1.436-0.644-1.436-1.437v-16.52c0-0.793,0.645-1.436,1.436-1.436h17.23c0.792,0,1.436,0.643,1.436,1.436v16.51z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.95" x2="47.95" y1="51.54" y2="37.18">
-<stop offset="0" stop-color="#6F3B44"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M58,55.128c0,0.793-0.644,1.437-1.436,1.437H39.333c-0.791,0-1.436-0.644-1.436-1.437V38.615 c0-0.793,0.645-1.436,1.436-1.436h17.232c0.792,0,1.436,0.643,1.436,1.436V55.128z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9487" x2="47.9487" y1="51.5391" y2="37.1797">
+<stop offset="0" style="stop-color:#6F3B44"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M40.77,51.54h14.36c0.793,0,1.437-0.645,1.437-1.438v-12.92h-17.24v12.92c-0.003,0.8,0.647,1.44,1.437,1.44z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="47.95" x2="47.95" y1="50.22" y2="56.83">
-<stop offset="0" stop-color="#6F3B44"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M40.769,51.539h14.359c0.793,0,1.437-0.645,1.437-1.438V37.18H39.333v12.922 C39.333,50.895,39.976,51.539,40.769,51.539z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="47.9478" x2="47.9478" y1="50.2227" y2="56.8339">
+<stop offset="0" style="stop-color:#6F3B44"/>
+<stop offset="1" style="stop-color:#C39072"/>
+</linearGradient>
+<path d="M55.87,51.326c-0.17,0.104-0.359,0.168-0.564,0.194c-0.047,0.011-0.103,0.019-0.177,0.019H40.769 c-0.074,0-0.13-0.008-0.177-0.019c-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.25,0.424,0.706,0.713,1.233,0.713h17.232 c0.527,0,0.983-0.289,1.232-0.713L55.87,51.326z" fill="url(#SVGID_5_)"/>
+<path d="M55.305,52.238c0.205-0.025,0.395-0.092,0.564-0.193l1.731,4.062c0.073-0.078,0.142-0.161,0.196-0.255 l-1.928-4.525c-0.17,0.104-0.359,0.168-0.564,0.194c-0.047,0.011-0.103,0.019-0.177,0.019H40.769c-0.074,0-0.13-0.008-0.177-0.019 c-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.056,0.094,0.124,0.177,0.198,0.255l1.73-4.062 c0.17,0.102,0.359,0.168,0.564,0.193c0.047,0.011,0.103,0.018,0.177,0.018" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M39.333,37.18v12.922c0,0.793,0.644,1.438,1.437,1.438h14.359c0.793,0,1.437-0.645,1.437-1.438V37.18H39.333z M55.846,50.102c0,0.396-0.322,0.719-0.718,0.719H40.769c-0.396,0-0.718-0.322-0.718-0.719V37.896h15.795V50.102z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="47.9487" x2="47.9487" y1="34.292" y2="37.2548">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#984D51"/>
</linearGradient>
-<path d="M55.87,51.33c-0.17,0.104-0.359,0.168-0.564,0.194-0.047,0.011-0.103,0.019-0.177,0.019h-14.36c-0.074,0-0.13-0.008-0.177-0.019-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.25,0.424,0.706,0.713,1.233,0.713h17.23c0.527,0,0.983-0.289,1.232-0.713l-1.92-4.53z" fill="url(#SVGID_5_)"/>
-<path d="M55.3,52.24c0.205-0.025,0.395-0.092,0.564-0.193l1.731,4.062c0.073-0.078,0.142-0.161,0.196-0.255l-1.928-4.525c-0.17,0.104-0.359,0.168-0.564,0.194-0.047,0.011-0.103,0.019-0.177,0.019h-14.35c-0.074,0-0.13-0.008-0.177-0.019-0.205-0.026-0.395-0.091-0.564-0.194l-1.929,4.525c0.056,0.094,0.124,0.177,0.198,0.255l1.73-4.062c0.17,0.102,0.359,0.168,0.564,0.193,0.047,0.011,0.103,0.018,0.177,0.018" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M39.33,37.18v12.92c0,0.793,0.644,1.438,1.437,1.438h14.36c0.793,0,1.437-0.645,1.437-1.438v-12.92h-17.24zm16.52,12.92c0,0.396-0.322,0.719-0.718,0.719h-14.36c-0.396,0-0.718-0.322-0.718-0.719v-12.2h15.8v12.21z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="47.95" x2="47.95" y1="34.29" y2="37.25">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#984D51"/>
+<path d="M56.565,35.742c0-0.793-0.644-1.435-1.437-1.435H40.769c-0.793,0-1.437,0.642-1.437,1.435v1.438 h17.232V35.742z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="47.8735" x2="47.8735" y1="37.4336" y2="34.3221">
+<stop offset="0" style="stop-color:#B17362"/>
+<stop offset="1" style="stop-color:#CAA782"/>
</linearGradient>
-<path d="M56.56,35.74c0-0.793-0.644-1.435-1.437-1.435h-14.35c-0.793,0-1.437,0.642-1.437,1.435v1.438h17.23v-1.438z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="47.87" x2="47.87" y1="37.43" y2="34.32">
-<stop offset="0" stop-color="#B17362"/>
-<stop offset="1" stop-color="#CAA782"/>
+<path d="M39.333,37.18h17.232c0.465,0,0.874,0.225,1.137,0.568 c-0.027-0.041-0.049-0.082-0.083-0.12l-1.189-2.479c0,0-0.269-0.707-1.11-0.841H40.568c-0.843,0.134-1.111,0.841-1.111,0.841 l-1.188,2.479c-0.102,0.113-0.167,0.237-0.223,0.362C38.28,37.512,38.765,37.18,39.333,37.18z" fill="url(#SVGID_7_)" fill-opacity="0.65" stroke-opacity="0.65"/>
+<path d="M57.787,37.869c0.007,0.012,0.011,0.021,0.017,0.033C57.797,37.891,57.792,37.881,57.787,37.869z" fill="#BBCE8B"/>
+<path d="M37.985,38.139c-0.003,0.01-0.006,0.02-0.01,0.029C37.979,38.158,37.982,38.148,37.985,38.139z" fill="#BBCE8B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="47.9487" x2="47.9487" y1="37.0742" y2="57.0715">
+<stop offset="0" style="stop-color:#BEB16A"/>
+<stop offset="0.5455" style="stop-color:#CAA782"/>
+<stop offset="1" style="stop-color:#B17362"/>
</linearGradient>
-<path d="M39.33,37.18h17.23c0.465,0,0.874,0.225,1.137,0.568-0.027-0.041-0.049-0.082-0.083-0.12l-1.189-2.479s-0.269-0.707-1.11-0.841h-14.75c-0.843,0.134-1.111,0.841-1.111,0.841l-1.188,2.479c-0.102,0.113-0.167,0.237-0.223,0.362,0.23-0.48,0.71-0.81,1.28-0.81z" fill="url(#SVGID_7_)" fill-opacity="0.65" stroke-opacity="0.65"/>
-<path d="M57.79,37.87c0.007,0.012,0.011,0.021,0.017,0.033-0.01-0.01-0.02-0.02-0.02-0.03z" fill="#BBCE8B"/>
-<path d="M37.98,38.14c-0.003,0.01-0.006,0.02-0.01,0.029,0.01-0.01,0.01-0.02,0.01-0.03z" fill="#BBCE8B"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="47.95" x2="47.95" y1="37.07" y2="57.07">
-<stop offset="0" stop-color="#BEB16A"/>
-<stop offset="0.5455" stop-color="#CAA782"/>
-<stop offset="1" stop-color="#B17362"/>
-</linearGradient>
-<path d="M56.56,37.18h-17.23c-0.791,0-1.436,0.643-1.436,1.436v16.51c0,0.793,0.645,1.437,1.436,1.437h17.23c0.792,0,1.436-0.644,1.436-1.437v-16.52c-0.01-0.795-0.65-1.435-1.45-1.435zm0.72,17.95c0,0.396-0.322,0.718-0.717,0.718h-17.23c-0.395,0-0.717-0.322-0.717-0.718v-16.52c0-0.396,0.322-0.719,0.717-0.719h17.23c0.395,0,0.717,0.322,0.717,0.719v16.51z" fill="url(#SVGID_8_)"/>
-</svg>
\ No newline at end of file
+<path d="M56.565,37.18H39.333c-0.791,0-1.436,0.643-1.436,1.436v16.513c0,0.793,0.645,1.437,1.436,1.437 h17.232c0.792,0,1.436-0.644,1.436-1.437V38.615C58,37.822,57.357,37.18,56.565,37.18z M57.282,55.128 c0,0.396-0.322,0.718-0.717,0.718H39.333c-0.395,0-0.717-0.322-0.717-0.718V38.615c0-0.396,0.322-0.719,0.717-0.719h17.232 c0.395,0,0.717,0.322,0.717,0.719V55.128z" fill="url(#SVGID_8_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_social_media.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_social_media.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="30" x2="30" y1="50.17" y2="7.62">
<stop offset="0" stop-color="#2A3662"/>
@@ -23,7 +24,7 @@
<stop offset="0" stop-color="#59595A"/>
<stop offset="1" stop-color="#000000"/>
</linearGradient>
-<path d="M11.08,28.64c-0.222-0.295-0.725-0.295-0.946-0.295-0.437,0-0.669,0.311-0.673,0.616v0.052c0,0.537,0.03,1.14,0.094,1.871,0.013,0.139,0.03,0.276,0.047,0.414l0.024,0.201c0.055,0.434,0.121,0.861,0.195,1.274l0.035,0.183c0.032,0.162,0.063,0.323,0.097,0.483,0.089,0.405,0.198,0.827,0.332,1.29,0.019,0.066,0.037,0.135,0.054,0.199,0.029,0.109,0.058,0.217,0.091,0.322l0.005,0.014,0.012,0.033c-0.003-0.01-0.008-0.023-0.01-0.037l1.197-0.081c0.019-0.187,0.025-0.382,0.019-0.575-0.01-0.303-0.021-0.676-0.108-0.991l1.112-1.493,0.121-0.162v-1.595l-0.16-0.18-1.52-1.53z" fill="url(#SVGID_4)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M11.08,28.64c-0.222-0.295-0.725-0.295-0.946-0.295-0.437,0-0.669,0.311-0.673,0.616v0.021,0.031c0,0.537,0.03,1.14,0.094,1.871,0.013,0.139,0.03,0.276,0.047,0.414l0.024,0.201c0.055,0.434,0.121,0.861,0.195,1.274l0.035,0.183c0.032,0.162,0.063,0.323,0.097,0.483,0.089,0.405,0.198,0.827,0.332,1.29,0.019,0.066,0.037,0.135,0.054,0.199,0.029,0.109,0.058,0.217,0.091,0.322l0.005,0.014,0.012,0.033c-0.003-0.01-0.008-0.023-0.01-0.037l1.197-0.081c0.019-0.187,0.025-0.382,0.019-0.575-0.01-0.303-0.021-0.676-0.108-0.991l1.112-1.493,0.121-0.162v-1.595l-0.16-0.18-1.52-1.53z" fill="url(#SVGID_4)" fill-opacity="0.3" stroke-opacity="0.3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5" x1="15.86" x2="50.59" y1="25.75" y2="25.75">
<stop offset="0" stop-color="#59595A"/>
<stop offset="1" stop-color="#000000"/>
@@ -202,13 +203,13 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M9.799,10.64s2.25,2.954,6.821,2.949-2.15-0.34-6.821-2.95z" fill="url(#SVGID_35)"/>
+<path d="M9.799,10.64s2.25,2.954,6.821,2.949c0,0-2.15-0.34-6.821-2.95z" fill="url(#SVGID_35)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_36" x1="8.46" x2="8.51" y1="9.21" y2="12.51">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M9.258,8.999s-2.203,0.132-1.386,3.865-0.268-2.55,1.386-3.861z" fill="url(#SVGID_36)"/>
+<path d="M9.258,8.999s-2.203,0.132-1.386,3.865c0,0-0.268-2.55,1.386-3.861z" fill="url(#SVGID_36)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_37" x1="12.9" x2="12.73" y1="7.9" y2="9.4">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
@@ -247,17 +248,18 @@
<stop offset="0.36" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M45.31,10.64s2.25,2.954,6.822,2.949-2.15-0.34-6.82-2.95z" fill="url(#SVGID_47)"/>
+<path d="M45.31,10.64s2.25,2.954,6.822,2.949c0,0-2.15-0.34-6.82-2.95z" fill="url(#SVGID_47)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_48" x1="43.97" x2="44.01" y1="9.21" y2="12.51">
<stop offset="0" stop-color="#725B53"/>
<stop offset="0.38" stop-color="#451F1E"/>
<stop offset="1" stop-color="#261013"/>
</linearGradient>
-<path d="M44.77,8.999s-2.203,0.132-1.386,3.865-0.27-2.55,1.39-3.861z" fill="url(#SVGID_48)"/>
+<path d="M44.77,8.999s-2.203,0.132-1.386,3.865c0,0-0.27-2.55,1.39-3.861z" fill="url(#SVGID_48)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_49" x1="48.4" x2="48.24" y1="7.9" y2="9.4">
<stop offset="0" stop-color="#8D7B6A"/>
<stop offset="1" stop-color="#451F1E"/>
</linearGradient>
<path d="M48.65,9.516c-1.025-0.146-2.761-1.055-3.439-0.73,0,0,2.225-2.539,6.153,0.352,0,0-0.93,0.632-2.71,0.378z" fill="url(#SVGID_49)"/>
<rect fill="none" height="24.49" width="24.49" x="35.51" y="4.333"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_speaker.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_speaker.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,95 +1,97 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2" y2="57.91">
-<stop offset="0" stop-color="#C5AE8D"/>
-<stop offset="1" stop-color="#452627"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2" y2="57.9149">
+<stop offset="0" style="stop-color:#C5AE8D"/>
+<stop offset="1" style="stop-color:#452627"/>
</linearGradient>
-<path d="M52.46,55.62c0,1.314-1.065,2.38-2.38,2.38h-40.16c-1.314,0-2.38-1.065-2.38-2.38v-51.24c0-1.315,1.065-2.38,2.38-2.38h40.16c1.314,0,2.38,1.065,2.38,2.38v51.24z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.19" y2="56.73">
-<stop offset="0" stop-color="#DBD2BF"/>
-<stop offset="0.6364" stop-color="#8D7360"/>
-<stop offset="1" stop-color="#A28E7A"/>
+<path d="M52.459,55.62c0,1.314-1.065,2.38-2.38,2.38H9.92c-1.314,0-2.38-1.065-2.38-2.38V4.38 C7.54,3.065,8.605,2,9.92,2h40.159c1.314,0,2.38,1.065,2.38,2.38V55.62z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.1904" y2="56.7281">
+<stop offset="0" style="stop-color:#DBD2BF"/>
+<stop offset="0.6364" style="stop-color:#8D7360"/>
+<stop offset="1" style="stop-color:#A28E7A"/>
</linearGradient>
-<path d="M9.92,56.81c-0.656,0-1.189-0.533-1.189-1.189v-51.24c0-0.656,0.533-1.189,1.189-1.189h40.16c0.657,0,1.19,0.533,1.19,1.189v51.24c0,0.656-0.533,1.189-1.19,1.189h-40.16z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="4.38" y2="55.54">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="0.7515" stop-color="#673F3A"/>
-<stop offset="1" stop-color="#937762"/>
+<path d="M9.92,56.81c-0.656,0-1.189-0.533-1.189-1.189V4.38c0-0.656,0.533-1.189,1.189-1.189h40.159 c0.657,0,1.19,0.533,1.19,1.189v51.24c0,0.656-0.533,1.189-1.19,1.189H9.92z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="4.3799" y2="55.5422">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="0.7515" style="stop-color:#673F3A"/>
+<stop offset="1" style="stop-color:#937762"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="51.24" width="40.16" x="9.92" y="4.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="41.49" y2="7.553">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="1" stop-color="#4E2224"/>
+<rect fill="url(#SVGID_3_)" height="51.24" width="40.159" x="9.92" y="4.38"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="41.4912" y2="7.5526">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<circle cx="30" cy="24.7" fill="url(#SVGID_4_)" r="17.02"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="8.827" y2="40.49">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.4" stop-color="#D4D6D5"/>
-<stop offset="0.7939" stop-color="#999E9E"/>
-<stop offset="1" stop-color="#CBCDCC"/>
+<circle cx="30" cy="24.702" fill="url(#SVGID_4_)" r="17.02"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="8.8267" y2="40.4868">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.4" style="stop-color:#D4D6D5"/>
+<stop offset="0.7939" style="stop-color:#999E9E"/>
+<stop offset="1" style="stop-color:#CBCDCC"/>
</linearGradient>
-<path d="M30,40.53c-8.728,0-15.83-7.101-15.83-15.83s7.101-15.83,15.83-15.83,15.83,7.102,15.83,15.83c0,8.73-7.1,15.83-15.83,15.83z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="10.42" y2="38.83">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#E5E5E5"/>
-<stop offset="0.6424" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M29.998,40.532c-8.728,0-15.828-7.101-15.828-15.83c0-8.729,7.101-15.83,15.828-15.83 c8.729,0,15.832,7.102,15.832,15.83C45.83,33.432,38.728,40.532,29.998,40.532L29.998,40.532z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="29.9971" x2="29.9971" y1="10.4238" y2="38.8273">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#E5E5E5"/>
+<stop offset="0.6424" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M30,38.98c-7.873,0-14.28-6.407-14.28-14.28s6.406-14.28,14.28-14.28,14.28,6.404,14.28,14.28-6.41,14.28-14.28,14.28z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30" x2="30" y1="34.62" y2="14.65">
-<stop offset="0" stop-color="#CBCBCB"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M29.998,38.983c-7.873,0-14.279-6.407-14.279-14.281s6.406-14.278,14.279-14.278 s14.278,6.404,14.278,14.278S37.871,38.983,29.998,38.983L29.998,38.983z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="29.998" x2="29.998" y1="34.6191" y2="14.6512">
+<stop offset="0" style="stop-color:#CBCBCB"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<circle cx="30" cy="24.7" fill="url(#SVGID_7_)" r="10.2"/>
-<path d="M38.2,30.73l-3.368-2.985h-9.063l-3.861,3.148c1.865,2.429,4.787,4.002,8.086,4.002,3.37,0.01,6.35-1.63,8.2-4.16z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<circle cx="30" cy="26.34" fill-opacity="0.15" r="6.607" stroke-opacity="0.15"/>
-<radialGradient cx="313.4" cy="-573.3" gradientTransform="matrix(0.5638 0 0 0.5638 -146.6494 346.192)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="13.19">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="29.998" cy="24.702" fill="url(#SVGID_7_)" r="10.195"/>
+<path d="M38.205,30.732l-3.368-2.985h-9.063l-3.861,3.148c1.865,2.429,4.787,4.002,8.086,4.002 C33.369,34.897,36.35,33.255,38.205,30.732z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<circle cx="29.998" cy="26.336" fill-opacity="0.15" r="6.607" stroke-opacity="0.15"/>
+<radialGradient cx="313.3594" cy="-573.2905" gradientTransform="matrix(0.5638 0 0 0.5638 -146.6494 346.192)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="13.1949">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<circle cx="30" cy="24.7" fill="url(#SVGID_8_)" r="6.607"/>
-<path d="M30,30.44c-3.166,0-5.742-2.575-5.742-5.742,0-3.165,2.576-5.741,5.742-5.741s5.74,2.576,5.74,5.741c0,3.17-2.58,5.74-5.74,5.74zm0-10.38c-2.563,0-4.645,2.084-4.645,4.644,0,2.562,2.082,4.644,4.645,4.644,2.561,0,4.643-2.082,4.643-4.644,0-2.56-2.08-4.64-4.64-4.64z" fill="#EBEBEB" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="45.77" x2="45.77" y1="54.88" y2="50.52">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="1" stop-color="#4E2224"/>
+<circle cx="29.998" cy="24.702" fill="url(#SVGID_8_)" r="6.607"/>
+<path d="M29.998,30.444c-3.166,0-5.742-2.575-5.742-5.742c0-3.165,2.576-5.741,5.742-5.741 s5.74,2.576,5.74,5.741C35.738,27.869,33.164,30.444,29.998,30.444L29.998,30.444z M29.998,20.059c-2.563,0-4.645,2.084-4.645,4.644 c0,2.562,2.082,4.644,4.645,4.644c2.561,0,4.643-2.082,4.643-4.644C34.641,22.143,32.559,20.059,29.998,20.059L29.998,20.059z" fill="#EBEBEB" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="45.7656" x2="45.7656" y1="54.8813" y2="50.5181">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<circle cx="45.77" cy="52.72" fill="url(#SVGID_9_)" r="2.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="45.77" x2="45.77" y1="53.8" y2="51.62">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="45.766" cy="52.715" fill="url(#SVGID_9_)" r="2.38"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="45.7656" x2="45.7656" y1="53.7988" y2="51.6172">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M45.77,53.9c-0.656,0-1.189-0.533-1.189-1.19,0-0.656,0.533-1.189,1.189-1.189s1.189,0.533,1.189,1.189c0,0.66-0.54,1.19-1.19,1.19z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="13.74" x2="13.74" y1="54.88" y2="50.52">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="1" stop-color="#4E2224"/>
+<path d="M45.766,53.905c-0.656,0-1.189-0.533-1.189-1.19c0-0.656,0.533-1.189,1.189-1.189 s1.189,0.533,1.189,1.189C46.955,53.372,46.422,53.905,45.766,53.905L45.766,53.905z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="13.7373" x2="13.7373" y1="54.8813" y2="50.5181">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<circle cx="13.74" cy="52.72" fill="url(#SVGID_11_)" r="2.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.74" x2="13.74" y1="53.8" y2="51.62">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="13.737" cy="52.715" fill="url(#SVGID_11_)" r="2.38"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="13.7373" x2="13.7373" y1="53.7988" y2="51.6172">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M13.74,53.9c-0.657,0-1.19-0.533-1.19-1.19,0-0.656,0.533-1.189,1.19-1.189,0.656,0,1.189,0.533,1.189,1.189,0,0.66-0.54,1.19-1.19,1.19z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="45.77" x2="45.77" y1="9.962" y2="5.599">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="1" stop-color="#4E2224"/>
+<path d="M13.737,53.905c-0.657,0-1.19-0.533-1.19-1.19c0-0.656,0.533-1.189,1.19-1.189 c0.656,0,1.189,0.533,1.189,1.189C14.927,53.372,14.394,53.905,13.737,53.905L13.737,53.905z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="45.7656" x2="45.7656" y1="9.9624" y2="5.5991">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="1" style="stop-color:#4E2224"/>
+</linearGradient>
+<circle cx="45.766" cy="7.796" fill="url(#SVGID_13_)" r="2.38"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="45.7656" x2="45.7656" y1="8.8799" y2="6.6982">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="45.77" cy="7.796" fill="url(#SVGID_13_)" r="2.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="45.77" x2="45.77" y1="8.88" y2="6.698">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M45.766,8.986c-0.656,0-1.189-0.533-1.189-1.19c0-0.656,0.533-1.189,1.189-1.189 s1.189,0.533,1.189,1.189C46.955,8.453,46.422,8.986,45.766,8.986L45.766,8.986z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="13.7373" x2="13.7373" y1="9.9624" y2="5.5991">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<path d="M45.77,8.986c-0.656,0-1.189-0.533-1.189-1.19,0-0.656,0.533-1.189,1.189-1.189s1.189,0.533,1.189,1.189c0,0.657-0.54,1.19-1.19,1.19z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="13.74" x2="13.74" y1="9.962" y2="5.599">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="1" stop-color="#4E2224"/>
+<circle cx="13.737" cy="7.796" fill="url(#SVGID_15_)" r="2.38"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="13.7373" x2="13.7373" y1="8.8799" y2="6.6982">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="13.74" cy="7.796" fill="url(#SVGID_15_)" r="2.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="13.74" x2="13.74" y1="8.88" y2="6.698">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M13.74,8.986c-0.657,0-1.19-0.533-1.19-1.19,0-0.656,0.533-1.189,1.19-1.189,0.656,0,1.189,0.533,1.189,1.189,0,0.657-0.54,1.19-1.19,1.19z" fill="url(#SVGID_16_)"/>
+<path d="M13.737,8.986c-0.657,0-1.19-0.533-1.19-1.19c0-0.656,0.533-1.189,1.19-1.189 c0.656,0,1.189,0.533,1.189,1.189C14.927,8.453,14.394,8.986,13.737,8.986L13.737,8.986z" fill="url(#SVGID_16_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_stereo.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_stereo.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,91 +1,93 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.39" x2="30.39" y1="2.648" y2="33.76">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.5879" stop-color="#B7BABA"/>
-<stop offset="1" stop-color="#F2F2F2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30.3877" x2="30.3877" y1="2.6484" y2="33.7566">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.5879" style="stop-color:#B7BABA"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M50.76,34.91c-0.035-1.49-0.029-3.037-0.025-4.611,0.025-8.141,3.977-23.86-19.91-23.86s-20.83,11.06-20.95,24.97c-0.012,1.19-0.021,2.362-0.049,3.5l-4.436-0.1c0.027-1.118,0.035-2.269,0.047-3.438,0.114-13.8-3.015-29.37,25.38-29.37,28.39,0,24.38,19.69,24.35,28.31-0.004,1.536-0.008,3.044,0.023,4.498l-4.43,0.1z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.39" x2="30.39" y1="3.181" y2="33.23">
-<stop offset="0" stop-color="#A0A5A5"/>
-<stop offset="0.3636" stop-color="#CBCDCC"/>
-<stop offset="0.7455" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#D4D6D5"/>
+<path d="M50.762,34.911c-0.035-1.49-0.029-3.037-0.025-4.611c0.025-8.141,3.977-23.862-19.914-23.862 S9.998,17.496,9.883,31.411c-0.012,1.19-0.021,2.362-0.049,3.5l-4.436-0.1c0.027-1.118,0.035-2.269,0.047-3.438 C5.559,17.572,2.43,2,30.822,2c28.391,0,24.379,19.689,24.352,28.313c-0.004,1.536-0.008,3.044,0.023,4.498L50.762,34.911 L50.762,34.911z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30.3916" x2="30.3916" y1="3.1812" y2="33.2296">
+<stop offset="0" style="stop-color:#A0A5A5"/>
+<stop offset="0.3636" style="stop-color:#CBCDCC"/>
+<stop offset="0.7455" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#D4D6D5"/>
</linearGradient>
-<path d="M51.3,33.78c-0.012-1.138-0.01-2.303-0.006-3.483,0.004-0.937,0.055-1.977,0.109-3.084,0.26-5.216,0.582-11.7-3.648-16.15-3.271-3.438-8.967-5.181-16.93-5.181-8.865,0-14.73,1.577-17.92,4.823-3.801,3.862-3.709,9.713-3.604,16.49,0.021,1.38,0.045,2.787,0.033,4.211l-0.035,2.939-3.33-0.075,0.01-0.553c0.012-0.78,0.018-1.56,0.026-2.35,0.01-1.362-0.008-2.726-0.027-4.077-0.104-7.34-0.201-14.27,4.461-19,3.813-3.866,10.48-5.746,20.39-5.746,8.961,0,15.47,2.06,19.35,6.124,5.16,5.402,4.803,13.12,4.543,18.75-0.049,1.051-0.094,2.022-0.096,2.884l-0.002,0.512c-0.002,0.98-0.004,1.949,0.008,2.898l0.008,0.549-3.328,0.075v-0.56z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.6" x2="18.6" y1="29.2" y2="56.94">
-<stop offset="0" stop-color="#7B7B7B"/>
-<stop offset="0.1455" stop-color="#565656"/>
-<stop offset="0.3091" stop-color="#8C8C8C"/>
-<stop offset="0.6848" stop-color="#000000"/>
-<stop offset="1" stop-color="#646464"/>
+<path d="M51.297,33.784c-0.012-1.138-0.01-2.303-0.006-3.483c0.004-0.937,0.055-1.977,0.109-3.084 c0.26-5.216,0.582-11.705-3.648-16.153c-3.271-3.438-8.967-5.181-16.93-5.181c-8.865,0-14.729,1.577-17.924,4.823 c-3.801,3.862-3.709,9.713-3.604,16.488c0.021,1.38,0.045,2.787,0.033,4.211l-0.035,2.939l-3.33-0.075l0.01-0.553 C5.986,32.95,5.992,32.168,6,31.379c0.01-1.362-0.008-2.726-0.027-4.077c-0.104-7.34-0.201-14.272,4.461-19.001 c3.813-3.866,10.482-5.746,20.389-5.746c8.961,0,15.471,2.06,19.35,6.124c5.16,5.402,4.803,13.116,4.543,18.748 c-0.049,1.051-0.094,2.022-0.096,2.884l-0.002,0.512c-0.002,0.98-0.004,1.949,0.008,2.898l0.008,0.549l-3.328,0.075L51.297,33.784z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.6035" x2="18.6035" y1="29.2012" y2="56.9375">
+<stop offset="0" style="stop-color:#7B7B7B"/>
+<stop offset="0.1455" style="stop-color:#565656"/>
+<stop offset="0.3091" style="stop-color:#8C8C8C"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<path d="M22.07,53.61c0,1.831-1.496,3.329-3.328,3.329h-3.605v-27.74h3.605c1.832,0,3.328,1.497,3.328,3.329v21.08z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="7.463" x2="7.463" y1="33.2" y2="52.94">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.1455" stop-color="#999E9E"/>
-<stop offset="0.3697" stop-color="#F2F2F2"/>
-<stop offset="0.7576" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#D4D6D5"/>
+<path d="M22.07,53.608c0,1.831-1.496,3.329-3.328,3.329h-3.605V29.201h3.605c1.832,0,3.328,1.497,3.328,3.329 V53.608z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="7.4629" x2="7.4629" y1="33.2002" y2="52.9385">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1455" style="stop-color:#999E9E"/>
+<stop offset="0.3697" style="stop-color:#F2F2F2"/>
+<stop offset="0.7576" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#D4D6D5"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="19.74" width="6.473" x="4.227" y="33.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.35" height="19.74" stroke-opacity="0.35" width="1.109" x="4.227" y="33.2"/>
-<rect fill-opacity="0.5" height="27.74" stroke-opacity="0.5" width="2.219" x="15.14" y="29.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.03" x2="14.03" y1="28.14" y2="58">
-<stop offset="0" stop-color="#7E7E7E"/>
-<stop offset="0.1394" stop-color="#000000"/>
-<stop offset="0.2727" stop-color="#555555"/>
-<stop offset="0.6909" stop-color="#000000"/>
-<stop offset="1" stop-color="#707070"/>
+<rect fill="url(#SVGID_4_)" height="19.738" width="6.473" x="4.227" y="33.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.35" height="19.738" stroke-opacity="0.35" width="1.109" x="4.227" y="33.2"/>
+<rect fill-opacity="0.5" height="27.736" stroke-opacity="0.5" width="2.219" x="15.137" y="29.201"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.0273" x2="14.0273" y1="28.1387" y2="58">
+<stop offset="0" style="stop-color:#7E7E7E"/>
+<stop offset="0.1394" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#555555"/>
+<stop offset="0.6909" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#707070"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="12.92,28.14,11.81,42.45,12.92,58,16.25,58,16.25,28.14"/>
-<rect fill="#FFFFFF" fill-opacity="0.15" height="29.86" stroke-opacity="0.15" width="1.109" x="15.14" y="28.14"/>
-<rect fill-opacity="0.5" height="19.74" stroke-opacity="0.5" width="1.387" x="9.313" y="33.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.67" x2="11.67" y1="28.14" y2="58">
-<stop offset="0" stop-color="#CDD1D0"/>
-<stop offset="0.1273" stop-color="#9DA1A1"/>
-<stop offset="0.2848" stop-color="#F2F2F2"/>
-<stop offset="0.6485" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#F2F2F2"/>
+<polygon fill="url(#SVGID_5_)" points="12.918,28.139 11.809,42.446 12.918,58 16.246,58 16.246,28.139 "/>
+<rect fill="#FFFFFF" fill-opacity="0.15" height="29.861" stroke-opacity="0.15" width="1.109" x="15.137" y="28.139"/>
+<rect fill-opacity="0.5" height="19.738" stroke-opacity="0.5" width="1.387" x="9.313" y="33.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11.6699" x2="11.6699" y1="28.1387" y2="58">
+<stop offset="0" style="stop-color:#CDD1D0"/>
+<stop offset="0.1273" style="stop-color:#9DA1A1"/>
+<stop offset="0.2848" style="stop-color:#F2F2F2"/>
+<stop offset="0.6485" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="10.42,30.36,10.42,55.78,12.92,58,12.92,28.14"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-85.31" x2="-85.31" y1="29.2" y2="56.94">
-<stop offset="0" stop-color="#7B7B7B"/>
-<stop offset="0.1455" stop-color="#565656"/>
-<stop offset="0.3091" stop-color="#8C8C8C"/>
-<stop offset="0.6848" stop-color="#000000"/>
-<stop offset="1" stop-color="#646464"/>
+<polygon fill="url(#SVGID_6_)" points="10.422,30.357 10.422,55.781 12.918,58 12.918,28.139 "/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-85.3086" x2="-85.3086" y1="29.2012" y2="56.9375">
+<stop offset="0" style="stop-color:#7B7B7B"/>
+<stop offset="0.1455" style="stop-color:#565656"/>
+<stop offset="0.3091" style="stop-color:#8C8C8C"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<path d="M37.93,53.61c0,1.831,1.498,3.329,3.328,3.329h3.605v-27.74h-3.605c-1.83,0-3.328,1.497-3.328,3.329v21.08z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-96.45" x2="-96.45" y1="33.2" y2="52.94">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.1455" stop-color="#999E9E"/>
-<stop offset="0.3697" stop-color="#F2F2F2"/>
-<stop offset="0.7576" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#D4D6D5"/>
+<path d="M37.926,53.608c0,1.831,1.498,3.329,3.328,3.329h3.605V29.201h-3.605 c-1.83,0-3.328,1.497-3.328,3.329V53.608z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-96.4502" x2="-96.4502" y1="33.2002" y2="52.9385">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1455" style="stop-color:#999E9E"/>
+<stop offset="0.3697" style="stop-color:#F2F2F2"/>
+<stop offset="0.7576" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#D4D6D5"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="19.74" width="6.471" x="49.3" y="33.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.35" height="19.74" stroke-opacity="0.35" width="1.109" x="54.66" y="33.2"/>
-<rect fill-opacity="0.5" height="27.74" stroke-opacity="0.5" width="2.217" x="42.64" y="29.2"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-89.89" x2="-89.89" y1="28.14" y2="58">
-<stop offset="0" stop-color="#7E7E7E"/>
-<stop offset="0.1394" stop-color="#000000"/>
-<stop offset="0.2727" stop-color="#555555"/>
-<stop offset="0.6909" stop-color="#000000"/>
-<stop offset="1" stop-color="#707070"/>
+<rect fill="url(#SVGID_8_)" height="19.738" width="6.471" x="49.299" y="33.2"/>
+<rect fill="#FFFFFF" fill-opacity="0.35" height="19.738" stroke-opacity="0.35" width="1.109" x="54.66" y="33.2"/>
+<rect fill-opacity="0.5" height="27.736" stroke-opacity="0.5" width="2.217" x="42.643" y="29.201"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-89.8867" x2="-89.8867" y1="28.1387" y2="58">
+<stop offset="0" style="stop-color:#7E7E7E"/>
+<stop offset="0.1394" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#555555"/>
+<stop offset="0.6909" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#707070"/>
</linearGradient>
-<polygon fill="url(#SVGID_9_)" points="47.08,28.14,48.19,42.45,47.08,58,43.75,58,43.75,28.14"/>
-<rect fill="#FFFFFF" fill-opacity="0.15" height="29.86" stroke-opacity="0.15" width="1.109" x="43.75" y="28.14"/>
-<rect fill-opacity="0.5" height="19.74" stroke-opacity="0.5" width="1.387" x="49.3" y="33.2"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-92.24" x2="-92.24" y1="28.14" y2="58">
-<stop offset="0" stop-color="#CDD1D0"/>
-<stop offset="0.1273" stop-color="#9DA1A1"/>
-<stop offset="0.2848" stop-color="#F2F2F2"/>
-<stop offset="0.6485" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#F2F2F2"/>
+<polygon fill="url(#SVGID_9_)" points="47.08,28.139 48.189,42.446 47.08,58 43.752,58 43.752,28.139 "/>
+<rect fill="#FFFFFF" fill-opacity="0.15" height="29.861" stroke-opacity="0.15" width="1.109" x="43.752" y="28.139"/>
+<rect fill-opacity="0.5" height="19.738" stroke-opacity="0.5" width="1.387" x="49.299" y="33.2"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -43.916 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-92.2441" x2="-92.2441" y1="28.1387" y2="58">
+<stop offset="0" style="stop-color:#CDD1D0"/>
+<stop offset="0.1273" style="stop-color:#9DA1A1"/>
+<stop offset="0.2848" style="stop-color:#F2F2F2"/>
+<stop offset="0.6485" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<polygon fill="url(#SVGID_10_)" points="49.58,30.36,49.58,55.78,47.08,58,47.08,28.14"/>
+<polygon fill="url(#SVGID_10_)" points="49.576,30.357 49.576,55.781 47.08,58 47.08,28.139 "/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sync.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_sync.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.27" x2="26.27" y1="6.138" y2="31.76">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#000000"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="26.2671" x2="26.2671" y1="6.1377" y2="31.7569">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M13.69,40.24c-0.309-0.211-7.56-5.245-7.252-12.09,0.198-4.412,3.463-8.415,9.705-11.9,1.036-0.577,2.176-1.153,3.391-1.711l0.326-0.148c0.21-0.095,0.425-0.189,0.64-0.283,0.187-0.083,0.378-0.165,0.573-0.248l0.557-0.234c0.256-0.105,1.223-0.493,1.223-0.493,0.176-0.069,0.352-0.138,0.53-0.206v-6.849l22.72,11.33-22.72,11.33v-5.978c-5.189,1.273-8.968,3.829-10.18,6.915-1.018,2.598-0.306,5.583,2.117,8.872l0.299,0.406-1.516,1.572-0.41-0.29z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="25.9" x2="25.9" y1="7.045" y2="37.37">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M13.69,40.243c-0.309-0.211-7.56-5.245-7.252-12.086 c0.198-4.412,3.463-8.415,9.705-11.898c1.036-0.577,2.176-1.153,3.391-1.711l0.326-0.148c0.21-0.095,0.425-0.189,0.64-0.283 c0.187-0.083,0.378-0.165,0.573-0.248l0.557-0.234c0.256-0.105,1.223-0.493,1.223-0.493c0.176-0.069,0.352-0.138,0.53-0.206V6.081 l22.723,11.33L23.382,28.74v-5.978c-5.189,1.273-8.968,3.829-10.175,6.915c-1.018,2.598-0.306,5.583,2.117,8.872l0.299,0.406 l-1.516,1.572L13.69,40.243z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="25.896" x2="25.896" y1="7.0449" y2="37.3736">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M14.03,39.75c-0.298-0.204-7.287-5.049-6.994-11.57,0.188-4.191,3.351-8.028,9.4-11.4,1.028-0.573,2.151-1.14,3.349-1.689l0.324-0.148c0.206-0.093,0.418-0.186,0.63-0.278,0.188-0.082,0.376-0.164,0.568-0.245l0.555-0.234c0.25-0.104,1.213-0.489,1.213-0.489,0.297-0.117,0.599-0.233,0.905-0.349v-6.305l20.79,10.37-20.79,10.36v-5.764c-5.772,1.253-9.982,4.009-11.33,7.448-1.097,2.802-0.358,5.979,2.193,9.443l-0.81,0.84z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.73" x2="33.73" y1="19.69" y2="51.99">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M14.028,39.75c-0.298-0.204-7.287-5.049-6.994-11.566 c0.188-4.191,3.351-8.028,9.4-11.404c1.028-0.573,2.151-1.14,3.349-1.689l0.324-0.148c0.206-0.093,0.418-0.186,0.63-0.278 c0.188-0.082,0.376-0.164,0.568-0.245l0.555-0.234c0.25-0.104,1.213-0.489,1.213-0.489c0.297-0.117,0.599-0.233,0.905-0.349V7.045 l20.789,10.366L23.979,27.776v-5.764c-5.772,1.253-9.982,4.009-11.328,7.448c-1.097,2.802-0.358,5.979,2.193,9.443L14.028,39.75z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="33.7334" x2="33.7334" y1="19.688" y2="51.9872">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M13.9,42.59l22.72-11.33v5.978c5.19-1.273,8.968-3.829,10.18-6.914,1.017-2.598,0.304-5.583-2.119-8.873l-0.299-0.405,1.517-1.573,0.417,0.284c0.309,0.211,7.561,5.245,7.253,12.09-0.198,4.412-3.464,8.415-9.706,11.9l-0.138,0.076c-1.002,0.555-2.102,1.106-3.271,1.641l-0.303,0.14c-0.216,0.097-0.434,0.193-0.65,0.288l-0.559,0.241-0.571,0.239c-0.253,0.105-0.508,0.209-0.767,0.312l-0.455,0.182c-0.174,0.069-0.35,0.137-0.526,0.205v6.855l-22.71-11.35z" fill="url(#SVGID_3_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="34.1" x2="34.1" y1="20.45" y2="51.12">
-<stop offset="0" stop-color="#AAABAC"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M13.896,42.589L36.616,31.26v5.978 c5.19-1.273,8.968-3.829,10.177-6.914c1.017-2.598,0.304-5.583-2.119-8.873l-0.299-0.405l1.517-1.573l0.417,0.284 c0.309,0.211,7.561,5.245,7.253,12.087c-0.198,4.412-3.464,8.415-9.706,11.898l-0.138,0.076c-1.002,0.555-2.102,1.106-3.271,1.641 l-0.303,0.14c-0.216,0.097-0.434,0.193-0.65,0.288l-0.559,0.241l-0.571,0.239c-0.253,0.105-0.508,0.209-0.767,0.312l-0.455,0.182 c-0.174,0.069-0.35,0.137-0.526,0.205v6.855L13.896,42.589z" fill="url(#SVGID_3_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="34.1035" x2="34.1035" y1="20.4546" y2="51.1212">
+<stop offset="0" style="stop-color:#AAABAC"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M15.23,42.59l20.79-10.37v5.764c5.773-1.253,9.982-4.009,11.33-7.447,1.098-2.802,0.359-5.979-2.192-9.444l0.815-0.847c0.299,0.204,7.287,5.049,6.994,11.57-0.188,4.191-3.351,8.028-9.4,11.4l-0.137,0.076c-0.989,0.547-2.074,1.092-3.229,1.62l-0.304,0.14c-0.21,0.095-0.426,0.189-0.64,0.283l-0.557,0.24-0.565,0.237c-0.247,0.103-0.501,0.205-0.756,0.307l-0.457,0.182c-0.294,0.116-0.595,0.232-0.901,0.348v6.302l-20.79-10.36z" fill="url(#SVGID_4_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="34.87" x2="34.87" y1="23.24" y2="46.51">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M15.234,42.589L36.02,32.224v5.764 c5.773-1.253,9.982-4.009,11.328-7.447c1.098-2.802,0.359-5.979-2.192-9.444l0.815-0.847c0.299,0.204,7.287,5.049,6.994,11.567 c-0.188,4.191-3.351,8.028-9.4,11.404l-0.137,0.076c-0.989,0.547-2.074,1.092-3.229,1.62l-0.304,0.14 c-0.21,0.095-0.426,0.189-0.64,0.283l-0.557,0.24l-0.565,0.237c-0.247,0.103-0.501,0.205-0.756,0.307l-0.457,0.182 c-0.294,0.116-0.595,0.232-0.901,0.348v6.302L15.234,42.589z" fill="url(#SVGID_4_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="34.873" x2="34.873" y1="23.2422" y2="46.511">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M18,41.99l16.78-8.368v5.271l0.76-0.146c6.556-1.256,11.4-4.38,12.96-8.356,0.856-2.191,0.736-4.618-0.332-7.152,1.892,2.029,3.939,5.081,3.521,8.503-0.614,4.992-6.161,9.466-16.49,13.3l-0.416,0.156v5.161l-16.78-8.36z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.03" x2="30.03" y1="51.43" y2="42.04">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="1" stop-color="#3C743A"/>
+<path d="M18.001,41.993l16.783-8.368v5.271l0.76-0.146c6.556-1.256,11.398-4.38,12.956-8.356 c0.856-2.191,0.736-4.618-0.332-7.152c1.892,2.029,3.939,5.081,3.521,8.503c-0.614,4.992-6.161,9.466-16.488,13.298l-0.416,0.156 v5.161L18.001,41.993z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30.0327" x2="30.0327" y1="51.4287" y2="42.0396">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="1" style="stop-color:#3C743A"/>
</linearGradient>
-<path d="M16.79,42.1l18.63,9.291v-5.75c3.122-1.16,5.709-2.345,7.851-3.541h-26.48z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="25.13" x2="25.13" y1="36.33" y2="9.039">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.5" stop-color="#6292A3"/>
-<stop offset="1" stop-color="#455188"/>
+<path d="M16.792,42.103l18.631,9.291v-5.75c3.122-1.16,5.709-2.345,7.851-3.541H16.792z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="25.127" x2="25.127" y1="36.3267" y2="9.0388">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.5" style="stop-color:#6292A3"/>
+<stop offset="1" style="stop-color:#455188"/>
+</linearGradient>
+<path d="M11.831,35.564c-1.891-2.029-3.939-5.082-3.519-8.502c0.613-4.993,6.16-9.467,16.486-13.299 l0.417-0.154V8.445l16.782,8.369l-16.782,8.367v-5.271l-0.759,0.145C17.9,21.313,13.057,24.437,11.5,28.412 C10.643,30.603,10.762,33.03,11.831,35.564L11.831,35.564z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.9663" x2="29.9663" y1="8.4697" y2="15.2044">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="1" style="stop-color:#6292A3"/>
</linearGradient>
-<path d="M11.83,35.56c-1.891-2.029-3.939-5.082-3.519-8.502,0.613-4.993,6.16-9.467,16.49-13.3l0.417-0.154v-5.165l16.78,8.369-16.78,8.367v-5.271l-0.759,0.145c-6.56,1.25-11.4,4.38-12.96,8.35-0.86,2.19-0.74,4.62,0.33,7.15z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="29.97" x2="29.97" y1="8.47" y2="15.2">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="1" stop-color="#6292A3"/>
+<path d="M43.207,16.703l-18.631-9.29v5.75c-3.122,1.159-5.709,2.345-7.85,3.54H43.207z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="25.5229" x2="25.5229" y1="8.0708" y2="27.6391">
+<stop offset="0" style="stop-color:#B3DFCE"/>
+<stop offset="0.0061" style="stop-color:#B3DFCE"/>
+<stop offset="1" style="stop-color:#45698B"/>
</linearGradient>
-<path d="M43.21,16.7l-18.63-9.29v5.75c-3.122,1.159-5.709,2.345-7.85,3.54h26.48z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="25.52" x2="25.52" y1="8.071" y2="27.64">
-<stop offset="0" stop-color="#B3DFCE"/>
-<stop offset="0.0061" stop-color="#B3DFCE"/>
-<stop offset="1" stop-color="#45698B"/>
+<path d="M25.215,8.445l16.782,8.369l-16.782,8.367v-4.498v-0.773l-0.759,0.145 C17.9,21.313,13.058,24.437,11.5,28.412c-0.858,2.193-0.738,4.624,0.335,7.161c-1.892-2.025-3.943-5.077-3.523-8.507 c0.61-4.994,6.158-9.469,16.487-13.303l0.417-0.154v-0.445V8.445 M24.576,7.413v5.75C-6.247,24.602,14.364,38.659,14.364,38.659 c-7.105-9.643,0.429-16.1,10.212-17.976v5.531l18.854-9.4L24.576,7.413L24.576,7.413z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="34.4766" x2="34.4766" y1="29.8569" y2="51.3697">
+<stop offset="0" style="stop-color:#B3C77C"/>
+<stop offset="1" style="stop-color:#2A6138"/>
</linearGradient>
-<path d="M25.22,8.445l16.78,8.369-16.78,8.367v-5.271l-0.759,0.145c-6.56,1.25-11.4,4.38-12.96,8.35-0.858,2.193-0.738,4.624,0.335,7.161-1.892-2.025-3.943-5.077-3.523-8.507,0.61-4.994,6.158-9.469,16.49-13.3l0.417-0.154v-5.16m-0.65-1.032v5.75c-30.83,11.44-10.22,25.5-10.22,25.5-7.105-9.643,0.429-16.1,10.21-17.98v5.531l18.85-9.4-18.84-9.397z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="34.48" x2="34.48" y1="29.86" y2="51.37">
-<stop offset="0" stop-color="#B3C77C"/>
-<stop offset="1" stop-color="#2A6138"/>
-</linearGradient>
-<path d="M45.64,20.15c7.105,9.644-0.428,16.1-10.21,17.98v-5.531l-18.85,9.401,18.85,9.401v-5.75c30.82-11.45,10.21-25.5,10.21-25.5zm-10.44,24.89l-0.416,0.156v5.161l-16.78-8.368,16.78-8.368v5.271l0.76-0.146c6.556-1.256,11.4-4.38,12.96-8.356,0.856-2.191,0.736-4.618-0.332-7.152,1.892,2.029,3.94,5.081,3.521,8.503-0.62,5.01-6.16,9.48-16.49,13.31z" fill="url(#SVGID_10_)"/>
+<path d="M45.635,20.146c7.105,9.644-0.428,16.101-10.212,17.977v-5.531l-18.854,9.401l18.854,9.401v-5.75 C66.247,34.204,45.635,20.146,45.635,20.146z M35.2,45.043l-0.416,0.156v0.444v4.717l-16.783-8.368l16.783-8.368v4.498v0.773 l0.76-0.146c6.556-1.256,11.399-4.38,12.956-8.356c0.856-2.191,0.736-4.618-0.332-7.152c1.892,2.029,3.94,5.081,3.521,8.503 C51.074,36.737,45.527,41.211,35.2,45.043z" fill="url(#SVGID_10_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_text.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_text.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,38 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.67" x2="23.66" y1="61.09" y2="51.12">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="0.7455" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="20.6719" x2="23.6638" y1="61.0908" y2="51.1174">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="0.7455" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="53" width="51.29" x="4.354" y="3.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.073" y2="54.36">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<rect fill="url(#SVGID_1_)" height="53" width="51.291" x="4.354" y="3.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M55.64,54.79h-26.5s-13.25-0.381-20.09-3.347c-4.56-1.975-4.702-4.181-4.702-4.181v-43.76h51.29v51.29z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="3.073" y2="54.36">
-<stop offset="0" stop-color="#E7EBE8"/>
-<stop offset="0.703" stop-color="#919595"/>
-<stop offset="1" stop-color="#B9BDBC"/>
+<path d="M55.645,54.79h-26.5c0,0-13.249-0.381-20.089-3.347c-4.56-1.975-4.702-4.181-4.702-4.181V3.5h51.291 V54.79z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.999" x2="29.999" y1="3.0728" y2="54.3628">
+<stop offset="0" style="stop-color:#E7EBE8"/>
+<stop offset="0.703" style="stop-color:#919595"/>
+<stop offset="1" style="stop-color:#B9BDBC"/>
+</linearGradient>
+<path d="M4.354,3.5v43.763c0,0,0.048,0.672,0.855,1.611V4.356h49.58v49.582H19.324 c5.195,0.719,9.82,0.852,9.82,0.852h26.5V3.5H4.354z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.7158" x2="16.7993" y1="47.938" y2="54.272">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.1939" style="stop-color:#E7E8E7"/>
+<stop offset="0.9333" style="stop-color:#868788"/>
+<stop offset="1" style="stop-color:#868788"/>
</linearGradient>
-<path d="M4.354,3.5v43.76s0.048,0.672,0.855,1.611v-44.51h49.58v49.58h-35.47c5.195,0.719,9.82,0.852,9.82,0.852h26.5v-51.29h-51.29z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.72" x2="16.8" y1="47.94" y2="54.27">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.1939" stop-color="#E7E8E7"/>
-<stop offset="0.9333" stop-color="#868788"/>
-<stop offset="1" stop-color="#868788"/>
-</linearGradient>
-<path d="M31.21,54.79s-12.41,0.569-17.91-8.515c0,0-7.511,5.564-8.951,0.987,0.618,3.14,6.151,7.63,26.86,7.52z" fill="url(#SVGID_4_)"/>
-<rect fill="#F5F5F5" height="0.855" width="42.74" x="8.628" y="39.55"/>
-<rect fill="#666666" height="1.71" width="42.74" x="8.628" y="37.84"/>
-<rect fill="#F5F5F5" height="0.854" width="42.74" x="8.628" y="31.86"/>
-<rect fill="#666666" height="1.711" width="42.74" x="8.628" y="30.15"/>
-<rect fill="#F5F5F5" height="0.854" width="42.74" x="8.628" y="24.16"/>
-<rect fill="#666666" height="1.71" width="42.74" x="8.628" y="22.45"/>
-<rect fill="#F5F5F5" height="0.853" width="42.74" x="8.628" y="16.47"/>
-<rect fill="#666666" height="1.71" width="42.74" x="8.628" y="14.76"/>
+<path d="M31.211,54.79c0,0-12.406,0.569-17.906-8.515 c0,0-7.511,5.564-8.951,0.987C4.967,50.406,10.504,54.903,31.211,54.79z" fill="url(#SVGID_4_)" fill-rule="evenodd"/>
+<rect fill="#F5F5F5" height="0.855" width="42.741" x="8.628" y="39.55"/>
+<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="37.84"/>
+<rect fill="#F5F5F5" height="0.854" width="42.741" x="8.628" y="31.856"/>
+<rect fill="#666666" height="1.711" width="42.741" x="8.628" y="30.146"/>
+<rect fill="#F5F5F5" height="0.854" width="42.741" x="8.628" y="24.162"/>
+<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="22.452"/>
+<rect fill="#F5F5F5" height="0.853" width="42.741" x="8.628" y="16.47"/>
+<rect fill="#666666" height="1.71" width="42.741" x="8.628" y="14.76"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,38 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="29.7" cy="11.62" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="38.41">
-<stop offset="0" stop-color="#D2C997"/>
-<stop offset="0.0727" stop-color="#D2C997"/>
-<stop offset="0.5152" stop-color="#BFA56F"/>
-<stop offset="0.703" stop-color="#AE804B"/>
-<stop offset="1" stop-color="#C2AC76"/>
+<g>
+<radialGradient cx="29.7026" cy="11.6152" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="38.4093">
+<stop offset="0" style="stop-color:#D2C997"/>
+<stop offset="0.0727" style="stop-color:#D2C997"/>
+<stop offset="0.5152" style="stop-color:#BFA56F"/>
+<stop offset="0.703" style="stop-color:#AE804B"/>
+<stop offset="1" style="stop-color:#C2AC76"/>
</radialGradient>
-<path d="M30,1c-16.13,0-23.06,11.99-21.05,24.37,2.001,12.36,9.413,24.2,21.01,24.37v0.004c0.015,0,0.026-0.002,0.041-0.002,0.016,0,0.027,0.002,0.041,0.002v-0.004c11.6-0.17,19.01-12,21.01-24.37,2.01-12.38-4.92-24.37-21.05-24.37z" fill="url(#SVGID_1_)"/>
-<path d="M29.79,43.15c-2.909,0-9.646-0.137-14.81-2.203,3,4.275,6.97,7.426,11.81,8.443,0.037,0.008,0.074,0.014,0.11,0.021,0.284,0.057,0.57,0.107,0.859,0.15,0.239,0.035,0.481,0.061,0.725,0.086,0.113,0.012,0.226,0.027,0.34,0.037,0.386,0.031,0.776,0.051,1.171,0.057v0.002c0.044,0,0.085-0.004,0.128-0.006,0.051,0,0.1-0.006,0.15-0.006,0.342-0.01,0.68-0.031,1.014-0.059,0.23-0.021,0.457-0.047,0.684-0.076,0.094-0.012,0.186-0.023,0.279-0.035,5.588-0.83,10.08-4.459,13.33-9.445-5.27,2.6-12.62,3.03-15.78,3.03z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.96" x2="42.04" y1="51.76" y2="51.76">
-<stop offset="0" stop-color="#A4A8A8"/>
-<stop offset="0.1212" stop-color="#BFC2C1"/>
-<stop offset="0.2848" stop-color="#ECEFED"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="0.8182" stop-color="#DBDFDD"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M30,1C13.868,1,6.945,12.993,8.949,25.372c2.001,12.363,9.413,24.197,21.011,24.367v0.004 c0.015,0,0.026-0.002,0.041-0.002c0.016,0,0.027,0.002,0.041,0.002v-0.004c11.598-0.17,19.01-12.004,21.012-24.367 C53.057,12.993,46.133,1,30,1z" fill="url(#SVGID_1_)"/>
+<path d="M29.794,43.146c-2.909,0-9.646-0.137-14.811-2.203c3,4.275,6.97,7.426,11.806,8.443 c0.037,0.008,0.074,0.014,0.11,0.021c0.284,0.057,0.57,0.107,0.859,0.15c0.239,0.035,0.481,0.061,0.725,0.086 c0.113,0.012,0.226,0.027,0.34,0.037c0.386,0.031,0.776,0.051,1.171,0.057v0.002c0.044,0,0.085-0.004,0.128-0.006 c0.051,0,0.1-0.006,0.15-0.006c0.342-0.01,0.68-0.031,1.014-0.059c0.23-0.021,0.457-0.047,0.684-0.076 c0.094-0.012,0.186-0.023,0.279-0.035c5.588-0.83,10.082-4.459,13.328-9.445C40.303,42.723,32.951,43.146,29.794,43.146z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.9624" x2="42.0391" y1="51.7617" y2="51.7617">
+<stop offset="0" style="stop-color:#A4A8A8"/>
+<stop offset="0.1212" style="stop-color:#BFC2C1"/>
+<stop offset="0.2848" style="stop-color:#ECEFED"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="0.8182" style="stop-color:#DBDFDD"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="17.96,44.52,17.96,56.38,21.1,59,38.9,59,42.04,56.38,42.04,44.52"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="42.04" x2="17.96" y1="57.54" y2="57.54">
-<stop offset="0" stop-color="#E2E2E2"/>
-<stop offset="0.3" stop-color="#969696"/>
-<stop offset="0.6727" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<polygon fill="url(#SVGID_2_)" points="17.962,44.523 17.962,56.377 21.099,59 38.9,59 42.039,56.377 42.039,44.523 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="42.0391" x2="17.9629" y1="57.54" y2="57.54">
+<stop offset="0" style="stop-color:#E2E2E2"/>
+<stop offset="0.3" style="stop-color:#969696"/>
+<stop offset="0.6727" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="17.96,56.38,21.1,59,38.9,59,42.04,56.38,42.04,56.08,17.96,56.08"/>
-<radialGradient cx="29.59" cy="3.452" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.37">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D7CBA7"/>
+<polygon fill="url(#SVGID_3_)" points="17.962,56.377 21.099,59 38.9,59 42.039,56.377 42.039,56.08 17.962,56.08 "/>
+<radialGradient cx="29.5933" cy="3.4521" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.3714">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D7CBA7"/>
</radialGradient>
-<path d="M48.68,14.32c-0.715-2.025-1.75-3.873-3.094-5.452-3.52-4.13-8.91-6.311-15.59-6.311-6.683,0-12.07,2.182-15.58,6.307-1.344,1.58-2.38,3.427-3.094,5.451,6.03,0.64,12.29,0.99,18.67,0.99s12.64-0.35,18.68-0.99z" fill="url(#SVGID_4_)" fill-opacity="0.75" stroke-opacity="0.75"/>
-<rect fill-opacity="0.25" height="2.207" stroke-opacity="0.25" width="24.08" x="17.96" y="46.98"/>
-<rect fill-opacity="0.25" height="2.205" stroke-opacity="0.25" width="24.08" x="17.96" y="51.94"/>
+<path d="M48.678,14.315c-0.715-2.025-1.75-3.873-3.094-5.452 C42.072,4.738,36.684,2.557,30,2.557c-6.683,0-12.072,2.182-15.583,6.307c-1.344,1.58-2.38,3.427-3.094,5.451 C17.357,14.959,23.618,15.31,30,15.31C36.381,15.312,42.643,14.961,48.678,14.315z" fill="url(#SVGID_4_)" fill-opacity="0.75" stroke-opacity="0.75"/>
+<rect fill-opacity="0.25" height="2.207" stroke-opacity="0.25" width="24.077" x="17.962" y="46.975"/>
+<rect fill-opacity="0.25" height="2.205" stroke-opacity="0.25" width="24.077" x="17.962" y="51.939"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_todo_alarm.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_todo_alarm.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,146 +1,148 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="287" x2="287" y1="1645" y2="1592">
-<stop offset="0" stop-color="#AF987C"/>
-<stop offset="1" stop-color="#4E2224"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="286.999" x2="286.999" y1="1645.4639" y2="1591.9688">
+<stop offset="0" style="stop-color:#AF987C"/>
+<stop offset="1" style="stop-color:#4E2224"/>
</linearGradient>
-<path d="M8.526,58c-1.246,0-2.261-1.013-2.261-2.259v-48.97c0-1.248,1.015-2.261,2.261-2.261h42.95c1.247,0,2.262,1.013,2.262,2.261v48.98c0,1.246-1.015,2.259-2.262,2.259h-42.94z" fill="url(#SVGID_1_)"/>
-<path d="M51.47,4.505h-42.94c-1.246,0-2.261,1.013-2.261,2.261v0.754c0-1.248,1.015-2.262,2.261-2.262h42.95c1.247,0,2.262,1.014,2.262,2.262v-0.754c0.01-1.248-1.01-2.261-2.26-2.261z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M51.47,57.25h-42.94c-1.246,0-2.261-1.013-2.261-2.259v0.754c0,1.25,1.015,2.26,2.261,2.26h42.95c1.247,0,2.262-1.013,2.262-2.259v-0.754c0.01,1.24-1.01,2.26-2.26,2.26z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="287" x2="287" y1="1642" y2="1595">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M8.526,58c-1.246,0-2.261-1.013-2.261-2.259V6.766c0-1.248,1.015-2.261,2.261-2.261h42.947 c1.247,0,2.262,1.013,2.262,2.261v48.976c0,1.246-1.015,2.259-2.262,2.259H8.526z" fill="url(#SVGID_1_)"/>
+<path d="M51.473,4.505H8.526c-1.246,0-2.261,1.013-2.261,2.261V7.52 c0-1.248,1.015-2.262,2.261-2.262h42.947c1.247,0,2.262,1.014,2.262,2.262V6.766C53.735,5.518,52.72,4.505,51.473,4.505z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M51.473,57.246H8.526c-1.246,0-2.261-1.013-2.261-2.259v0.754 C6.265,56.987,7.28,58,8.526,58h42.947c1.247,0,2.262-1.013,2.262-2.259v-0.754C53.735,56.233,52.72,57.246,51.473,57.246z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="287" x2="287" y1="1641.8242" y2="1594.8197">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" fill-opacity="0.3" height="46.72" stroke-opacity="0.3" width="41.44" x="9.279" y="8.271"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="287" x2="287" y1="1641" y2="1596">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<rect fill="url(#SVGID_2_)" fill-opacity="0.3" height="46.716" stroke-opacity="0.3" width="41.441" x="9.279" y="8.271"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="287" x2="287" y1="1641.0664" y2="1595.578">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="45.21" stroke-opacity="0.6" width="39.93" x="10.03" y="9.025"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="306.4" x2="267.7" y1="1619" y2="1619">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="45.209" stroke-opacity="0.6" width="39.934" x="10.033" y="9.025"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="306.4023" x2="267.6852" y1="1618.7178" y2="1618.7178">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="42.95" width="38.43" x="10.79" y="9.778"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="306.3" x2="267.9" y1="1619" y2="1619">
-<stop offset="0" stop-color="#8B8C8D"/>
-<stop offset="1" stop-color="#4A4A4A"/>
+<rect fill="url(#SVGID_4_)" height="42.948" width="38.427" x="10.787" y="9.778"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="306.2607" x2="267.8748" y1="1619.4707" y2="1619.4707">
+<stop offset="0" style="stop-color:#8B8C8D"/>
+<stop offset="1" style="stop-color:#4A4A4A"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="42.95" width="38.43" x="10.79" y="9.025"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.9" x2="306.4" y1="1620" y2="1620">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<rect fill="url(#SVGID_5_)" height="42.947" width="38.427" x="10.787" y="9.025"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.8789" x2="306.4008" y1="1619.8457" y2="1619.8457">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="42.19" width="38.43" x="10.79" y="9.025"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="277" x2="271" y1="1610" y2="1604">
-<stop offset="0" stop-color="#737373"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<rect fill="url(#SVGID_6_)" height="42.194" width="38.427" x="10.787" y="9.025"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="277.0107" x2="271.0243" y1="1610.2334" y2="1604.2468">
+<stop offset="0" style="stop-color:#737373"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="41.44" width="38.43" x="10.79" y="9.025"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="287" x2="287" y1="1625" y2="1608">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.25" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#E1E1E1"/>
+<rect fill="url(#SVGID_7_)" height="41.441" width="38.427" x="10.787" y="9.025"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="286.999" x2="286.999" y1="1624.8262" y2="1607.9667">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.25" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E1E1E1"/>
</linearGradient>
-<path d="M10.79,36.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h24.86v-40.68h-38.42v27.12z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="287" x2="287" y1="1641" y2="1600">
-<stop offset="0" stop-color="#F1F1F1"/>
-<stop offset="1" stop-color="#B4B6B6"/>
+<path d="M10.787,36.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h24.864V9.025H10.787V36.15z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="286.999" x2="286.999" y1="1640.6797" y2="1600.1635">
+<stop offset="0" style="stop-color:#F1F1F1"/>
+<stop offset="1" style="stop-color:#B4B6B6"/>
</linearGradient>
-<path d="M48.46,9.778v39.18h-24.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924c-0.443-0.441-0.845-1.413-0.845-2.039v-26.37h36.92m0.75-0.753h-38.42v27.12c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h24.86v-40.68z" fill="url(#SVGID_9_)"/>
-<polygon fill="#939595" points="25.86,23.03,46.2,23.03,46.2,21.52,25.86,21.52"/>
-<polygon fill="#939595" points="25.86,31.93,46.2,31.93,46.2,30.42,25.86,30.42"/>
-<polygon fill="#939595" points="16.82,40.55,46.2,40.55,46.2,39.8,46.2,39.04,16.82,39.04"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="279.5" x2="273.9" y1="1612" y2="1606">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#FFFFFF"/>
-<stop offset="0.5576" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M48.46,9.778v39.181H24.349c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V9.778H48.46 M49.213,9.025H10.787V36.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h24.864V9.025L49.213,9.025z" fill="url(#SVGID_9_)"/>
+<polygon fill="#939595" points="25.856,23.028 46.199,23.028 46.199,21.521 25.856,21.521 "/>
+<polygon fill="#939595" points="25.856,31.93 46.199,31.93 46.199,30.422 25.856,30.422 "/>
+<polygon fill="#939595" points="16.815,40.55 46.199,40.55 46.199,39.797 46.199,39.043 16.815,39.043 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="279.4805" x2="273.8942" y1="1611.5459" y2="1605.9596">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="0.5576" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M12.18,39.05c-0.314-0.348-0.896-0.695-1.297-2.184,0,0,0.66,3.054,9.701,0.04,0,12.81,3.768,12.81,3.768,12.81-0.831,0-1.987-0.479-2.573-1.064l-9.6-9.61z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="287" x2="287" y1="1643" y2="1639">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M12.177,39.047c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L12.177,39.047z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="287.001" x2="287.001" y1="1642.542" y2="1638.8584">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M43.26,7.045c-0.107-0.35-0.512-0.637-0.9-0.637h-5.741c-0.388,0-0.779-0.291-0.866-0.645l-0.189-0.748h-11.13l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741c-0.388,0-0.793,0.287-0.9,0.637l-1.024,3.361c-0.108,0.35,0.123,0.637,0.512,0.637h27.55c0.388,0,0.619-0.287,0.513-0.637l-1.03-3.365z" fill="url(#SVGID_11_)" fill-opacity="0.15" stroke-opacity="0.15"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="1642" y2="1638">
-<stop offset="0" stop-color="#717172"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M43.265,7.045c-0.107-0.35-0.512-0.637-0.9-0.637 h-5.741c-0.388,0-0.779-0.291-0.866-0.645l-0.189-0.748H24.433l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741 c-0.388,0-0.793,0.287-0.9,0.637l-1.024,3.361c-0.108,0.35,0.123,0.637,0.512,0.637h27.554c0.388,0,0.619-0.287,0.513-0.637 L43.265,7.045z" fill="url(#SVGID_11_)" fill-opacity="0.15" stroke-opacity="0.15"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287.001" x2="287.001" y1="1641.7881" y2="1638.1045">
+<stop offset="0" style="stop-color:#717172"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M43.26,7.8c-0.107-0.351-0.512-0.638-0.9-0.638h-5.741c-0.388,0-0.779-0.291-0.866-0.645l-0.18-0.747h-11.14l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741c-0.388,0-0.793,0.287-0.9,0.638l-1.024,3.359c-0.108,0.351,0.123,0.638,0.512,0.638h27.55c0.388,0,0.619-0.287,0.513-0.638l-1.03-3.36z" fill="url(#SVGID_12_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M44.82,12.55h-29.64l-0.218,0.781c-0.114,0.399,0.128,0.727,0.538,0.727h29c0.409,0,0.651-0.327,0.539-0.727l-0.22-0.78z" fill="#6E6E6F" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="287" x2="287" y1="1647" y2="1637">
-<stop offset="0" stop-color="#757576"/>
-<stop offset="1" stop-color="#D6D8D7"/>
+<path d="M43.265,7.8c-0.107-0.351-0.512-0.638-0.9-0.638h-5.741 c-0.388,0-0.779-0.291-0.866-0.645L35.568,5.77H24.433l-0.191,0.748c-0.088,0.355-0.477,0.645-0.865,0.645h-5.741 c-0.388,0-0.793,0.287-0.9,0.638l-1.024,3.359c-0.108,0.351,0.123,0.638,0.512,0.638h27.554c0.388,0,0.619-0.287,0.513-0.638 L43.265,7.8z" fill="url(#SVGID_12_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M44.822,12.55H15.178l-0.218,0.781 c-0.114,0.399,0.128,0.727,0.538,0.727h29.005c0.409,0,0.651-0.327,0.539-0.727L44.822,12.55z" fill="#6E6E6F" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 1649.9688)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="286.999" x2="286.999" y1="1647.4658" y2="1637.1558">
+<stop offset="0" style="stop-color:#757576"/>
+<stop offset="1" style="stop-color:#D6D8D7"/>
</linearGradient>
-<path d="M43.96,8.753c-0.113-0.398-0.541-0.724-0.949-0.724h-6.043c-0.409,0-0.819-0.331-0.913-0.735l-2.131-4.56c-0.09-0.404-0.51-0.734-0.92-0.734h-6.027c-0.409,0-0.82,0.33-0.911,0.734l-2.133,4.56c-0.094,0.404-0.504,0.735-0.913,0.735h-6.043c-0.41,0-0.836,0.325-0.949,0.724l-1.078,3.825c-0.113,0.398,0.128,0.726,0.539,0.726h29.01c0.409,0,0.651-0.327,0.539-0.726l-1.09-3.827z" fill="url(#SVGID_13_)"/>
-<path d="M26.78,2.755h6.431c0.316,0,0.734,0.179,0.919,0.435,0,0-0.284-1.189-1.125-1.189h-6.022c-0.835,0-1.118,1.189-1.118,1.189,0.19-0.256,0.61-0.435,0.92-0.435z" fill="#FFFFFF"/>
-<path d="M36.36,8.048c0.099,0.403,0.53,0.734,0.959,0.734h6.346c0.108,0,0.216,0.021,0.322,0.058l-0.024-0.087c-0.113-0.398-0.541-0.724-0.949-0.724h-6.043c-0.266,0-0.521-0.147-0.702-0.354l0.08,0.373z" fill="#FFFFFF"/>
-<path d="M16.33,8.782h6.345c0.429,0,0.861-0.331,0.96-0.734l0.089-0.372c-0.179,0.206-0.435,0.354-0.702,0.354h-6.043c-0.408,0-0.834,0.325-0.948,0.724l-0.03,0.086c0.11-0.037,0.22-0.058,0.32-0.058z" fill="#FFFFFF"/>
-<path d="M21.8,17.1v5.834h-5.833v-5.834h5.835m1.255-1.25h-8.333v8.334h8.333v-8.334,0.004z" fill="#939595"/>
-<path d="M21.8,27.53v5.834h-5.833v-5.834h5.835m1.255-1.25h-8.333v8.334h8.333v-8.327-0.003z" fill="#939595"/>
+<path d="M43.964,8.753c-0.113-0.398-0.541-0.724-0.949-0.724h-6.043c-0.409,0-0.819-0.331-0.913-0.735 l-2.131-4.56C33.835,2.33,33.423,2,33.013,2h-6.027c-0.409,0-0.82,0.33-0.911,0.734l-2.133,4.56 c-0.094,0.404-0.504,0.735-0.913,0.735h-6.043c-0.41,0-0.836,0.325-0.949,0.724l-1.078,3.825c-0.113,0.398,0.128,0.726,0.539,0.726 h29.006c0.409,0,0.651-0.327,0.539-0.726L43.964,8.753z" fill="url(#SVGID_13_)"/>
+<path d="M26.783,2.755h6.431c0.316,0,0.734,0.179,0.919,0.435c0,0-0.284-1.189-1.125-1.189h-6.022 c-0.835,0-1.118,1.189-1.118,1.189C26.053,2.934,26.467,2.755,26.783,2.755z" fill="#FFFFFF"/>
+<path d="M36.361,8.048c0.099,0.403,0.53,0.734,0.959,0.734h6.346c0.108,0,0.216,0.021,0.322,0.058l-0.024-0.087 c-0.113-0.398-0.541-0.724-0.949-0.724h-6.043c-0.266,0-0.521-0.147-0.702-0.354L36.361,8.048z" fill="#FFFFFF"/>
+<path d="M16.334,8.782h6.345c0.429,0,0.861-0.331,0.96-0.734l0.089-0.372c-0.179,0.206-0.435,0.354-0.702,0.354 h-6.043c-0.408,0-0.834,0.325-0.948,0.724L16.011,8.84C16.117,8.803,16.227,8.782,16.334,8.782z" fill="#FFFFFF"/>
+<path d="M21.805,17.096v5.834h-5.833v-5.834H21.805 M23.055,15.846h-8.333v8.334h8.333V15.846L23.055,15.846z" fill="#939595"/>
+<path d="M21.805,27.533v5.834h-5.833v-5.834H21.805 M23.055,26.283h-8.333v8.334h8.333V26.283L23.055,26.283z" fill="#939595"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0.414,0,0.414,10.48,0,10.9,0.414,11.31,0.414,30,19.1,30,19.51,30.41,19.93,30,30.41,30,30.41,0"/>
-<path d="M13.77,24.67c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021-0.51,0.09-0.025-0.025c-0.205,0.02-0.411,0.03-0.618,0.03-1.746,0-3.402-0.694-4.662-1.954-1.416-1.414-2.113-3.354-1.924-5.279l-0.024-0.02,0.09-0.501-0.006-0.01,0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338l-5.745-5.74,2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358,0.059-0.004,0.123-0.006,0.189-0.006,0.11,0,0.226,0.005,0.346,0.015l0.18,0.021c0.188,0.025,0.352,0.054,0.521,0.092,0,0,0.277,0.066,0.313,0.076l4.098-4.098c2.2-2.195,5.13-3.404,8.25-3.404,2.05,0,4.037,0.526,5.792,1.527,0.53-0.355,1.14-0.541,1.763-0.541,0.834,0,1.616,0.323,2.203,0.91,1.08,1.08,1.205,2.759,0.375,3.979,2.574,4.525,1.834,10.31-1.883,14.03l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29,0.044,0.201,0.072,0.357,0.092,0.505,0.011,0.083,0.021,0.159,0.026,0.23,0.015,0.178,0.019,0.354,0.011,0.519-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238-5.73-5.75z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="218.7" x2="229.7" y1="-1097" y2="-1097">
-<stop offset="0" stop-color="#696A6B"/>
-<stop offset="0.297" stop-color="#A2A4A4"/>
-<stop offset="0.7091" stop-color="#494A4B"/>
-<stop offset="1" stop-color="#727475"/>
+<polygon fill="none" points="0.414,0 0.414,10.485 0,10.899 0.414,11.313 0.414,30 19.1,30 19.514,30.414 19.928,30 30.414,30 30.414,0 "/>
+<path d="M13.769,24.668c-0.003,0.001-0.44,0.125-0.44,0.125l-0.022-0.021L12.8,24.867l-0.025-0.025 c-0.205,0.02-0.411,0.03-0.618,0.03c-1.746,0-3.402-0.694-4.662-1.954c-1.416-1.414-2.113-3.354-1.924-5.279L5.55,17.618l0.09-0.501 L5.634,17.11l0.032-0.128c0.023-0.113,0.049-0.226,0.079-0.338L0,10.899l2.238-2.238c0.623-0.625,1.393-1.296,2.627-1.358 C4.924,7.3,4.988,7.298,5.054,7.298c0.11,0,0.226,0.005,0.346,0.015L5.58,7.334c0.188,0.025,0.352,0.054,0.521,0.092 c0,0,0.277,0.066,0.313,0.076l4.098-4.098C12.707,1.209,15.636,0,18.76,0c2.05,0,4.037,0.526,5.792,1.527 c0.53-0.355,1.14-0.541,1.763-0.541c0.834,0,1.616,0.323,2.203,0.91c1.08,1.08,1.205,2.759,0.375,3.979 c2.574,4.525,1.834,10.311-1.883,14.027l-4.096,4.096c0,0.002,0.068,0.29,0.068,0.29c0.044,0.201,0.072,0.357,0.092,0.505 c0.011,0.083,0.021,0.159,0.026,0.23c0.015,0.178,0.019,0.354,0.011,0.519c-0.062,1.237-0.732,2.009-1.357,2.634l-2.24,2.238 L13.769,24.668z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="218.7148" x2="229.6865" y1="-1096.7686" y2="-1096.7686">
+<stop offset="0" style="stop-color:#696A6B"/>
+<stop offset="0.297" style="stop-color:#A2A4A4"/>
+<stop offset="0.7091" style="stop-color:#494A4B"/>
+<stop offset="1" style="stop-color:#727475"/>
</linearGradient>
-<path d="M8,14.66c-2.029,2.029-1.943,5.411,0.201,7.555,2.143,2.143,5.527,2.232,7.557,0.203l-7.76-7.76z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="3.21" x2="21.48" y1="8.923" y2="27.2">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.2" stop-color="#DED7B3"/>
-<stop offset="0.3879" stop-color="#D2C49B"/>
-<stop offset="0.4182" stop-color="#C6B285"/>
-<stop offset="0.6667" stop-color="#AA8250"/>
-<stop offset="0.8545" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M8,14.656L8,14.656c-2.029,2.029-1.943,5.411,0.201,7.555c2.143,2.143,5.527,2.232,7.557,0.203l0,0 L8,14.656z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 0 9.765625e-004)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="3.21" x2="21.4822" y1="8.9229" y2="27.1951">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.2" style="stop-color:#DED7B3"/>
+<stop offset="0.3879" style="stop-color:#D2C49B"/>
+<stop offset="0.4182" style="stop-color:#C6B285"/>
+<stop offset="0.6667" style="stop-color:#AA8250"/>
+<stop offset="0.8545" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M21.78,23.72l-15.09-15.08c-2.041-0.73-2.813-0.205-3.748,0.731l-1.531,1.531,18.1,18.1,1.533-1.531c0.94-0.94,1.47-1.71,0.74-3.75z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="222" x2="226.3" y1="-1120" y2="-1120">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.1939" stop-color="#DED7B3"/>
-<stop offset="0.703" stop-color="#AA8250"/>
-<stop offset="0.8848" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M21.777,23.721L6.693,8.637c-2.041-0.73-2.813-0.205-3.748,0.731l-1.531,1.531L19.514,29l1.533-1.531 C21.982,26.532,22.508,25.761,21.777,23.721z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -924.0166 637.3657)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="221.9707" x2="226.2741" y1="-1120.2998" y2="-1120.2998">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.1939" style="stop-color:#DED7B3"/>
+<stop offset="0.703" style="stop-color:#AA8250"/>
+<stop offset="0.8848" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M27.06,6.375l0.754-0.755c0.83-0.829,0.83-2.188,0-3.017-0.83-0.83-2.188-0.83-3.018,0l-0.754,0.754,3.02,3.018z" fill="url(#SVGID_3__)"/>
-<path d="M27.06,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146-0.385-0.581-0.832-1.134-1.344-1.645-0.512-0.512-1.064-0.96-1.646-1.346-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754,3.02,3.018z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M26.87,3.546c-0.492-0.492-1.023-0.924-1.58-1.299-0.178,0.095-0.346,0.207-0.494,0.355l-0.473,0.473,3.018,3.017,0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495-0.39-0.557-0.82-1.087-1.31-1.579z" fill="#5E2D29" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="26.32" x2="14.11" y1="4.092" y2="16.31">
-<stop offset="0" stop-color="#E6E0C8"/>
-<stop offset="1" stop-color="#AF8C5A"/>
+<path d="M27.057,6.375l0.754-0.755c0.83-0.829,0.83-2.188,0-3.017c-0.83-0.83-2.188-0.83-3.018,0 l-0.754,0.754L27.057,6.375z" fill="url(#SVGID_3__)"/>
+<path d="M27.057,6.375l0.754-0.755c0.045-0.045,0.08-0.098,0.119-0.146 c-0.385-0.581-0.832-1.134-1.344-1.645c-0.512-0.512-1.064-0.96-1.646-1.346c-0.047,0.041-0.1,0.074-0.146,0.12l-0.754,0.754 L27.057,6.375z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M26.869,3.546c-0.492-0.492-1.023-0.924-1.58-1.299c-0.178,0.095-0.346,0.207-0.494,0.355 l-0.473,0.473l3.018,3.017l0.471-0.472c0.148-0.148,0.262-0.318,0.357-0.495C27.791,4.568,27.359,4.038,26.869,3.546z" fill="#5E2D29" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="26.3223" x2="14.1095" y1="4.0923" y2="16.3051">
+<stop offset="0" style="stop-color:#E6E0C8"/>
+<stop offset="1" style="stop-color:#AF8C5A"/>
</linearGradient>
-<path d="M21.78,23.72l4.525-4.525c4.148-4.147,4.148-10.94,0-15.08s-10.94-4.148-15.08,0l-4.527,4.517,15.09,15.08z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="13.12" x2="27.43" y1="2.994" y2="17.31">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.2545" stop-color="#DED7B3"/>
-<stop offset="0.503" stop-color="#C9B78A"/>
-<stop offset="0.5152" stop-color="#C4AE80"/>
-<stop offset="0.6667" stop-color="#AA8250"/>
-<stop offset="0.8545" stop-color="#CDBE93"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M21.777,23.721l4.525-4.525c4.148-4.147,4.148-10.936,0-15.084s-10.936-4.148-15.084,0L6.693,8.637 L21.777,23.721z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="13.1172" x2="27.4319" y1="2.9941" y2="17.3088">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.2545" style="stop-color:#DED7B3"/>
+<stop offset="0.503" style="stop-color:#C9B78A"/>
+<stop offset="0.5152" style="stop-color:#C4AE80"/>
+<stop offset="0.6667" style="stop-color:#AA8250"/>
+<stop offset="0.8545" style="stop-color:#CDBE93"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M7.258,8.637l4.244-4.242c1.93-1.931,4.51-2.995,7.26-2.995,2.752,0,5.33,1.063,7.26,2.994,1.932,1.931,2.994,4.509,2.994,7.259,0,2.751-1.063,5.329-2.994,7.26l-4.242,4.242-14.52-14.51z" fill="url(#SVGID_5__)"/>
-<rect fill="#5E2D29" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.33" x="3.723" y="15.82"/>
-<path d="M13.62,23.67c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425l6.873,6.87z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill="#5E2D29" fill-opacity="0.1" height="0.4" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.33" x="4.006" y="15.54"/>
-<path d="M13.13,23.79c0.156-0.029,0.309-0.063,0.461-0.106l-6.856-6.86c-0.043,0.151-0.078,0.305-0.107,0.459l6.503,6.51z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M4.85,8.302l17.26,17.26c0.037-0.485-0.059-1.074-0.334-1.844l-15.09-15.08c-0.769-0.277-1.357-0.371-1.843-0.335z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.81,15.81c-0.047-0.173-0.105-0.357-0.176-0.553l-15.08-15.08z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect fill="#522523" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.6" x="-2.194" y="19.61"/>
-<rect fill="#522523" fill-opacity="0.1" height="0.398" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.6" x="-1.911" y="19.33"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="21.65" x2="21.65" y1="1.782" y2="16.04">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDBD92"/>
+<path d="M7.258,8.637l4.244-4.242C13.432,2.464,16.01,1.4,18.76,1.4c2.752,0,5.33,1.063,7.26,2.994 c1.932,1.931,2.994,4.509,2.994,7.259c0,2.751-1.063,5.329-2.994,7.26l-4.242,4.242L7.258,8.637z" fill="url(#SVGID_5__)"/>
+<rect fill="#5E2D29" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.546 -5.4806)" width="21.332" x="3.723" y="15.825"/>
+<path d="M13.619,23.671c0.143-0.041,0.285-0.087,0.426-0.141l-7.162-7.161c-0.053,0.14-0.1,0.281-0.141,0.425 L13.619,23.671z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill="#5E2D29" fill-opacity="0.1" height="0.4" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.429 -5.7637)" width="21.332" x="4.006" y="15.543"/>
+<path d="M13.133,23.786c0.156-0.029,0.309-0.063,0.461-0.106L6.734,16.82c-0.043,0.151-0.078,0.305-0.107,0.459 L13.133,23.786z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M4.85,8.302l17.262,17.263c0.037-0.485-0.059-1.074-0.334-1.844L6.693,8.637 C5.924,8.36,5.336,8.266,4.85,8.302z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6.693,8.637c-0.195-0.07-0.379-0.128-0.553-0.176l15.813,15.813 c-0.047-0.173-0.105-0.357-0.176-0.553L6.693,8.637z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill="#522523" fill-opacity="0.2" height="0.401" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.1142 -1.697)" width="25.598" x="-2.194" y="19.608"/>
+<rect fill="#522523" fill-opacity="0.1" height="0.398" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.9952 -1.9808)" width="25.599" x="-1.911" y="19.326"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="21.6523" x2="21.6523" y1="1.7822" y2="16.0367">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDBD92"/>
</linearGradient>
-<path d="M27.35,15.49c-2.314-1.359-4.715-3.255-6.941-5.482-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403,0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686,2.615,0,5.162,1.047,6.986,2.873,2.775,2.774,3.635,6.941,2.188,10.61l-0.172,0.435-0.42-0.23z" fill="url(#SVGID_6__)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M27.348,15.49c-2.314-1.359-4.715-3.255-6.941-5.482 c-2.229-2.228-4.123-4.628-5.482-6.942l-0.236-0.403l0.436-0.172c1.156-0.455,2.375-0.686,3.627-0.686 c2.615,0,5.162,1.047,6.986,2.873c2.775,2.774,3.635,6.941,2.188,10.614l-0.172,0.435L27.348,15.49z" fill="url(#SVGID_6__)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="28.13" x2="28.13" y1="12.29" y2="51.26">
<stop offset="0" stop-color="#93BD66"/>
@@ -29,4 +30,5 @@
</linearGradient>
<path d="M17.62,52.39c-4.258,0.021-7.653-1.941-8.447-4.885-0.484-1.785,0.028-3.761,1.444-5.555,1.55-1.964,3.944-3.454,6.747-4.191,1.187-0.317,2.386-0.477,3.573-0.484,4.258-0.021,7.651,1.943,8.45,4.885,1.058,3.9-2.618,8.272-8.196,9.748-1.18,0.31-2.38,0.47-3.57,0.48z" fill="url(#SVGID_5)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tone_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1" x1="28.13" x2="28.13" y1="12.29" y2="51.26">
<stop offset="0" stop-color="#93BD66"/>
@@ -29,15 +30,16 @@
</linearGradient>
<path d="M17.62,52.39c-4.258,0.021-7.653-1.941-8.447-4.885-0.484-1.785,0.028-3.761,1.444-5.555,1.55-1.964,3.944-3.454,6.747-4.191,1.187-0.317,2.386-0.477,3.573-0.484,4.258-0.021,7.651,1.943,8.45,4.885,1.058,3.9-2.618,8.272-8.196,9.748-1.18,0.31-2.38,0.47-3.57,0.48z" fill="url(#SVGID_5)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(2 0 0 2 0 0)">
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.35" height="33.87" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.15" y="-2.239"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="260" x2="284" y1="656" y2="656">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="0.8424" stop-color="#954B50"/>
-<stop offset="1" stop-color="#B36B4D"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="260" x2="284" y1="655.9761" y2="655.9761">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="0.8424" style="stop-color:#954B50"/>
+<stop offset="1" style="stop-color:#B36B4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="25.81,26.43,3,4.177,4.191,2.956,27,25.21"/>
+<polygon fill="url(#SVGID_1_)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tv_out.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_tv_out.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,182 +1,184 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.86">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.001" y2="57.8555">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M48.03,54.93c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069v-49.86c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069v49.86z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.9">
-<stop offset="0" stop-color="#E7EAE8"/>
-<stop offset="0.0667" stop-color="#E7EAE8"/>
-<stop offset="0.2606" stop-color="#D8DCDA"/>
-<stop offset="0.6606" stop-color="#B7BDBB"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M48.027,54.932c0,1.693-1.375,3.069-3.068,3.069h-29.92c-1.693,0-3.066-1.376-3.066-3.069V5.07 c0-1.696,1.373-3.069,3.066-3.069h29.92c1.693,0,3.068,1.373,3.068,3.069V54.932z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.001" y2="56.899">
+<stop offset="0" style="stop-color:#E7EAE8"/>
+<stop offset="0.0667" style="stop-color:#E7EAE8"/>
+<stop offset="0.2606" style="stop-color:#D8DCDA"/>
+<stop offset="0.6606" style="stop-color:#B7BDBB"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M44.96,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.86c0,0.82,0.324,1.56,0.848,2.11-0.047-0.187-0.08-0.377-0.08-0.575v-51.39c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304v51.4c0,0.198-0.033,0.389-0.08,0.575,0.521-0.551,0.848-1.29,0.848-2.11v-49.86c0-1.696-1.38-3.069-3.07-3.069z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.892" y2="43.43">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M44.959,2.001h-29.92c-1.693,0-3.066,1.373-3.066,3.069v49.861c0,0.82,0.324,1.56,0.848,2.11 c-0.047-0.187-0.08-0.377-0.08-0.575v-1.535V6.602V5.07c0-1.271,1.031-2.304,2.299-2.304h29.92c1.268,0,2.301,1.033,2.301,2.304 v1.531v48.33v1.535c0,0.198-0.033,0.389-0.08,0.575c0.521-0.551,0.848-1.29,0.848-2.11V5.07C48.027,3.374,46.652,2.001,44.959,2.001 z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="5.8916" y2="43.4283">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.59" stroke-opacity="0.6" width="31.45" x="14.27" y="5.836"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="6.655" y2="42.66">
-<stop offset="0" stop-color="#6E6E6E"/>
-<stop offset="1" stop-color="#333333"/>
+<rect fill="url(#SVGID_3_)" fill-opacity="0.6" height="37.589" stroke-opacity="0.6" width="31.453" x="14.273" y="5.836"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.999" x2="29.999" y1="6.6548" y2="42.6624">
+<stop offset="0" style="stop-color:#6E6E6E"/>
+<stop offset="1" style="stop-color:#333333"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="36.06" width="29.92" x="15.04" y="6.602"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.421" y2="41.89">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="0.3879" stop-color="#5F8BA1"/>
-<stop offset="0.8909" stop-color="#455188"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="36.058" width="29.92" x="15.039" y="6.602"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="7.4214" y2="41.894">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="0.3879" style="stop-color:#5F8BA1"/>
+<stop offset="0.8909" style="stop-color:#455188"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="34.52" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.971" y2="21.69">
-<stop offset="0" stop-color="#AADAC6"/>
-<stop offset="1" stop-color="#6A99AA"/>
+<rect fill="url(#SVGID_5_)" height="34.521" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="7.9712" y2="21.69">
+<stop offset="0" style="stop-color:#AADAC6"/>
+<stop offset="1" style="stop-color:#6A99AA"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="44.19,19.64,15.81,22.71,15.81,8.137,44.19,8.137"/>
-<rect fill="#BCE2D2" height="0.767" width="28.38" x="15.81" y="7.37"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.22" x2="30.22" y1="5.873" y2="2.803">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D3D7D5"/>
+<polygon fill="url(#SVGID_6_)" points="44.191,19.644 15.809,22.712 15.809,8.137 44.191,8.137 "/>
+<rect fill="#BCE2D2" height="0.767" width="28.383" x="15.809" y="7.37"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="30.2236" x2="30.2236" y1="5.8726" y2="2.8032">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D3D7D5"/>
</linearGradient>
-<path d="M26.83,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279h-6.788z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.22" x2="30.22" y1="3.216" y2="5.199">
-<stop offset="0" stop-color="#6F7172"/>
-<stop offset="1" stop-color="#BFC2C1"/>
+<path d="M26.832,5.836c-0.861,0-1.535-0.563-1.535-1.279v-0.51c0-0.718,0.674-1.28,1.535-1.28h6.785 c0.859,0,1.533,0.563,1.533,1.28v0.51c0,0.716-0.674,1.279-1.533,1.279H26.832z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="30.2236" x2="30.2236" y1="3.2158" y2="5.1992">
+<stop offset="0" style="stop-color:#6F7172"/>
+<stop offset="1" style="stop-color:#BFC2C1"/>
</linearGradient>
-<path d="M34.38,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512v0.51z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.88" x2="29.88" y1="44.22" y2="55.63">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M34.383,4.557c0,0.283-0.342,0.514-0.766,0.514h-6.785c-0.424,0-0.768-0.23-0.768-0.514v-0.51 c0-0.283,0.344-0.512,0.768-0.512h6.785c0.424,0,0.766,0.229,0.766,0.512V4.557z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="29.8818" x2="29.8818" y1="44.2236" y2="55.628">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M27.11,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951h-5.551z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27.1,54.93c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183h-5.545z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.88" x2="29.88" y1="45.69" y2="54.18">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M27.109,55.7c-1.645,0-2.98-1.323-2.98-2.951v-5.606c0-1.627,1.336-2.951,2.98-2.951 h5.545c1.645,0,2.98,1.324,2.98,2.951v5.606c0,1.628-1.336,2.951-2.98,2.951H27.109z" fill="url(#SVGID_9_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.105,54.932c-1.219,0-2.211-0.979-2.211-2.183v-5.606c0-1.204,0.992-2.183,2.211-2.183 h5.553c1.219,0,2.209,0.979,2.209,2.183v5.606c0,1.204-0.99,2.183-2.209,2.183H27.105z" fill="#020202" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="29.8818" x2="29.8818" y1="45.6865" y2="54.1806">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M34.1,52.75c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417v5.609z" fill="url(#SVGID_10_)"/>
-<path d="M28.73,52.63c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534h-2.3z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.88" x2="29.88" y1="48.01" y2="51.87">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#989D9D"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M34.102,52.749c0,0.783-0.645,1.417-1.438,1.417h-5.566c-0.793,0-1.436-0.634-1.436-1.417v-5.606 c0-0.783,0.643-1.417,1.436-1.417h5.566c0.793,0,1.438,0.634,1.438,1.417V52.749z" fill="url(#SVGID_10_)"/>
+<path d="M28.73,52.632c-0.846,0-1.533-0.688-1.533-1.534v-2.303c0-0.847,0.688-1.534,1.533-1.534 h2.303c0.846,0,1.533,0.688,1.533,1.534v2.303c0,0.847-0.688,1.534-1.533,1.534H28.73z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="29.8809" x2="29.8809" y1="48.0103" y2="51.8696">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#989D9D"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<path d="M28.73,51.86c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766h-2.3z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.67" x2="17.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M28.73,51.863c-0.422,0-0.768-0.345-0.768-0.766v-2.303c0-0.422,0.346-0.767,0.768-0.767h2.303 c0.42,0,0.766,0.345,0.766,0.767v2.303c0,0.421-0.346,0.766-0.766,0.766H28.73z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="17.667" x2="17.667" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M17.22,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.887z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.66" x2="17.66" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M17.223,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.887c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H17.223z" fill="url(#SVGID_12_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="17.665" x2="17.665" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M17.22,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183h-0.887z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.67" x2="17.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M17.223,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.887c1.205,0,2.182,0.981,2.182,2.183v3.307c0,1.204-0.977,2.183-2.182,2.183H17.223z" fill="url(#SVGID_13_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="17.667" x2="17.667" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M19.52,51.22c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414v3.305z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.67" x2="41.67" y1="44.92" y2="54.18">
-<stop offset="0" stop-color="#B8BBBA"/>
-<stop offset="1" stop-color="#F4FBF6"/>
+<path d="M19.525,51.215c0,0.783-0.635,1.417-1.416,1.417h-0.887c-0.779,0-1.414-0.634-1.414-1.417v-3.307 c0-0.78,0.635-1.414,1.414-1.414h0.887c0.781,0,1.416,0.634,1.416,1.414V51.215z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="41.6719" x2="41.6719" y1="44.917" y2="54.1816">
+<stop offset="0" style="stop-color:#B8BBBA"/>
+<stop offset="1" style="stop-color:#F4FBF6"/>
</linearGradient>
-<path d="M41.23,54.17c-1.625,0-2.949-1.323-2.949-2.951v-3.307c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951h-0.891z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.67" x2="41.67" y1="45.69" y2="53.41">
-<stop offset="0" stop-color="#222021"/>
-<stop offset="1" stop-color="#6E6E6F"/>
+<path d="M41.229,54.166c-1.625,0-2.949-1.323-2.949-2.951v-3.307 c0-1.624,1.324-2.948,2.949-2.948h0.885c1.627,0,2.951,1.324,2.951,2.948v3.307c0,1.628-1.324,2.951-2.951,2.951H41.229z" fill="url(#SVGID_15_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="41.6709" x2="41.6709" y1="45.6899" y2="53.4106">
+<stop offset="0" style="stop-color:#222021"/>
+<stop offset="1" style="stop-color:#6E6E6F"/>
</linearGradient>
-<path d="M41.23,53.4c-1.203,0-2.184-0.979-2.184-2.183v-3.307c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183h-0.891z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.67" x2="41.67" y1="46.47" y2="52.64">
-<stop offset="0" stop-color="#C6B17B"/>
-<stop offset="0.7455" stop-color="#98604F"/>
-<stop offset="1" stop-color="#7F3736"/>
+<path d="M41.229,53.397c-1.203,0-2.184-0.979-2.184-2.183v-3.307 c0-1.201,0.98-2.183,2.184-2.183h0.885c1.205,0,2.184,0.981,2.184,2.183v3.307c0,1.204-0.979,2.183-2.184,2.183H41.229z" fill="url(#SVGID_16_)" fill-opacity="0.7" stroke-opacity="0.7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="41.6719" x2="41.6719" y1="46.4658" y2="52.6426">
+<stop offset="0" style="stop-color:#C6B17B"/>
+<stop offset="0.7455" style="stop-color:#98604F"/>
+<stop offset="1" style="stop-color:#7F3736"/>
</linearGradient>
-<path d="M43.53,51.22c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414v3.305z" fill="url(#SVGID_17_)"/>
+<path d="M43.531,51.215c0,0.783-0.637,1.417-1.418,1.417h-0.885c-0.781,0-1.416-0.634-1.416-1.417v-3.307 c0-0.78,0.635-1.414,1.416-1.414h0.885c0.781,0,1.418,0.634,1.418,1.414V51.215z" fill="url(#SVGID_17_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(-1 0 0 1 60 30)">
-<polygon fill="none" points="8.019,0,0,0,0,30,18.23,30,18.84,30.22,18.98,30,30,30,30,0,21.98,0"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="6.564" x2="23.44" y1="15.11" y2="15.11">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.2727" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<polygon fill="none" points="8.019,0 0,0 0,30 18.231,30 18.84,30.224 18.975,30 30,30 30,0 21.98,0 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="6.5635" x2="23.4365" y1="15.1118" y2="15.1118">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M18.06,29.94c-4.937-1.812-6.404-6.104-6.839-8.368h-0.037l-0.033-0.295h-0.363c-0.829,0-1.512-0.64-1.581-1.452l-0.589-2.66h-0.47c-0.875,0-1.587-0.712-1.587-1.586v-8.221c0-0.83,0.642-1.514,1.455-1.58v-5.779h13.96v5.779c0.814,0.066,1.456,0.75,1.456,1.58v8.221c0,0.874-0.712,1.586-1.588,1.586h-0.47l-0.592,2.657c-0.069,0.812-0.751,1.452-1.579,1.452,0.416,0.971,1.1,1.979,2.214,2.472l1.037,0.459-3.62,6.018-0.78-0.29z" fill="url(#SVGID_1__)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="22.25" cy="19.79" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="9.545">
-<stop offset="0" stop-color="#101010"/>
-<stop offset="0.4727" stop-color="#858585"/>
-<stop offset="0.8" stop-color="#000000"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M18.064,29.938c-4.937-1.812-6.404-6.104-6.839-8.368h-0.037l-0.033-0.295h-0.363 c-0.829,0-1.512-0.64-1.581-1.452L8.62,17.166H8.15c-0.875,0-1.587-0.712-1.587-1.586V7.359c0-0.83,0.642-1.514,1.455-1.58V0H21.98 v5.779c0.814,0.066,1.456,0.75,1.456,1.58v8.221c0,0.874-0.712,1.586-1.588,1.586H21.38l-0.592,2.657 c-0.069,0.812-0.751,1.452-1.579,1.452c0.416,0.971,1.1,1.979,2.214,2.472l1.037,0.459l-3.62,6.018L18.064,29.938z" fill="url(#SVGID_1__)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="22.252" cy="19.7871" gradientUnits="userSpaceOnUse" id="SVGID_2__" r="9.5452">
+<stop offset="0" style="stop-color:#101010"/>
+<stop offset="0.4727" style="stop-color:#858585"/>
+<stop offset="0.8" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</radialGradient>
-<path d="M18.41,29c-5.74-2.107-6.669-7.99-6.358-10.81l5.544,0.615c-0.033,0.371,0.419,4.525,3.424,5.854l-2.6,4.35z" fill="url(#SVGID_2__)"/>
-<path d="M17.6,18.81l-5.544-0.615c-0.08,0.725-0.077,1.654,0.069,2.67h5.867c-0.34-1.04-0.42-1.9-0.4-2.06z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="9.019" x2="20.98" y1="3.936" y2="3.936">
-<stop offset="0" stop-color="#7F5337"/>
-<stop offset="0.05" stop-color="#D5D19D"/>
-<stop offset="0.35" stop-color="#B9A56D"/>
-<stop offset="0.65" stop-color="#AD9861"/>
-<stop offset="0.95" stop-color="#CFC893"/>
-<stop offset="1" stop-color="#7F5337"/>
+<path d="M18.409,29c-5.74-2.107-6.669-7.99-6.358-10.807l5.544,0.615c-0.033,0.371,0.419,4.525,3.424,5.854 L18.409,29L18.409,29z" fill="url(#SVGID_2__)"/>
+<path d="M17.595,18.809l-5.544-0.615c-0.08,0.725-0.077,1.654,0.069,2.67h5.867 C17.657,19.828,17.581,18.969,17.595,18.809z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="9.0186" x2="20.9805" y1="3.9355" y2="3.9355">
+<stop offset="0" style="stop-color:#7F5337"/>
+<stop offset="0.05" style="stop-color:#D5D19D"/>
+<stop offset="0.35" style="stop-color:#B9A56D"/>
+<stop offset="0.65" style="stop-color:#AD9861"/>
+<stop offset="0.95" style="stop-color:#CFC893"/>
+<stop offset="1" style="stop-color:#7F5337"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="5.871" width="11.96" x="9.019" y="1"/>
-<path d="M17.6,18.81l-5.544-0.615c-0.072,0.654-0.075,1.477,0.03,2.377h5.818c-0.27-0.91-0.33-1.63-0.31-1.77z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="9.031" x2="20.97" y1="17.05" y2="17.05">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#7A7A7A"/>
-<stop offset="0.8" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<rect fill="url(#SVGID_3__)" height="5.871" width="11.962" x="9.019" y="1"/>
+<path d="M17.595,18.809l-5.544-0.615c-0.072,0.654-0.075,1.477,0.03,2.377h5.818 C17.644,19.67,17.582,18.953,17.595,18.809z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="9.0313" x2="20.9688" y1="17.0469" y2="17.0469">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#7A7A7A"/>
+<stop offset="0.8" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M19.79,19.69c0,0.324-0.263,0.588-0.586,0.588h-8.416c-0.324,0-0.587-0.264-0.587-0.588l-1.174-5.281c0-0.326,0.263-0.588,0.587-0.588h10.76c0.324,0,0.587,0.262,0.587,0.588l-1.17,5.28z" fill="url(#SVGID_4__)"/>
-<path d="M20.38,14.11h-10.76c-0.266,0-0.486,0.178-0.56,0.418l0.495,2.225h10.89l0.494-2.225c-0.07-0.25-0.29-0.43-0.56-0.43z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M9.618,17.05h10.76l0.514-2.316c-0.096-0.189-0.286-0.324-0.514-0.324h-10.76c-0.229,0-0.418,0.135-0.516,0.324l0.516,2.32z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M20.38,13.82h-10.76c-0.324,0-0.587,0.262-0.587,0.588l0.456,2.053h11.02l0.456-2.053c0-0.33-0.26-0.59-0.59-0.59z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect fill-opacity="0.35" height="0.393" stroke-opacity="0.35" width="11.96" x="9.019" y="6.479"/>
-<rect fill-opacity="0.15" height="0.391" stroke-opacity="0.15" width="11.96" x="9.019" y="6.088"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="7.564" x2="22.44" y1="11.47" y2="11.47">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#595959"/>
-<stop offset="0.8" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M19.794,19.688c0,0.324-0.263,0.588-0.586,0.588h-8.416c-0.324,0-0.587-0.264-0.587-0.588 l-1.174-5.281c0-0.326,0.263-0.588,0.587-0.588h10.764c0.324,0,0.587,0.262,0.587,0.588L19.794,19.688z" fill="url(#SVGID_4__)"/>
+<path d="M20.382,14.111H9.618c-0.266,0-0.486,0.178-0.56,0.418l0.495,2.225h10.893l0.494-2.225 C20.868,14.289,20.646,14.111,20.382,14.111z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M9.618,17.047h10.764l0.514-2.316c-0.096-0.189-0.286-0.324-0.514-0.324H9.618 c-0.229,0-0.418,0.135-0.516,0.324L9.618,17.047z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M20.382,13.818H9.618c-0.324,0-0.587,0.262-0.587,0.588l0.456,2.053h11.025l0.456-2.053 C20.969,14.08,20.706,13.818,20.382,13.818z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<rect fill-opacity="0.35" height="0.393" stroke-opacity="0.35" width="11.962" x="9.019" y="6.479"/>
+<rect fill-opacity="0.15" height="0.391" stroke-opacity="0.15" width="11.962" x="9.019" y="6.088"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="7.5635" x2="22.4365" y1="11.4697" y2="11.4697">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#595959"/>
+<stop offset="0.8" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M22.44,15.58c0,0.324-0.264,0.586-0.588,0.586h-13.7c-0.324,0-0.587-0.262-0.587-0.586v-8.221c0-0.324,0.263-0.586,0.587-0.586h13.7c0.324,0,0.588,0.262,0.588,0.586v8.221z" fill="url(#SVGID_5__)"/>
-<path d="M21.85,15.87h-13.7c-0.324,0-0.587-0.264-0.587-0.588v0.295c0,0.324,0.263,0.586,0.587,0.586h13.7c0.324,0,0.588-0.262,0.588-0.586v-0.295c0,0.33-0.27,0.59-0.59,0.59z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M21.85,15.58h-13.7c-0.324,0-0.587-0.264-0.587-0.588v0.293c0,0.324,0.263,0.588,0.587,0.588h13.7c0.324,0,0.588-0.264,0.588-0.588v-0.293c0,0.33-0.27,0.59-0.59,0.59z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M21.85,6.773h-13.7c-0.324,0-0.587,0.262-0.587,0.586v0.293c0-0.322,0.263-0.586,0.587-0.586h13.7c0.324,0,0.588,0.264,0.588,0.586v-0.293c0-0.324-0.27-0.586-0.59-0.586z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M21.85,7.066h-13.7c-0.324,0-0.587,0.264-0.587,0.586v0.295c0-0.324,0.263-0.588,0.587-0.588h13.7c0.324,0,0.588,0.264,0.588,0.588v-0.295c0-0.322-0.27-0.586-0.59-0.586z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="7.564" x2="22.44" y1="8.436" y2="8.436">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.2727" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M22.437,15.58c0,0.324-0.264,0.586-0.588,0.586H8.15c-0.324,0-0.587-0.262-0.587-0.586V7.359 c0-0.324,0.263-0.586,0.587-0.586h13.698c0.324,0,0.588,0.262,0.588,0.586V15.58z" fill="url(#SVGID_5__)"/>
+<path d="M21.849,15.873H8.15c-0.324,0-0.587-0.264-0.587-0.588v0.295c0,0.324,0.263,0.586,0.587,0.586h13.698 c0.324,0,0.588-0.262,0.588-0.586v-0.295C22.437,15.609,22.173,15.873,21.849,15.873z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M21.849,15.58H8.15c-0.324,0-0.587-0.264-0.587-0.588v0.293c0,0.324,0.263,0.588,0.587,0.588h13.698 c0.324,0,0.588-0.264,0.588-0.588v-0.293C22.437,15.316,22.173,15.58,21.849,15.58z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M21.849,6.773H8.15c-0.324,0-0.587,0.262-0.587,0.586v0.293c0-0.322,0.263-0.586,0.587-0.586 h13.698c0.324,0,0.588,0.264,0.588,0.586V7.359C22.437,7.035,22.173,6.773,21.849,6.773z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M21.849,7.066H8.15c-0.324,0-0.587,0.264-0.587,0.586v0.295c0-0.324,0.263-0.588,0.587-0.588 h13.698c0.324,0,0.588,0.264,0.588,0.588V7.652C22.437,7.33,22.173,7.066,21.849,7.066z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="7.5635" x2="22.4365" y1="8.4355" y2="8.4355">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_6__)" height="0.586" width="14.87" x="7.563" y="8.143"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="0.295" stroke-opacity="0.25" width="14.87" x="7.563" y="8.729"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="0.293" stroke-opacity="0.25" width="14.87" x="7.563" y="10.2"/>
-<rect fill="#FFFFFF" fill-opacity="0.25" height="0.295" stroke-opacity="0.25" width="14.87" x="7.563" y="11.66"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="7.564" x2="22.44" y1="9.903" y2="9.903">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.2727" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<rect fill="url(#SVGID_6__)" height="0.586" width="14.873" x="7.563" y="8.143"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="0.295" stroke-opacity="0.25" width="14.873" x="7.563" y="8.729"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="0.293" stroke-opacity="0.25" width="14.873" x="7.563" y="10.197"/>
+<rect fill="#FFFFFF" fill-opacity="0.25" height="0.295" stroke-opacity="0.25" width="14.873" x="7.563" y="11.664"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7__" x1="7.5635" x2="22.4365" y1="9.9033" y2="9.9033">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_7__)" height="0.588" width="14.87" x="7.563" y="9.609"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="7.564" x2="22.44" y1="11.37" y2="11.37">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.2727" stop-color="#333333"/>
-<stop offset="1" stop-color="#000000"/>
+<rect fill="url(#SVGID_7__)" height="0.588" width="14.873" x="7.563" y="9.609"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8__" x1="7.5635" x2="22.4365" y1="11.3711" y2="11.3711">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.2727" style="stop-color:#333333"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_8__)" height="0.586" width="14.87" x="7.563" y="11.08"/>
+<rect fill="url(#SVGID_8__)" height="0.586" width="14.873" x="7.563" y="11.078"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_unknown.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_unknown.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,29 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="2.093" y2="37.93">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.7636" stop-color="#3F4A78"/>
-<stop offset="1" stop-color="#72B9C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.999" x2="29.999" y1="2.0928" y2="37.9271">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.7636" style="stop-color:#3F4A78"/>
+<stop offset="1" style="stop-color:#72B9C3"/>
</linearGradient>
-<path d="M14.81,10.72v-7.212c4.37-1.003,8.5-1.508,12.43-1.508,5.785,0,10.22,1.121,13.31,3.364s4.635,5.532,4.635,9.873c0,2.526-0.596,4.665-1.783,6.417-1.191,1.752-9.396,9.994-10.2,11.12-0.809,1.128-1.213,2.465-1.213,4.01v1.544h-11.51v-2.06c0-2.502,0.547-4.612,1.639-6.342,1.09-1.729,2.994-3.868,5.715-6.419,2.133-1.985,4.781-6.593,4.781-7.573,0-4.436-2.674-6.655-8.018-6.655-3.02-0.005-6.28,0.474-9.79,1.435z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="2.559" y2="37.8">
-<stop offset="0" stop-color="#94CAC2"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M14.814,10.715V3.508C19.178,2.505,23.314,2,27.238,2c5.785,0,10.221,1.121,13.311,3.364 s4.635,5.532,4.635,9.873c0,2.526-0.596,4.665-1.783,6.417c-1.191,1.752-9.396,9.994-10.205,11.121 c-0.809,1.128-1.213,2.465-1.213,4.01v1.544h-11.51v-2.06c0-2.502,0.547-4.612,1.639-6.342c1.09-1.729,2.994-3.868,5.715-6.419 c2.133-1.985,4.781-6.593,4.781-7.573c0-4.436-2.674-6.655-8.018-6.655C21.576,9.28,18.322,9.759,14.814,10.715z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.999" x2="29.999" y1="2.5591" y2="37.7967">
+<stop offset="0" style="stop-color:#94CAC2"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M21.22,37.58v-1.31c0-2.343,0.512-4.342,1.521-5.941,1.051-1.666,2.934-3.776,5.596-6.272,2.016-1.876,5.018-6.732,5.018-8.12,0-3.378-1.521-7.405-8.768-7.405-2.695,0-5.629,0.383-8.717,1.137l-0.309,0.075v-5.64l0.197-0.043c4.018-0.872,7.879-1.314,11.48-1.314,5.596,0,9.928,1.084,12.87,3.222,2.912,2.112,4.326,5.144,4.326,9.266,0,2.359-0.557,4.376-1.654,5.996-0.646,0.95-3.703,4.159-6.158,6.737-2.273,2.389-3.68,3.872-4.035,4.367-0.898,1.254-1.354,2.75-1.354,4.447v0.794h-10.03z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="26.69" x2="26.69" y1="43.68" y2="58.18">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.7636" stop-color="#3F4A78"/>
-<stop offset="1" stop-color="#72B9C3"/>
+<path d="M21.223,37.579v-1.31c0-2.343,0.512-4.342,1.521-5.941c1.051-1.666,2.934-3.776,5.596-6.272 c2.016-1.876,5.018-6.732,5.018-8.12c0-3.378-1.521-7.405-8.768-7.405c-2.695,0-5.629,0.383-8.717,1.137l-0.309,0.075V4.107 l0.197-0.043c4.018-0.872,7.879-1.314,11.477-1.314c5.596,0,9.928,1.084,12.869,3.222c2.912,2.112,4.326,5.144,4.326,9.266 c0,2.359-0.557,4.376-1.654,5.996c-0.646,0.95-3.703,4.159-6.158,6.737c-2.273,2.389-3.68,3.872-4.035,4.367 c-0.898,1.254-1.354,2.75-1.354,4.447v0.794H21.223z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="26.6924" x2="26.6924" y1="43.6758" y2="58.1758">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.7636" style="stop-color:#3F4A78"/>
+<stop offset="1" style="stop-color:#72B9C3"/>
</linearGradient>
-<path d="M26.67,58c-1.938,0-3.602-0.686-5-2.059-1.396-1.373-2.094-3.052-2.094-5.037,0-1.962,0.693-3.641,2.076-5.038,1.385-1.397,3.059-2.095,5.018-2.095,1.961,0,3.641,0.697,5.037,2.095,1.398,1.397,2.098,3.076,2.098,5.038,0,1.985-0.699,3.664-2.098,5.037-1.41,1.37-3.09,2.06-5.05,2.06z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.69" x2="26.69" y1="44.44" y2="57.41">
-<stop offset="0" stop-color="#8DC5C2"/>
-<stop offset="0.1152" stop-color="#8DC5C2"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M26.672,58c-1.938,0-3.602-0.686-5-2.059c-1.396-1.373-2.094-3.052-2.094-5.037 c0-1.962,0.693-3.641,2.076-5.038c1.385-1.397,3.059-2.095,5.018-2.095c1.961,0,3.641,0.697,5.037,2.095 c1.398,1.397,2.098,3.076,2.098,5.038c0,1.985-0.699,3.664-2.098,5.037C30.313,57.314,28.633,58,26.672,58z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="26.6924" x2="26.6924" y1="44.436" y2="57.4074">
+<stop offset="0" style="stop-color:#8DC5C2"/>
+<stop offset="0.1152" style="stop-color:#8DC5C2"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M26.67,57.25c-1.748,0-3.211-0.604-4.475-1.844-1.258-1.237-1.869-2.71-1.869-4.502,0-1.771,0.607-3.245,1.859-4.511,1.248-1.26,2.715-1.872,4.484-1.872,1.771,0,3.246,0.613,4.508,1.875,1.264,1.263,1.877,2.737,1.877,4.508,0,1.792-0.613,3.265-1.873,4.503-1.27,1.24-2.75,1.84-4.52,1.84z" fill="url(#SVGID_4_)"/>
+<path d="M26.672,57.25c-1.748,0-3.211-0.604-4.475-1.844c-1.258-1.237-1.869-2.71-1.869-4.502 c0-1.771,0.607-3.245,1.859-4.511c1.248-1.26,2.715-1.872,4.484-1.872c1.771,0,3.246,0.613,4.508,1.875 c1.264,1.263,1.877,2.737,1.877,4.508c0,1.792-0.613,3.265-1.873,4.503C29.92,56.647,28.445,57.25,26.672,57.25L26.672,57.25z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,84 +1,86 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.859" y2="57.86">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#F2F2F2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="1.8594" y2="57.8613">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M6.787,44.29c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h32.86v-55.7h-46.42v42.15z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.88" y2="55.86">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M6.787,44.293c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h32.864V2.145H6.787V44.293z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="3.8799" y2="55.861">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M20.35,55.86c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158v-40.16h42.43v51.71h-30.86z" fill="url(#SVGID_2_)"/>
-<path d="M30,46.05c-8.882,0-16.11-7.333-16.11-16.35,0-9.014,7.226-16.35,16.11-16.35,8.881,0,16.11,7.334,16.11,16.35,0,9.02-7.23,16.35-16.11,16.35z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<ellipse cx="30" cy="29.7" fill-opacity="0.2" rx="15.11" ry="15.35" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="43.73" y2="13.26">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M20.349,55.855c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158 V4.145h42.426v51.71H20.349z" fill="url(#SVGID_2_)"/>
+<path d="M30,46.05c-8.882,0-16.107-7.333-16.107-16.346c0-9.014,7.226-16.348,16.107-16.348 c8.881,0,16.107,7.334,16.107,16.348C46.107,38.717,38.881,46.05,30,46.05L30,46.05z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<ellipse cx="30" cy="29.703" fill-opacity="0.2" rx="15.107" ry="15.347" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="43.7314" y2="13.2561">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<ellipse cx="30" cy="28.56" fill="url(#SVGID_3_)" rx="15.11" ry="15.35"/>
-<radialGradient cx="-23.88" cy="20.23" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.56">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_3_)" rx="15.107" ry="15.346"/>
+<radialGradient cx="-23.8765" cy="20.2261" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.5636">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<ellipse cx="30" cy="28.56" fill="url(#SVGID_4_)" rx="14.72" ry="14.95"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="13.48" y2="43.59">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_4_)" rx="14.721" ry="14.953"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="13.4756" y2="43.5901">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M30,13.61c-8.129,0-14.72,6.696-14.72,14.95,0,8.259,6.592,14.95,14.72,14.95,8.131,0,14.72-6.693,14.72-14.95,0-8.26-6.59-14.95-14.72-14.95zm0,28.59c-7.645,0-13.86-6.316-13.86-14.08,0-7.766,6.218-14.08,13.86-14.08s13.86,6.316,13.86,14.08c0,7.77-6.22,14.08-13.86,14.08z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.52" x2="17.86" y1="30.6" y2="30.6">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M30,13.607c-8.129,0-14.721,6.696-14.721,14.954c0,8.259,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,20.303,38.131,13.607,30,13.607z M30,42.205c-7.645,0-13.862-6.316-13.862-14.079 c0-7.766,6.218-14.082,13.862-14.082s13.861,6.316,13.861,14.082C43.861,35.889,37.645,42.205,30,42.205z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5205" x2="17.8594" y1="30.5957" y2="30.5957">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M16.66,28.32c-0.156-0.211-0.51-0.211-0.666-0.211-0.308,0-0.473,0.223-0.475,0.442v0.037c0,0.384,0.021,0.816,0.065,1.34,0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347,0.064,0.291,0.141,0.592,0.236,0.924,0.013,0.049,0.025,0.098,0.036,0.144,0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01,0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059c0.014-0.134,0.019-0.273,0.014-0.413-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069,0.084-0.115v-1.161l-0.127-0.127-1.05-1.07z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.03" x2="44.52" y1="26.24" y2="26.24">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M16.661,28.317c-0.156-0.211-0.51-0.211-0.666-0.211c-0.308,0-0.473,0.223-0.475,0.442 v0.015v0.022c0,0.384,0.021,0.816,0.065,1.34c0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913 l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347c0.064,0.291,0.141,0.592,0.236,0.924c0.013,0.049,0.025,0.098,0.036,0.144 c0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01l0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059 c0.014-0.134,0.019-0.273,0.014-0.413c-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069l0.084-0.115v-0.146v-0.833v-0.182 l-0.127-0.127L16.661,28.317z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.0322" x2="44.5176" y1="26.2412" y2="26.2412">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.51,25.63c-0.01-0.056-0.021-0.098-0.031-0.137-0.008-0.03-0.014-0.061-0.021-0.088-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251-0.133-0.42-0.277-0.823-0.43-1.193-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194-0.211-0.38-0.424-0.746-0.648-1.082-0.021-0.036-0.047-0.073-0.072-0.111-0.02-0.022-0.031-0.042-0.047-0.066-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12-0.268-0.326-0.551-0.644-0.844-0.943-0.041-0.039-0.084-0.081-0.125-0.124l-0.04-0.05c-0.264-0.263-0.545-0.522-0.834-0.768l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075-0.314-0.264-0.656-0.522-1.014-0.771-0.041-0.03-0.086-0.06-0.131-0.088l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51-0.309-0.041-1.057-0.136-1.811-0.21,0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861-0.033-0.009c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006c-0.492-0.051-0.991-0.077-1.488-0.077-0.438,0-0.891,0.024-1.384,0.072-0.078,0.007-0.149,0.015-0.228,0.023-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417-0.028,0.013-0.051,0.021-0.071,0.028l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093-0.791,0.49,0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067,0.471,0,0.928-0.236,1.295-0.424,0.147-0.077,0.366-0.19,0.457-0.208,0.107,0.032,0.215,0.049,0.323,0.049,0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213,0.329-0.126,0.928-0.354,1.088-0.392,0.31-0.004,0.679-0.049,0.942-0.215,0.248,0.042,0.688,0.112,1.143,0.172-0.033,0.021-0.065,0.042-0.095,0.07-0.146,0.137-0.94,0.382-1.185,0.414-0.457,0.057-0.639,0.292-0.712,0.476-0.094,0.242-0.04,0.483,0.056,0.679-0.174,0.115-0.385,0.244-0.566,0.342,0-0.004,0.002-0.009,0.002-0.014,0.064-0.371,0.114-0.638-0.064-0.852-0.09-0.111-0.224-0.172-0.364-0.172-0.21,0-0.371,0.13-0.502,0.259-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21-0.039,0.028-0.154,0.073-0.313,0.073-0.02,0-0.039-0.001-0.055-0.002-0.104-0.114-0.246-0.179-0.406-0.179-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268,0.203,0.266,0.188,0.246c-2.972,2.334-2.994,2.467-3.023,2.661-0.007,0.02-0.033,0.1-0.068,0.211-0.442,1.398-0.688,2.445-0.449,3.004,0.554,1.298,1.179,2.511,1.987,2.577,0.07,0.006,0.147,0.009,0.233,0.009,0.739,0,1.94-0.229,2.518-0.348,0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231,0.261-0.009s0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014,0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532,0.048,0.077,0.089,0.146,0.125,0.205,0.228,0.661,0.505,1.098,1.089,1.098,0.043,0,0.09-0.004,0.132-0.004,0.033-0.003,0.069-0.005,0.104-0.005,0.066,0,0.11,0.009,0.159,0.026l0.055,0.02,0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039,0.177,0.025,0.364,0.052,0.556,0.052,0.508,0,0.909-0.195,1.258-0.614,0.014,0,0.025-0.001,0.037-0.003,0.367-0.052,0.504-0.239,0.549-0.404,0.029-0.028,0.064-0.063,0.094-0.091,0.146-0.133,0.316-0.292,0.436-0.481,0.051-0.032,0.113-0.068,0.182-0.109,0.117-0.073,0.25-0.154,0.354-0.21,0.092-0.027,0.174-0.084,0.234-0.16,0.148-0.184,0.119-0.394,0.094-0.563-0.025-0.172-0.051-0.35,0.043-0.541,0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938,0.143,0.165,0.346,0.258,0.574,0.258,0.07,0,0.146-0.01,0.223-0.028,0.727-0.167,2.01-1.935,2.113-2.91,0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131-0.217,0.216-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234,0.008-0.344-0.025-0.696-0.061-1.04-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023,0.029-0.028c0.223-0.233,0.475-0.438,0.74-0.654,0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182-0.063-0.091-0.193-0.233-0.441-0.286,0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032,0.059-0.058,1.34-1.304,0.195-0.192-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535,0.391,0.053,0.729,0.148,0.834,0.234,0.043,0.088,0.121,0.283,0.209,0.488,1.471,3.528,1.678,3.708,2.063,3.715,0.014,0,0.025,0.001,0.035,0.003,0.029,0.001,0.059,0.002,0.082,0.002,0.221,0,0.344-0.114,0.398-0.181,0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94,0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319-0.05-0.04zm-11.6-4.31c-0.061,0.001-0.129,0.005-0.199,0.006-0.227,0.013-0.486,0.023-0.742,0.023-0.672,0-0.826-0.083-0.842-0.095-0.081-0.057-0.162-0.101-0.247-0.133,0.153-0.035,0.327-0.155,0.507-0.508,0.176,0.348,0.416,0.657,0.785,0.657,0.1,0,0.195-0.024,0.287-0.071,0.11-0.01,0.31,0.06,0.44,0.11zm-0.27-1.91c-0.053,0-0.094-0.002-0.125-0.004,0.033-0.091,0.076-0.145,0.107-0.175,0.043,0.067,0.104,0.125,0.166,0.175-0.06-0.01-0.11-0.01-0.16-0.01zm-2.68,0.91c0.231,0.46,0.402,0.658,0.539,0.745-0.334,0.027-0.586,0.242-0.796,0.448-0.146-0.052-0.397-0.206-0.473-0.314-0.043-0.064-0.097-0.119-0.156-0.167,0.37-0.1,0.7-0.45,0.89-0.71zm-1.27-0.33l-0.48-0.025-1.606-0.078c0.198-0.164,0.385-0.318,0.493-0.409,0.03-0.012,0.145-0.043,0.427-0.043,0.17,0,0.332,0.012,0.438,0.021l0.73,0.54z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-23.42" cy="14.96" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.95">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M44.512,25.63c-0.01-0.056-0.021-0.098-0.031-0.137 c-0.008-0.03-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251 c-0.133-0.42-0.277-0.823-0.43-1.193c-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.38-0.424-0.746-0.648-1.082c-0.021-0.036-0.047-0.073-0.072-0.111 c-0.02-0.022-0.031-0.042-0.047-0.066c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12 c-0.268-0.326-0.551-0.644-0.844-0.943c-0.041-0.039-0.084-0.081-0.125-0.124L40.4,17.936c-0.264-0.263-0.545-0.522-0.834-0.768 l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.03-0.086-0.06-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041l-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119 c-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51 c-0.309-0.041-1.057-0.136-1.811-0.21c0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861l-0.033-0.009 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006 c-0.492-0.051-0.991-0.077-1.488-0.077c-0.438,0-0.891,0.024-1.384,0.072c-0.078,0.007-0.149,0.015-0.228,0.023 c-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002l-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343 c-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417c-0.028,0.013-0.051,0.021-0.071,0.028 l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582c-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029 c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093l-0.791,0.49l0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067 c0.471,0,0.928-0.236,1.295-0.424c0.147-0.077,0.366-0.19,0.457-0.208c0.107,0.032,0.215,0.049,0.323,0.049 c0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213c0.329-0.126,0.928-0.354,1.088-0.392 c0.31-0.004,0.679-0.049,0.942-0.215c0.248,0.042,0.688,0.112,1.143,0.172c-0.033,0.021-0.065,0.042-0.095,0.07 c-0.146,0.137-0.94,0.382-1.185,0.414c-0.457,0.057-0.639,0.292-0.712,0.476c-0.094,0.242-0.04,0.483,0.056,0.679 c-0.174,0.115-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.114-0.638-0.064-0.852 c-0.09-0.111-0.224-0.172-0.364-0.172c-0.21,0-0.371,0.13-0.502,0.259c-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21c-0.039,0.028-0.154,0.073-0.313,0.073c-0.02,0-0.039-0.001-0.055-0.002 c-0.104-0.114-0.246-0.179-0.406-0.179l0,0c-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.972,2.334-2.994,2.467-3.023,2.661c-0.007,0.02-0.033,0.1-0.068,0.211c-0.442,1.398-0.688,2.445-0.449,3.004 c0.554,1.298,1.179,2.511,1.987,2.577c0.07,0.006,0.147,0.009,0.233,0.009c0.739,0,1.94-0.229,2.518-0.348 c0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231l0.261-0.009c0,0,0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014 c0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532c0.048,0.077,0.089,0.146,0.125,0.205 c0.228,0.661,0.505,1.098,1.089,1.098c0.043,0,0.09-0.004,0.132-0.004c0.033-0.003,0.069-0.005,0.104-0.005 c0.066,0,0.11,0.009,0.159,0.026l0.055,0.02l0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039c0.177,0.025,0.364,0.052,0.556,0.052 c0.508,0,0.909-0.195,1.258-0.614c0.014,0,0.025-0.001,0.037-0.003c0.367-0.052,0.504-0.239,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.091c0.146-0.133,0.316-0.292,0.436-0.481c0.051-0.032,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.21c0.092-0.027,0.174-0.084,0.234-0.16c0.148-0.184,0.119-0.394,0.094-0.563 c-0.025-0.172-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451 c-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938 c0.143,0.165,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.028c0.727-0.167,2.01-1.935,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131l-0.217,0.216l-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234 c0.008-0.344-0.025-0.696-0.061-1.04c-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.028 c0.223-0.233,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032l0.059-0.058l1.34-1.304l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.528,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.003c0.029,0.001,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.181c0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319L44.512,25.63z M32.908,21.317c-0.061,0.001-0.129,0.005-0.199,0.006 c-0.227,0.013-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.095c-0.081-0.057-0.162-0.101-0.247-0.133 c0.153-0.035,0.327-0.155,0.507-0.508c0.176,0.348,0.416,0.657,0.785,0.657c0.1,0,0.195-0.024,0.287-0.071 C32.582,21.2,32.785,21.27,32.908,21.317z M32.645,19.408c-0.053,0-0.094-0.002-0.125-0.004c0.033-0.091,0.076-0.145,0.107-0.175 c0.043,0.067,0.104,0.125,0.166,0.175C32.74,19.407,32.691,19.408,32.645,19.408z M29.963,20.323 c0.231,0.46,0.402,0.658,0.539,0.745c-0.334,0.027-0.586,0.242-0.796,0.448c-0.146-0.052-0.397-0.206-0.473-0.314 c-0.043-0.064-0.097-0.119-0.156-0.167C29.444,20.928,29.766,20.583,29.963,20.323z M28.69,19.986l-0.48-0.025l-1.606-0.078 c0.198-0.164,0.385-0.318,0.493-0.409c0.03-0.012,0.145-0.043,0.427-0.043c0.17,0,0.332,0.012,0.438,0.021L28.69,19.986z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-23.4248" cy="14.9639" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.9456">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M15.95,28.55v0.002,0.01c0,0.446,0.029,0.886,0.065,1.32,0.013,0.144,0.032,0.286,0.048,0.43,0.038,0.298,0.084,0.594,0.135,0.887,0.031,0.153,0.06,0.309,0.09,0.463,0.066,0.301,0.146,0.6,0.229,0.893,0.035,0.121,0.062,0.246,0.097,0.363,0.007,0.013,0.011,0.025,0.013,0.039,0.012-0.117,0.016-0.234,0.012-0.355-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138c-0.01,0.01-0.37-0.05-0.37-0.02z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-23.4" cy="14.97" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.96">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M15.949,28.552c0,0,0,0,0,0.002c0,0.003,0,0.006,0,0.01c0,0.446,0.029,0.886,0.065,1.32 c0.013,0.144,0.032,0.286,0.048,0.43c0.038,0.298,0.084,0.594,0.135,0.887c0.031,0.153,0.06,0.309,0.09,0.463 c0.066,0.301,0.146,0.6,0.229,0.893c0.035,0.121,0.062,0.246,0.097,0.363c0.007,0.013,0.011,0.025,0.013,0.039 c0.012-0.117,0.016-0.234,0.012-0.355c-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138 C16.309,28.578,15.949,28.521,15.949,28.552z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-23.4033" cy="14.9658" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9596">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M24.95,15.64c0.412,0.139,0.751-0.143,1.136-0.394,0.136-0.027,1.647-0.641,1.813-0.641,0.163,0,0.712-0.021,0.849-0.243,0,0,2.365,0.419,2.724,0.279,0.192-0.077,1.009-0.144,1.708-0.189-0.037-0.009-0.076-0.02-0.113-0.029-0.039-0.008-0.074-0.013-0.113-0.021-0.439-0.091-0.885-0.162-1.336-0.208l-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074-0.453,0-0.901,0.027-1.345,0.07-0.077,0.007-0.153,0.016-0.233,0.026-0.428,0.047-0.853,0.11-1.27,0.195-0.007,0.003-0.016,0.003-0.021,0.004-0.433,0.09-0.855,0.203-1.272,0.331-0.071,0.023-0.141,0.047-0.209,0.069-0.37,0.123-0.734,0.257-1.091,0.405-0.041,0.019-0.084,0.035-0.125,0.051-0.394,0.171-0.775,0.359-1.15,0.563-0.056,0.03-0.11,0.064-0.165,0.095-0.161,0.09-0.311,0.19-0.467,0.288,0.77,0.27,1.73-0.71,2.14-0.57z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="-23.4" cy="14.96" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.96">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M24.947,15.643c0.412,0.139,0.751-0.143,1.136-0.394c0.136-0.027,1.647-0.641,1.813-0.641 c0.163,0,0.712-0.021,0.849-0.243c0,0,2.365,0.419,2.724,0.279c0.192-0.077,1.009-0.144,1.708-0.189 c-0.037-0.009-0.076-0.02-0.113-0.029c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.162-1.336-0.208 c0,0-0.006,0-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.901,0.027-1.345,0.07 c-0.077,0.007-0.153,0.016-0.233,0.026c-0.428,0.047-0.853,0.11-1.27,0.195c-0.007,0.003-0.016,0.003-0.021,0.004 c-0.433,0.09-0.855,0.203-1.272,0.331c-0.071,0.023-0.141,0.047-0.209,0.069c-0.37,0.123-0.734,0.257-1.091,0.405 c-0.041,0.019-0.084,0.035-0.125,0.051c-0.394,0.171-0.775,0.359-1.15,0.563c-0.056,0.03-0.11,0.064-0.165,0.095 c-0.161,0.09-0.311,0.19-0.467,0.288C23.581,16.479,24.538,15.503,24.947,15.643z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-23.4023" cy="14.9634" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9557">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M44.09,25.7c-0.016-0.073-0.037-0.142-0.053-0.213-0.07-0.356-0.164-0.708-0.266-1.054-0.025-0.094-0.051-0.189-0.08-0.282-0.125-0.394-0.264-0.781-0.416-1.159-0.029-0.065-0.061-0.131-0.09-0.196-0.143-0.333-0.297-0.658-0.463-0.977-0.037-0.077-0.078-0.155-0.117-0.23-0.197-0.359-0.406-0.709-0.627-1.051-0.041-0.059-0.084-0.114-0.121-0.173-0.205-0.303-0.42-0.596-0.648-0.881-0.043-0.055-0.088-0.114-0.135-0.173-0.262-0.314-0.533-0.619-0.82-0.914-0.047-0.05-0.098-0.098-0.15-0.148-0.26-0.259-0.535-0.511-0.813-0.75-0.047-0.04-0.092-0.083-0.141-0.123-0.316-0.261-0.645-0.511-0.982-0.746-0.061-0.042-0.119-0.082-0.182-0.121-0.311-0.211-0.631-0.411-0.961-0.595-0.047-0.025-0.088-0.053-0.133-0.077-0.365-0.199-0.74-0.383-1.123-0.55-0.07-0.029-0.139-0.055-0.205-0.085-0.15-0.063-0.303-0.112-0.455-0.17-0.182,0.118-1.016,0.597-1.016,0.597s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537-0.219,0.03-0.674,0.148-0.129,0.832-0.081,0.084-1.642,1.186-1.642,0.686,0-0.502,0.351-1.4-0.139-0.919-0.351,0.346-0.563,0.813-0.605,0.902-0.115,0.223-0.187,0.328-0.104,0.97,0.085,0.642-1.005,0.64-1.08,0.473-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594s-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97,0.274,0.644,0.969,2.262,1.626,2.313,0.861,0.072,2.951-0.398,2.951-0.398,0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077c0.018,0.038,1.234,3.668,0.832,4.149-0.957,1.456,0.547,3.589,0.965,4.312,0.419,1.238,0.688,0.684,1.239,0.889,0.679,0.058,1.25,0.313,1.826-0.439,0.166-0.141,0.451-0.029,0.451-0.225,0-0.107,0.494-0.427,0.619-0.729,0.133-0.063,0.475-0.297,0.707-0.41,0.211-0.014-0.201-0.586,0.217-1.191,0.451-0.182,1.666-1.014,1.666-1.014,0.057-1.223-0.592-2.729,0.617-3.595,0.777-0.807,1.799-1.266,2.295-2.493,0.139-0.361,0.441-1.104-0.438-0.881-0.826,0.212-1.75,0.26-1.313-0.109-0.051-0.456-0.6-0.667-1.092-1.111-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349,0.107-0.279,1.041,1.555,1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388,0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306s-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406,0.43-0.088,0.332,0.641,0.795,0.279s0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457,0.061,0.077,1.611,4.015,1.918,4.02,0.137,0.001,0.232,0.055,0.189-0.184-0.055-0.11,0-2.585,0.08-3.115,0.209-0.448,0.242-0.001,0.734,0.853-0.02-0.03-0.02-0.05-0.02-0.07zm-13.66-9.54c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514c0.041,0.177-0.288,0.287-0.323,0.702-0.038,0.416-0.789,0.171-0.851,0.026s0.46-0.47,0.57-0.8zm2.69,5.59c-0.467,0-1.863,0.141-2.247-0.138-0.386-0.278-0.686,0.029-0.962,0.309-0.182,0.18-0.841-0.187-1.034-0.467-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796-1.859-0.09-1.058,0.315-0.992,0.028,0.557-0.269,0.693-0.167s1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821s-0.249,0.643-0.358,0.78c0.411-0.027,0.896-0.786,0.896-0.786-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822,0.01,0.007s0.467,1.116,0.661,1.116c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961,0.189-0.105,0.5-0.01,0.855,0.129,0.359,0.138,0.602-0.075,0.895,0.185-0.06,1.15-0.72,0.68-0.92,0.63zm0.74-1.92c-0.479-0.187-2.102,0.418-1.74-0.569,0.193-0.536,0.691-0.646,0.863-0.292,0.043,0.147,0.586,0.374,0.582,0.065-0.004-0.308,0.543-0.47,0.621-0.241-0.29,0.2,1.14,1.31-0.32,1.03zm3.06,0.94c-0.268-0.219,0.117-0.404-0.275-0.746-0.563-0.491-1.002-0.702-0.234-1.097,0.945-0.122,0.152,0.307,0.309,0.563,0.084,0.136,0.563,0.593,0.938,1.153,0.3,0.47-0.48,0.35-0.74,0.14z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="-23.4" cy="14.97" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.95">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M44.09,25.703c-0.016-0.073-0.037-0.142-0.053-0.213c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.065-0.061-0.131-0.09-0.196 c-0.143-0.333-0.297-0.658-0.463-0.977c-0.037-0.077-0.078-0.155-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.059-0.084-0.114-0.121-0.173c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.114-0.135-0.173 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.05-0.098-0.098-0.15-0.148c-0.26-0.259-0.535-0.511-0.813-0.75 c-0.047-0.04-0.092-0.083-0.141-0.123c-0.316-0.261-0.645-0.511-0.982-0.746c-0.061-0.042-0.119-0.082-0.182-0.121 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.199-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.085c-0.15-0.063-0.303-0.112-0.455-0.17c-0.182,0.118-1.016,0.597-1.016,0.597 s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537c-0.219,0.03-0.674,0.148-0.129,0.832 c-0.081,0.084-1.642,1.186-1.642,0.686c0-0.502,0.351-1.4-0.139-0.919c-0.351,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.187,0.328-0.104,0.97c0.085,0.642-1.005,0.64-1.08,0.473c-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594 c0,0-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97c0.274,0.644,0.969,2.262,1.626,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077 c0.018,0.038,1.234,3.668,0.832,4.149c-0.957,1.456,0.547,3.589,0.965,4.312c0.419,1.238,0.688,0.684,1.239,0.889 c0.679,0.058,1.25,0.313,1.826-0.439c0.166-0.141,0.451-0.029,0.451-0.225c0-0.107,0.494-0.427,0.619-0.729 c0.133-0.063,0.475-0.297,0.707-0.41c0.211-0.014-0.201-0.586,0.217-1.191c0.451-0.182,1.666-1.014,1.666-1.014 c0.057-1.223-0.592-2.729,0.617-3.595c0.777-0.807,1.799-1.266,2.295-2.493c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.212-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.667-1.092-1.111c-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306 c0,0-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457c0.061,0.077,1.611,4.015,1.918,4.02 c0.137,0.001,0.232,0.055,0.189-0.184c-0.055-0.11,0-2.585,0.08-3.115c0.209-0.448,0.242-0.001,0.734,0.853 C44.094,25.745,44.094,25.724,44.09,25.703z M30.432,16.162c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514 c0.041,0.177-0.288,0.287-0.323,0.702c-0.038,0.416-0.789,0.171-0.851,0.026S30.319,16.489,30.432,16.162z M33.125,21.748 c-0.467,0-1.863,0.141-2.247-0.138c-0.386-0.278-0.686,0.029-0.962,0.309c-0.182,0.18-0.841-0.187-1.034-0.467 c-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796l-1.859-0.09l-1.058,0.315l-0.992,0.028l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821c0,0-0.249,0.643-0.358,0.78 c0.411-0.027,0.896-0.786,0.896-0.786c-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822l0.01,0.007c0,0,0.467,1.116,0.661,1.116 c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961c0.189-0.105,0.5-0.01,0.855,0.129 c0.359,0.138,0.602-0.075,0.895,0.185C33.982,22.268,33.318,21.805,33.125,21.748z M33.855,19.828 c-0.479-0.187-2.102,0.418-1.74-0.569c0.193-0.536,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 c-0.004-0.308,0.543-0.47,0.621-0.241C33.889,19.003,35.322,20.112,33.855,19.828z M36.918,20.767 c-0.268-0.219,0.117-0.404-0.275-0.746c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563 c0.084,0.136,0.563,0.593,0.938,1.153C37.963,21.104,37.182,20.984,36.918,20.767z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="-23.4043" cy="14.9697" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9518">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M37.3,33.48l-0.91,0.925-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683c0.6-0.13,2.46-2.65,1.53-3.1z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5" y2="-344">
-<stop offset="0" stop-color="#F1F1F1"/>
-<stop offset="1" stop-color="#B4B6B6"/>
+<path d="M37.297,33.482l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719 c-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683C36.373,36.451,38.232,33.93,37.297,33.482z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5059" y2="-343.9819">
+<stop offset="0" style="stop-color:#F1F1F1"/>
+<stop offset="1" style="stop-color:#B4B6B6"/>
</linearGradient>
-<path d="M52.46,2.898v54.2h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924c-0.443-0.441-0.845-1.413-0.845-2.039v-41.39h44.92m0.751-0.753h-46.42v42.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h32.86v-55.7z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5" x2="269.9" y1="-332.6" y2="-338.2">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.35" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M52.459,2.898v54.203h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V2.898H52.459 M53.213,2.145H6.787v42.148c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h32.864V2.145L53.213,2.145z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5117" x2="269.9254" y1="-332.5654" y2="-338.1517">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.35" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M8.208,47.19c-0.314-0.348-0.896-0.695-1.297-2.184,0,0,0.66,3.054,9.701,0.04,0,12.81,3.768,12.81,3.768,12.81-0.831,0-1.987-0.479-2.573-1.064l-9.602-9.61z" fill="url(#SVGID_13_)"/>
-</svg>
\ No newline at end of file
+<path d="M8.208,47.189c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L8.208,47.189z" fill="url(#SVGID_13_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,125 +1,127 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.859" y2="57.86">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#F2F2F2"/>
-</linearGradient>
-<path d="M6.787,44.29c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h32.86v-55.7h-46.42v42.15z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.88" y2="55.86">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="1.8594" y2="57.8613">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M20.35,55.86c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158v-40.16h42.43v51.71h-30.86z" fill="url(#SVGID_2_)"/>
-<path d="M30,46.05c-8.882,0-16.11-7.333-16.11-16.35,0-9.014,7.226-16.35,16.11-16.35,8.881,0,16.11,7.334,16.11,16.35,0,9.02-7.23,16.35-16.11,16.35z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<ellipse cx="30" cy="29.7" fill-opacity="0.2" rx="15.11" ry="15.35" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="43.73" y2="13.26">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M6.787,44.293c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h32.864V2.145H6.787V44.293z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="3.8799" y2="55.861">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<ellipse cx="30" cy="28.56" fill="url(#SVGID_3_)" rx="15.11" ry="15.35"/>
-<radialGradient cx="-23.88" cy="20.23" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.56">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M20.349,55.855c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158 V4.145h42.426v51.71H20.349z" fill="url(#SVGID_2_)"/>
+<path d="M30,46.05c-8.882,0-16.107-7.333-16.107-16.346c0-9.014,7.226-16.348,16.107-16.348 c8.881,0,16.107,7.334,16.107,16.348C46.107,38.717,38.881,46.05,30,46.05L30,46.05z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<ellipse cx="30" cy="29.703" fill-opacity="0.2" rx="15.107" ry="15.347" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="43.7314" y2="13.2561">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
+</linearGradient>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_3_)" rx="15.107" ry="15.346"/>
+<radialGradient cx="-23.8765" cy="20.2261" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.5636">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<ellipse cx="30" cy="28.56" fill="url(#SVGID_4_)" rx="14.72" ry="14.95"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="13.48" y2="43.59">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_4_)" rx="14.721" ry="14.953"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="13.4756" y2="43.5901">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M30,13.61c-8.129,0-14.72,6.696-14.72,14.95,0,8.259,6.592,14.95,14.72,14.95,8.131,0,14.72-6.693,14.72-14.95,0-8.26-6.59-14.95-14.72-14.95zm0,28.59c-7.645,0-13.86-6.316-13.86-14.08,0-7.766,6.218-14.08,13.86-14.08s13.86,6.316,13.86,14.08c0,7.77-6.22,14.08-13.86,14.08z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.52" x2="17.86" y1="30.6" y2="30.6">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M30,13.607c-8.129,0-14.721,6.696-14.721,14.954c0,8.259,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,20.303,38.131,13.607,30,13.607z M30,42.205c-7.645,0-13.862-6.316-13.862-14.079 c0-7.766,6.218-14.082,13.862-14.082s13.861,6.316,13.861,14.082C43.861,35.889,37.645,42.205,30,42.205z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5205" x2="17.8594" y1="30.5957" y2="30.5957">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M16.66,28.32c-0.156-0.211-0.51-0.211-0.666-0.211-0.308,0-0.473,0.223-0.475,0.442v0.037c0,0.384,0.021,0.816,0.065,1.34,0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347,0.064,0.291,0.141,0.592,0.236,0.924,0.013,0.049,0.025,0.098,0.036,0.144,0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01,0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059c0.014-0.134,0.019-0.273,0.014-0.413-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069,0.084-0.115v-1.161l-0.127-0.127-1.05-1.07z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.03" x2="44.52" y1="26.24" y2="26.24">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M16.661,28.317c-0.156-0.211-0.51-0.211-0.666-0.211c-0.308,0-0.473,0.223-0.475,0.442 v0.015v0.022c0,0.384,0.021,0.816,0.065,1.34c0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913 l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347c0.064,0.291,0.141,0.592,0.236,0.924c0.013,0.049,0.025,0.098,0.036,0.144 c0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01l0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059 c0.014-0.134,0.019-0.273,0.014-0.413c-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069l0.084-0.115v-0.146v-0.833v-0.182 l-0.127-0.127L16.661,28.317z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.0322" x2="44.5176" y1="26.2412" y2="26.2412">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.51,25.63c-0.01-0.056-0.021-0.098-0.031-0.137-0.008-0.03-0.014-0.061-0.021-0.088-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251-0.133-0.42-0.277-0.823-0.43-1.193-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194-0.211-0.38-0.424-0.746-0.648-1.082-0.021-0.036-0.047-0.073-0.072-0.111-0.02-0.022-0.031-0.042-0.047-0.066-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12-0.268-0.326-0.551-0.644-0.844-0.943-0.041-0.039-0.084-0.081-0.125-0.124l-0.04-0.05c-0.264-0.263-0.545-0.522-0.834-0.768l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075-0.314-0.264-0.656-0.522-1.014-0.771-0.041-0.03-0.086-0.06-0.131-0.088l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51-0.309-0.041-1.057-0.136-1.811-0.21,0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861-0.033-0.009c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006c-0.492-0.051-0.991-0.077-1.488-0.077-0.438,0-0.891,0.024-1.384,0.072-0.078,0.007-0.149,0.015-0.228,0.023-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417-0.028,0.013-0.051,0.021-0.071,0.028l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093-0.791,0.49,0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067,0.471,0,0.928-0.236,1.295-0.424,0.147-0.077,0.366-0.19,0.457-0.208,0.107,0.032,0.215,0.049,0.323,0.049,0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213,0.329-0.126,0.928-0.354,1.088-0.392,0.31-0.004,0.679-0.049,0.942-0.215,0.248,0.042,0.688,0.112,1.143,0.172-0.033,0.021-0.065,0.042-0.095,0.07-0.146,0.137-0.94,0.382-1.185,0.414-0.457,0.057-0.639,0.292-0.712,0.476-0.094,0.242-0.04,0.483,0.056,0.679-0.174,0.115-0.385,0.244-0.566,0.342,0-0.004,0.002-0.009,0.002-0.014,0.064-0.371,0.114-0.638-0.064-0.852-0.09-0.111-0.224-0.172-0.364-0.172-0.21,0-0.371,0.13-0.502,0.259-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21-0.039,0.028-0.154,0.073-0.313,0.073-0.02,0-0.039-0.001-0.055-0.002-0.104-0.114-0.246-0.179-0.406-0.179-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268,0.203,0.266,0.188,0.246c-2.972,2.334-2.994,2.467-3.023,2.661-0.007,0.02-0.033,0.1-0.068,0.211-0.442,1.398-0.688,2.445-0.449,3.004,0.554,1.298,1.179,2.511,1.987,2.577,0.07,0.006,0.147,0.009,0.233,0.009,0.739,0,1.94-0.229,2.518-0.348,0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231,0.261-0.009s0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014,0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532,0.048,0.077,0.089,0.146,0.125,0.205,0.228,0.661,0.505,1.098,1.089,1.098,0.043,0,0.09-0.004,0.132-0.004,0.033-0.003,0.069-0.005,0.104-0.005,0.066,0,0.11,0.009,0.159,0.026l0.055,0.02,0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039,0.177,0.025,0.364,0.052,0.556,0.052,0.508,0,0.909-0.195,1.258-0.614,0.014,0,0.025-0.001,0.037-0.003,0.367-0.052,0.504-0.239,0.549-0.404,0.029-0.028,0.064-0.063,0.094-0.091,0.146-0.133,0.316-0.292,0.436-0.481,0.051-0.032,0.113-0.068,0.182-0.109,0.117-0.073,0.25-0.154,0.354-0.21,0.092-0.027,0.174-0.084,0.234-0.16,0.148-0.184,0.119-0.394,0.094-0.563-0.025-0.172-0.051-0.35,0.043-0.541,0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938,0.143,0.165,0.346,0.258,0.574,0.258,0.07,0,0.146-0.01,0.223-0.028,0.727-0.167,2.01-1.935,2.113-2.91,0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131-0.217,0.216-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234,0.008-0.344-0.025-0.696-0.061-1.04-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023,0.029-0.028c0.223-0.233,0.475-0.438,0.74-0.654,0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182-0.063-0.091-0.193-0.233-0.441-0.286,0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032,0.059-0.058,1.34-1.304,0.195-0.192-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535,0.391,0.053,0.729,0.148,0.834,0.234,0.043,0.088,0.121,0.283,0.209,0.488,1.471,3.528,1.678,3.708,2.063,3.715,0.014,0,0.025,0.001,0.035,0.003,0.029,0.001,0.059,0.002,0.082,0.002,0.221,0,0.344-0.114,0.398-0.181,0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94,0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319-0.05-0.04zm-11.6-4.31c-0.061,0.001-0.129,0.005-0.199,0.006-0.227,0.013-0.486,0.023-0.742,0.023-0.672,0-0.826-0.083-0.842-0.095-0.081-0.057-0.162-0.101-0.247-0.133,0.153-0.035,0.327-0.155,0.507-0.508,0.176,0.348,0.416,0.657,0.785,0.657,0.1,0,0.195-0.024,0.287-0.071,0.11-0.01,0.31,0.06,0.44,0.11zm-0.27-1.91c-0.053,0-0.094-0.002-0.125-0.004,0.033-0.091,0.076-0.145,0.107-0.175,0.043,0.067,0.104,0.125,0.166,0.175-0.06-0.01-0.11-0.01-0.16-0.01zm-2.68,0.91c0.231,0.46,0.402,0.658,0.539,0.745-0.334,0.027-0.586,0.242-0.796,0.448-0.146-0.052-0.397-0.206-0.473-0.314-0.043-0.064-0.097-0.119-0.156-0.167,0.37-0.1,0.7-0.45,0.89-0.71zm-1.27-0.33l-0.48-0.025-1.606-0.078c0.198-0.164,0.385-0.318,0.493-0.409,0.03-0.012,0.145-0.043,0.427-0.043,0.17,0,0.332,0.012,0.438,0.021l0.73,0.54z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-23.42" cy="14.96" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.95">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M44.512,25.63c-0.01-0.056-0.021-0.098-0.031-0.137 c-0.008-0.03-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251 c-0.133-0.42-0.277-0.823-0.43-1.193c-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.38-0.424-0.746-0.648-1.082c-0.021-0.036-0.047-0.073-0.072-0.111 c-0.02-0.022-0.031-0.042-0.047-0.066c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12 c-0.268-0.326-0.551-0.644-0.844-0.943c-0.041-0.039-0.084-0.081-0.125-0.124L40.4,17.936c-0.264-0.263-0.545-0.522-0.834-0.768 l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.03-0.086-0.06-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041l-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119 c-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51 c-0.309-0.041-1.057-0.136-1.811-0.21c0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861l-0.033-0.009 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006 c-0.492-0.051-0.991-0.077-1.488-0.077c-0.438,0-0.891,0.024-1.384,0.072c-0.078,0.007-0.149,0.015-0.228,0.023 c-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002l-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343 c-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417c-0.028,0.013-0.051,0.021-0.071,0.028 l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582c-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029 c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093l-0.791,0.49l0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067 c0.471,0,0.928-0.236,1.295-0.424c0.147-0.077,0.366-0.19,0.457-0.208c0.107,0.032,0.215,0.049,0.323,0.049 c0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213c0.329-0.126,0.928-0.354,1.088-0.392 c0.31-0.004,0.679-0.049,0.942-0.215c0.248,0.042,0.688,0.112,1.143,0.172c-0.033,0.021-0.065,0.042-0.095,0.07 c-0.146,0.137-0.94,0.382-1.185,0.414c-0.457,0.057-0.639,0.292-0.712,0.476c-0.094,0.242-0.04,0.483,0.056,0.679 c-0.174,0.115-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.114-0.638-0.064-0.852 c-0.09-0.111-0.224-0.172-0.364-0.172c-0.21,0-0.371,0.13-0.502,0.259c-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21c-0.039,0.028-0.154,0.073-0.313,0.073c-0.02,0-0.039-0.001-0.055-0.002 c-0.104-0.114-0.246-0.179-0.406-0.179l0,0c-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.972,2.334-2.994,2.467-3.023,2.661c-0.007,0.02-0.033,0.1-0.068,0.211c-0.442,1.398-0.688,2.445-0.449,3.004 c0.554,1.298,1.179,2.511,1.987,2.577c0.07,0.006,0.147,0.009,0.233,0.009c0.739,0,1.94-0.229,2.518-0.348 c0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231l0.261-0.009c0,0,0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014 c0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532c0.048,0.077,0.089,0.146,0.125,0.205 c0.228,0.661,0.505,1.098,1.089,1.098c0.043,0,0.09-0.004,0.132-0.004c0.033-0.003,0.069-0.005,0.104-0.005 c0.066,0,0.11,0.009,0.159,0.026l0.055,0.02l0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039c0.177,0.025,0.364,0.052,0.556,0.052 c0.508,0,0.909-0.195,1.258-0.614c0.014,0,0.025-0.001,0.037-0.003c0.367-0.052,0.504-0.239,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.091c0.146-0.133,0.316-0.292,0.436-0.481c0.051-0.032,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.21c0.092-0.027,0.174-0.084,0.234-0.16c0.148-0.184,0.119-0.394,0.094-0.563 c-0.025-0.172-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451 c-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938 c0.143,0.165,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.028c0.727-0.167,2.01-1.935,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131l-0.217,0.216l-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234 c0.008-0.344-0.025-0.696-0.061-1.04c-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.028 c0.223-0.233,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032l0.059-0.058l1.34-1.304l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.528,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.003c0.029,0.001,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.181c0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319L44.512,25.63z M32.908,21.317c-0.061,0.001-0.129,0.005-0.199,0.006 c-0.227,0.013-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.095c-0.081-0.057-0.162-0.101-0.247-0.133 c0.153-0.035,0.327-0.155,0.507-0.508c0.176,0.348,0.416,0.657,0.785,0.657c0.1,0,0.195-0.024,0.287-0.071 C32.582,21.2,32.785,21.27,32.908,21.317z M32.645,19.408c-0.053,0-0.094-0.002-0.125-0.004c0.033-0.091,0.076-0.145,0.107-0.175 c0.043,0.067,0.104,0.125,0.166,0.175C32.74,19.407,32.691,19.408,32.645,19.408z M29.963,20.323 c0.231,0.46,0.402,0.658,0.539,0.745c-0.334,0.027-0.586,0.242-0.796,0.448c-0.146-0.052-0.397-0.206-0.473-0.314 c-0.043-0.064-0.097-0.119-0.156-0.167C29.444,20.928,29.766,20.583,29.963,20.323z M28.69,19.986l-0.48-0.025l-1.606-0.078 c0.198-0.164,0.385-0.318,0.493-0.409c0.03-0.012,0.145-0.043,0.427-0.043c0.17,0,0.332,0.012,0.438,0.021L28.69,19.986z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-23.4248" cy="14.9639" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.9456">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M15.95,28.55v0.002,0.01c0,0.446,0.029,0.886,0.065,1.32,0.013,0.144,0.032,0.286,0.048,0.43,0.038,0.298,0.084,0.594,0.135,0.887,0.031,0.153,0.06,0.309,0.09,0.463,0.066,0.301,0.146,0.6,0.229,0.893,0.035,0.121,0.062,0.246,0.097,0.363,0.007,0.013,0.011,0.025,0.013,0.039,0.012-0.117,0.016-0.234,0.012-0.355-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138c-0.01,0.01-0.37-0.05-0.37-0.02z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-23.4" cy="14.97" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.96">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M15.949,28.552c0,0,0,0,0,0.002c0,0.003,0,0.006,0,0.01c0,0.446,0.029,0.886,0.065,1.32 c0.013,0.144,0.032,0.286,0.048,0.43c0.038,0.298,0.084,0.594,0.135,0.887c0.031,0.153,0.06,0.309,0.09,0.463 c0.066,0.301,0.146,0.6,0.229,0.893c0.035,0.121,0.062,0.246,0.097,0.363c0.007,0.013,0.011,0.025,0.013,0.039 c0.012-0.117,0.016-0.234,0.012-0.355c-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138 C16.309,28.578,15.949,28.521,15.949,28.552z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-23.4033" cy="14.9658" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9596">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M24.95,15.64c0.412,0.139,0.751-0.143,1.136-0.394,0.136-0.027,1.647-0.641,1.813-0.641,0.163,0,0.712-0.021,0.849-0.243,0,0,2.365,0.419,2.724,0.279,0.192-0.077,1.009-0.144,1.708-0.189-0.037-0.009-0.076-0.02-0.113-0.029-0.039-0.008-0.074-0.013-0.113-0.021-0.439-0.091-0.885-0.162-1.336-0.208l-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074-0.453,0-0.901,0.027-1.345,0.07-0.077,0.007-0.153,0.016-0.233,0.026-0.428,0.047-0.853,0.11-1.27,0.195-0.007,0.003-0.016,0.003-0.021,0.004-0.433,0.09-0.855,0.203-1.272,0.331-0.071,0.023-0.141,0.047-0.209,0.069-0.37,0.123-0.734,0.257-1.091,0.405-0.041,0.019-0.084,0.035-0.125,0.051-0.394,0.171-0.775,0.359-1.15,0.563-0.056,0.03-0.11,0.064-0.165,0.095-0.161,0.09-0.311,0.19-0.467,0.288,0.77,0.27,1.73-0.71,2.14-0.57z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="-23.4" cy="14.96" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.96">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M24.947,15.643c0.412,0.139,0.751-0.143,1.136-0.394c0.136-0.027,1.647-0.641,1.813-0.641 c0.163,0,0.712-0.021,0.849-0.243c0,0,2.365,0.419,2.724,0.279c0.192-0.077,1.009-0.144,1.708-0.189 c-0.037-0.009-0.076-0.02-0.113-0.029c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.162-1.336-0.208 c0,0-0.006,0-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.901,0.027-1.345,0.07 c-0.077,0.007-0.153,0.016-0.233,0.026c-0.428,0.047-0.853,0.11-1.27,0.195c-0.007,0.003-0.016,0.003-0.021,0.004 c-0.433,0.09-0.855,0.203-1.272,0.331c-0.071,0.023-0.141,0.047-0.209,0.069c-0.37,0.123-0.734,0.257-1.091,0.405 c-0.041,0.019-0.084,0.035-0.125,0.051c-0.394,0.171-0.775,0.359-1.15,0.563c-0.056,0.03-0.11,0.064-0.165,0.095 c-0.161,0.09-0.311,0.19-0.467,0.288C23.581,16.479,24.538,15.503,24.947,15.643z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-23.4023" cy="14.9634" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9557">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M44.09,25.7c-0.016-0.073-0.037-0.142-0.053-0.213-0.07-0.356-0.164-0.708-0.266-1.054-0.025-0.094-0.051-0.189-0.08-0.282-0.125-0.394-0.264-0.781-0.416-1.159-0.029-0.065-0.061-0.131-0.09-0.196-0.143-0.333-0.297-0.658-0.463-0.977-0.037-0.077-0.078-0.155-0.117-0.23-0.197-0.359-0.406-0.709-0.627-1.051-0.041-0.059-0.084-0.114-0.121-0.173-0.205-0.303-0.42-0.596-0.648-0.881-0.043-0.055-0.088-0.114-0.135-0.173-0.262-0.314-0.533-0.619-0.82-0.914-0.047-0.05-0.098-0.098-0.15-0.148-0.26-0.259-0.535-0.511-0.813-0.75-0.047-0.04-0.092-0.083-0.141-0.123-0.316-0.261-0.645-0.511-0.982-0.746-0.061-0.042-0.119-0.082-0.182-0.121-0.311-0.211-0.631-0.411-0.961-0.595-0.047-0.025-0.088-0.053-0.133-0.077-0.365-0.199-0.74-0.383-1.123-0.55-0.07-0.029-0.139-0.055-0.205-0.085-0.15-0.063-0.303-0.112-0.455-0.17-0.182,0.118-1.016,0.597-1.016,0.597s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537-0.219,0.03-0.674,0.148-0.129,0.832-0.081,0.084-1.642,1.186-1.642,0.686,0-0.502,0.351-1.4-0.139-0.919-0.351,0.346-0.563,0.813-0.605,0.902-0.115,0.223-0.187,0.328-0.104,0.97,0.085,0.642-1.005,0.64-1.08,0.473-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594s-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97,0.274,0.644,0.969,2.262,1.626,2.313,0.861,0.072,2.951-0.398,2.951-0.398,0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077c0.018,0.038,1.234,3.668,0.832,4.149-0.957,1.456,0.547,3.589,0.965,4.312,0.419,1.238,0.688,0.684,1.239,0.889,0.679,0.058,1.25,0.313,1.826-0.439,0.166-0.141,0.451-0.029,0.451-0.225,0-0.107,0.494-0.427,0.619-0.729,0.133-0.063,0.475-0.297,0.707-0.41,0.211-0.014-0.201-0.586,0.217-1.191,0.451-0.182,1.666-1.014,1.666-1.014,0.057-1.223-0.592-2.729,0.617-3.595,0.777-0.807,1.799-1.266,2.295-2.493,0.139-0.361,0.441-1.104-0.438-0.881-0.826,0.212-1.75,0.26-1.313-0.109-0.051-0.456-0.6-0.667-1.092-1.111-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349,0.107-0.279,1.041,1.555,1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388,0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306s-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406,0.43-0.088,0.332,0.641,0.795,0.279s0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457,0.061,0.077,1.611,4.015,1.918,4.02,0.137,0.001,0.232,0.055,0.189-0.184-0.055-0.11,0-2.585,0.08-3.115,0.209-0.448,0.242-0.001,0.734,0.853-0.02-0.03-0.02-0.05-0.02-0.07zm-13.66-9.54c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514c0.041,0.177-0.288,0.287-0.323,0.702-0.038,0.416-0.789,0.171-0.851,0.026s0.46-0.47,0.57-0.8zm2.69,5.59c-0.467,0-1.863,0.141-2.247-0.138-0.386-0.278-0.686,0.029-0.962,0.309-0.182,0.18-0.841-0.187-1.034-0.467-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796-1.859-0.09-1.058,0.315-0.992,0.028,0.557-0.269,0.693-0.167s1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821s-0.249,0.643-0.358,0.78c0.411-0.027,0.896-0.786,0.896-0.786-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822,0.01,0.007s0.467,1.116,0.661,1.116c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961,0.189-0.105,0.5-0.01,0.855,0.129,0.359,0.138,0.602-0.075,0.895,0.185-0.06,1.15-0.72,0.68-0.92,0.63zm0.74-1.92c-0.479-0.187-2.102,0.418-1.74-0.569,0.193-0.536,0.691-0.646,0.863-0.292,0.043,0.147,0.586,0.374,0.582,0.065-0.004-0.308,0.543-0.47,0.621-0.241-0.29,0.2,1.14,1.31-0.32,1.03zm3.06,0.94c-0.268-0.219,0.117-0.404-0.275-0.746-0.563-0.491-1.002-0.702-0.234-1.097,0.945-0.122,0.152,0.307,0.309,0.563,0.084,0.136,0.563,0.593,0.938,1.153,0.3,0.47-0.48,0.35-0.74,0.14z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="-23.4" cy="14.97" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.95">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M44.09,25.703c-0.016-0.073-0.037-0.142-0.053-0.213c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.065-0.061-0.131-0.09-0.196 c-0.143-0.333-0.297-0.658-0.463-0.977c-0.037-0.077-0.078-0.155-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.059-0.084-0.114-0.121-0.173c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.114-0.135-0.173 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.05-0.098-0.098-0.15-0.148c-0.26-0.259-0.535-0.511-0.813-0.75 c-0.047-0.04-0.092-0.083-0.141-0.123c-0.316-0.261-0.645-0.511-0.982-0.746c-0.061-0.042-0.119-0.082-0.182-0.121 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.199-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.085c-0.15-0.063-0.303-0.112-0.455-0.17c-0.182,0.118-1.016,0.597-1.016,0.597 s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537c-0.219,0.03-0.674,0.148-0.129,0.832 c-0.081,0.084-1.642,1.186-1.642,0.686c0-0.502,0.351-1.4-0.139-0.919c-0.351,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.187,0.328-0.104,0.97c0.085,0.642-1.005,0.64-1.08,0.473c-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594 c0,0-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97c0.274,0.644,0.969,2.262,1.626,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077 c0.018,0.038,1.234,3.668,0.832,4.149c-0.957,1.456,0.547,3.589,0.965,4.312c0.419,1.238,0.688,0.684,1.239,0.889 c0.679,0.058,1.25,0.313,1.826-0.439c0.166-0.141,0.451-0.029,0.451-0.225c0-0.107,0.494-0.427,0.619-0.729 c0.133-0.063,0.475-0.297,0.707-0.41c0.211-0.014-0.201-0.586,0.217-1.191c0.451-0.182,1.666-1.014,1.666-1.014 c0.057-1.223-0.592-2.729,0.617-3.595c0.777-0.807,1.799-1.266,2.295-2.493c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.212-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.667-1.092-1.111c-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306 c0,0-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457c0.061,0.077,1.611,4.015,1.918,4.02 c0.137,0.001,0.232,0.055,0.189-0.184c-0.055-0.11,0-2.585,0.08-3.115c0.209-0.448,0.242-0.001,0.734,0.853 C44.094,25.745,44.094,25.724,44.09,25.703z M30.432,16.162c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514 c0.041,0.177-0.288,0.287-0.323,0.702c-0.038,0.416-0.789,0.171-0.851,0.026S30.319,16.489,30.432,16.162z M33.125,21.748 c-0.467,0-1.863,0.141-2.247-0.138c-0.386-0.278-0.686,0.029-0.962,0.309c-0.182,0.18-0.841-0.187-1.034-0.467 c-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796l-1.859-0.09l-1.058,0.315l-0.992,0.028l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821c0,0-0.249,0.643-0.358,0.78 c0.411-0.027,0.896-0.786,0.896-0.786c-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822l0.01,0.007c0,0,0.467,1.116,0.661,1.116 c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961c0.189-0.105,0.5-0.01,0.855,0.129 c0.359,0.138,0.602-0.075,0.895,0.185C33.982,22.268,33.318,21.805,33.125,21.748z M33.855,19.828 c-0.479-0.187-2.102,0.418-1.74-0.569c0.193-0.536,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 c-0.004-0.308,0.543-0.47,0.621-0.241C33.889,19.003,35.322,20.112,33.855,19.828z M36.918,20.767 c-0.268-0.219,0.117-0.404-0.275-0.746c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563 c0.084,0.136,0.563,0.593,0.938,1.153C37.963,21.104,37.182,20.984,36.918,20.767z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="-23.4043" cy="14.9697" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9518">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M37.3,33.48l-0.91,0.925-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683c0.6-0.13,2.46-2.65,1.53-3.1z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5" y2="-344">
-<stop offset="0" stop-color="#F1F1F1"/>
-<stop offset="1" stop-color="#B4B6B6"/>
+<path d="M37.297,33.482l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719 c-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683C36.373,36.451,38.232,33.93,37.297,33.482z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5059" y2="-343.9819">
+<stop offset="0" style="stop-color:#F1F1F1"/>
+<stop offset="1" style="stop-color:#B4B6B6"/>
</linearGradient>
-<path d="M52.46,2.898v54.2h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924c-0.443-0.441-0.845-1.413-0.845-2.039v-41.39h44.92m0.751-0.753h-46.42v42.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h32.86v-55.7z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5" x2="269.9" y1="-332.6" y2="-338.2">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.35" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M52.459,2.898v54.203h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V2.898H52.459 M53.213,2.145H6.787v42.148c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h32.864V2.145L53.213,2.145z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5117" x2="269.9254" y1="-332.5654" y2="-338.1517">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.35" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M8.208,47.19c-0.314-0.348-0.896-0.695-1.297-2.184,0,0,0.66,3.054,9.701,0.04,0,12.81,3.768,12.81,3.768,12.81-0.831,0-1.987-0.479-2.573-1.064l-9.602-9.61z" fill="url(#SVGID_13_)"/>
+<path d="M8.208,47.189c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L8.208,47.189z" fill="url(#SVGID_13_)"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.41,14.41,30.41,0,0.414,0,0.414,14.41,0,14.82,0.414,15.24,0.414,30,30.41,30,30.41,15.24,30.83,14.82"/>
-<path d="M2.749,29.82v-12.25l-2.749-2.75,0.706-0.707c0.507-0.5,12.43-12.46,13.15-13.15,0.387-0.368,0.914-0.786,1.589-0.786,0.687,0,1.172,0.42,1.518,0.785,0.457,0.484,8.802,8.816,13.15,13.15l0.708,0.706-2.747,2.749v12.25h-25.33z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.42" x2="15.42" y1="28.67" y2="12.57">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="none" points="30.414,14.408 30.414,0 0.414,0 0.414,14.41 0,14.824 0.414,15.237 0.414,30 30.414,30 30.414,15.236 30.828,14.821 "/>
+<path d="M2.749,29.823V17.57L0,14.824l0.706-0.707C1.213,13.608,13.143,1.649,13.861,0.962 c0.387-0.368,0.914-0.786,1.589-0.786c0.687,0,1.172,0.42,1.518,0.785c0.457,0.484,8.802,8.816,13.151,13.154l0.708,0.706 l-2.747,2.749v12.253H2.749z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15.415" x2="15.415" y1="28.6694" y2="12.5688">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.08,28.82,3.749,28.82,3.749,14.47,15.41,5.489,27.08,14.47"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.42" x2="15.42" y1="17.31" y2="28.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.6606" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="url(#SVGID_1__)" points="27.081,28.823 3.749,28.823 3.749,14.473 15.414,5.489 27.081,14.473 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.415" x2="15.415" y1="17.313" y2="28.6013">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.6606" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M15.41,6.668l10.74,8.264v12.96h-21.47v-12.96l10.73-8.264m0-1.179l-11.66,8.981v14.35h23.33v-14.35l-11.67-8.984z" fill="url(#SVGID_2__)"/>
-<polygon fill-opacity="0.2" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,8.99" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="27.08,18.03,27.08,14.47,15.41,5.489,3.749,14.47,3.749,18.32,15.41,6.655"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.42" x2="15.42" y1="17.99" y2="29.15">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M15.414,6.668l10.736,8.264V27.89H4.682V14.932L15.414,6.668 M15.414,5.489L3.749,14.473v14.351 h23.333V14.473L15.414,5.489L15.414,5.489z" fill="url(#SVGID_2__)"/>
+<polygon fill-opacity="0.2" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,8.99 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="27.081,18.033 27.081,14.473 15.414,5.489 3.749,14.473 3.749,18.322 15.414,6.655 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15.416" x2="15.416" y1="17.9946" y2="29.1519">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="10.5" width="7.001" x="11.92" y="18.32"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.42" x2="15.42" y1="28.75" y2="18.36">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_3__)" height="10.501" width="7.001" x="11.916" y="18.322"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15.416" x2="15.416" y1="28.7466" y2="18.3602">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M17.98,19.26v8.633h-5.133v-8.633h5.13m0.94-0.94h-7.001v10.5h7.001v-10.5-0.002z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.41" x2="15.41" y1="0.0352" y2="17.73">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M17.98,19.257v8.633h-5.133v-8.633H17.98 M18.917,18.322h-7.001v10.501h7.001V18.322L18.917,18.322z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15.4136" x2="15.4136" y1="0.0352" y2="17.7271">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M15.41,5.489l11.67,11.67,2.333-2.333s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333,11.66-11.66z" fill="url(#SVGID_5__)"/>
-<radialGradient cx="15.3" cy="1.756" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.67">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M15.414,5.489l11.667,11.667l2.333-2.333c0,0-12.586-12.554-13.171-13.175 c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14l2.335,2.333L15.414,5.489z" fill="url(#SVGID_5__)"/>
+<radialGradient cx="15.2969" cy="1.7559" gradientUnits="userSpaceOnUse" id="SVGID_6__" r="18.6679">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M14.55,2.616c0.724-0.688,1.102-0.653,1.689-0.034,0.516,0.549,10.43,10.44,12.7,12.71l0.467-0.468s-12.59-12.55-13.17-13.18c-0.587-0.62-0.965-0.652-1.689,0.035-0.719,0.688-13.14,13.14-13.14,13.14l0.467,0.465c2.257-2.25,12.04-12.06,12.67-12.66z" fill="url(#SVGID_6__)"/>
-<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.92" y="18.32"/>
+<path d="M14.553,2.616c0.724-0.688,1.102-0.653,1.689-0.034c0.516,0.549,10.433,10.442,12.705,12.709 l0.467-0.468c0,0-12.586-12.554-13.171-13.175c-0.587-0.62-0.965-0.652-1.689,0.035c-0.719,0.688-13.14,13.14-13.14,13.14 l0.467,0.465C4.134,13.029,13.917,3.225,14.553,2.616z" fill="url(#SVGID_6__)"/>
+<rect fill-opacity="0.2" height="1.168" stroke-opacity="0.2" width="7.001" x="11.916" y="18.322"/>
<rect fill="none" height="30" width="30" x="0.414"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_url_address_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,86 +1,88 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="1.859" y2="57.86">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#F2F2F2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="1.8594" y2="57.8613">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#F2F2F2"/>
</linearGradient>
-<path d="M6.787,44.29c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h32.86v-55.7h-46.42v42.15z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="3.88" y2="55.86">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M6.787,44.293c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064 h32.864V2.145H6.787V44.293z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="3.8799" y2="55.861">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
</linearGradient>
-<path d="M20.35,55.86c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158v-40.16h42.43v51.71h-30.86z" fill="url(#SVGID_2_)"/>
-<path d="M30,46.05c-8.882,0-16.11-7.333-16.11-16.35,0-9.014,7.226-16.35,16.11-16.35,8.881,0,16.11,7.334,16.11,16.35,0,9.02-7.23,16.35-16.11,16.35z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<ellipse cx="30" cy="29.7" fill-opacity="0.2" rx="15.11" ry="15.35" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30" x2="30" y1="43.73" y2="13.26">
-<stop offset="0" stop-color="#2A3662"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M20.349,55.855c-0.298,0-0.949-0.27-1.16-0.48l-9.924-9.924c-0.21-0.21-0.479-0.859-0.479-1.158 V4.145h42.426v51.71H20.349z" fill="url(#SVGID_2_)"/>
+<path d="M30,46.05c-8.882,0-16.107-7.333-16.107-16.346c0-9.014,7.226-16.348,16.107-16.348 c8.881,0,16.107,7.334,16.107,16.348C46.107,38.717,38.881,46.05,30,46.05L30,46.05z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<ellipse cx="30" cy="29.703" fill-opacity="0.2" rx="15.107" ry="15.347" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="30.0005" x2="30.0005" y1="43.7314" y2="13.2561">
+<stop offset="0" style="stop-color:#2A3662"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<ellipse cx="30" cy="28.56" fill="url(#SVGID_3_)" rx="15.11" ry="15.35"/>
-<radialGradient cx="-23.88" cy="20.23" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.56">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_3_)" rx="15.107" ry="15.346"/>
+<radialGradient cx="-23.8765" cy="20.2261" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="18.5636">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<ellipse cx="30" cy="28.56" fill="url(#SVGID_4_)" rx="14.72" ry="14.95"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="30" x2="30" y1="13.48" y2="43.59">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#A6CDC2"/>
+<ellipse cx="30" cy="28.561" fill="url(#SVGID_4_)" rx="14.721" ry="14.953"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="29.9995" x2="29.9995" y1="13.4756" y2="43.5901">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#A6CDC2"/>
</linearGradient>
-<path d="M30,13.61c-8.129,0-14.72,6.696-14.72,14.95,0,8.259,6.592,14.95,14.72,14.95,8.131,0,14.72-6.693,14.72-14.95,0-8.26-6.59-14.95-14.72-14.95zm0,28.59c-7.645,0-13.86-6.316-13.86-14.08,0-7.766,6.218-14.08,13.86-14.08s13.86,6.316,13.86,14.08c0,7.77-6.22,14.08-13.86,14.08z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.52" x2="17.86" y1="30.6" y2="30.6">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M30,13.607c-8.129,0-14.721,6.696-14.721,14.954c0,8.259,6.592,14.953,14.721,14.953 c8.131,0,14.721-6.693,14.721-14.953C44.721,20.303,38.131,13.607,30,13.607z M30,42.205c-7.645,0-13.862-6.316-13.862-14.079 c0-7.766,6.218-14.082,13.862-14.082s13.861,6.316,13.861,14.082C43.861,35.889,37.645,42.205,30,42.205z" fill="url(#SVGID_5_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5205" x2="17.8594" y1="30.5957" y2="30.5957">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M16.66,28.32c-0.156-0.211-0.51-0.211-0.666-0.211-0.308,0-0.473,0.223-0.475,0.442v0.037c0,0.384,0.021,0.816,0.065,1.34,0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347,0.064,0.291,0.141,0.592,0.236,0.924,0.013,0.049,0.025,0.098,0.036,0.144,0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01,0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059c0.014-0.134,0.019-0.273,0.014-0.413-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069,0.084-0.115v-1.161l-0.127-0.127-1.05-1.07z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.03" x2="44.52" y1="26.24" y2="26.24">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M16.661,28.317c-0.156-0.211-0.51-0.211-0.666-0.211c-0.308,0-0.473,0.223-0.475,0.442 v0.015v0.022c0,0.384,0.021,0.816,0.065,1.34c0.01,0.098,0.02,0.197,0.033,0.296l0.018,0.144c0.04,0.313,0.086,0.618,0.139,0.913 l0.024,0.13c0.022,0.118,0.044,0.231,0.067,0.347c0.064,0.291,0.141,0.592,0.236,0.924c0.013,0.049,0.025,0.098,0.036,0.144 c0.021,0.078,0.039,0.155,0.063,0.231l0.005,0.01l0.007,0.023c0-0.006-0.005-0.018-0.005-0.025l0.844-0.059 c0.014-0.134,0.019-0.273,0.014-0.413c-0.007-0.216-0.016-0.483-0.077-0.71l0.785-1.069l0.084-0.115v-0.146v-0.833v-0.182 l-0.127-0.127L16.661,28.317z" fill="url(#SVGID_6_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="20.0322" x2="44.5176" y1="26.2412" y2="26.2412">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M44.51,25.63c-0.01-0.056-0.021-0.098-0.031-0.137-0.008-0.03-0.014-0.061-0.021-0.088-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251-0.133-0.42-0.277-0.823-0.43-1.193-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194-0.211-0.38-0.424-0.746-0.648-1.082-0.021-0.036-0.047-0.073-0.072-0.111-0.02-0.022-0.031-0.042-0.047-0.066-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12-0.268-0.326-0.551-0.644-0.844-0.943-0.041-0.039-0.084-0.081-0.125-0.124l-0.04-0.05c-0.264-0.263-0.545-0.522-0.834-0.768l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075-0.314-0.264-0.656-0.522-1.014-0.771-0.041-0.03-0.086-0.06-0.131-0.088l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51-0.309-0.041-1.057-0.136-1.811-0.21,0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861-0.033-0.009c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006c-0.492-0.051-0.991-0.077-1.488-0.077-0.438,0-0.891,0.024-1.384,0.072-0.078,0.007-0.149,0.015-0.228,0.023-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417-0.028,0.013-0.051,0.021-0.071,0.028l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093-0.791,0.49,0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067,0.471,0,0.928-0.236,1.295-0.424,0.147-0.077,0.366-0.19,0.457-0.208,0.107,0.032,0.215,0.049,0.323,0.049,0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213,0.329-0.126,0.928-0.354,1.088-0.392,0.31-0.004,0.679-0.049,0.942-0.215,0.248,0.042,0.688,0.112,1.143,0.172-0.033,0.021-0.065,0.042-0.095,0.07-0.146,0.137-0.94,0.382-1.185,0.414-0.457,0.057-0.639,0.292-0.712,0.476-0.094,0.242-0.04,0.483,0.056,0.679-0.174,0.115-0.385,0.244-0.566,0.342,0-0.004,0.002-0.009,0.002-0.014,0.064-0.371,0.114-0.638-0.064-0.852-0.09-0.111-0.224-0.172-0.364-0.172-0.21,0-0.371,0.13-0.502,0.259-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21-0.039,0.028-0.154,0.073-0.313,0.073-0.02,0-0.039-0.001-0.055-0.002-0.104-0.114-0.246-0.179-0.406-0.179-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268,0.203,0.266,0.188,0.246c-2.972,2.334-2.994,2.467-3.023,2.661-0.007,0.02-0.033,0.1-0.068,0.211-0.442,1.398-0.688,2.445-0.449,3.004,0.554,1.298,1.179,2.511,1.987,2.577,0.07,0.006,0.147,0.009,0.233,0.009,0.739,0,1.94-0.229,2.518-0.348,0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231,0.261-0.009s0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014,0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532,0.048,0.077,0.089,0.146,0.125,0.205,0.228,0.661,0.505,1.098,1.089,1.098,0.043,0,0.09-0.004,0.132-0.004,0.033-0.003,0.069-0.005,0.104-0.005,0.066,0,0.11,0.009,0.159,0.026l0.055,0.02,0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039,0.177,0.025,0.364,0.052,0.556,0.052,0.508,0,0.909-0.195,1.258-0.614,0.014,0,0.025-0.001,0.037-0.003,0.367-0.052,0.504-0.239,0.549-0.404,0.029-0.028,0.064-0.063,0.094-0.091,0.146-0.133,0.316-0.292,0.436-0.481,0.051-0.032,0.113-0.068,0.182-0.109,0.117-0.073,0.25-0.154,0.354-0.21,0.092-0.027,0.174-0.084,0.234-0.16,0.148-0.184,0.119-0.394,0.094-0.563-0.025-0.172-0.051-0.35,0.043-0.541,0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938,0.143,0.165,0.346,0.258,0.574,0.258,0.07,0,0.146-0.01,0.223-0.028,0.727-0.167,2.01-1.935,2.113-2.91,0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131-0.217,0.216-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234,0.008-0.344-0.025-0.696-0.061-1.04-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023,0.029-0.028c0.223-0.233,0.475-0.438,0.74-0.654,0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182-0.063-0.091-0.193-0.233-0.441-0.286,0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032,0.059-0.058,1.34-1.304,0.195-0.192-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535,0.391,0.053,0.729,0.148,0.834,0.234,0.043,0.088,0.121,0.283,0.209,0.488,1.471,3.528,1.678,3.708,2.063,3.715,0.014,0,0.025,0.001,0.035,0.003,0.029,0.001,0.059,0.002,0.082,0.002,0.221,0,0.344-0.114,0.398-0.181,0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94,0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319-0.05-0.04zm-11.6-4.31c-0.061,0.001-0.129,0.005-0.199,0.006-0.227,0.013-0.486,0.023-0.742,0.023-0.672,0-0.826-0.083-0.842-0.095-0.081-0.057-0.162-0.101-0.247-0.133,0.153-0.035,0.327-0.155,0.507-0.508,0.176,0.348,0.416,0.657,0.785,0.657,0.1,0,0.195-0.024,0.287-0.071,0.11-0.01,0.31,0.06,0.44,0.11zm-0.27-1.91c-0.053,0-0.094-0.002-0.125-0.004,0.033-0.091,0.076-0.145,0.107-0.175,0.043,0.067,0.104,0.125,0.166,0.175-0.06-0.01-0.11-0.01-0.16-0.01zm-2.68,0.91c0.231,0.46,0.402,0.658,0.539,0.745-0.334,0.027-0.586,0.242-0.796,0.448-0.146-0.052-0.397-0.206-0.473-0.314-0.043-0.064-0.097-0.119-0.156-0.167,0.37-0.1,0.7-0.45,0.89-0.71zm-1.27-0.33l-0.48-0.025-1.606-0.078c0.198-0.164,0.385-0.318,0.493-0.409,0.03-0.012,0.145-0.043,0.427-0.043,0.17,0,0.332,0.012,0.438,0.021l0.73,0.54z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="-23.42" cy="14.96" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.95">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M44.512,25.63c-0.01-0.056-0.021-0.098-0.031-0.137 c-0.008-0.03-0.014-0.061-0.021-0.088c-0.072-0.355-0.166-0.72-0.273-1.094l-0.014-0.04c-0.021-0.083-0.047-0.168-0.072-0.251 c-0.133-0.42-0.277-0.823-0.43-1.193c-0.02-0.045-0.041-0.089-0.061-0.134l-0.029-0.071c-0.148-0.34-0.309-0.679-0.477-1.004 l-0.023-0.042c-0.033-0.065-0.066-0.13-0.1-0.194c-0.211-0.38-0.424-0.746-0.648-1.082c-0.021-0.036-0.047-0.073-0.072-0.111 c-0.02-0.022-0.031-0.042-0.047-0.066c-0.213-0.313-0.438-0.618-0.668-0.907l-0.047-0.059c-0.031-0.038-0.061-0.08-0.094-0.12 c-0.268-0.326-0.551-0.644-0.844-0.943c-0.041-0.039-0.084-0.081-0.125-0.124L40.4,17.936c-0.264-0.263-0.545-0.522-0.834-0.768 l-0.057-0.05c-0.027-0.027-0.059-0.051-0.088-0.075c-0.314-0.264-0.656-0.522-1.014-0.771c-0.041-0.03-0.086-0.06-0.131-0.088 l-0.055-0.037c-0.32-0.215-0.656-0.422-0.99-0.611l-0.051-0.029c-0.029-0.017-0.059-0.031-0.084-0.049 c-0.375-0.202-0.764-0.394-1.158-0.567l-0.1-0.041l-0.109-0.045c-0.105-0.044-0.209-0.081-0.313-0.119 c-0.055-0.019-0.107-0.038-0.158-0.057l-0.201-0.076l-0.182,0.116c-0.117,0.076-0.59,0.351-0.869,0.51 c-0.309-0.041-1.057-0.136-1.811-0.21c0.23-0.023,0.555-0.05,1.006-0.081l0.064-0.861l-0.033-0.009 c-0.027-0.006-0.055-0.013-0.082-0.02l-0.064-0.012l-0.053-0.011c-0.461-0.094-0.896-0.163-1.326-0.208h-0.004l-0.061-0.006 c-0.492-0.051-0.991-0.077-1.488-0.077c-0.438,0-0.891,0.024-1.384,0.072c-0.078,0.007-0.149,0.015-0.228,0.023 c-0.488,0.055-0.915,0.122-1.319,0.205l-0.016,0.002l-0.009,0.001c-0.426,0.091-0.853,0.202-1.311,0.343 c-0.039,0.014-0.08,0.027-0.12,0.04l-0.092,0.03c-0.387,0.125-0.766,0.266-1.125,0.417c-0.028,0.013-0.051,0.021-0.071,0.028 l-0.055,0.023c-0.397,0.172-0.796,0.366-1.19,0.582c-0.042,0.022-0.083,0.047-0.125,0.071l-0.052,0.029 c-0.109,0.064-0.221,0.134-0.33,0.202l-0.143,0.093l-0.791,0.49l0.875,0.297c0.132,0.045,0.272,0.067,0.42,0.067 c0.471,0,0.928-0.236,1.295-0.424c0.147-0.077,0.366-0.19,0.457-0.208c0.107,0.032,0.215,0.049,0.323,0.049 c0.399,0,0.729-0.221,1.019-0.415l0.077-0.05c0.097-0.03,0.258-0.091,0.578-0.213c0.329-0.126,0.928-0.354,1.088-0.392 c0.31-0.004,0.679-0.049,0.942-0.215c0.248,0.042,0.688,0.112,1.143,0.172c-0.033,0.021-0.065,0.042-0.095,0.07 c-0.146,0.137-0.94,0.382-1.185,0.414c-0.457,0.057-0.639,0.292-0.712,0.476c-0.094,0.242-0.04,0.483,0.056,0.679 c-0.174,0.115-0.385,0.244-0.566,0.342c0-0.004,0.002-0.009,0.002-0.014c0.064-0.371,0.114-0.638-0.064-0.852 c-0.09-0.111-0.224-0.172-0.364-0.172c-0.21,0-0.371,0.13-0.502,0.259c-0.366,0.359-0.588,0.808-0.672,0.977l-0.016,0.031 l-0.014,0.025c-0.157,0.31-0.223,0.527-0.136,1.21c-0.039,0.028-0.154,0.073-0.313,0.073c-0.02,0-0.039-0.001-0.055-0.002 c-0.104-0.114-0.246-0.179-0.406-0.179l0,0c-0.37,0-0.873,0.423-1.497,1.257l-0.199,0.268l0.203,0.266l0.188,0.246 c-2.972,2.334-2.994,2.467-3.023,2.661c-0.007,0.02-0.033,0.1-0.068,0.211c-0.442,1.398-0.688,2.445-0.449,3.004 c0.554,1.298,1.179,2.511,1.987,2.577c0.07,0.006,0.147,0.009,0.233,0.009c0.739,0,1.94-0.229,2.518-0.348 c0.105,0.204,0.237,0.442,0.307,0.57l0.129,0.231l0.261-0.009c0,0,0.141-0.005,0.315-0.005c0.203,0,0.338,0.007,0.425,0.014 c0.314,0.937,0.917,3.093,0.805,3.539l-0.003,0.002c-1.014,1.548,0.216,3.563,0.808,4.532c0.048,0.077,0.089,0.146,0.125,0.205 c0.228,0.661,0.505,1.098,1.089,1.098c0.043,0,0.09-0.004,0.132-0.004c0.033-0.003,0.069-0.005,0.104-0.005 c0.066,0,0.11,0.009,0.159,0.026l0.055,0.02l0.056,0.004c0.109,0.01,0.214,0.023,0.32,0.039c0.177,0.025,0.364,0.052,0.556,0.052 c0.508,0,0.909-0.195,1.258-0.614c0.014,0,0.025-0.001,0.037-0.003c0.367-0.052,0.504-0.239,0.549-0.404 c0.029-0.028,0.064-0.063,0.094-0.091c0.146-0.133,0.316-0.292,0.436-0.481c0.051-0.032,0.113-0.068,0.182-0.109 c0.117-0.073,0.25-0.154,0.354-0.21c0.092-0.027,0.174-0.084,0.234-0.16c0.148-0.184,0.119-0.394,0.094-0.563 c-0.025-0.172-0.051-0.35,0.043-0.541c0.52-0.256,1.445-0.881,1.594-0.984v0.012c-0.008,0.084-0.033,0.309-0.07,0.451 c-0.197,0.199-0.359,0.503-0.414,0.605l-0.031,0.066l-0.012,0.074c-0.012,0.098-0.066,0.608,0.215,0.938 c0.143,0.165,0.346,0.258,0.574,0.258c0.07,0,0.146-0.01,0.223-0.028c0.727-0.167,2.01-1.935,2.113-2.91 c0.053-0.473-0.129-0.842-0.494-1.017l-0.273-0.131l-0.217,0.216l-0.791,0.806c-0.268,0.025-0.479,0.106-0.619,0.234 c0.008-0.344-0.025-0.696-0.061-1.04c-0.109-1.036-0.129-1.695,0.496-2.146l0.031-0.023l0.029-0.028 c0.223-0.233,0.475-0.438,0.74-0.654c0.619-0.506,1.26-1.028,1.643-1.975l0.016-0.041c0.123-0.323,0.309-0.811,0.059-1.182 c-0.063-0.091-0.193-0.233-0.441-0.286c0.326-0.131,0.576-0.237,0.6-0.246l0.076-0.032l0.059-0.058l1.34-1.304l0.195-0.192 l-0.086-0.263c-0.012-0.034-0.086-0.239-0.291-0.535c0.391,0.053,0.729,0.148,0.834,0.234c0.043,0.088,0.121,0.283,0.209,0.488 c1.471,3.528,1.678,3.708,2.063,3.715c0.014,0,0.025,0.001,0.035,0.003c0.029,0.001,0.059,0.002,0.082,0.002 c0.221,0,0.344-0.114,0.398-0.181c0.16-0.196,0.117-0.437,0.1-0.526l-0.006-0.03c-0.018-0.212-0.006-1.162,0.023-1.94 c0.002,0.003,0.004,0.004,0.004,0.007l0.791-0.319L44.512,25.63z M32.908,21.317c-0.061,0.001-0.129,0.005-0.199,0.006 c-0.227,0.013-0.486,0.023-0.742,0.023c-0.672,0-0.826-0.083-0.842-0.095c-0.081-0.057-0.162-0.101-0.247-0.133 c0.153-0.035,0.327-0.155,0.507-0.508c0.176,0.348,0.416,0.657,0.785,0.657c0.1,0,0.195-0.024,0.287-0.071 C32.582,21.2,32.785,21.27,32.908,21.317z M32.645,19.408c-0.053,0-0.094-0.002-0.125-0.004c0.033-0.091,0.076-0.145,0.107-0.175 c0.043,0.067,0.104,0.125,0.166,0.175C32.74,19.407,32.691,19.408,32.645,19.408z M29.963,20.323 c0.231,0.46,0.402,0.658,0.539,0.745c-0.334,0.027-0.586,0.242-0.796,0.448c-0.146-0.052-0.397-0.206-0.473-0.314 c-0.043-0.064-0.097-0.119-0.156-0.167C29.444,20.928,29.766,20.583,29.963,20.323z M28.69,19.986l-0.48-0.025l-1.606-0.078 c0.198-0.164,0.385-0.318,0.493-0.409c0.03-0.012,0.145-0.043,0.427-0.043c0.17,0,0.332,0.012,0.438,0.021L28.69,19.986z" fill="url(#SVGID_7_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="-23.4248" cy="14.9639" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="16.9456">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M15.95,28.55v0.002,0.01c0,0.446,0.029,0.886,0.065,1.32,0.013,0.144,0.032,0.286,0.048,0.43,0.038,0.298,0.084,0.594,0.135,0.887,0.031,0.153,0.06,0.309,0.09,0.463,0.066,0.301,0.146,0.6,0.229,0.893,0.035,0.121,0.062,0.246,0.097,0.363,0.007,0.013,0.011,0.025,0.013,0.039,0.012-0.117,0.016-0.234,0.012-0.355-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138c-0.01,0.01-0.37-0.05-0.37-0.02z" fill="url(#SVGID_8_)"/>
-<radialGradient cx="-23.4" cy="14.97" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.96">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M15.949,28.552c0,0,0,0,0,0.002c0,0.003,0,0.006,0,0.01c0,0.446,0.029,0.886,0.065,1.32 c0.013,0.144,0.032,0.286,0.048,0.43c0.038,0.298,0.084,0.594,0.135,0.887c0.031,0.153,0.06,0.309,0.09,0.463 c0.066,0.301,0.146,0.6,0.229,0.893c0.035,0.121,0.062,0.246,0.097,0.363c0.007,0.013,0.011,0.025,0.013,0.039 c0.012-0.117,0.016-0.234,0.012-0.355c-0.027-0.86-0.163-0.75-0.163-0.75l0.955-1.305v-0.833l-1.12-1.138 C16.309,28.578,15.949,28.521,15.949,28.552z" fill="url(#SVGID_8_)"/>
+<radialGradient cx="-23.4033" cy="14.9658" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="16.9596">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M24.95,15.64c0.412,0.139,0.751-0.143,1.136-0.394,0.136-0.027,1.647-0.641,1.813-0.641,0.163,0,0.712-0.021,0.849-0.243,0,0,2.365,0.419,2.724,0.279,0.192-0.077,1.009-0.144,1.708-0.189-0.037-0.009-0.076-0.02-0.113-0.029-0.039-0.008-0.074-0.013-0.113-0.021-0.439-0.091-0.885-0.162-1.336-0.208l-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074-0.453,0-0.901,0.027-1.345,0.07-0.077,0.007-0.153,0.016-0.233,0.026-0.428,0.047-0.853,0.11-1.27,0.195-0.007,0.003-0.016,0.003-0.021,0.004-0.433,0.09-0.855,0.203-1.272,0.331-0.071,0.023-0.141,0.047-0.209,0.069-0.37,0.123-0.734,0.257-1.091,0.405-0.041,0.019-0.084,0.035-0.125,0.051-0.394,0.171-0.775,0.359-1.15,0.563-0.056,0.03-0.11,0.064-0.165,0.095-0.161,0.09-0.311,0.19-0.467,0.288,0.77,0.27,1.73-0.71,2.14-0.57z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="-23.4" cy="14.96" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.96">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.3152" stop-color="#B7CC97"/>
-<stop offset="0.7273" stop-color="#568E4C"/>
-<stop offset="1" stop-color="#255541"/>
+<path d="M24.947,15.643c0.412,0.139,0.751-0.143,1.136-0.394c0.136-0.027,1.647-0.641,1.813-0.641 c0.163,0,0.712-0.021,0.849-0.243c0,0,2.365,0.419,2.724,0.279c0.192-0.077,1.009-0.144,1.708-0.189 c-0.037-0.009-0.076-0.02-0.113-0.029c-0.039-0.008-0.074-0.013-0.113-0.021c-0.439-0.091-0.885-0.162-1.336-0.208 c0,0-0.006,0-0.01-0.002c-0.476-0.048-0.957-0.074-1.447-0.074c-0.453,0-0.901,0.027-1.345,0.07 c-0.077,0.007-0.153,0.016-0.233,0.026c-0.428,0.047-0.853,0.11-1.27,0.195c-0.007,0.003-0.016,0.003-0.021,0.004 c-0.433,0.09-0.855,0.203-1.272,0.331c-0.071,0.023-0.141,0.047-0.209,0.069c-0.37,0.123-0.734,0.257-1.091,0.405 c-0.041,0.019-0.084,0.035-0.125,0.051c-0.394,0.171-0.775,0.359-1.15,0.563c-0.056,0.03-0.11,0.064-0.165,0.095 c-0.161,0.09-0.311,0.19-0.467,0.288C23.581,16.479,24.538,15.503,24.947,15.643z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-23.4023" cy="14.9634" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="16.9557">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.3152" style="stop-color:#B7CC97"/>
+<stop offset="0.7273" style="stop-color:#568E4C"/>
+<stop offset="1" style="stop-color:#255541"/>
</radialGradient>
-<path d="M44.09,25.7c-0.016-0.073-0.037-0.142-0.053-0.213-0.07-0.356-0.164-0.708-0.266-1.054-0.025-0.094-0.051-0.189-0.08-0.282-0.125-0.394-0.264-0.781-0.416-1.159-0.029-0.065-0.061-0.131-0.09-0.196-0.143-0.333-0.297-0.658-0.463-0.977-0.037-0.077-0.078-0.155-0.117-0.23-0.197-0.359-0.406-0.709-0.627-1.051-0.041-0.059-0.084-0.114-0.121-0.173-0.205-0.303-0.42-0.596-0.648-0.881-0.043-0.055-0.088-0.114-0.135-0.173-0.262-0.314-0.533-0.619-0.82-0.914-0.047-0.05-0.098-0.098-0.15-0.148-0.26-0.259-0.535-0.511-0.813-0.75-0.047-0.04-0.092-0.083-0.141-0.123-0.316-0.261-0.645-0.511-0.982-0.746-0.061-0.042-0.119-0.082-0.182-0.121-0.311-0.211-0.631-0.411-0.961-0.595-0.047-0.025-0.088-0.053-0.133-0.077-0.365-0.199-0.74-0.383-1.123-0.55-0.07-0.029-0.139-0.055-0.205-0.085-0.15-0.063-0.303-0.112-0.455-0.17-0.182,0.118-1.016,0.597-1.016,0.597s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537-0.219,0.03-0.674,0.148-0.129,0.832-0.081,0.084-1.642,1.186-1.642,0.686,0-0.502,0.351-1.4-0.139-0.919-0.351,0.346-0.563,0.813-0.605,0.902-0.115,0.223-0.187,0.328-0.104,0.97,0.085,0.642-1.005,0.64-1.08,0.473-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594s-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97,0.274,0.644,0.969,2.262,1.626,2.313,0.861,0.072,2.951-0.398,2.951-0.398,0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077c0.018,0.038,1.234,3.668,0.832,4.149-0.957,1.456,0.547,3.589,0.965,4.312,0.419,1.238,0.688,0.684,1.239,0.889,0.679,0.058,1.25,0.313,1.826-0.439,0.166-0.141,0.451-0.029,0.451-0.225,0-0.107,0.494-0.427,0.619-0.729,0.133-0.063,0.475-0.297,0.707-0.41,0.211-0.014-0.201-0.586,0.217-1.191,0.451-0.182,1.666-1.014,1.666-1.014,0.057-1.223-0.592-2.729,0.617-3.595,0.777-0.807,1.799-1.266,2.295-2.493,0.139-0.361,0.441-1.104-0.438-0.881-0.826,0.212-1.75,0.26-1.313-0.109-0.051-0.456-0.6-0.667-1.092-1.111-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349,0.107-0.279,1.041,1.555,1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388,0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306s-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406,0.43-0.088,0.332,0.641,0.795,0.279s0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457,0.061,0.077,1.611,4.015,1.918,4.02,0.137,0.001,0.232,0.055,0.189-0.184-0.055-0.11,0-2.585,0.08-3.115,0.209-0.448,0.242-0.001,0.734,0.853-0.02-0.03-0.02-0.05-0.02-0.07zm-13.66-9.54c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514c0.041,0.177-0.288,0.287-0.323,0.702-0.038,0.416-0.789,0.171-0.851,0.026s0.46-0.47,0.57-0.8zm2.69,5.59c-0.467,0-1.863,0.141-2.247-0.138-0.386-0.278-0.686,0.029-0.962,0.309-0.182,0.18-0.841-0.187-1.034-0.467-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796-1.859-0.09-1.058,0.315-0.992,0.028,0.557-0.269,0.693-0.167s1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821s-0.249,0.643-0.358,0.78c0.411-0.027,0.896-0.786,0.896-0.786-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822,0.01,0.007s0.467,1.116,0.661,1.116c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961,0.189-0.105,0.5-0.01,0.855,0.129,0.359,0.138,0.602-0.075,0.895,0.185-0.06,1.15-0.72,0.68-0.92,0.63zm0.74-1.92c-0.479-0.187-2.102,0.418-1.74-0.569,0.193-0.536,0.691-0.646,0.863-0.292,0.043,0.147,0.586,0.374,0.582,0.065-0.004-0.308,0.543-0.47,0.621-0.241-0.29,0.2,1.14,1.31-0.32,1.03zm3.06,0.94c-0.268-0.219,0.117-0.404-0.275-0.746-0.563-0.491-1.002-0.702-0.234-1.097,0.945-0.122,0.152,0.307,0.309,0.563,0.084,0.136,0.563,0.593,0.938,1.153,0.3,0.47-0.48,0.35-0.74,0.14z" fill="url(#SVGID_10_)"/>
-<radialGradient cx="-23.4" cy="14.97" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.95">
-<stop offset="0" stop-color="#71A949"/>
-<stop offset="0.3152" stop-color="#71A949"/>
-<stop offset="0.7273" stop-color="#3E7E53"/>
-<stop offset="1" stop-color="#254F55"/>
+<path d="M44.09,25.703c-0.016-0.073-0.037-0.142-0.053-0.213c-0.07-0.356-0.164-0.708-0.266-1.054 c-0.025-0.094-0.051-0.189-0.08-0.282c-0.125-0.394-0.264-0.781-0.416-1.159c-0.029-0.065-0.061-0.131-0.09-0.196 c-0.143-0.333-0.297-0.658-0.463-0.977c-0.037-0.077-0.078-0.155-0.117-0.23c-0.197-0.359-0.406-0.709-0.627-1.051 c-0.041-0.059-0.084-0.114-0.121-0.173c-0.205-0.303-0.42-0.596-0.648-0.881c-0.043-0.055-0.088-0.114-0.135-0.173 c-0.262-0.314-0.533-0.619-0.82-0.914c-0.047-0.05-0.098-0.098-0.15-0.148c-0.26-0.259-0.535-0.511-0.813-0.75 c-0.047-0.04-0.092-0.083-0.141-0.123c-0.316-0.261-0.645-0.511-0.982-0.746c-0.061-0.042-0.119-0.082-0.182-0.121 c-0.311-0.211-0.631-0.411-0.961-0.595c-0.047-0.025-0.088-0.053-0.133-0.077c-0.365-0.199-0.74-0.383-1.123-0.55 c-0.07-0.029-0.139-0.055-0.205-0.085c-0.15-0.063-0.303-0.112-0.455-0.17c-0.182,0.118-1.016,0.597-1.016,0.597 s-3.622-0.502-3.869-0.251c-0.249,0.251-1.213,0.508-1.434,0.537c-0.219,0.03-0.674,0.148-0.129,0.832 c-0.081,0.084-1.642,1.186-1.642,0.686c0-0.502,0.351-1.4-0.139-0.919c-0.351,0.346-0.563,0.813-0.605,0.902 c-0.115,0.223-0.187,0.328-0.104,0.97c0.085,0.642-1.005,0.64-1.08,0.473c-0.196-0.445-1.274,0.999-1.274,0.999l0.455,0.594 c0,0-3.181,2.486-3.206,2.654c-0.028,0.168-0.822,2.328-0.547,2.97c0.274,0.644,0.969,2.262,1.626,2.313 c0.861,0.072,2.951-0.398,2.951-0.398c0.055,0.142,0.45,0.854,0.45,0.854s1.021-0.036,1.081,0.077 c0.018,0.038,1.234,3.668,0.832,4.149c-0.957,1.456,0.547,3.589,0.965,4.312c0.419,1.238,0.688,0.684,1.239,0.889 c0.679,0.058,1.25,0.313,1.826-0.439c0.166-0.141,0.451-0.029,0.451-0.225c0-0.107,0.494-0.427,0.619-0.729 c0.133-0.063,0.475-0.297,0.707-0.41c0.211-0.014-0.201-0.586,0.217-1.191c0.451-0.182,1.666-1.014,1.666-1.014 c0.057-1.223-0.592-2.729,0.617-3.595c0.777-0.807,1.799-1.266,2.295-2.493c0.139-0.361,0.441-1.104-0.438-0.881 c-0.826,0.212-1.75,0.26-1.313-0.109c-0.051-0.456-0.6-0.667-1.092-1.111c-0.254-0.614-0.654-1.704-0.654-1.704l-0.875-1.349 l0.107-0.279l1.041,1.555l1.037,1.276c0.383,1.277,0.711,1.388,0.711,1.388c0.574-0.205,1.939-0.775,1.939-0.775l1.342-1.306 c0,0-0.139-0.417-0.684-0.943l-0.41-0.25c-0.09,0.257-0.566,0.352-0.566,0.352l-1.156-1.406l0.43-0.088l0.332,0.641l0.795,0.279 c0,0,0.219-0.163,0.629,0.267c0.334-0.028,1.635,0.065,1.938,0.457c0.061,0.077,1.611,4.015,1.918,4.02 c0.137,0.001,0.232,0.055,0.189-0.184c-0.055-0.11,0-2.585,0.08-3.115c0.209-0.448,0.242-0.001,0.734,0.853 C44.094,25.745,44.094,25.724,44.09,25.703z M30.432,16.162c0.106-0.329,0.738-0.441,0.738-0.441s-0.183,0.339-0.141,0.514 c0.041,0.177-0.288,0.287-0.323,0.702c-0.038,0.416-0.789,0.171-0.851,0.026S30.319,16.489,30.432,16.162z M33.125,21.748 c-0.467,0-1.863,0.141-2.247-0.138c-0.386-0.278-0.686,0.029-0.962,0.309c-0.182,0.18-0.841-0.187-1.034-0.467 c-0.191-0.279-0.839-0.259-0.839-0.259l0.147-0.796l-1.859-0.09l-1.058,0.315l-0.992,0.028l0.557-0.269l0.693-0.167 c0,0,1.008-0.841,1.31-1.092c0.258-0.212,1.276-0.094,1.276-0.094l1.121,0.821c0,0-0.249,0.643-0.358,0.78 c0.411-0.027,0.896-0.786,0.896-0.786c-0.873-0.816-0.839-1.094-0.839-1.094l1.152,0.822l0.01,0.007c0,0,0.467,1.116,0.661,1.116 c0.189,0,0.436-0.768,0.436-0.768l0.326-0.083c0.146,0.352,0.42,1.147,0.748,0.961c0.189-0.105,0.5-0.01,0.855,0.129 c0.359,0.138,0.602-0.075,0.895,0.185C33.982,22.268,33.318,21.805,33.125,21.748z M33.855,19.828 c-0.479-0.187-2.102,0.418-1.74-0.569c0.193-0.536,0.691-0.646,0.863-0.292c0.043,0.147,0.586,0.374,0.582,0.065 c-0.004-0.308,0.543-0.47,0.621-0.241C33.889,19.003,35.322,20.112,33.855,19.828z M36.918,20.767 c-0.268-0.219,0.117-0.404-0.275-0.746c-0.563-0.491-1.002-0.702-0.234-1.097c0.945-0.122,0.152,0.307,0.309,0.563 c0.084,0.136,0.563,0.593,0.938,1.153C37.963,21.104,37.182,20.984,36.918,20.767z" fill="url(#SVGID_10_)"/>
+<radialGradient cx="-23.4043" cy="14.9697" gradientTransform="matrix(0.9797 0 0 0.9952 53.1776 3.1224)" gradientUnits="userSpaceOnUse" id="SVGID_11_" r="16.9518">
+<stop offset="0" style="stop-color:#71A949"/>
+<stop offset="0.3152" style="stop-color:#71A949"/>
+<stop offset="0.7273" style="stop-color:#3E7E53"/>
+<stop offset="1" style="stop-color:#254F55"/>
</radialGradient>
-<path d="M37.3,33.48l-0.91,0.925-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683c0.6-0.13,2.46-2.65,1.53-3.1z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5" y2="-344">
-<stop offset="0" stop-color="#F1F1F1"/>
-<stop offset="1" stop-color="#B4B6B6"/>
+<path d="M37.297,33.482l-0.91,0.925c0,0-0.549,0-0.576,0.224c-0.012,0.094-0.045,0.508-0.135,0.719 c-0.182,0.13-0.402,0.557-0.402,0.557s-0.113,0.823,0.492,0.683C36.373,36.451,38.232,33.93,37.297,33.482z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="287" x2="287" y1="-288.5059" y2="-343.9819">
+<stop offset="0" style="stop-color:#F1F1F1"/>
+<stop offset="1" style="stop-color:#B4B6B6"/>
</linearGradient>
-<path d="M52.46,2.898v54.2h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924c-0.443-0.441-0.845-1.413-0.845-2.039v-41.39h44.92m0.751-0.753h-46.42v42.15c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926c0.586,0.585,1.743,1.064,2.573,1.064h32.86v-55.7z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5" x2="269.9" y1="-332.6" y2="-338.2">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.35" stop-color="#E6E6E6"/>
-<stop offset="0.7515" stop-color="#BCBCBC"/>
-<stop offset="1" stop-color="#8E8E8E"/>
+<path d="M52.459,2.898v54.203h-32.11c-0.626,0-1.599-0.401-2.04-0.846l-9.925-9.924 c-0.443-0.441-0.845-1.413-0.845-2.039V2.898H52.459 M53.213,2.145H6.787v42.148c0,0.829,0.478,1.986,1.064,2.572l9.925,9.926 c0.586,0.585,1.743,1.064,2.573,1.064h32.864V2.145L53.213,2.145z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 -286)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="275.5117" x2="269.9254" y1="-332.5654" y2="-338.1517">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.35" style="stop-color:#E6E6E6"/>
+<stop offset="0.7515" style="stop-color:#BCBCBC"/>
+<stop offset="1" style="stop-color:#8E8E8E"/>
</linearGradient>
-<path d="M8.208,47.19c-0.314-0.348-0.896-0.695-1.297-2.184,0,0,0.66,3.054,9.701,0.04,0,12.81,3.768,12.81,3.768,12.81-0.831,0-1.987-0.479-2.573-1.064l-9.602-9.61z" fill="url(#SVGID_13_)"/>
+<path d="M8.208,47.189c-0.314-0.348-0.896-0.695-1.297-2.184c0,0,0.66,3.054,9.701,0.04 c0,12.81,3.768,12.81,3.768,12.81c-0.831,0-1.987-0.479-2.573-1.064L8.208,47.189z" fill="url(#SVGID_13_)"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
@@ -186,4 +188,4 @@
</linearGradient>
<path d="M14.01,13.58l10.33,3.039v9.38h-10.33v-12.42m-0.5-0.665v13.58h11.33v-10.25l-11.33-3.33z" fill="url(#SVGID_20_)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.258" y2="55.26">
-<stop offset="0" stop-color="#E8E8E8"/>
-<stop offset="0.3576" stop-color="#B7BDBC"/>
-<stop offset="0.7576" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#A6ABAB"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="4.2583" y2="55.2583">
+<stop offset="0" style="stop-color:#E8E8E8"/>
+<stop offset="0.3576" style="stop-color:#B7BDBC"/>
+<stop offset="0.7576" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#A6ABAB"/>
</linearGradient>
-<path d="M7.9,55.5c-1.875,0-3.4-1.525-3.4-3.4v-44.2c0-1.876,1.525-3.4,3.4-3.4h44.2c1.874,0,3.4,1.524,3.4,3.4v44.2c0,1.875-1.526,3.4-3.4,3.4h-44.2z" fill="url(#SVGID_1_)"/>
-<path d="M7.9,54.77c-1.473,0-2.672-1.198-2.672-2.672v-44.2c0-1.474,1.199-2.672,2.672-2.672h44.2c1.473,0,2.672,1.198,2.672,2.672v44.2c0,1.474-1.199,2.672-2.672,2.672h-44.2z" fill="#FFFFFF" fill-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.2" y2="53.8">
-<stop offset="0" stop-color="#D9DCDA"/>
-<stop offset="0.3697" stop-color="#FFFFFF"/>
-<stop offset="0.8061" stop-color="#B1B5B4"/>
-<stop offset="1" stop-color="#E1E4E2"/>
+<path d="M7.9,55.5c-1.875,0-3.4-1.525-3.4-3.4V7.9c0-1.876,1.525-3.4,3.4-3.4H52.1c1.874,0,3.4,1.524,3.4,3.4 V52.1c0,1.875-1.526,3.4-3.4,3.4H7.9z" fill="url(#SVGID_1_)"/>
+<path d="M7.9,54.771c-1.473,0-2.672-1.198-2.672-2.672V7.9c0-1.474,1.199-2.672,2.672-2.672H52.1 c1.473,0,2.672,1.198,2.672,2.672V52.1c0,1.474-1.199,2.672-2.672,2.672H7.9z" fill="#FFFFFF" fill-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="6.2002" y2="53.7998">
+<stop offset="0" style="stop-color:#D9DCDA"/>
+<stop offset="0.3697" style="stop-color:#FFFFFF"/>
+<stop offset="0.8061" style="stop-color:#B1B5B4"/>
+<stop offset="1" style="stop-color:#E1E4E2"/>
</linearGradient>
-<path d="M7.9,53.8c-0.938,0-1.7-0.764-1.7-1.7v-44.2c0-0.938,0.763-1.7,1.7-1.7h44.2c0.938,0,1.699,0.762,1.699,1.7v44.2c0,0.937-0.762,1.7-1.699,1.7h-44.2z" fill="url(#SVGID_2_)"/>
-<path d="M42.36,34.46v-2.344h-13.92l5.785,8.718h2.457v-1.702h5.697v5.438h-5.7v-1.194h-3.084l-8.278-11.26h-6.31c-0.463,1.753-1.877,3.036-3.543,3.036-2.047,0-3.698-1.896-3.698-4.239,0-2.334,1.651-4.236,3.69-4.236,1.644,0,3.025,1.217,3.519,2.892h2.839l7.508-10.8,4.557-0.072c0.463-1.075,1.432-1.816,2.535-1.816,2.379,0,3.333,1.468,3.333,3.271,0,1.807-0.897,3.261-3.333,3.265-1.232,0-2.279-0.919-2.678-2.183h-2.855l-5.93,8.33h17.4v-2.913l5.875,3.909-5.88,3.89z" fill="#FFFFFF"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -275.8623 -411.166)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="305.9" x2="305.9" y1="427.3" y2="455">
-<stop offset="0" stop-color="#7B7C7E"/>
-<stop offset="1" stop-color="#404142"/>
+<path d="M7.9,53.8c-0.938,0-1.7-0.764-1.7-1.7V7.9c0-0.938,0.763-1.7,1.7-1.7H52.1 c0.938,0,1.699,0.762,1.699,1.7V52.1c0,0.937-0.762,1.7-1.699,1.7H7.9z" fill="url(#SVGID_2_)"/>
+<path d="M42.355,34.462v-2.344H28.438l5.785,8.718h2.457v-1.702h5.697v5.438H36.68v-1.194h-3.084l-8.278-11.259 H19.01c-0.463,1.753-1.877,3.036-3.543,3.036c-2.047,0-3.698-1.896-3.698-4.239c0-2.334,1.651-4.236,3.69-4.236 c1.644,0,3.025,1.217,3.519,2.892h2.839l7.508-10.796l4.557-0.072c0.463-1.075,1.432-1.816,2.535-1.816 c2.379,0,3.333,1.468,3.333,3.271c0,1.807-0.897,3.261-3.333,3.265c-1.232,0-2.279-0.919-2.678-2.183h-2.855L24.95,29.57h17.405 v-2.913l5.875,3.909L42.355,34.462z" fill="#FFFFFF"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -275.8623 -411.166)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="305.8613" x2="305.8613" y1="427.3232" y2="455.0088">
+<stop offset="0" style="stop-color:#7B7C7E"/>
+<stop offset="1" style="stop-color:#404142"/>
</linearGradient>
-<path d="M42.36,33.73v-2.343h-13.92l5.785,8.715h2.457v-1.701h5.697v5.438h-5.7v-1.193h-3.084l-8.278-11.26h-6.31c-0.463,1.752-1.877,3.034-3.543,3.034-2.047,0-3.698-1.896-3.698-4.238,0-2.335,1.651-4.237,3.69-4.237,1.644,0,3.025,1.217,3.519,2.892h2.839l7.508-10.8,4.557-0.072c0.463-1.075,1.432-1.816,2.535-1.816,2.379,0,3.333,1.468,3.333,3.271,0,1.807-0.897,3.262-3.333,3.264-1.232,0-2.279-0.918-2.678-2.183h-2.855l-5.933,8.333h17.4v-2.913l5.875,3.91-5.88,3.91z" fill="url(#SVGID_3_)"/>
-</svg>
\ No newline at end of file
+<path d="M42.355,33.734v-2.343H28.438l5.785,8.715h2.457v-1.701h5.697v5.438H36.68v-1.193h-3.084 l-8.278-11.258H19.01c-0.463,1.752-1.877,3.034-3.543,3.034c-2.047,0-3.698-1.896-3.698-4.238c0-2.335,1.651-4.237,3.69-4.237 c1.644,0,3.025,1.217,3.519,2.892h2.839l7.508-10.796l4.557-0.072c0.463-1.075,1.432-1.816,2.535-1.816 c2.379,0,3.333,1.468,3.333,3.271c0,1.807-0.897,3.262-3.333,3.264c-1.232,0-2.279-0.918-2.678-2.183h-2.855l-5.933,8.333h17.405 v-2.913l5.875,3.91L42.355,33.734z" fill="url(#SVGID_3_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb_memory.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_usb_memory.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,61 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="23.22" y2="0.7603">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.1576" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="23.2222" y2="0.7603">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1576" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_1_)" height="22.46" width="28.3" x="15.85" y="1"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3117" x2="-3117" y1="11750" y2="11730">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.1576" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<rect fill="url(#SVGID_1_)" height="22.462" width="28.305" x="15.848" y="1"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-3117.1167" x2="-3117.1167" y1="11752.4258" y2="11731.4102">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1576" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="21.02" width="26.86" x="16.57" y="1.724"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3117" x2="-3117" y1="11730" y2="11750">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<rect fill="url(#SVGID_2_)" height="21.016" width="26.859" x="16.57" y="1.724"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-3117.1177" x2="-3117.1177" y1="11731.7617" y2="11752.7773">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M17.23,22.08v-19.7h25.55v19.7h-25.55m-0.657,0.66h26.86v-21.02h-26.86v21.02,0.001z" fill="url(#SVGID_3_)"/>
-<rect fill="#222021" fill-opacity="0.4" height="0.638" stroke-opacity="0.4" width="26.86" x="16.57" y="21.03"/>
-<rect fill="#222021" fill-opacity="0.15" height="0.639" stroke-opacity="0.15" width="26.86" x="16.57" y="20.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="59" y2="22.27">
-<stop offset="0" stop-color="#EBEBEB"/>
-<stop offset="0.7455" stop-color="#000000"/>
-<stop offset="1" stop-color="#8B8B8B"/>
+<path d="M17.227,22.083V2.378h25.547v19.705H17.227 M16.57,22.739H43.43V1.724H16.57V22.739L16.57,22.739z" fill="url(#SVGID_3_)"/>
+<rect fill="#222021" fill-opacity="0.4" height="0.638" stroke-opacity="0.4" width="26.859" x="16.57" y="21.034"/>
+<rect fill="#222021" fill-opacity="0.15" height="0.639" stroke-opacity="0.15" width="26.859" x="16.57" y="20.378"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="30" x2="30" y1="59" y2="22.2708">
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="0.7455" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
-<path d="M29.94,59c-15.3,0-19.09-11.5-19.09-13.14v-22.16c0-1.121,0.912-2.034,2.035-2.034h34.23c1.123,0,2.037,0.913,2.037,2.034v22.17c0,1.72-3.58,13.14-19.21,13.14z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-3117" x2="-3117" y1="11730" y2="11700">
-<stop offset="0" stop-color="#EBEBEB"/>
-<stop offset="0.7455" stop-color="#000000"/>
-<stop offset="1" stop-color="#8B8B8B"/>
+<path d="M29.939,59c-15.299,0-19.092-11.501-19.092-13.139V23.695c0-1.121,0.912-2.034,2.035-2.034h34.232 c1.123,0,2.037,0.913,2.037,2.034v22.166C49.152,47.583,45.57,59,29.939,59L29.939,59z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-3117.1167" x2="-3117.1167" y1="11731.9902" y2="11696.6816">
+<stop offset="0" style="stop-color:#EBEBEB"/>
+<stop offset="0.7455" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#8B8B8B"/>
</linearGradient>
-<path d="M11.57,23.7c0-0.722,0.592-1.311,1.313-1.311h34.23c0.725,0,1.314,0.589,1.314,1.311v22.17c0,2.077-4.049,12.42-18.49,12.42-14.43-0.01-18.36-10.68-18.36-12.43v-22.16z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="23.42" y2="57.88">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#0A0A0A"/>
+<path d="M11.57,23.695c0-0.722,0.592-1.311,1.313-1.311h34.232c0.725,0,1.314,0.589,1.314,1.311v22.166 c0,2.077-4.049,12.417-18.49,12.417C15.5,58.278,11.57,47.61,11.57,45.861V23.695z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="30" x2="30" y1="23.4189" y2="57.8808">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#0A0A0A"/>
</linearGradient>
-<path d="M29.94,57.62c-13.97,0-17.71-10.36-17.71-11.76v-22.16c0-0.362,0.293-0.655,0.656-0.655h34.23c0.363,0,0.658,0.293,0.658,0.655v22.17c-0.01,1.46-3.55,11.75-17.84,11.75z" fill="url(#SVGID_6_)"/>
-<path d="M30.94,40.1c6.248,0,12.32-0.324,18.14-0.928v-14.82c0-0.721-0.592-1.311-1.313-1.311h-34.23c-0.723,0-1.313,0.59-1.313,1.311v14.77c5.99,0.64,12.26,0.98,18.71,0.98z" fill="#FFFFFF" fill-opacity="0.15" stroke-opacity="0.15"/>
-<rect fill="#FFFFFF" height="5.468" width="5.471" x="33.44" y="12.97"/>
-<rect fill="#FFFFFF" height="5.468" width="5.471" x="21.08" y="12.97"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.18" x2="36.18" y1="17.5" y2="12.02">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#0A0A0A"/>
+<path d="M29.939,57.62c-13.973,0-17.713-10.361-17.713-11.759V23.695c0-0.362,0.293-0.655,0.656-0.655h34.232 c0.363,0,0.658,0.293,0.658,0.655v22.166C47.773,47.327,44.23,57.62,29.939,57.62L29.939,57.62z" fill="url(#SVGID_6_)"/>
+<path d="M30.943,40.104c6.248,0,12.32-0.324,18.143-0.928V24.351c0-0.721-0.592-1.311-1.313-1.311 H13.539c-0.723,0-1.313,0.59-1.313,1.311v14.767C18.223,39.759,24.49,40.104,30.943,40.104z" fill="#FFFFFF" fill-opacity="0.15" stroke-opacity="0.15"/>
+<rect fill="#FFFFFF" height="5.468" width="5.471" x="33.445" y="12.966"/>
+<rect fill="#FFFFFF" height="5.468" width="5.471" x="21.084" y="12.966"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.1807" x2="36.1807" y1="17.499" y2="12.0196">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#0A0A0A"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="5.469" width="5.471" x="33.44" y="12"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.82" x2="23.82" y1="17.32" y2="12.01">
-<stop offset="0" stop-color="#8E8E8E"/>
-<stop offset="1" stop-color="#0A0A0A"/>
+<rect fill="url(#SVGID_7_)" height="5.469" width="5.471" x="33.445" y="12.002"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="23.8193" x2="23.8193" y1="17.3184" y2="12.0085">
+<stop offset="0" style="stop-color:#8E8E8E"/>
+<stop offset="1" style="stop-color:#0A0A0A"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="5.469" width="5.471" x="21.08" y="12"/>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-3117" x2="-3117" y1="11730" y2="11710">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.297" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<rect fill="url(#SVGID_8_)" height="5.469" width="5.471" x="21.084" y="12.002"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -3087.1172 11754.375)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-3117.2319" x2="-3117.2319" y1="11726.4707" y2="11705.0322">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.297" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
-<path d="M35.7,34.29c0-0.804-0.652-1.453-1.455-1.453s-1.455,0.649-1.455,1.453c0,0.676,0.465,1.239,1.09,1.402-0.195,1.042-1.01,4.4-3.27,4.526v-8.55h1.686l-2.359-4.087-2.359,4.087h1.686v11.9c-1.912-0.455-2.654-3.352-2.863-4.404,0.6-0.179,1.041-0.729,1.041-1.387,0-0.801-0.65-1.456-1.453-1.456-0.805,0-1.455,0.655-1.455,1.456,0,0.639,0.414,1.176,0.988,1.371,0.178,1.027,1.029,4.852,3.742,5.295v1.745c-0.646,0.267-1.105,0.902-1.105,1.644,0,0.982,0.797,1.777,1.779,1.777s1.777-0.795,1.777-1.777c0-0.741-0.457-1.377-1.104-1.644v-5.102c3.137-0.122,4.016-4.567,4.156-5.439,0.53-0.2,0.92-0.73,0.92-1.35z" fill="url(#SVGID_9_)"/>
+<path d="M35.699,34.294c0-0.804-0.652-1.453-1.455-1.453s-1.455,0.649-1.455,1.453 c0,0.676,0.465,1.239,1.09,1.402c-0.195,1.042-1.01,4.4-3.27,4.526V31.67h1.686l-2.359-4.087l-2.359,4.087h1.686v11.897 c-1.912-0.455-2.654-3.352-2.863-4.404c0.6-0.179,1.041-0.729,1.041-1.387c0-0.801-0.65-1.456-1.453-1.456 c-0.805,0-1.455,0.655-1.455,1.456c0,0.639,0.414,1.176,0.988,1.371c0.178,1.027,1.029,4.852,3.742,5.295v1.745 c-0.646,0.267-1.105,0.902-1.105,1.644c0,0.982,0.797,1.777,1.779,1.777s1.777-0.795,1.777-1.777c0-0.741-0.457-1.377-1.104-1.644 v-5.102c3.137-0.122,4.016-4.567,4.156-5.439C35.311,35.438,35.699,34.913,35.699,34.294z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
+<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
+<stop offset="0" style="stop-color:#6FB2B5"/>
+<stop offset="0.297" style="stop-color:#6FB2B5"/>
+<stop offset="0.6667" style="stop-color:#4C5F94"/>
+<stop offset="0.7939" style="stop-color:#679FAD"/>
+<stop offset="1" style="stop-color:#679FAD"/>
</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="0.5091" style="stop-color:#1D1A33"/>
+<stop offset="1" style="stop-color:#516C8F"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
<stop offset="0" stop-color="#898A8B"/>
@@ -130,4 +132,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_active.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_active.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
<stop offset="0" stop-color="#898A8B"/>
@@ -121,4 +123,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_end.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_end.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-1374" cy="2709" gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.26">
-<stop offset="0" stop-color="#C0A26F"/>
-<stop offset="0.297" stop-color="#C0A26F"/>
-<stop offset="0.6667" stop-color="#954749"/>
-<stop offset="0.7939" stop-color="#BE8A6B"/>
-<stop offset="1" stop-color="#BE8A6B"/>
+<g>
+<radialGradient cx="-1374.2305" cy="2708.6123" gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2612">
+<stop offset="0" style="stop-color:#C0A26F"/>
+<stop offset="0.297" style="stop-color:#C0A26F"/>
+<stop offset="0.6667" style="stop-color:#954749"/>
+<stop offset="0.7939" style="stop-color:#BE8A6B"/>
+<stop offset="1" style="stop-color:#BE8A6B"/>
</radialGradient>
-<path d="M17.88,35.42c0.413-0.078,0.579-0.318,0.603-0.895,0.027-0.721,0.29-3.172,0.431-3.764,0.124-0.521,0.342-0.805,0.941-0.98,0.75-0.22,3.188-1.037,10.14-1.038,6.954,0,9.393,0.807,10.14,1.038,0.651,0.201,0.777,0.389,0.941,0.98,0.162,0.586,0.402,3.043,0.431,3.764,0.024,0.576,0.16,0.82,0.577,0.883,0.731,0.113,13.29,2.238,14.6,2.502,0.794,0.16,1.237,0.045,1.292-0.705,0.231-3.012-2.009-7.641-3.005-9.067-0.887-1.274-1.687-2.667-3.82-3.557-2.028-0.845-12.13-2.548-21.16-2.548-9.026-0.001-19.13,1.704-21.16,2.548-2.133,0.889-2.935,2.282-3.82,3.555-0.995,1.429-3.237,6.055-3.006,9.069,0.058,0.748,0.5,0.863,1.292,0.703,1.334-0.25,13.88-2.34,14.59-2.47z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1384" x2="-1383" y1="2721" y2="2718">
-<stop offset="0" stop-color="#905A46"/>
-<stop offset="1" stop-color="#6B2E36"/>
+<path d="M17.884,35.418c0.413-0.078,0.579-0.318,0.603-0.895c0.027-0.721,0.29-3.172,0.431-3.764 c0.124-0.521,0.342-0.805,0.941-0.98c0.75-0.22,3.188-1.037,10.143-1.038c6.954,0,9.393,0.807,10.141,1.038 c0.651,0.201,0.777,0.389,0.941,0.98c0.162,0.586,0.402,3.043,0.431,3.764c0.024,0.576,0.16,0.82,0.577,0.883 c0.731,0.113,13.291,2.238,14.601,2.502c0.794,0.16,1.237,0.045,1.292-0.705c0.231-3.012-2.009-7.641-3.005-9.067 c-0.887-1.274-1.687-2.667-3.82-3.557c-2.028-0.845-12.133-2.548-21.158-2.548c-9.026-0.001-19.132,1.704-21.159,2.548 c-2.133,0.889-2.935,2.282-3.82,3.555c-0.995,1.429-3.237,6.055-3.006,9.069c0.058,0.748,0.5,0.863,1.292,0.703 C4.62,37.645,17.169,35.549,17.884,35.418z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1383.7373" x2="-1383.3947" y1="2721.2969" y2="2718.4587">
+<stop offset="0" style="stop-color:#905A46"/>
+<stop offset="1" style="stop-color:#6B2E36"/>
</linearGradient>
-<path d="M40.14,29.78c0.65,0.202,0.775,0.39,0.94,0.981,0.162,0.584,0.401,3.043,0.431,3.762,0.024,0.578,0.16,0.82,0.576,0.885,0.046,0.008,0.062,0.01,0.063,0.01,0.244,0.039,0.993,0.164,2.039,0.342-0.026-0.258-0.37-3.525-1.036-4.357-1.21-1.51-3.01-1.61-3.01-1.61z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -3579.3215 1416.3782)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1384" x2="-1383" y1="-3596" y2="-3599">
-<stop offset="0" stop-color="#905A46"/>
-<stop offset="1" stop-color="#6B2E36"/>
+<path d="M40.145,29.779c0.65,0.202,0.775,0.39,0.94,0.981c0.162,0.584,0.401,3.043,0.431,3.762 c0.024,0.578,0.16,0.82,0.576,0.885c0.046,0.008,0.062,0.01,0.063,0.01c0.244,0.039,0.993,0.164,2.039,0.342 c-0.026-0.258-0.37-3.525-1.036-4.357C41.938,29.877,40.145,29.779,40.145,29.779z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -3579.3215 1416.3782)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1383.7422" x2="-1383.3992" y1="-3596.1938" y2="-3599.0347">
+<stop offset="0" style="stop-color:#905A46"/>
+<stop offset="1" style="stop-color:#6B2E36"/>
</linearGradient>
-<path d="M19.84,29.78c-0.654,0.203-0.778,0.39-0.942,0.981-0.163,0.586-0.404,3.045-0.433,3.766-0.021,0.574-0.158,0.818-0.574,0.883-0.047,0.008-0.061,0.01-0.061,0.01-0.245,0.039-0.994,0.164-2.041,0.338,0.028-0.254,0.371-3.523,1.036-4.355,1.2-1.52,3-1.62,3-1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="78.53" x2="43.33" y1="-72.92" y2="-108.1">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M19.841,29.779c-0.654,0.203-0.778,0.39-0.942,0.981c-0.163,0.586-0.404,3.045-0.433,3.766 c-0.021,0.574-0.158,0.818-0.574,0.883c-0.047,0.008-0.061,0.01-0.061,0.01c-0.245,0.039-0.994,0.164-2.041,0.338 c0.028-0.254,0.371-3.523,1.036-4.355C18.043,29.876,19.841,29.779,19.841,29.779z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="78.5283" x2="43.332" y1="-72.9224" y2="-108.1187">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M5.021,28.75c0.887-1.275,1.688-2.668,3.819-3.555,2.029-0.846,12.13-2.55,21.16-2.549,9.027-0.001,19.13,1.703,21.16,2.549,2.131,0.888,2.933,2.28,3.819,3.554,0.912,1.311,2.875,5.32,3.009,8.3,0.146-3.016-2.031-7.511-3.009-8.915-0.888-1.274-1.688-2.666-3.82-3.556-2.028-0.845-12.13-2.548-21.16-2.549-9.027,0.001-19.13,1.706-21.16,2.55-2.133,0.889-2.935,2.282-3.82,3.555-0.979,1.404-3.158,5.899-3.009,8.915,0.135-2.99,2.097-7,3.01-8.31z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="82.89" x2="42.85" y1="-73.09" y2="-113.1">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M5.021,28.75c0.887-1.275,1.688-2.668,3.819-3.555 c2.029-0.846,12.134-2.55,21.16-2.549c9.027-0.001,19.13,1.703,21.161,2.549c2.131,0.888,2.933,2.28,3.819,3.554 c0.912,1.311,2.875,5.32,3.009,8.3c0.146-3.016-2.031-7.511-3.009-8.915c-0.888-1.274-1.688-2.666-3.82-3.556 c-2.028-0.845-12.134-2.548-21.158-2.549c-9.027,0.001-19.133,1.706-21.16,2.55c-2.133,0.889-2.935,2.282-3.82,3.555 c-0.979,1.404-3.158,5.899-3.009,8.915C2.146,34.068,4.108,30.06,5.021,28.75z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="82.8936" x2="42.849" y1="-73.0874" y2="-113.132">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M17.88,35.42c0.413-0.078,0.579-0.318,0.603-0.895,0.027-0.721,0.29-3.172,0.431-3.764,0.124-0.521,0.342-0.805,0.941-0.98,0.75-0.22,3.188-1.037,10.14-1.038,6.954,0,9.393,0.807,10.14,1.038,0.651,0.201,0.777,0.389,0.941,0.98,0.162,0.586,0.402,3.043,0.431,3.764,0.024,0.576,0.16,0.82,0.577,0.883,0.731,0.113,13.29,2.238,14.6,2.502,0.794,0.16,1.237,0.045,1.292-0.705,0.027-0.354,0.018-0.73-0.017-1.119-0.094,0.643-0.526,0.748-1.276,0.594-1.311-0.262-13.87-2.385-14.6-2.5-0.418-0.064-0.553-0.307-0.576-0.883-0.029-0.719-0.27-3.177-0.433-3.765-0.163-0.59-0.287-0.777-0.941-0.979-0.746-0.229-3.188-1.039-10.14-1.037-6.954,0-9.393,0.817-10.14,1.037-0.599,0.176-0.816,0.459-0.94,0.981-0.141,0.59-0.403,3.042-0.433,3.763-0.022,0.576-0.189,0.816-0.603,0.893-0.7,0.15-13.25,2.24-14.56,2.51-0.751,0.15-1.183,0.049-1.275-0.596-0.036,0.389-0.044,0.766-0.018,1.119,0.058,0.748,0.5,0.861,1.292,0.703,1.312-0.26,13.86-2.35,14.57-2.48z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2702.5007 1379.2039)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1353" x2="-1353" y1="2757" y2="2708">
-<stop offset="0" stop-color="#885F4A"/>
-<stop offset="0.5" stop-color="#4F2430"/>
-<stop offset="1" stop-color="#885F4A"/>
+<path d="M17.884,35.418c0.413-0.078,0.579-0.318,0.603-0.895 c0.027-0.721,0.29-3.172,0.431-3.764c0.124-0.521,0.342-0.805,0.941-0.98c0.75-0.22,3.188-1.037,10.143-1.038 c6.954,0,9.393,0.807,10.141,1.038c0.651,0.201,0.777,0.389,0.941,0.98c0.162,0.586,0.402,3.043,0.431,3.764 c0.024,0.576,0.16,0.82,0.577,0.883c0.731,0.113,13.291,2.238,14.601,2.502c0.794,0.16,1.237,0.045,1.292-0.705 c0.027-0.354,0.018-0.73-0.017-1.119c-0.094,0.643-0.526,0.748-1.276,0.594c-1.311-0.262-13.869-2.385-14.6-2.5 c-0.418-0.064-0.553-0.307-0.576-0.883c-0.029-0.719-0.27-3.177-0.433-3.765c-0.163-0.59-0.287-0.777-0.941-0.979 c-0.746-0.229-3.188-1.039-10.14-1.037c-6.954,0-9.393,0.817-10.143,1.037c-0.599,0.176-0.816,0.459-0.94,0.981 c-0.141,0.59-0.403,3.042-0.433,3.763c-0.022,0.576-0.189,0.816-0.603,0.893C17.168,34.32,4.62,36.414,3.309,36.68 c-0.751,0.15-1.183,0.049-1.275-0.596c-0.036,0.389-0.044,0.766-0.018,1.119c0.058,0.748,0.5,0.861,1.292,0.703 C4.62,37.645,17.169,35.549,17.884,35.418z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0 1 1 0 -2702.5007 1379.2039)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1353.1973" x2="-1353.1973" y1="2756.7813" y2="2707.613">
+<stop offset="0" style="stop-color:#885F4A"/>
+<stop offset="0.5" style="stop-color:#4F2430"/>
+<stop offset="1" style="stop-color:#885F4A"/>
</linearGradient>
-<path d="M6.355,27.33c2.275-0.843,14.1-2.529,23.65-2.53,9.552,0,21.37,1.687,23.65,2.53,0.431,0.161,0.804,0.343,1.144,0.531-0.233-0.341-0.472-0.685-0.733-1.024-0.069-0.028-0.127-0.056-0.196-0.082-2.309-0.856-14.24-2.568-23.86-2.568-9.616,0-21.55,1.71-23.86,2.566-0.07,0.028-0.128,0.058-0.198,0.085-0.26,0.339-0.5,0.685-0.733,1.023,0.345-0.19,0.715-0.37,1.146-0.53z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6.355,27.326c2.275-0.843,14.095-2.529,23.646-2.53 c9.552,0,21.371,1.687,23.646,2.53c0.431,0.161,0.804,0.343,1.144,0.531c-0.233-0.341-0.472-0.685-0.733-1.024 c-0.069-0.028-0.127-0.056-0.196-0.082c-2.309-0.856-14.245-2.568-23.858-2.568c-9.616,0-21.553,1.71-23.862,2.566 c-0.07,0.028-0.128,0.058-0.198,0.085c-0.26,0.339-0.5,0.685-0.733,1.023C5.554,27.667,5.924,27.487,6.355,27.326z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+</g>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
<stop offset="0" stop-color="#898A8B"/>
@@ -129,4 +133,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_waiting.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_call_waiting.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="0.7939" stop-color="#C2A673"/>
-<stop offset="1" stop-color="#C2A673"/>
+<g>
+<radialGradient cx="-1627.3691" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="0.7939" style="stop-color:#C2A673"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.259-1.333-0.616-0.665-2.566-3.083-2.968-3.735-0.353-0.575-0.411-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.084-7.646,9.955-8.107,0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.523-1.778-2.477-2.889-8.594-5.015-10.75-5.399-1.924-0.345-3.877-0.872-6.568,0.235-2.559,1.054-13.07,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.107,2.691-0.58,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333c-0.616-0.665-2.566-3.083-2.968-3.735 c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.084-7.646,9.955-8.107 c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778c-2.477-2.889-8.594-5.015-10.75-5.399 c-1.924-0.345-3.877-0.872-6.568,0.235c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352 c-1.107,2.691-0.58,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3418" x2="-1638.9102" y1="-2494.9819" y2="-2491.4063">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.035,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.738,2.119-1.514-0.252-0.204-3.469-2.809-4.801-2.956-2.43-0.26-4.12,1.25-4.12,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M35.172,17.108c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.035,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.738,2.119-1.514 c-0.252-0.204-3.469-2.809-4.801-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3462" x2="-1638.9143" y1="4063.0557" y2="4066.6326">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.347,1.039,0.034,1.713,0.376,0.666,2.352,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.297-0.034,0.048-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.119-0.203-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.41" x2="4.083" y1="3.447" y2="47.77">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M17.093,35.188c-0.401,0.763-0.347,1.039,0.034,1.713c0.376,0.666,2.352,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.297c-0.034,0.048-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.203-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.093,35.188,17.093,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4072" x2="4.0833" y1="3.4473" y2="47.7712">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M2.979,47.47c-0.345-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.924-0.345-3.877-0.872-6.568,0.235-2.559,1.054-13.07,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.107,2.691-0.58,4.645-0.236,6.567,0.379,2.122,2.441,8.065,5.259,10.62-2.536-2.78-4.358-8.09-4.712-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9" x2="3.473" y1="3.654" y2="54.08">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9023" x2="3.4732" y1="3.6543" y2="54.0835">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.259-1.333-0.616-0.665-2.566-3.083-2.968-3.735-0.353-0.575-0.411-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.084-7.646,9.955-8.107,0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.523-1.778-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.657,0.197,1.134-0.607,1.666-1.4,0.933-14.48,10.22-15.23,10.78-0.43,0.314-0.768,0.219-1.299-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.949-0.436-1.711-0.034-0.869,0.46-3.763,1.914-9.954,8.106-6.193,6.192-7.636,9.092-8.108,9.956-0.378,0.69-0.319,1.135,0.036,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.492,0.533,0.559,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.665,0.606,0.314,0.378,0.643,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.927-1.42,10.24-14.46,10.76-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#9B7956"/>
-<stop offset="0.5" stop-color="#64352E"/>
-<stop offset="1" stop-color="#9B7956"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1610.521" x2="-1610.521" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#9B7956"/>
+<stop offset="0.5" style="stop-color:#64352E"/>
+<stop offset="1" style="stop-color:#9B7956"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.506-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.66,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.251,0.07,0.534,0.165,1.054,0.259,1.564,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
<stop offset="0" stop-color="#898A8B"/>
@@ -129,4 +131,4 @@
<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_capture.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_capture.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,147 +1,149 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30,22.4,30,12.47,30,0,0,0,0,30"/>
-<path d="M2.609,27.52c-1.533,0-2.604-1.071-2.604-2.604l-0.005-14.49c0-4.383,3.566-7.949,7.951-7.949,4.386,0.002,7.953,3.571,7.951,7.956v0.398c0.064-0.008,0.13-0.012,0.195-0.012h12.26c0.904,0,1.641,0.736,1.641,1.642v9.936c0,0.905-0.736,1.642-1.641,1.642h-12.26c-0.067,0-0.135-0.005-0.2-0.013l-0.001,0.882c0,1.386-1.217,2.604-2.604,2.604h-10.69z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="7.951" x2="7.951" y1="3.321" y2="26.41">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
-</linearGradient>
-<path d="M14.9,10.44c0.002-3.84-3.109-6.953-6.949-6.955-3.838-0.004-6.951,3.109-6.951,6.945,0,0.088,0.006,14.48,0.006,14.48,0,0.936,0.588,1.604,1.604,1.604h10.68c0.842,0,1.604-0.788,1.604-1.604,0.01,0,0.01-14.39,0.01-14.47z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="7.951" x2="7.951" y1="3.646" y2="26.09">
-<stop offset="0" stop-color="#D2D3D2"/>
-<stop offset="0.1212" stop-color="#D2D3D2"/>
-<stop offset="0.5091" stop-color="#B2B6B5"/>
-<stop offset="0.5091" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9758" stop-color="#AFB3B2"/>
-<stop offset="0.9758" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<polygon fill="none" points="30,22.402 30,12.467 30,0 0,0 0,30 30,30 "/>
+<path d="M2.609,27.517c-1.533,0-2.604-1.071-2.604-2.604L0,10.432c0-4.383,3.566-7.949,7.951-7.949 c4.386,0.002,7.953,3.571,7.951,7.956v0.398c0.064-0.008,0.13-0.012,0.195-0.012h12.262c0.904,0,1.641,0.736,1.641,1.642v9.936 c0,0.905-0.736,1.642-1.641,1.642H16.098c-0.067,0-0.135-0.005-0.2-0.013l-0.001,0.882c0,1.386-1.217,2.604-2.604,2.604H2.609z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="7.9512" x2="7.9512" y1="3.3208" y2="26.41">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M2.609,26.2c-0.803,0-1.283-0.479-1.283-1.283,0,0-0.006-14.39-0.006-14.48,0-3.654,2.975-6.629,6.631-6.629,3.658,0.002,6.633,2.979,6.631,6.635,0,0.087-0.006,14.48-0.006,14.48,0,0.648-0.637,1.283-1.283,1.283h-10.68z" fill="url(#SVGID_2__)"/>
-<path d="M13.99,10.71c-0.002,3.333-2.703,6.621-6.037,6.619-3.332-0.001-6.033-3.291-6.033-6.622,0.002-3.334,2.705-6.032,6.037-6.032,3.333-0.002,6.033,2.7,6.033,6.032z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="7.951" x2="7.951" y1="4.412" y2="16.5">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<path d="M14.902,10.438c0.002-3.84-3.109-6.953-6.949-6.955C4.113,3.481,1,6.594,1,10.432 c0,0.088,0.006,14.48,0.006,14.48c0,0.936,0.588,1.604,1.604,1.604h10.684c0.842,0,1.604-0.788,1.604-1.604 C14.896,24.912,14.902,10.524,14.902,10.438z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="7.9512" x2="7.9512" y1="3.646" y2="26.0921">
+<stop offset="0" style="stop-color:#D2D3D2"/>
+<stop offset="0.1212" style="stop-color:#D2D3D2"/>
+<stop offset="0.5091" style="stop-color:#B2B6B5"/>
+<stop offset="0.5091" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9758" style="stop-color:#AFB3B2"/>
+<stop offset="0.9758" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<circle cx="7.951" cy="10.46" fill="url(#SVGID_3__)" r="6.012"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="7.951" x2="7.951" y1="4.674" y2="16.12">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<path d="M2.609,26.195c-0.803,0-1.283-0.479-1.283-1.283c0,0-0.006-14.393-0.006-14.48 c0-3.654,2.975-6.629,6.631-6.629c3.658,0.002,6.633,2.979,6.631,6.635c0,0.087-0.006,14.475-0.006,14.475 c0,0.648-0.637,1.283-1.283,1.283H2.609z" fill="url(#SVGID_2__)"/>
+<path d="M13.986,10.71c-0.002,3.333-2.703,6.621-6.037,6.619c-3.332-0.001-6.033-3.291-6.033-6.622 c0.002-3.334,2.705-6.032,6.037-6.032C11.287,4.676,13.986,7.378,13.986,10.71z" fill="#222021" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="7.9512" x2="7.9512" y1="4.4121" y2="16.5024">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<circle cx="7.951" cy="10.46" fill="url(#SVGID_4__)" r="5.711"/>
-<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.83)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5.46" x2="12.05" y1="7.998" y2="14.59">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<circle cx="7.951" cy="10.464" fill="url(#SVGID_3__)" r="6.012"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="7.9512" x2="7.9512" y1="4.6738" y2="16.122">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<circle cx="7.952" cy="10.46" fill="url(#SVGID_5_)" r="4.659"/>
-<radialGradient cx="148.7" cy="-52.04" gradientTransform="matrix(0.9568 3.000000e-004 -3.000000e-004 0.9568 -133.8237 60.5787)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="5.228">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
-</radialGradient>
-<circle cx="7.952" cy="10.46" fill="url(#SVGID_6_)" r="4.358"/>
-<radialGradient cx="145.8" cy="-41.33" gradientTransform="matrix(0.9651 0 0 0.965 -134.7423 47.3895)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.328">
-<stop offset="0" stop-color="#242424"/>
-<stop offset="0.4303" stop-color="#242424"/>
-<stop offset="0.7818" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
-</radialGradient>
-<circle cx="7.951" cy="10.46" fill="url(#SVGID_7_)" r="3.607"/>
-<radialGradient cx="146.1" cy="-80.75" gradientTransform="matrix(0.9448 3.000000e-004 -3.000000e-004 0.9449 -131.0246 81.9801)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="9.135">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
-</radialGradient>
-<circle cx="7.951" cy="10.46" fill="url(#SVGID_8_)" r="3.156"/>
-<radialGradient cx="147.1" cy="-162.4" gradientTransform="matrix(0.9448 3.000000e-004 -3.000000e-004 0.8996 -131.0251 159.1253)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="3.709">
-<stop offset="0" stop-color="#264932"/>
-<stop offset="0.7879" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
-</radialGradient>
-<path d="M11.11,10.58c-0.001,1.659-1.414,3.005-3.156,3.004s-3.156-1.348-3.156-3.006,1.082,1.833,3.156,1.833c2.066,0.01,3.156-1.82,3.156-1.82z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="7.935" x2="7.935" y1="6.584" y2="10.43">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<circle cx="7.951" cy="10.465" fill="url(#SVGID_4__)" r="5.711"/>
+<linearGradient gradientTransform="matrix(1 3.000000e-004 -3.000000e-004 1 -0.7997 -0.83)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5.46" x2="12.0483" y1="7.9976" y2="14.5859">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M7.936,10.42c1.398,0,2.717-0.213,3.879-0.586-0.33-1.846-1.939-3.246-3.879-3.246s-3.549,1.4-3.881,3.245c1.159,0.367,2.477,0.587,3.876,0.587z" fill="url(#SVGID_10_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="22.23" x2="22.23" y1="11.75" y2="22.99">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
-</linearGradient>
-<path d="M29,22.4c0,0.354-0.287,0.642-0.641,0.642h-12.26c-0.354,0-0.641-0.288-0.641-0.642v-9.936c0-0.354,0.287-0.642,0.641-0.642h12.26c0.354,0,0.641,0.288,0.641,0.642v9.942z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="22.23" x2="22.23" y1="12.07" y2="22.68">
-<stop offset="0" stop-color="#D2D3D2"/>
-<stop offset="0.1212" stop-color="#D2D3D2"/>
-<stop offset="0.5091" stop-color="#B2B6B5"/>
-<stop offset="0.5091" stop-color="#A2A5A5"/>
-<stop offset="0.6606" stop-color="#808485"/>
-<stop offset="0.9758" stop-color="#AFB3B2"/>
-<stop offset="0.9758" stop-color="#5B5B5D"/>
-<stop offset="1" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<circle cx="7.952" cy="10.464" fill="url(#SVGID_5_)" r="4.659"/>
+<radialGradient cx="148.6523" cy="-52.0352" gradientTransform="matrix(0.9568 3.000000e-004 -3.000000e-004 0.9568 -133.8237 60.5787)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="5.2276">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
+</radialGradient>
+<circle cx="7.952" cy="10.464" fill="url(#SVGID_6_)" r="4.358"/>
+<radialGradient cx="145.7949" cy="-41.3301" gradientTransform="matrix(0.9651 0 0 0.965 -134.7423 47.3895)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.3282">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
+</radialGradient>
+<circle cx="7.951" cy="10.464" fill="url(#SVGID_7_)" r="3.607"/>
+<radialGradient cx="146.1094" cy="-80.7524" gradientTransform="matrix(0.9448 3.000000e-004 -3.000000e-004 0.9449 -131.0246 81.9801)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="9.1349">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
+</radialGradient>
+<circle cx="7.951" cy="10.464" fill="url(#SVGID_8_)" r="3.156"/>
+<radialGradient cx="147.0527" cy="-162.396" gradientTransform="matrix(0.9448 3.000000e-004 -3.000000e-004 0.8996 -131.0251 159.1253)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="3.709">
+<stop offset="0" style="stop-color:#264932"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
+</radialGradient>
+<path d="M11.107,10.575c-0.001,1.659-1.414,3.005-3.156,3.004s-3.156-1.348-3.156-3.006 c0,0,1.082,1.833,3.156,1.833C10.025,12.407,11.107,10.575,11.107,10.575z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="7.9346" x2="7.9346" y1="6.584" y2="10.4348">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M16.1,22.72c-0.178,0-0.32-0.145-0.32-0.322v-9.936c0-0.178,0.143-0.322,0.32-0.322h12.26c0.176,0,0.32,0.145,0.32,0.322v9.936c0,0.178-0.145,0.322-0.32,0.322h-12.26z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="14.91" x2="13.67" y1="17.43" y2="17.43">
-<stop offset="0" stop-color="#D3D4D4"/>
-<stop offset="1" stop-color="#EDEDED"/>
+<path d="M7.936,10.416c1.398,0,2.717-0.213,3.879-0.586c-0.33-1.846-1.939-3.246-3.879-3.246 s-3.549,1.4-3.881,3.245C5.219,10.203,6.537,10.416,7.936,10.416z" fill="url(#SVGID_10_)" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="22.2285" x2="22.2285" y1="11.7466" y2="22.9921">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M14.9,13.79h-1.279v7.293h1.275v-7.29z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="14.91" x2="13.98" y1="17.43" y2="17.43">
-<stop offset="0" stop-color="#5F5F5F"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M29,22.402c0,0.354-0.287,0.642-0.641,0.642H16.098c-0.354,0-0.641-0.288-0.641-0.642v-9.936 c0-0.354,0.287-0.642,0.641-0.642h12.262c0.354,0,0.641,0.288,0.641,0.642V22.402z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="22.2285" x2="22.2285" y1="12.0703" y2="22.6757">
+<stop offset="0" style="stop-color:#D2D3D2"/>
+<stop offset="0.1212" style="stop-color:#D2D3D2"/>
+<stop offset="0.5091" style="stop-color:#B2B6B5"/>
+<stop offset="0.5091" style="stop-color:#A2A5A5"/>
+<stop offset="0.6606" style="stop-color:#808485"/>
+<stop offset="0.9758" style="stop-color:#AFB3B2"/>
+<stop offset="0.9758" style="stop-color:#5B5B5D"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="6.651" width="0.961" x="13.94" y="14.11"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.49" x2="14.3" y1="17.43" y2="17.43">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<path d="M16.098,22.725c-0.178,0-0.32-0.145-0.32-0.322v-9.936c0-0.178,0.143-0.322,0.32-0.322h12.262 c0.176,0,0.32,0.145,0.32,0.322v9.936c0,0.178-0.145,0.322-0.32,0.322H16.098z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="14.9092" x2="13.6655" y1="17.4346" y2="17.4346">
+<stop offset="0" style="stop-color:#D3D4D4"/>
+<stop offset="1" style="stop-color:#EDEDED"/>
+</linearGradient>
+<path d="M14.9,13.788h-1.279v7.293h1.275C14.898,18.812,14.9,15.968,14.9,13.788z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="14.9092" x2="13.975" y1="17.4341" y2="17.4341">
+<stop offset="0" style="stop-color:#5F5F5F"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="6.01" width="1.221" x="14.26" y="14.43"/>
-<rect fill-opacity="0.25" height="6.01" stroke-opacity="0.25" width="0.346" x="15.14" y="14.43"/>
+<rect fill="url(#SVGID_14_)" height="6.651" width="0.961" x="13.941" y="14.108"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="15.4912" x2="14.3045" y1="17.4346" y2="17.4346">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
+</linearGradient>
+<rect fill="url(#SVGID_15_)" height="6.01" width="1.221" x="14.262" y="14.43"/>
+<rect fill-opacity="0.25" height="6.01" stroke-opacity="0.25" width="0.346" x="15.137" y="14.43"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_collection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_collection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,66 +1,68 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M56.66,4.616h-47.42c-0.738,0-1.336,0.598-1.336,1.337v9.357h42.86c0.734,0,1.334,0.598,1.334,1.336v28.04h4.568c0.738,0,1.336-0.598,1.336-1.336v-37.4c0-0.736-0.6-1.334-1.34-1.334z" fill="#F1F2F2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="32.95" x2="32.95" y1="44.69" y2="4.617">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<g>
+<path d="M56.662,4.616H9.241c-0.738,0-1.336,0.598-1.336,1.337v9.357H50.76c0.734,0,1.334,0.598,1.334,1.336v28.043 h4.568c0.738,0,1.336-0.598,1.336-1.336v-37.4C57.998,5.214,57.4,4.616,56.662,4.616z" fill="#F1F2F2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="32.9512" x2="32.9512" y1="44.6895" y2="4.6167">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.66,4.616h-47.42c-0.738,0-1.336,0.598-1.336,1.337v9.357h42.86c0.734,0,1.334,0.598,1.334,1.336v23.7c0.117-0.192,0.32-0.329,0.561-0.329h2.672c0.367,0,0.668,0.302,0.668,0.668v1.336c0,0.367-0.301,0.668-0.668,0.668h-2.672c-0.24,0-0.443-0.136-0.561-0.329v2.333h4.568c0.738,0,1.336-0.598,1.336-1.336v-37.4c0-0.746-0.6-1.344-1.34-1.344zm-42.74,4.007c0,0.368-0.3,0.668-0.667,0.668h-2.671c-0.368,0-0.667-0.3-0.667-0.668v-1.336c0-0.367,0.3-0.668,0.667-0.668h2.671c0.366,0,0.667,0.301,0.667,0.668v1.336zm6.01,0c0,0.368-0.301,0.668-0.669,0.668h-2.67c-0.366,0-0.668-0.3-0.668-0.668v-1.336c0-0.367,0.299-0.668,0.668-0.668h2.67c0.368,0,0.669,0.301,0.669,0.668v1.336zm6.01,0c0,0.368-0.302,0.668-0.67,0.668h-2.67c-0.369,0-0.668-0.3-0.668-0.668v-1.336c0-0.367,0.3-0.668,0.668-0.668h2.67c0.368,0,0.67,0.301,0.67,0.668v1.336zm6.01,0c0,0.368-0.303,0.668-0.67,0.668h-2.67c-0.369,0-0.668-0.3-0.668-0.668v-1.336c0-0.367,0.299-0.668,0.668-0.668h2.67c0.365,0,0.67,0.301,0.67,0.668v1.336zm6.01,0c0,0.368-0.301,0.668-0.668,0.668h-2.672c-0.367,0-0.666-0.3-0.666-0.668v-1.336c0-0.367,0.299-0.668,0.666-0.668h2.672c0.367,0,0.668,0.301,0.668,0.668v1.336zm6.01,0c0,0.368-0.301,0.668-0.67,0.668h-2.67c-0.369,0-0.668-0.3-0.668-0.668v-1.336c0-0.367,0.299-0.668,0.668-0.668h2.67c0.369,0,0.67,0.301,0.67,0.668v1.336zm6.01,0c0,0.368-0.299,0.668-0.666,0.668h-2.672c-0.367,0-0.67-0.3-0.67-0.668v-1.336c0-0.367,0.301-0.668,0.67-0.668h2.672c0.365,0,0.666,0.301,0.666,0.668v1.336zm6.01,0c0,0.368-0.301,0.668-0.668,0.668h-2.672c-0.367,0-0.668-0.3-0.668-0.668v-1.336c0-0.367,0.301-0.668,0.668-0.668h2.672c0.367,0,0.668,0.301,0.668,0.668v1.336z" fill="url(#SVGID_1_)"/>
-<path d="M56.66,44.02h-4.66v0.668h4.662c0.738,0,1.336-0.598,1.336-1.336v-0.668c0,0.74-0.6,1.34-1.34,1.34z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="32.95" x2="32.95" y1="37.91" y2="11.19">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.662,4.616H9.241c-0.738,0-1.336,0.598-1.336,1.337v9.357H50.76c0.734,0,1.334,0.598,1.334,1.336 v23.696c0.117-0.192,0.32-0.329,0.561-0.329h2.672c0.367,0,0.668,0.302,0.668,0.668v1.336c0,0.367-0.301,0.668-0.668,0.668h-2.672 c-0.24,0-0.443-0.136-0.561-0.329v2.333h4.568c0.738,0,1.336-0.598,1.336-1.336v-37.4C57.998,5.214,57.4,4.616,56.662,4.616z M13.916,8.623c0,0.368-0.3,0.668-0.667,0.668h-2.671c-0.368,0-0.667-0.3-0.667-0.668V7.287c0-0.367,0.3-0.668,0.667-0.668h2.671 c0.366,0,0.667,0.301,0.667,0.668V8.623z M19.928,8.623c0,0.368-0.301,0.668-0.669,0.668h-2.67c-0.366,0-0.668-0.3-0.668-0.668 V7.287c0-0.367,0.299-0.668,0.668-0.668h2.67c0.368,0,0.669,0.301,0.669,0.668V8.623z M25.941,8.623c0,0.368-0.302,0.668-0.67,0.668 h-2.67c-0.369,0-0.668-0.3-0.668-0.668V7.287c0-0.367,0.3-0.668,0.668-0.668h2.67c0.368,0,0.67,0.301,0.67,0.668V8.623z M31.951,8.623c0,0.368-0.303,0.668-0.67,0.668h-2.67c-0.369,0-0.668-0.3-0.668-0.668V7.287c0-0.367,0.299-0.668,0.668-0.668h2.67 c0.365,0,0.67,0.301,0.67,0.668V8.623z M37.961,8.623c0,0.368-0.301,0.668-0.668,0.668h-2.672c-0.367,0-0.666-0.3-0.666-0.668V7.287 c0-0.367,0.299-0.668,0.666-0.668h2.672c0.367,0,0.668,0.301,0.668,0.668V8.623z M43.973,8.623c0,0.368-0.301,0.668-0.67,0.668 h-2.67c-0.369,0-0.668-0.3-0.668-0.668V7.287c0-0.367,0.299-0.668,0.668-0.668h2.67c0.369,0,0.67,0.301,0.67,0.668V8.623z M49.982,8.623c0,0.368-0.299,0.668-0.666,0.668h-2.672c-0.367,0-0.67-0.3-0.67-0.668V7.287c0-0.367,0.301-0.668,0.67-0.668h2.672 c0.365,0,0.666,0.301,0.666,0.668V8.623z M55.994,8.623c0,0.368-0.301,0.668-0.668,0.668h-2.672c-0.367,0-0.668-0.3-0.668-0.668 V7.287c0-0.367,0.301-0.668,0.668-0.668h2.672c0.367,0,0.668,0.301,0.668,0.668V8.623z" fill="url(#SVGID_1_)"/>
+<path d="M56.662,44.021H52v0.668h4.662c0.738,0,1.336-0.598,1.336-1.336 v-0.668C57.998,43.425,57.4,44.021,56.662,44.021z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="32.9531" x2="32.9531" y1="37.9053" y2="11.1899">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M7.906,11.3v4.015h42.85c0.734,0,1.334,0.598,1.334,1.336v21.36h5.91v-26.72h-50.09z" fill="url(#SVGID_2_)"/>
-<path d="M56.66,4.616h-47.42c-0.738,0-1.336,0.598-1.336,1.337v0.667c0-0.737,0.598-1.336,1.336-1.336h47.42c0.738,0,1.336,0.599,1.336,1.336v-0.667c0-0.739-0.6-1.337-1.34-1.337z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="32.95" x2="32.95" y1="11.3" y2="38.01">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M7.906,11.296v4.015H50.76c0.734,0,1.334,0.598,1.334,1.336v21.365H58V11.296H7.906z" fill="url(#SVGID_2_)"/>
+<path d="M56.662,4.616H9.241c-0.738,0-1.336,0.598-1.336,1.337V6.62 c0-0.737,0.598-1.336,1.336-1.336h47.421c0.738,0,1.336,0.599,1.336,1.336V5.953C57.998,5.214,57.4,4.616,56.662,4.616z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="32.9521" x2="32.9521" y1="11.2959" y2="38.0122">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M54.66,11.3h-43.41c-0.736,0-1.335,0.601-1.335,1.335v2.68h40.85c0.734,0,1.334,0.598,1.334,1.336v21.36h2.564c0.736,0,1.336-0.602,1.336-1.337v-24.05c0-0.731-0.59-1.331-1.33-1.331z" fill="url(#SVGID_3_)"/>
-<path d="M55.93,36.34c0.039-0.087,0.066-0.189,0.066-0.327-0.01,0.11-0.04,0.22-0.07,0.33z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M54.66,36.68h-2.564v0.669h2.564c0.619,0,1.119-0.436,1.27-1.009-0.17,0.37-0.67,0.34-1.27,0.34z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="32.95" x2="32.95" y1="38.01" y2="11.19">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M54.658,11.296H11.246c-0.736,0-1.335,0.601-1.335,1.335v2.68h40.85c0.734,0,1.334,0.598,1.334,1.336 v21.365h2.564c0.736,0,1.336-0.602,1.336-1.337V12.631C55.994,11.896,55.395,11.296,54.658,11.296z" fill="url(#SVGID_3_)"/>
+<path d="M55.928,36.335c0.039-0.087,0.066-0.189,0.066-0.327 C55.994,36.124,55.957,36.228,55.928,36.335z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M54.658,36.675h-2.564v0.669h2.564 c0.619,0,1.119-0.436,1.27-1.009C55.758,36.712,55.256,36.675,54.658,36.675z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="32.9521" x2="32.9521" y1="38.0117" y2="11.1903">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.66,11.3h-43.41c-0.736,0-1.335,0.601-1.335,1.335v2.68h0.667v-2.68c0-0.367,0.299-0.668,0.668-0.668h43.41c0.367,0,0.668,0.3,0.668,0.668v24.04c0,0.369-0.301,0.669-0.668,0.669h-2.564v0.668h2.564c0.736,0,1.336-0.602,1.336-1.337v-24.05c-0.01-0.731-0.6-1.331-1.34-1.331z" fill="url(#SVGID_4_)"/>
-<path d="M53.32,12.63h-40.74c-0.74,0-1.336,0.598-1.336,1.336v1.344h39.51c0.734,0,1.334,0.598,1.334,1.336v2.861l2.564-0.197v-5.344c0.01-0.74-0.59-1.34-1.33-1.34z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M50.76,13.98h-42.85v1.336h42.85c0.734,0,1.334,0.598,1.334,1.336v28.03h1.336v-28.04c0-1.476-1.2-2.666-2.67-2.666z" fill-opacity="0.15" stroke-opacity="0.15"/>
-<path d="M50.76,14.64h-42.85v0.668h42.85c0.734,0,1.334,0.598,1.334,1.336v28.04h0.668v-28.04c0-1.106-0.9-2.006-2-2.006z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M50.76,15.31h-47.42c-0.74,0-1.337,0.6-1.337,1.34v37.4c0,0.737,0.597,1.334,1.337,1.334h47.42c0.738,0,1.338-0.597,1.338-1.334v-37.4c-0.01-0.736-0.61-1.336-1.34-1.336z" fill="#F1F2F2"/>
-<path d="M50.98,54.16h-48.09v-4.675h48.09v4.68zm0-33.4h-48.09v-4.67h48.09v4.675z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2167" x2="-2167" y1="2150" y2="2110">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<path d="M54.658,11.296H11.246c-0.736,0-1.335,0.601-1.335,1.335v2.68h0.667v-2.68 c0-0.367,0.299-0.668,0.668-0.668h43.413c0.367,0,0.668,0.3,0.668,0.668v24.044c0,0.369-0.301,0.669-0.668,0.669h-2.564v0.668h2.564 c0.736,0,1.336-0.602,1.336-1.337V12.631C55.994,11.896,55.395,11.296,54.658,11.296z" fill="url(#SVGID_4_)"/>
+<path d="M53.322,12.631H12.582c-0.74,0-1.336,0.598-1.336,1.336v1.344 H50.76c0.734,0,1.334,0.598,1.334,1.336v2.861l2.564-0.197v-5.344C54.658,13.229,54.059,12.631,53.322,12.631z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M50.76,13.975H7.906v1.336H50.76c0.734,0,1.334,0.598,1.334,1.336V44.69h1.336 V16.646C53.43,15.172,52.232,13.975,50.76,13.975z" fill-opacity="0.15" stroke-opacity="0.15"/>
+<path d="M50.76,14.643H7.906v0.668H50.76c0.734,0,1.334,0.598,1.334,1.336v28.043h0.668 V16.646C52.762,15.541,51.863,14.643,50.76,14.643z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M50.76,15.311H3.337C2.597,15.311,2,15.908,2,16.646V54.05c0,0.737,0.597,1.334,1.337,1.334h47.419 c0.738,0,1.338-0.597,1.338-1.334V16.646C52.094,15.908,51.494,15.311,50.76,15.311z" fill="#F1F2F2"/>
+<path d="M50.98,54.16H2.892v-4.675H50.98V54.16z M50.98,20.765H2.892 V16.09H50.98V20.765z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-2166.9531" x2="-2166.9531" y1="2149.6895" y2="2109.6162">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M50.76,15.31h-47.42c-0.74,0-1.337,0.6-1.337,1.34v37.4c0,0.737,0.597,1.334,1.337,1.334h47.42c0.738,0,1.338-0.597,1.338-1.334v-37.4c-0.01-0.736-0.61-1.336-1.34-1.336zm-42.75,37.4c0,0.367-0.302,0.668-0.668,0.668h-2.672c-0.366,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.671c0.367,0,0.668,0.3,0.668,0.668v1.343zm0-33.39c0,0.368-0.302,0.669-0.668,0.669h-2.672c-0.366,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669h2.671c0.367,0,0.668,0.303,0.668,0.669v1.336zm6.008,33.39c0,0.367-0.301,0.668-0.667,0.668h-2.671c-0.367,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.671c0.366,0,0.667,0.3,0.667,0.668v1.343zm0-33.39c0,0.368-0.301,0.669-0.667,0.669h-2.671c-0.367,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669h2.671c0.366,0,0.667,0.303,0.667,0.669v1.336zm6.02,33.39c0,0.367-0.302,0.668-0.667,0.668h-2.671c-0.368,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.671c0.365,0,0.667,0.3,0.667,0.668v1.343zm0-33.39c0,0.368-0.302,0.669-0.667,0.669h-2.671c-0.368,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669h2.671c0.365,0,0.667,0.303,0.667,0.669v1.336zm6.01,33.39c0,0.367-0.301,0.668-0.671,0.668h-2.669c-0.367,0-0.667-0.3-0.667-0.668v-1.336c0-0.366,0.3-0.668,0.667-0.668h2.669c0.369,0,0.671,0.3,0.671,0.668v1.343zm0-33.39c0,0.368-0.301,0.669-0.671,0.669h-2.669c-0.367,0-0.667-0.301-0.667-0.669v-1.335c0-0.366,0.3-0.669,0.667-0.669h2.669c0.369,0,0.671,0.303,0.671,0.669v1.336zm6.01,33.39c0,0.367-0.303,0.668-0.669,0.668h-2.671c-0.365,0-0.666-0.3-0.666-0.668v-1.336c0-0.366,0.301-0.668,0.666-0.668h2.671c0.366,0,0.669,0.3,0.669,0.668v1.343zm0-33.39c0,0.368-0.303,0.669-0.669,0.669h-2.671c-0.365,0-0.666-0.301-0.666-0.669v-1.335c0-0.366,0.301-0.669,0.666-0.669h2.671c0.366,0,0.669,0.303,0.669,0.669v1.336zm6.01,33.39c0,0.367-0.299,0.668-0.666,0.668h-2.672c-0.367,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.67c0.367,0,0.666,0.3,0.666,0.668v1.343zm0-33.39c0,0.368-0.299,0.669-0.666,0.669h-2.672c-0.367,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669h2.67c0.367,0,0.666,0.303,0.666,0.669v1.336zm6.01,33.39c0,0.367-0.303,0.668-0.67,0.668h-2.67c-0.367,0-0.67-0.3-0.67-0.668v-1.336c0-0.366,0.301-0.668,0.67-0.668h2.67c0.367,0,0.67,0.3,0.67,0.668v1.343zm0-33.39c0,0.368-0.303,0.669-0.67,0.669h-2.67c-0.367,0-0.67-0.301-0.67-0.669v-1.335c0-0.366,0.301-0.669,0.67-0.669h2.67c0.367,0,0.67,0.303,0.67,0.669v1.336zm6.01,33.39c0,0.367-0.301,0.668-0.668,0.668h-2.67c-0.367,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.672c0.367,0,0.668,0.3,0.668,0.668v1.343zm0-33.39c0,0.368-0.301,0.669-0.668,0.669h-2.67c-0.367,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669h2.672c0.367,0,0.668,0.303,0.668,0.669v1.336z" fill="url(#SVGID_5_)"/>
-<path d="M50.76,15.31h-47.42c-0.74,0-1.337,0.6-1.337,1.34v0.667c0-0.737,0.597-1.335,1.337-1.335h47.42c0.738,0,1.338,0.598,1.338,1.335v-0.667c-0.01-0.74-0.61-1.34-1.34-1.34z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.337,55.38h47.42c0.738,0,1.338-0.597,1.338-1.334v-0.67c0,0.739-0.6,1.336-1.338,1.336h-47.42c-0.74,0-1.337-0.6-1.337-1.34v0.67c0.001,0.74,0.597,1.33,1.337,1.33z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2167" x2="-2167" y1="2143" y2="2116">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M50.76,15.311H3.337C2.597,15.311,2,15.908,2,16.646V54.05c0,0.737,0.597,1.334,1.337,1.334h47.419 c0.738,0,1.338-0.597,1.338-1.334V16.646C52.094,15.908,51.494,15.311,50.76,15.311z M8.012,52.713c0,0.367-0.302,0.668-0.668,0.668 H4.672c-0.366,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.671c0.367,0,0.668,0.3,0.668,0.668V52.713z M8.012,19.316c0,0.368-0.302,0.669-0.668,0.669H4.672c-0.366,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669 h2.671c0.367,0,0.668,0.303,0.668,0.669V19.316z M14.022,52.713c0,0.367-0.301,0.668-0.667,0.668h-2.671 c-0.367,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.671c0.366,0,0.667,0.3,0.667,0.668V52.713z M14.022,19.316c0,0.368-0.301,0.669-0.667,0.669h-2.671c-0.367,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669 h2.671c0.366,0,0.667,0.303,0.667,0.669V19.316z M20.035,52.713c0,0.367-0.302,0.668-0.667,0.668h-2.671 c-0.368,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.671c0.365,0,0.667,0.3,0.667,0.668V52.713z M20.035,19.316c0,0.368-0.302,0.669-0.667,0.669h-2.671c-0.368,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669 h2.671c0.365,0,0.667,0.303,0.667,0.669V19.316z M26.046,52.713c0,0.367-0.301,0.668-0.671,0.668h-2.669 c-0.367,0-0.667-0.3-0.667-0.668v-1.336c0-0.366,0.3-0.668,0.667-0.668h2.669c0.369,0,0.671,0.3,0.671,0.668V52.713z M26.046,19.316 c0,0.368-0.301,0.669-0.671,0.669h-2.669c-0.367,0-0.667-0.301-0.667-0.669v-1.335c0-0.366,0.3-0.669,0.667-0.669h2.669 c0.369,0,0.671,0.303,0.671,0.669V19.316z M32.057,52.713c0,0.367-0.303,0.668-0.669,0.668h-2.671c-0.365,0-0.666-0.3-0.666-0.668 v-1.336c0-0.366,0.301-0.668,0.666-0.668h2.671c0.366,0,0.669,0.3,0.669,0.668V52.713z M32.057,19.316 c0,0.368-0.303,0.669-0.669,0.669h-2.671c-0.365,0-0.666-0.301-0.666-0.669v-1.335c0-0.366,0.301-0.669,0.666-0.669h2.671 c0.366,0,0.669,0.303,0.669,0.669V19.316z M38.066,52.713c0,0.367-0.299,0.668-0.666,0.668h-2.672c-0.367,0-0.668-0.3-0.668-0.668 v-1.336c0-0.366,0.301-0.668,0.668-0.668H37.4c0.367,0,0.666,0.3,0.666,0.668V52.713z M38.066,19.316 c0,0.368-0.299,0.669-0.666,0.669h-2.672c-0.367,0-0.668-0.301-0.668-0.669v-1.335c0-0.366,0.301-0.669,0.668-0.669H37.4 c0.367,0,0.666,0.303,0.666,0.669V19.316z M44.08,52.713c0,0.367-0.303,0.668-0.67,0.668h-2.67c-0.367,0-0.67-0.3-0.67-0.668v-1.336 c0-0.366,0.301-0.668,0.67-0.668h2.67c0.367,0,0.67,0.3,0.67,0.668V52.713z M44.08,19.316c0,0.368-0.303,0.669-0.67,0.669h-2.67 c-0.367,0-0.67-0.301-0.67-0.669v-1.335c0-0.366,0.301-0.669,0.67-0.669h2.67c0.367,0,0.67,0.303,0.67,0.669V19.316z M50.09,52.713 c0,0.367-0.301,0.668-0.668,0.668H46.75c-0.367,0-0.668-0.3-0.668-0.668v-1.336c0-0.366,0.301-0.668,0.668-0.668h2.672 c0.367,0,0.668,0.3,0.668,0.668V52.713z M50.09,19.316c0,0.368-0.301,0.669-0.668,0.669H46.75c-0.367,0-0.668-0.301-0.668-0.669 v-1.335c0-0.366,0.301-0.669,0.668-0.669h2.672c0.367,0,0.668,0.303,0.668,0.669V19.316z" fill="url(#SVGID_5_)"/>
+<path d="M50.76,15.311H3.337C2.597,15.311,2,15.908,2,16.646v0.667 c0-0.737,0.597-1.335,1.337-1.335h47.419c0.738,0,1.338,0.598,1.338,1.335v-0.667C52.094,15.908,51.494,15.311,50.76,15.311z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.337,55.384h47.419c0.738,0,1.338-0.597,1.338-1.334v-0.67 c0,0.739-0.6,1.336-1.338,1.336H3.337C2.597,54.716,2,54.119,2,53.38v0.67C2.001,54.787,2.597,55.384,3.337,55.384z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2166.9526" x2="-2166.9526" y1="2142.9063" y2="2116.1904">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="26.72" width="50.09" x="2.001" y="21.99"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2167" x2="-2167" y1="2117" y2="2143">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<rect fill="url(#SVGID_6_)" height="26.716" width="50.093" x="2.001" y="21.988"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-2166.9531" x2="-2166.9531" y1="2117.3115" y2="2142.6904">
+<stop offset="0" style="stop-color:#98B060"/>
+<stop offset="0.8121" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#4E8146"/>
</linearGradient>
-<path d="M50.09,47.37c0,0.734-0.602,1.335-1.336,1.335h-43.41c-0.735,0-1.337-0.601-1.337-1.335v-24.04c0-0.735,0.602-1.337,1.337-1.337h43.41c0.734,0,1.336,0.602,1.336,1.337v24.04z" fill="url(#SVGID_7_)"/>
-<path d="M48.75,47.37h-43.41c-0.735,0-1.337,0.066-1.337-0.669,0,0.735,0.602,1.337,1.337,1.337h43.41c0.734,0,1.336-0.602,1.336-1.337,0,0.74-0.6,0.67-1.34,0.67z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2167" x2="-2167" y1="2143" y2="2116">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M50.09,47.369c0,0.734-0.602,1.335-1.336,1.335H5.341c-0.735,0-1.337-0.601-1.337-1.335V23.325 c0-0.735,0.602-1.337,1.337-1.337h43.413c0.734,0,1.336,0.602,1.336,1.337V47.369z" fill="url(#SVGID_7_)"/>
+<path d="M48.754,47.369H5.341c-0.735,0-1.337,0.066-1.337-0.669l0,0 c0,0.735,0.602,1.337,1.337,1.337h43.413c0.734,0,1.336-0.602,1.336-1.337l0,0C50.09,47.436,49.488,47.369,48.754,47.369z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2165)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-2166.9531" x2="-2166.9531" y1="2143.0117" y2="2116.1892">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M48.75,22.66c0.367,0,0.668,0.302,0.668,0.669v24.04c0,0.369-0.301,0.668-0.668,0.668h-43.41c-0.369,0-0.668-0.299-0.668-0.668v-24.04c0-0.369,0.3-0.669,0.668-0.669h43.41m-0.004-0.67h-43.41c-0.735,0-1.337,0.602-1.337,1.337v24.04c0,0.734,0.602,1.335,1.337,1.335h43.41c0.734,0,1.336-0.601,1.336-1.335v-24.04c0-0.735-0.6-1.335-1.34-1.335z" fill="url(#SVGID_8_)"/>
-<path d="M48.75,30v-5.343c0-0.736-0.598-1.336-1.338-1.336h-40.74c-0.737,0-1.334,0.6-1.334,1.336v8.683l43.41-3.34z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M48.754,22.656c0.367,0,0.668,0.302,0.668,0.669v24.044c0,0.369-0.301,0.668-0.668,0.668H5.341 c-0.369,0-0.668-0.299-0.668-0.668V23.325c0-0.369,0.3-0.669,0.668-0.669H48.754 M48.754,21.988H5.341 c-0.735,0-1.337,0.602-1.337,1.337v24.044c0,0.734,0.602,1.335,1.337,1.335h43.413c0.734,0,1.336-0.601,1.336-1.335V23.325 C50.09,22.59,49.488,21.988,48.754,21.988L48.754,21.988z" fill="url(#SVGID_8_)"/>
+<path d="M48.754,30.004v-5.343c0-0.736-0.598-1.336-1.338-1.336H6.675 c-0.737,0-1.334,0.6-1.334,1.336v8.683L48.754,30.004z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_dialled_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_dialled_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,151 +1,115 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<g>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2303.3008)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6116.3018" x2="6116.3018" y1="4610.5996" y2="4709.6021">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.15" style="stop-color:#7DC7BB"/>
+<stop offset="0.56" style="stop-color:#6292A3"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_1_)" points="47.517,26.58 26.813,5.055 5.899,26.58 17.177,26.58 17.177,51.16 36.474,51.16 36.474,26.58 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2303.3008)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6116.3955" x2="6116.3955" y1="4615.6016" y2="4661.0015">
+<stop offset="0" style="stop-color:#CAE8D4"/>
+<stop offset="0.42" style="stop-color:#CAE8D4"/>
+<stop offset="1" style="stop-color:#83B4B4"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<polygon fill="url(#SVGID_2_)" points="6.548,26.58 26.813,5.777 46.954,26.58 48.356,26.58 26.813,4.34 5.153,26.58 "/>
+<polygon fill="#659BA9" points="36.497,51.66 17.177,51.66 17.177,50.66 36.497,50.66 "/>
<rect fill="none" height="60" width="60"/>
-<polygon fill="none" points="30.15,0.436,15.61,0.436,15.19,0,14.76,0.436,0.152,0.436,0.152,15.44,0,15.59,0.152,15.59,0.152,30.44,30.15,30.44,30.15,15.59,30.3,15.59,30.15,15.45"/>
-<polygon fill-opacity="0.35" points="8.484,30.43,8.48,15.59,0.4,15.59,0,15.59,15.19,0,30.3,15.59,21.91,15.59,21.92,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2986" y2="2956">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="1" stop-color="#455188"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="27.44,14.59,15.18,1.861,2.814,14.59,9.48,14.59,9.484,29.14,20.91,29.14,20.91,14.59"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2176" x2="-2176" y1="2984" y2="2971">
-<stop offset="0" stop-color="#CAE8D4"/>
-<stop offset="0.4182" stop-color="#CAE8D4"/>
-<stop offset="1" stop-color="#83B4B4"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="3.195,14.59,15.18,2.286,27.11,14.59,27.93,14.59,15.18,1.436,2.37,14.59"/>
-<line fill="none" x1="9.484" x2="20.91" y1="29.14" y2="29.14"/>
-<polygon fill="#659BA9" points="20.91,29.44,9.484,29.43,9.484,28.84,20.91,28.84"/>
-<rect fill="none" height="30" width="30" x="0.152" y="0.436"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M22.379,24.469h-3.846v-0.341c4.922-1.536,8.297-6.068,8.297-11.278 c0-6.522-5.307-11.828-11.83-11.828c-6.522,0-11.828,5.306-11.828,11.828c0,5.212,3.376,9.745,8.301,11.279v0.34H7.66 c-1.588,0-2.879,1.281-2.879,2.893l0.005,0.148l0.007,0.06c0.006,0.042,0.014,0.121,0.027,0.47l0.042,0.939h20.323l0.048-1.235 c0.006-0.112,0.011-0.153,0.014-0.179c0.007-0.065,0.011-0.098,0.011-0.238C25.258,25.75,23.967,24.469,22.379,24.469z M24.279,27.361c0,0.103-0.008,0.052-0.023,0.326c-0.004,0.091-0.008,0.186-0.013,0.313h-0.002h-0.002H5.803H5.799 c-0.025-0.635-0.039-0.508-0.039-0.639v-0.035c0-1.037,0.85-1.879,1.9-1.879h4.791v-2.063C7.698,22.233,4.15,17.953,4.15,12.85 C4.15,6.867,9.021,2,15,2c5.982,0,10.851,4.866,10.851,10.85c0,5.103-3.546,9.381-8.296,10.534v2.063h4.824 c1.05,0,1.9,0.842,1.9,1.879V27.361z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="39.8613" x2="45.0998" y1="-6137.793" y2="-6137.793">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
-<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
+<rect fill="url(#SVGID_1__)" height="7.852" width="5.104" x="12.451" y="19.721"/>
+<path d="M12.451,24.66c0.818,0.199,1.672,0.314,2.553,0.314s1.73-0.115,2.553-0.314v-4.294 h-5.105v4.284V24.66z" fill="#020202" fill-opacity="0.2"/>
+<path d="M12.451,24.02c0.818,0.199,1.672,0.315,2.553,0.315s1.73-0.116,2.553-0.315v-4.293 h-5.105v4.287V24.02z" fill="#020202" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="42.4795" x2="42.4795" y1="-6116.1221" y2="-6137.8223">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#7F8384"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M15,23.7c-5.979,0-10.85-4.867-10.85-10.851C4.15,6.867,9.021,2,15,2 c5.982,0,10.851,4.866,10.851,10.85C25.851,18.834,20.98,23.7,15,23.7z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="42.4805" x2="42.4805" y1="-6116.7617" y2="-6137.1816">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#7F8384"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
-<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<circle cx="15" cy="12.851" fill="url(#SVGID_3_)" r="10.21"/>
+<path d="M15,21.99c-5.314,0-9.656-4.23-9.842-9.5c-0.006,0.115-0.01,0.23-0.01,0.349 c0,5.431,4.418,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.116-0.004-0.231-0.008-0.349c-0.179,5.27-4.52,9.5-9.84,9.5H15z" fill="#FFFFFF" fill-opacity="0.1"/>
+<path d="M23.301,12.41c0,4.703-3.714,9.346-8.299,9.345c-4.58-0.003-8.293-4.646-8.291-9.351 s3.717-8.516,8.296-8.516c4.571,0,8.292,3.814,8.292,8.516L23.301,12.41z" fill="#222021" fill-opacity="0.3"/>
+<path d="M15,21.07c-2.387-0.002-4.629-0.932-6.314-2.619C6.998,16.764,6.07,14.52,6.07,12.133 c0-4.923,4.01-8.929,8.936-8.929c2.387,0,4.633,0.931,6.318,2.618c1.688,1.688,2.617,3.934,2.615,6.318 c-0.003,4.924-4.012,8.93-8.936,8.93H14.99H15z" fill="#222021" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="42.4834" x2="42.4834" y1="-6117.8691" y2="-6134.4961">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<path d="M15,20.43c-2.215-0.002-4.297-0.863-5.862-2.432c-1.569-1.566-2.429-3.65-2.429-5.865 c0-4.574,3.723-8.293,8.297-8.293c2.217,0,4.299,0.863,5.865,2.432c1.566,1.567,2.43,3.65,2.428,5.867 c0,4.572-3.723,8.291-8.295,8.291H15z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.4805" x2="42.4805" y1="-6118.5146" y2="-6133.8677">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<path d="M15,4.473c4.229,0,7.658,3.43,7.658,7.658s-3.43,7.656-7.658,7.656c-4.227,0-7.656-3.428-7.656-7.656 S10.773,4.473,15,4.473z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.4795" x2="42.4795" y1="-6119.9209" y2="-6132.5972">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
-<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<path d="M15,18.51c-1.704-0.001-3.309-0.666-4.514-1.871c-1.203-1.205-1.867-2.807-1.867-4.512 c0-3.518,2.861-6.377,6.383-6.377c1.705,0,3.307,0.664,4.512,1.87c1.205,1.205,1.869,2.808,1.867,4.513 c0,3.51-2.859,6.37-6.379,6.37L15,18.51z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="-18.5371" cy="-6075.4541" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.4996">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-<stop offset="0" stop-color="#242424"/>
-<stop offset="0.4303" stop-color="#242424"/>
-<stop offset="0.7818" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M20.74,12.141c0,3.172-2.574,5.739-5.744,5.739c-3.176-0.001-5.742-2.573-5.74-5.745 c0-3.171,2.572-5.742,5.744-5.74c3.17-0.008,5.74,2.563,5.74,5.74V12.141z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-23.6514" cy="-6071.7656" gradientTransform="matrix(1.0143 0 0 -1.0141 36.3921 -6149.1094)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.3507">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
-<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<radialGradient cx="-20.3467" cy="-6068.7339" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-<stop offset="0" stop-color="#264932"/>
-<stop offset="0.7879" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0.004-2.328,1.891-4.211,4.214-4.211c2.329,0.003,4.21,1.889,4.21,4.211L19.211,12.131z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-19.1367" cy="-6078.4346" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.6115">
+<stop offset="0" style="stop-color:#264932"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0,0,1.443,2.568,4.214,2.568c2.769,0,4.21-2.57,4.21-2.57L19.211,12.131z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="42.4609" x2="42.4609" y1="-6121.2129" y2="-6126.2388">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M14.98,12.07c1.828,0,3.549-0.277,5.066-0.766 c-0.43-2.41-2.531-4.238-5.066-4.238c-2.531,0-4.633,1.83-5.064,4.238c1.514,0.49,3.234,0.771,5.064,0.771V12.07z" fill="url(#SVGID_11_)" fill-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="33.2402" x2="51.7598" y1="-6140.8701" y2="-6140.8701">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
-<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5.772,27.36c0.007,0.13,0.017,0.32,0.03,0.64h18.44c0.012-0.316,0.022-0.508,0.028-0.639h-18.5z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.241,28c0.025-0.635,0.038-0.508,0.038-0.639v-0.035c0-1.037-0.851-1.879-1.9-1.879H7.66 c-1.051,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.039,0.639h18.44H24.241z" fill="url(#SVGID_12_)"/>
+<path d="M5.879,26.7h18.292c-0.084-0.235-0.213-0.444-0.377-0.626H6.262 c-0.164,0.189-0.293,0.4-0.377,0.63L5.879,26.7z" fill="#FFFFFF" fill-opacity="0.2"/>
+<path d="M5.771,27.359C5.779,27.49,5.789,27.68,5.803,28h18.44 c0.012-0.316,0.021-0.508,0.027-0.639H5.77L5.771,27.359z" fill="#020202" fill-opacity="0.2"/>
+<path d="M6.256,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627H7.668 c-0.561,0.01-1.059,0.25-1.406,0.629L6.256,26.07z" fill="#FFFFFF" fill-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_download.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_download.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,53 +1,55 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="30.1,0,0.096,0,0.096,14.83,0,14.83,0.096,14.93,0.096,30,14.6,30,15.02,30.44,15.45,30,30.1,30,30.1,14.96,30.22,14.84,30.1,14.84"/>
-<polygon fill-opacity="0.35" points="0,14.83,3.596,14.83,3.625,14.86,8.375,14.86,8.375,0,21.73,0.001,21.73,14.84,30.22,14.84,15.02,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2985" y2="2957">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<polygon fill="none" points="30.096,0 0.096,0 0.096,14.833 0,14.833 0.096,14.933 0.096,30 14.601,30 15.021,30.438 15.447,30 30.096,30 30.096,14.963 30.215,14.841 30.096,14.841 "/>
+<polygon fill-opacity="0.35" points="0,14.833 3.596,14.828 3.625,14.859 8.375,14.859 8.375,0 21.73,0.001 21.73,14.843 30.215,14.841 15.021,30.438 " stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2176.5142" x2="-2176.5142" y1="2984.646" y2="2957.3247">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="2.846,15.86,15.02,28.58,27.4,15.84,20.73,15.84,20.73,1.292,9.375,1.291,9.375,15.86"/>
-<line fill="none" x1="20.73" x2="9.375" y1="1.297" y2="1.296"/>
-<polygon fill="#E4EACE" points="9.375,1,20.73,1.001,20.73,1.593,9.375,1.592"/>
-<polygon fill="#E4EACE" points="20.56,15.87,27.53,15.87,27,16.46,20.56,16.46"/>
-<polygon fill="#E4EACE" points="2.459,15.86,9.365,15.86,9.365,16.45,3.08,16.45"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2166" x2="-2188" y1="2963" y2="2963">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<polygon fill="url(#SVGID_1__)" points="2.846,15.859 15.025,28.575 27.398,15.845 20.732,15.843 20.727,1.292 9.375,1.291 9.375,15.859 "/>
+<line fill="none" x1="20.727" x2="9.375" y1="1.297" y2="1.296"/>
+<polygon fill="#E4EACE" points="9.375,1 20.729,1.001 20.727,1.593 9.375,1.592 "/>
+<polygon fill="#E4EACE" points="20.555,15.867 27.527,15.867 27,16.458 20.555,16.458 "/>
+<polygon fill="#E4EACE" points="2.459,15.859 9.365,15.859 9.365,16.451 3.08,16.451 "/>
+<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2165.6621" x2="-2187.9482" y1="2963.2173" y2="2963.2173">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="27.02,15.84,15.02,28.15,3.172,15.83,2.348,15.83,15.02,29,27.84,15.84"/>
+<polygon fill="url(#SVGID_2__)" points="27.016,15.844 15.025,28.15 3.172,15.829 2.348,15.83 15.025,29 27.842,15.844 "/>
<rect fill="none" height="30" width="30" x="0.096"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_missed_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_missed_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,151 +1,116 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2109.7646" x2="-2109.7646" y1="-1385.3232" y2="-1339.4194">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M32.684,33.764v-8.793h9.246L24.578,6.939L7.066,24.969h9.438v8.795 c0,14.865,12.367,19.297,24.27,19.297h5.67V39.97h-5.67C37.105,39.97,32.684,38.161,32.684,33.764z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -5687.4375)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="81.9756" x2="81.9756" y1="-5694.6797" y2="-5729.4688">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<polygon fill="url(#SVGID_2_)" points="24.578,8.98 39.961,24.969 41.926,24.969 24.578,6.939 7.066,24.969 9.043,24.969 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="39.5635" x2="39.5635" y1="7.2305" y2="42.0313">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M40.773,39.97L40.773,39.97c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67V39.97H40.773z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
-<polygon fill="none" points="15.05,0,14.63,0.439,0,0.439,0,30.44,30,30.44,30,0.439,15.48,0.439"/>
-<path d="M24.88,30.44c-10,0-15.74-4.635-15.74-12.72v-4.339h-7.087l13-13.38,12.88,13.38h-6.962v4.339c0,2.189,2.56,2.768,3.913,2.768h1v9.947h-0.996z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3014.6338)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2179" x2="-2179" y1="3012" y2="2984">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<path d="M19.97,17.72v-5.339h5.611l-10.53-10.94-10.63,10.94h5.73v5.339c0,9.024,7.509,11.72,14.74,11.72v-7.947c-2.23,0-4.92-1.1-4.92-3.77z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.713" y2="22.59">
-<stop offset="0" stop-color="#CDB48B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="15.05,2.438,24.62,12.38,25.58,12.38,15.05,1.438,4.418,12.38,5.389,12.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="22.43" x2="22.43" y1="1.713" y2="22.59">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<path d="M19.97,17.72v1c0,2.668,2.688,3.768,4.913,3.768v-1c-2.22,0-4.91-1.1-4.91-3.77z" fill="url(#SVGID_3__)"/>
-<rect fill="none" height="30" width="30" y="0.439"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M22.379,24.469h-3.846v-0.341c4.922-1.536,8.297-6.068,8.297-11.278 c0-6.522-5.307-11.828-11.83-11.828c-6.522,0-11.828,5.306-11.828,11.828c0,5.212,3.376,9.745,8.301,11.279v0.34H7.66 c-1.588,0-2.879,1.281-2.879,2.893l0.005,0.148l0.007,0.06c0.006,0.042,0.014,0.121,0.027,0.47l0.042,0.939h20.323l0.048-1.235 c0.006-0.112,0.011-0.153,0.014-0.179c0.007-0.065,0.011-0.098,0.011-0.238C25.258,25.75,23.967,24.469,22.379,24.469z M24.279,27.361c0,0.103-0.008,0.052-0.023,0.326c-0.004,0.091-0.008,0.186-0.013,0.313h-0.002h-0.002H5.803H5.799 c-0.025-0.635-0.039-0.508-0.039-0.639v-0.035c0-1.037,0.85-1.879,1.9-1.879h4.791v-2.063C7.698,22.233,4.15,17.953,4.15,12.85 C4.15,6.867,9.021,2,15,2c5.982,0,10.851,4.866,10.851,10.85c0,5.103-3.546,9.381-8.296,10.534v2.063h4.824 c1.05,0,1.9,0.842,1.9,1.879V27.361z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="39.8613" x2="45.0998" y1="-6137.793" y2="-6137.793">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
-<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
+<rect fill="url(#SVGID_1__)" height="7.852" width="5.104" x="12.451" y="19.721"/>
+<path d="M12.451,24.66c0.818,0.199,1.672,0.314,2.553,0.314s1.73-0.115,2.553-0.314v-4.294 h-5.105v4.284V24.66z" fill="#020202" fill-opacity="0.2"/>
+<path d="M12.451,24.02c0.818,0.199,1.672,0.315,2.553,0.315s1.73-0.116,2.553-0.315v-4.293 h-5.105v4.287V24.02z" fill="#020202" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="42.4795" x2="42.4795" y1="-6116.1221" y2="-6137.8223">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="15" x2="15" y1="2.614" y2="23.03">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#7F8384"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M15,23.7c-5.979,0-10.85-4.867-10.85-10.851C4.15,6.867,9.021,2,15,2 c5.982,0,10.851,4.866,10.851,10.85C25.851,18.834,20.98,23.7,15,23.7z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="42.4805" x2="42.4805" y1="-6116.7617" y2="-6137.1816">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#7F8384"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<circle cx="15" cy="12.85" fill="url(#SVGID_3___)" r="10.21"/>
-<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<circle cx="15" cy="12.851" fill="url(#SVGID_3__)" r="10.21"/>
+<path d="M15,21.99c-5.314,0-9.656-4.23-9.842-9.5c-0.006,0.115-0.01,0.23-0.01,0.349 c0,5.431,4.418,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.116-0.004-0.231-0.008-0.349c-0.179,5.27-4.52,9.5-9.84,9.5H15z" fill="#FFFFFF" fill-opacity="0.1"/>
+<path d="M23.301,12.41c0,4.703-3.714,9.346-8.299,9.345c-4.58-0.003-8.293-4.646-8.291-9.351 s3.717-8.516,8.296-8.516c4.571,0,8.292,3.814,8.292,8.516L23.301,12.41z" fill="#222021" fill-opacity="0.3"/>
+<path d="M15,21.07c-2.387-0.002-4.629-0.932-6.314-2.619C6.998,16.764,6.07,14.52,6.07,12.133 c0-4.923,4.01-8.929,8.936-8.929c2.387,0,4.633,0.931,6.318,2.618c1.688,1.688,2.617,3.934,2.615,6.318 c-0.003,4.924-4.012,8.93-8.936,8.93H14.99H15z" fill="#222021" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="42.4834" x2="42.4834" y1="-6117.8691" y2="-6134.4961">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<path d="M15,20.43c-2.215-0.002-4.297-0.863-5.862-2.432c-1.569-1.566-2.429-3.65-2.429-5.865 c0-4.574,3.723-8.293,8.297-8.293c2.217,0,4.299,0.863,5.865,2.432c1.566,1.567,2.43,3.65,2.428,5.867 c0,4.572-3.723,8.291-8.295,8.291H15z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.4805" x2="42.4805" y1="-6118.5146" y2="-6133.8677">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<path d="M15,4.473c4.229,0,7.658,3.43,7.658,7.658s-3.43,7.656-7.658,7.656c-4.227,0-7.656-3.428-7.656-7.656 S10.773,4.473,15,4.473z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.4795" x2="42.4795" y1="-6119.9209" y2="-6132.5972">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
-<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<path d="M15,18.51c-1.704-0.001-3.309-0.666-4.514-1.871c-1.203-1.205-1.867-2.807-1.867-4.512 c0-3.518,2.861-6.377,6.383-6.377c1.705,0,3.307,0.664,4.512,1.87c1.205,1.205,1.869,2.808,1.867,4.513 c0,3.51-2.859,6.37-6.379,6.37L15,18.51z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="-18.5371" cy="-6075.4541" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.4996">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-<stop offset="0" stop-color="#242424"/>
-<stop offset="0.4303" stop-color="#242424"/>
-<stop offset="0.7818" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M20.74,12.141c0,3.172-2.574,5.739-5.744,5.739c-3.176-0.001-5.742-2.573-5.74-5.745 c0-3.171,2.572-5.742,5.744-5.74c3.17-0.008,5.74,2.563,5.74,5.74V12.141z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-23.6514" cy="-6071.7656" gradientTransform="matrix(1.0143 0 0 -1.0141 36.3921 -6149.1094)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.3507">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
-<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<radialGradient cx="-20.3467" cy="-6068.7339" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-<stop offset="0" stop-color="#264932"/>
-<stop offset="0.7879" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0.004-2.328,1.891-4.211,4.214-4.211c2.329,0.003,4.21,1.889,4.21,4.211L19.211,12.131z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-19.1367" cy="-6078.4346" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.6115">
+<stop offset="0" style="stop-color:#264932"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0,0,1.443,2.568,4.214,2.568c2.769,0,4.21-2.57,4.21-2.57L19.211,12.131z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="42.4609" x2="42.4609" y1="-6121.2129" y2="-6126.2388">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M14.98,12.07c1.828,0,3.549-0.277,5.066-0.766 c-0.43-2.41-2.531-4.238-5.066-4.238c-2.531,0-4.633,1.83-5.064,4.238c1.514,0.49,3.234,0.771,5.064,0.771V12.07z" fill="url(#SVGID_11_)" fill-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="33.2402" x2="51.7598" y1="-6140.8701" y2="-6140.8701">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
-<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5.772,27.36c0.007,0.13,0.017,0.32,0.03,0.64h18.44c0.012-0.316,0.022-0.508,0.028-0.639h-18.5z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.241,28c0.025-0.635,0.038-0.508,0.038-0.639v-0.035c0-1.037-0.851-1.879-1.9-1.879H7.66 c-1.051,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.039,0.639h18.44H24.241z" fill="url(#SVGID_12_)"/>
+<path d="M5.879,26.7h18.292c-0.084-0.235-0.213-0.444-0.377-0.626H6.262 c-0.164,0.189-0.293,0.4-0.377,0.63L5.879,26.7z" fill="#FFFFFF" fill-opacity="0.2"/>
+<path d="M5.771,27.359C5.779,27.49,5.789,27.68,5.803,28h18.44 c0.012-0.316,0.021-0.508,0.027-0.639H5.77L5.771,27.359z" fill="#020202" fill-opacity="0.2"/>
+<path d="M6.256,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627H7.668 c-0.561,0.01-1.059,0.25-1.406,0.629L6.256,26.07z" fill="#FFFFFF" fill-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_player.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_player.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,54 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15c8.271,0,15,6.729,15,15s-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1130" x2="-1130" y1="3388" y2="3444">
-<stop offset="0" stop-color="#D9E2C8"/>
-<stop offset="1" stop-color="#347940"/>
+<path d="M15,29.999C6.729,29.999,0,23.271,0,15S6.729,0.001,15,0.001c8.271,0,15,6.729,15,14.999 S23.271,29.999,15,29.999L15,29.999z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 579.9604 -1693.241)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-1129.9209" x2="-1129.9209" y1="3388.3521" y2="3444.3481">
+<stop offset="0" style="stop-color:#D9E2C8"/>
+<stop offset="1" style="stop-color:#347940"/>
</linearGradient>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.719,6.279-14,14-14,7.718,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179" x2="-2179" y1="2907" y2="2879">
-<stop offset="0" stop-color="#93BD66"/>
-<stop offset="1" stop-color="#22403B"/>
+<path d="M15,28.999C7.279,28.999,1,22.72,1,15C1,7.281,7.279,1.001,15,1.001c7.718,0,14,6.28,14,13.999 C29,22.72,22.718,28.999,15,28.999L15,28.999z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 2908.0361)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179.0005" x2="-2179.0005" y1="2906.6362" y2="2878.8359">
+<stop offset="0" style="stop-color:#93BD66"/>
+<stop offset="1" style="stop-color:#22403B"/>
</linearGradient>
-<path d="M28.6,15c0,7.512-6.09,13.6-13.6,13.6-7.514,0-13.6-6.09-13.6-13.6,0-7.509,6.086-13.6,13.6-13.6,7.51,0,13.6,6.091,13.6,13.6z" fill="url(#SVGID_2__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.51" x2="16.51" y1="21.36" y2="7.216">
-<stop offset="0" stop-color="#89AA6B"/>
-<stop offset="1" stop-color="#1C3533"/>
+<path d="M28.599,15c0,7.512-6.09,13.6-13.599,13.6C7.486,28.6,1.4,22.512,1.4,15C1.4,7.491,7.486,1.4,15,1.4 C22.509,1.4,28.599,7.491,28.599,15z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="16.5117" x2="16.5117" y1="21.3633" y2="7.2163">
+<stop offset="0" style="stop-color:#89AA6B"/>
+<stop offset="1" style="stop-color:#1C3533"/>
</linearGradient>
-<polygon fill="url(#SVGID_3__)" points="10.35,7.134,22.67,14.21,10.35,21.43"/>
-<polygon fill="#FFFFFF" points="11.11,8.444,22.01,14.73,11.11,21.03"/>
+<polygon fill="url(#SVGID_3__)" points="10.353,7.134 22.671,14.21 10.353,21.429 "/>
+<polygon fill="#FFFFFF" points="11.11,8.444 22.008,14.734 11.11,21.026 "/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_podcast.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_podcast.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,54 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M4.452,29c-1.903,0-3.451-1.549-3.451-3.453v-21.1c0-1.903,1.548-3.452,3.451-3.452h21.1c1.905,0,3.454,1.548,3.454,3.452v21.1c0,1.904-1.549,3.453-3.454,3.453h-21.1z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M27.93,25.49c0,1.346-1.092,2.438-2.44,2.438h-20.98c-1.347,0-2.438-1.093-2.438-2.438v-20.98c0-1.348,1.091-2.44,2.438-2.44h20.98c1.348,0,2.44,1.093,2.44,2.44v20.98z" fill="#D6C1A9"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2191" x2="-2167" y1="3344" y2="3321">
-<stop offset="0" stop-color="#A66C59"/>
-<stop offset="0.5" stop-color="#B78C65"/>
-<stop offset="1" stop-color="#9B5D55"/>
+<path d="M4.452,29.001c-1.903,0-3.451-1.549-3.451-3.453V4.453c0-1.903,1.548-3.452,3.451-3.452h21.095 c1.905,0,3.454,1.548,3.454,3.452v21.095c0,1.904-1.549,3.453-3.454,3.453H4.452z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M27.932,25.493c0,1.346-1.092,2.438-2.44,2.438H4.508c-1.347,0-2.438-1.093-2.438-2.438V4.509 c0-1.348,1.091-2.44,2.438-2.44h20.983c1.348,0,2.44,1.093,2.44,2.44V25.493z" fill="#D6C1A9"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2190.8022" x2="-2167.4888" y1="3344.4668" y2="3321.1533">
+<stop offset="0" style="stop-color:#A66C59"/>
+<stop offset="0.5" style="stop-color:#B78C65"/>
+<stop offset="1" style="stop-color:#9B5D55"/>
</linearGradient>
-<path d="M4.508,27.19c-0.935,0-1.697-0.761-1.697-1.695v-20.99c0-0.937,0.763-1.696,1.697-1.696h20.98c0.937,0,1.697,0.762,1.697,1.696v20.98c0,0.935-0.76,1.695-1.697,1.695h-20.98z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2179" x2="-2179" y1="3346" y2="3320">
-<stop offset="0" stop-color="#976059"/>
-<stop offset="0.5" stop-color="#B78C65"/>
-<stop offset="1" stop-color="#793436"/>
+<path d="M4.508,27.188c-0.935,0-1.697-0.761-1.697-1.695V4.509c0-0.937,0.763-1.696,1.697-1.696h20.983 c0.937,0,1.697,0.762,1.697,1.696v20.984c0,0.935-0.76,1.695-1.697,1.695H4.508z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3347.6641)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2178.999" x2="-2178.999" y1="3345.792" y2="3319.6384">
+<stop offset="0" style="stop-color:#976059"/>
+<stop offset="0.5" style="stop-color:#B78C65"/>
+<stop offset="1" style="stop-color:#793436"/>
</linearGradient>
-<path d="M25.55,2.413c1.125,0,2.041,0.916,2.041,2.04v21.1c0,1.124-0.917,2.04-2.041,2.04h-21.1c-1.124,0-2.038-0.916-2.038-2.04v-21.1c0-1.124,0.915-2.04,2.038-2.04h21.1m0.003-0.412h-21.1c-1.353,0-2.451,1.098-2.451,2.452v21.1c0,1.354,1.098,2.453,2.451,2.453h21.1c1.354,0,2.454-1.1,2.454-2.453v-21.1c0-1.354-1.1-2.452-2.45-2.452z" fill="url(#SVGID_2__)"/>
-<circle cx="8.615" cy="21.38" fill="#FFFFFF" r="2.508"/>
-<path d="M20.55,23.61h3.345c0-9.651-7.854-17.51-17.5-17.51v3.344c7.8,0.009,14.15,6.356,14.15,14.17z" fill="#FFFFFF"/>
-<path d="M14.47,23.61h3.343c0-6.299-5.124-11.42-11.42-11.42v3.345c4.45,0,8.08,3.62,8.08,8.07z" fill="#FFFFFF"/>
+<path d="M25.547,2.413c1.125,0,2.041,0.916,2.041,2.04v21.095c0,1.124-0.917,2.04-2.041,2.04H4.452 c-1.124,0-2.038-0.916-2.038-2.04V4.453c0-1.124,0.915-2.04,2.038-2.04H25.547 M25.547,2.001H4.452 c-1.353,0-2.451,1.098-2.451,2.452v21.095c0,1.354,1.098,2.453,2.451,2.453h21.095c1.354,0,2.454-1.1,2.454-2.453V4.453 C28.001,3.099,26.901,2.001,25.547,2.001L25.547,2.001z" fill="url(#SVGID_2__)"/>
+<circle cx="8.615" cy="21.385" fill="#FFFFFF" r="2.508"/>
+<path d="M20.547,23.614h3.345c0-9.651-7.854-17.506-17.505-17.506v3.344C14.196,9.453,20.547,15.805,20.547,23.614z" fill="#FFFFFF"/>
+<path d="M14.466,23.614h3.343c0-6.299-5.124-11.424-11.422-11.424v3.345C10.842,15.535,14.466,19.158,14.466,23.614z " fill="#FFFFFF"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_received_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_received_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,151 +1,116 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<g>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2204.0161)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6116.6025" x2="6116.4023" y1="4426.6328" y2="4519.0361">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.73" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_1_)" points="6.052,34.437 26.636,55.941 47.556,34.437 36.274,34.437 36.274,9.834 17.095,9.832 17.095,34.437 "/>
+<line fill="none" x1="36.274" x2="17.095" y1="9.842" y2="9.84"/>
+<polygon fill="#E4EACE" points="17.095,9.34 36.274,9.342 36.274,10.342 17.095,10.34 "/>
+<polygon fill="#E4EACE" fill-opacity="0.5" points="36.274,34.437 48.054,34.437 47.175,35.461 36.274,35.461 " stroke-opacity="0.5"/>
+<polygon fill="#E4EACE" fill-opacity="0.5" points="5.397,34.437 17.075,34.437 17.075,35.461 6.453,35.461 " stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2204.0161)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6153.1982" x2="6077.7983" y1="4499.1309" y2="4499.1309">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<polygon fill="url(#SVGID_2_)" points="46.896,34.437 26.636,55.219 6.604,34.437 5.214,34.437 26.636,56.66 48.296,34.437 "/>
<rect fill="none" height="60" width="60"/>
-<polygon fill="none" points="30.1,0,0.096,0,0.096,14.83,0,14.83,0.096,14.93,0.096,30,14.6,30,15.02,30.44,15.45,30,30.1,30,30.1,14.96,30.22,14.84,30.1,14.84"/>
-<polygon fill-opacity="0.35" points="0,14.83,3.596,14.83,3.625,14.86,8.375,14.86,8.375,0,21.73,0.001,21.73,14.84,30.22,14.84,15.02,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-2177" x2="-2177" y1="2985" y2="2957">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="2.846,15.86,15.02,28.58,27.4,15.84,20.73,15.84,20.73,1.292,9.375,1.291,9.375,15.86"/>
-<line fill="none" x1="20.73" x2="9.375" y1="1.297" y2="1.296"/>
-<polygon fill="#E4EACE" points="9.375,1,20.73,1.001,20.73,1.593,9.375,1.592"/>
-<polygon fill="#E4EACE" points="20.56,15.87,27.53,15.87,27,16.46,20.56,16.46"/>
-<polygon fill="#E4EACE" points="2.459,15.86,9.365,15.86,9.365,16.45,3.08,16.45"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="-2166" x2="-2188" y1="2963" y2="2963">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2__)" points="27.02,15.84,15.02,28.15,3.172,15.83,2.348,15.83,15.02,29,27.84,15.84"/>
-<rect fill="none" height="30" width="30" x="0.096"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="12.38" x2="17.62" y1="23.65" y2="23.65">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M22.379,24.469h-3.846v-0.341c4.922-1.536,8.297-6.068,8.297-11.278 c0-6.522-5.307-11.828-11.83-11.828c-6.522,0-11.828,5.306-11.828,11.828c0,5.212,3.376,9.745,8.301,11.279v0.34H7.66 c-1.588,0-2.879,1.281-2.879,2.893l0.005,0.148l0.007,0.06c0.006,0.042,0.014,0.121,0.027,0.47l0.042,0.939h20.323l0.048-1.235 c0.006-0.112,0.011-0.153,0.014-0.179c0.007-0.065,0.011-0.098,0.011-0.238C25.258,25.75,23.967,24.469,22.379,24.469z M24.279,27.361c0,0.103-0.008,0.052-0.023,0.326c-0.004,0.091-0.008,0.186-0.013,0.313h-0.002h-0.002H5.803H5.799 c-0.025-0.635-0.039-0.508-0.039-0.639v-0.035c0-1.037,0.85-1.879,1.9-1.879h4.791v-2.063C7.698,22.233,4.15,17.953,4.15,12.85 C4.15,6.867,9.021,2,15,2c5.982,0,10.851,4.866,10.851,10.85c0,5.103-3.546,9.381-8.296,10.534v2.063h4.824 c1.05,0,1.9,0.842,1.9,1.879V27.361z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="39.8613" x2="45.0998" y1="-6137.793" y2="-6137.793">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<rect fill="url(#SVGID_1___)" height="7.853" width="5.105" x="12.45" y="19.72"/>
-<path d="M12.45,24.66c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.285z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12.45,24.02c0.82,0.199,1.673,0.315,2.553,0.315,0.881,0,1.732-0.116,2.553-0.315v-4.294h-5.105v4.288z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.975" y2="23.67">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.3212" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#666666"/>
+<rect fill="url(#SVGID_1__)" height="7.852" width="5.104" x="12.451" y="19.721"/>
+<path d="M12.451,24.66c0.818,0.199,1.672,0.314,2.553,0.314s1.73-0.115,2.553-0.314v-4.294 h-5.105v4.284V24.66z" fill="#020202" fill-opacity="0.2"/>
+<path d="M12.451,24.02c0.818,0.199,1.672,0.315,2.553,0.315s1.73-0.116,2.553-0.315v-4.293 h-5.105v4.287V24.02z" fill="#020202" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="42.4795" x2="42.4795" y1="-6116.1221" y2="-6137.8223">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.3212" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
-<path d="M15,23.7c-5.98,0-10.85-4.867-10.85-10.85s4.87-10.85,10.85-10.85c5.982,0,10.85,4.866,10.85,10.85s-4.87,10.85-10.85,10.85z" fill="url(#SVGID_2___)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="2.614" y2="23.03">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0667" stop-color="#D3D7D5"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#7F8384"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M15,23.7c-5.979,0-10.85-4.867-10.85-10.851C4.15,6.867,9.021,2,15,2 c5.982,0,10.851,4.866,10.851,10.85C25.851,18.834,20.98,23.7,15,23.7z" fill="url(#SVGID_2__)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="42.4805" x2="42.4805" y1="-6116.7617" y2="-6137.1816">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0667" style="stop-color:#D3D7D5"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#7F8384"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<circle cx="15" cy="12.85" fill="url(#SVGID_3__)" r="10.21"/>
-<path d="M15,21.99c-5.315,0-9.657-4.23-9.843-9.5-0.004,0.116-0.009,0.231-0.009,0.349,0,5.431,4.419,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.117-0.005-0.232-0.009-0.349-0.18,5.27-4.52,9.5-9.84,9.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M23.3,12.41c0,4.704-3.715,9.346-8.299,9.345-4.58-0.003-8.292-4.646-8.291-9.35,0.002-4.706,3.718-8.517,8.298-8.517,4.57,0.001,8.29,3.814,8.29,8.517z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,21.07c-2.387-0.002-4.63-0.932-6.315-2.619-1.688-1.688-2.615-3.932-2.614-6.318,0-4.923,4.009-8.929,8.935-8.929,2.387,0,4.632,0.931,6.317,2.618,1.688,1.688,2.616,3.933,2.615,6.318-0.002,4.924-4.01,8.93-8.934,8.93h-0.014z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="3.721" y2="20.35">
-<stop offset="0" stop-color="#CFCFCF"/>
-<stop offset="0.1091" stop-color="#CFCFCF"/>
-<stop offset="0.6848" stop-color="#121212"/>
-<stop offset="1" stop-color="#A6A6A6"/>
+<circle cx="15" cy="12.851" fill="url(#SVGID_3_)" r="10.21"/>
+<path d="M15,21.99c-5.314,0-9.656-4.23-9.842-9.5c-0.006,0.115-0.01,0.23-0.01,0.349 c0,5.431,4.418,9.851,9.852,9.851s9.852-4.42,9.852-9.851c0-0.116-0.004-0.231-0.008-0.349c-0.179,5.27-4.52,9.5-9.84,9.5H15z" fill="#FFFFFF" fill-opacity="0.1"/>
+<path d="M23.301,12.41c0,4.703-3.714,9.346-8.299,9.345c-4.58-0.003-8.293-4.646-8.291-9.351 s3.717-8.516,8.296-8.516c4.571,0,8.292,3.814,8.292,8.516L23.301,12.41z" fill="#222021" fill-opacity="0.3"/>
+<path d="M15,21.07c-2.387-0.002-4.629-0.932-6.314-2.619C6.998,16.764,6.07,14.52,6.07,12.133 c0-4.923,4.01-8.929,8.936-8.929c2.387,0,4.633,0.931,6.318,2.618c1.688,1.688,2.617,3.934,2.615,6.318 c-0.003,4.924-4.012,8.93-8.936,8.93H14.99H15z" fill="#222021" fill-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="42.4834" x2="42.4834" y1="-6117.8691" y2="-6134.4961">
+<stop offset="0" style="stop-color:#CFCFCF"/>
+<stop offset="0.1091" style="stop-color:#CFCFCF"/>
+<stop offset="0.6848" style="stop-color:#121212"/>
+<stop offset="1" style="stop-color:#A6A6A6"/>
</linearGradient>
-<path d="M15,20.43c-2.216-0.002-4.298-0.864-5.864-2.432-1.567-1.566-2.428-3.65-2.427-5.866,0-4.573,3.723-8.293,8.296-8.293,2.218,0.001,4.3,0.864,5.866,2.432s2.43,3.651,2.428,5.867c-0.001,4.573-3.723,8.292-8.295,8.292h-0.004z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5__" x1="15" x2="15" y1="4.368" y2="19.72">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#636566"/>
+<path d="M15,20.43c-2.215-0.002-4.297-0.863-5.862-2.432c-1.569-1.566-2.429-3.65-2.429-5.865 c0-4.574,3.723-8.293,8.297-8.293c2.217,0,4.299,0.863,5.865,2.432c1.566,1.567,2.43,3.65,2.428,5.867 c0,4.572-3.723,8.291-8.295,8.291H15z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="42.4805" x2="42.4805" y1="-6118.5146" y2="-6133.8677">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#636566"/>
</linearGradient>
-<circle cx="15" cy="12.13" fill="url(#SVGID_5__)" r="7.657"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6__" x1="15" x2="15" y1="5.772" y2="18.45">
-<stop offset="0" stop-color="#1A1A1A"/>
-<stop offset="0.503" stop-color="#343434"/>
-<stop offset="0.7515" stop-color="#9E9E9E"/>
-<stop offset="1" stop-color="#CFCFCF"/>
+<path d="M15,4.473c4.229,0,7.658,3.43,7.658,7.658s-3.43,7.656-7.658,7.656c-4.227,0-7.656-3.428-7.656-7.656 S10.773,4.473,15,4.473z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="42.4795" x2="42.4795" y1="-6119.9209" y2="-6132.5972">
+<stop offset="0" style="stop-color:#1A1A1A"/>
+<stop offset="0.503" style="stop-color:#343434"/>
+<stop offset="0.7515" style="stop-color:#9E9E9E"/>
+<stop offset="1" style="stop-color:#CFCFCF"/>
</linearGradient>
-<path d="M15,18.51c-1.706-0.001-3.309-0.666-4.514-1.871-1.204-1.206-1.867-2.808-1.867-4.512,0-3.517,2.862-6.378,6.382-6.378,1.706,0,3.308,0.664,4.513,1.871,1.205,1.205,1.868,2.808,1.867,4.513,0,3.51-2.86,6.37-6.38,6.37z" fill="url(#SVGID_6__)"/>
-<radialGradient cx="25.77" cy="10.27" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.499">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5917" stop-color="#000000"/>
-<stop offset="0.627" stop-color="#050505"/>
-<stop offset="0.7652" stop-color="#121212"/>
-<stop offset="0.8876" stop-color="#171717"/>
-<stop offset="1" stop-color="#171717"/>
+<path d="M15,18.51c-1.704-0.001-3.309-0.666-4.514-1.871c-1.203-1.205-1.867-2.807-1.867-4.512 c0-3.518,2.861-6.377,6.383-6.377c1.705,0,3.307,0.664,4.512,1.87c1.205,1.205,1.869,2.808,1.867,4.513 c0,3.51-2.859,6.37-6.379,6.37L15,18.51z" fill="url(#SVGID_6_)"/>
+<radialGradient cx="-18.5371" cy="-6075.4541" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="6.4996">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5917" style="stop-color:#000000"/>
+<stop offset="0.627" style="stop-color:#050505"/>
+<stop offset="0.7652" style="stop-color:#121212"/>
+<stop offset="0.8876" style="stop-color:#171717"/>
+<stop offset="1" style="stop-color:#171717"/>
</radialGradient>
-<path d="M20.74,12.14c0,3.172-2.574,5.74-5.744,5.74-3.175-0.001-5.743-2.573-5.741-5.745,0-3.171,2.573-5.742,5.745-5.74,3.17-0.009,5.74,2.562,5.74,5.74z" fill="url(#SVGID_7_)"/>
-<radialGradient cx="21.65" cy="5.066" gradientTransform="matrix(1.0143 0 0 1.0141 -9.5579 3.1299)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.35">
-<stop offset="0" stop-color="#242424"/>
-<stop offset="0.4303" stop-color="#242424"/>
-<stop offset="0.7818" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M20.74,12.141c0,3.172-2.574,5.739-5.744,5.739c-3.176-0.001-5.742-2.573-5.74-5.745 c0-3.171,2.572-5.742,5.744-5.74c3.17-0.008,5.74,2.563,5.74,5.74V12.141z" fill="url(#SVGID_7_)"/>
+<radialGradient cx="-23.6514" cy="-6071.7656" gradientTransform="matrix(1.0143 0 0 -1.0141 36.3921 -6149.1094)" gradientUnits="userSpaceOnUse" id="SVGID_8_" r="10.3507">
+<stop offset="0" style="stop-color:#242424"/>
+<stop offset="0.4303" style="stop-color:#242424"/>
+<stop offset="0.7818" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
<circle cx="15" cy="12.13" fill="url(#SVGID_8_)" r="4.712"/>
-<radialGradient cx="23.96" cy="3.55" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
-<stop offset="0" stop-color="#8D4AAB"/>
-<stop offset="0.3091" stop-color="#8D4AAB"/>
-<stop offset="0.4364" stop-color="#532961"/>
-<stop offset="0.8061" stop-color="#070F0F"/>
-<stop offset="1" stop-color="#070F0F"/>
+<radialGradient cx="-20.3467" cy="-6068.7339" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_9_" r="11.36">
+<stop offset="0" style="stop-color:#8D4AAB"/>
+<stop offset="0.3091" style="stop-color:#8D4AAB"/>
+<stop offset="0.4364" style="stop-color:#532961"/>
+<stop offset="0.8061" style="stop-color:#070F0F"/>
+<stop offset="1" style="stop-color:#070F0F"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0.004-2.327,1.89-4.21,4.213-4.21,2.33,0.003,4.21,1.888,4.21,4.21z" fill="url(#SVGID_9_)"/>
-<radialGradient cx="25.17" cy="13.25" gradientTransform="matrix(1.0143 3.000000e-004 -3.000000e-004 1.0141 -10.5185 2.1979)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.611">
-<stop offset="0" stop-color="#264932"/>
-<stop offset="0.7879" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0.004-2.328,1.891-4.211,4.214-4.211c2.329,0.003,4.21,1.889,4.21,4.211L19.211,12.131z" fill="url(#SVGID_9_)"/>
+<radialGradient cx="-19.1367" cy="-6078.4346" gradientTransform="matrix(1.0143 3.000000e-004 3.000000e-004 -1.0141 36.2417 -6148.4917)" gradientUnits="userSpaceOnUse" id="SVGID_10_" r="4.6115">
+<stop offset="0" style="stop-color:#264932"/>
+<stop offset="0.7879" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</radialGradient>
-<path d="M19.21,12.13c0,2.326-1.886,4.21-4.212,4.21-2.326-0.002-4.213-1.888-4.213-4.212,0,0,1.444,2.569,4.213,2.569,2.77,0,4.21-2.57,4.21-2.57z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.98" x2="14.98" y1="7.065" y2="12.09">
-<stop offset="0" stop-color="#FAFDFB"/>
-<stop offset="1" stop-color="#808080"/>
+<path d="M19.211,12.131c0,2.325-1.887,4.209-4.212,4.209c-2.327-0.002-4.214-1.887-4.214-4.211 c0,0,1.443,2.568,4.214,2.568c2.769,0,4.21-2.57,4.21-2.57L19.211,12.131z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="42.4609" x2="42.4609" y1="-6121.2129" y2="-6126.2388">
+<stop offset="0" style="stop-color:#FAFDFB"/>
+<stop offset="1" style="stop-color:#808080"/>
</linearGradient>
-<path d="M14.98,12.07c1.828,0,3.549-0.277,5.067-0.765-0.431-2.41-2.532-4.239-5.067-4.239-2.532,0-4.632,1.83-5.065,4.239,1.515,0.49,3.235,0.77,5.065,0.77z" fill="url(#SVGID_11_)" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="5.762" x2="24.29" y1="26.72" y2="26.72">
-<stop offset="0" stop-color="#898A8B"/>
-<stop offset="0.2606" stop-color="#BFC2C1"/>
-<stop offset="0.6606" stop-color="#5D5F61"/>
-<stop offset="1" stop-color="#979A9A"/>
+<path d="M14.98,12.07c1.828,0,3.549-0.277,5.066-0.766 c-0.43-2.41-2.531-4.238-5.066-4.238c-2.531,0-4.633,1.83-5.064,4.238c1.514,0.49,3.234,0.771,5.064,0.771V12.07z" fill="url(#SVGID_11_)" fill-opacity="0.35"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -27.48 -6114.1465)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="33.2402" x2="51.7598" y1="-6140.8701" y2="-6140.8701">
+<stop offset="0" style="stop-color:#898A8B"/>
+<stop offset="0.2606" style="stop-color:#BFC2C1"/>
+<stop offset="0.6606" style="stop-color:#5D5F61"/>
+<stop offset="1" style="stop-color:#979A9A"/>
</linearGradient>
-<path d="M24.24,28c0.025-0.635,0.04-0.508,0.04-0.639v-0.035c0-1.037-0.852-1.879-1.901-1.879h-14.72c-1.05,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.04,0.639h18.44z" fill="url(#SVGID_12_)"/>
-<path d="M5.879,26.7h18.29c-0.084-0.234-0.212-0.444-0.377-0.626h-17.53c-0.164,0.19-0.293,0.4-0.377,0.63z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M5.772,27.36c0.007,0.13,0.017,0.32,0.03,0.64h18.44c0.012-0.316,0.022-0.508,0.028-0.639h-18.5z" fill="#020202" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6.255,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627h-14.72c-0.56,0.01-1.059,0.25-1.407,0.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.241,28c0.025-0.635,0.038-0.508,0.038-0.639v-0.035c0-1.037-0.851-1.879-1.9-1.879H7.66 c-1.051,0-1.9,0.842-1.9,1.879v0.035c0,0.131,0.014,0.004,0.039,0.639h18.44H24.241z" fill="url(#SVGID_12_)"/>
+<path d="M5.879,26.7h18.292c-0.084-0.235-0.213-0.444-0.377-0.626H6.262 c-0.164,0.189-0.293,0.4-0.377,0.63L5.879,26.7z" fill="#FFFFFF" fill-opacity="0.2"/>
+<path d="M5.771,27.359C5.779,27.49,5.789,27.68,5.803,28h18.44 c0.012-0.316,0.021-0.508,0.027-0.639H5.77L5.771,27.359z" fill="#020202" fill-opacity="0.2"/>
+<path d="M6.256,26.07h17.54c-0.348-0.383-0.846-0.627-1.407-0.627H7.668 c-0.561,0.01-1.059,0.25-1.406,0.629L6.256,26.07z" fill="#FFFFFF" fill-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_recent.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_recent.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,98 +1,100 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15c8.27,0,15,6.729,15,15s-6.73,15-15,15z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1.195" y2="28.87">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<path d="M14.999,30C6.729,30,0,23.271,0,15S6.729,0,14.999,0C23.271,0,30,6.729,30,15S23.271,30,14.999,30L14.999,30 z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="1.1948" y2="28.8709">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M15,29c-7.719,0-14-6.28-14-14s6.281-14,14-14c7.72,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.584" y2="28.55">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.2364" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#6C6F70"/>
+<path d="M14.999,29C7.281,29,1,22.72,1,15S7.281,1,14.999,1C22.72,1,29,7.28,29,15S22.72,29,14.999,29 L14.999,29z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="1.5835" y2="28.5506">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.2364" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#6C6F70"/>
</linearGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_2__)" r="13.61"/>
-<path d="M15.47,15.48c4.559,0,8.961-0.286,13.13-0.81-0.18-7.365-6.19-13.28-13.6-13.28-7.36,0-13.36,5.847-13.6,13.15,4.446,0.6,9.17,0.94,14.07,0.94z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="1.519" x2="28.68" y1="8.292" y2="8.292">
-<stop offset="0" stop-color="#C2C5C4"/>
-<stop offset="0.2" stop-color="#F9FDFA"/>
-<stop offset="0.8" stop-color="#F9FDFA"/>
-<stop offset="1" stop-color="#CFD3D1"/>
+<circle cx="15" cy="15" fill="url(#SVGID_2__)" r="13.611"/>
+<path d="M15.474,15.476c4.559,0,8.961-0.286,13.127-0.81C28.425,7.305,22.406,1.389,14.999,1.389 c-7.36,0-13.357,5.847-13.6,13.151C5.846,15.143,10.568,15.476,15.474,15.476z" fill="#F1F2F2" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="1.5186" x2="28.6768" y1="8.2915" y2="8.2915">
+<stop offset="0" style="stop-color:#C2C5C4"/>
+<stop offset="0.2" style="stop-color:#F9FDFA"/>
+<stop offset="0.8" style="stop-color:#F9FDFA"/>
+<stop offset="1" style="stop-color:#CFD3D1"/>
</linearGradient>
-<path d="M15,1.778c7.453,0,13.5,5.99,13.6,13.42,0.002-0.063,0.007-0.129,0.007-0.194,0-7.517-6.095-13.61-13.61-13.61-7.518-0.011-13.61,6.083-13.61,13.6,0,0.065,0.003,0.131,0.005,0.194,0.104-7.421,6.154-13.41,13.61-13.41z" fill="url(#SVGID_3__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="27.25" y2="2.991">
-<stop offset="0" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#47494B"/>
+<path d="M14.999,1.778c7.453,0,13.503,5.99,13.605,13.416c0.002-0.063,0.007-0.129,0.007-0.194 c0-7.517-6.095-13.611-13.612-13.611C7.482,1.389,1.389,7.483,1.389,15c0,0.065,0.003,0.131,0.005,0.194 C1.498,7.769,7.548,1.778,14.999,1.778z" fill="url(#SVGID_3__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="27.249" y2="2.9914">
+<stop offset="0" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#47494B"/>
</linearGradient>
-<path d="M15,27.06c-6.648,0-12.06-5.41-12.06-12.06s5.408-12.06,12.06-12.06c6.648,0,12.06,5.406,12.06,12.06s-5.41,12.06-12.06,12.06z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="26.33" y2="3.037">
-<stop offset="0" stop-color="#FAF9F9"/>
-<stop offset="0.4" stop-color="#FAF9F9"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M14.999,27.055C8.352,27.055,2.944,21.648,2.944,15S8.352,2.945,14.999,2.945 c6.648,0,12.056,5.406,12.056,12.055S21.647,27.055,14.999,27.055L14.999,27.055z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.001" x2="15.001" y1="26.3296" y2="3.0368">
+<stop offset="0" style="stop-color:#FAF9F9"/>
+<stop offset="0.4" style="stop-color:#FAF9F9"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<path d="M15,26.67c-6.434,0-11.67-5.24-11.67-11.67s5.233-11.67,11.67-11.67,11.67,5.234,11.67,11.67-5.24,11.67-11.67,11.67z" fill="url(#SVGID_5_)"/>
-<path d="M15,15.83c3.849,0,7.521-0.322,10.89-0.905-0.04-5.964-4.91-10.81-10.89-10.81-5.979,0-10.85,4.845-10.89,10.82,3.369,0.58,7.04,0.9,10.89,0.9z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
-<rect fill="#404041" height="2.335" width="0.777" x="14.61" y="4.396"/>
-<rect fill="#404041" height="2.333" width="0.777" x="14.61" y="23.84"/>
-<rect fill="#404041" height="0.779" width="2.333" x="23.56" y="14.9"/>
-<rect fill="#404041" height="0.779" width="2.332" x="4.111" y="14.9"/>
-<rect fill="#404041" height="1.88" transform="matrix(0.4993 0.8664 -0.8664 0.4993 20.7592 -15.0708)" width="0.628" x="23.11" y="9.486"/>
-<rect fill="#404041" height="1.88" transform="matrix(0.4968 0.8679 -0.8679 0.4968 20.7962 4.4286)" width="0.629" x="6.265" y="19.21"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.8671 0.4981 -0.4981 0.8671 6.0604 -8.9813)" width="0.627" x="19.55" y="5.926"/>
-<rect fill="#404041" height="1.884" transform="matrix(0.8674 0.4977 -0.4977 0.8674 13.1416 -1.9014)" width="0.626" x="9.825" y="22.76"/>
+<path d="M14.999,26.666C8.566,26.666,3.333,21.432,3.333,15S8.566,3.334,14.999,3.334S26.668,8.568,26.668,15 S21.432,26.666,14.999,26.666L14.999,26.666z" fill="url(#SVGID_5_)"/>
+<path d="M14.999,15.832c3.849,0,7.521-0.322,10.89-0.905C25.848,8.956,20.98,4.111,14.999,4.111 c-5.979,0-10.846,4.845-10.886,10.815C7.479,15.51,11.15,15.832,14.999,15.832z" fill="#FFFFFF" fill-opacity="0.7" stroke-opacity="0.7"/>
+<rect fill="#404041" height="2.335" width="0.777" x="14.611" y="4.396"/>
+<rect fill="#404041" height="2.333" width="0.777" x="14.611" y="23.842"/>
+<rect fill="#404041" height="0.779" width="2.333" x="23.556" y="14.896"/>
+<rect fill="#404041" height="0.779" width="2.332" x="4.111" y="14.896"/>
+<rect fill="#404041" height="1.88" transform="matrix(0.4993 0.8664 -0.8664 0.4993 20.7592 -15.0708)" width="0.628" x="23.106" y="9.486"/>
+<rect fill="#404041" height="1.88" transform="matrix(0.4968 0.8679 -0.8679 0.4968 20.7962 4.4286)" width="0.629" x="6.265" y="19.208"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.8671 0.4981 -0.4981 0.8671 6.0604 -8.9813)" width="0.627" x="19.548" y="5.926"/>
+<rect fill="#404041" height="1.884" transform="matrix(0.8674 0.4977 -0.4977 0.8674 13.1416 -1.9014)" width="0.626" x="9.825" y="22.763"/>
<rect fill="#404041" height="1.882" transform="matrix(0.8675 -0.4975 0.4975 0.8675 -2.0724 5.954)" width="0.628" x="9.825" y="5.926"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.8678 -0.497 0.497 0.8678 -9.1555 13.0056)" width="0.627" x="19.55" y="22.77"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.8678 -0.497 0.497 0.8678 -9.1555 13.0056)" width="0.627" x="19.548" y="22.766"/>
<rect fill="#404041" height="1.884" transform="matrix(0.497 -0.8678 0.8678 0.497 -5.7368 10.9541)" width="0.627" x="6.267" y="9.483"/>
-<rect fill="#404041" height="1.882" transform="matrix(0.4991 -0.8665 0.8665 0.4991 -5.7273 30.3844)" width="0.63" x="23.1" y="19.21"/>
-<path d="M15.95,15.55c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418-1.117-0.34-1.392,4.587c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148l-5.989,6,0.505,0.506,5.978-5.979c0.129,0.063,0.273,0.102,0.427,0.102,0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389h-9.157z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 409.6663 189.0642)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-428.3" x2="-428.3" y1="-57.43" y2="-51.44">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<rect fill="#404041" height="1.882" transform="matrix(0.4991 -0.8665 0.8665 0.4991 -5.7273 30.3844)" width="0.63" x="23.105" y="19.206"/>
+<path d="M15.953,15.552c-0.04-0.188-0.133-0.352-0.261-0.482l1.34-4.418l-1.117-0.34l-1.392,4.587 c-0.24,0.138-0.42,0.372-0.475,0.653h-2.55v0.389h2.55c0.009,0.05,0.024,0.101,0.043,0.148L8.091,22.09l0.505,0.506l5.978-5.979 c0.129,0.063,0.273,0.102,0.427,0.102c0.471,0,0.862-0.333,0.953-0.777h9.158v-0.389H15.953z" fill="#222021" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.9569 0.2903 -0.2903 0.9569 409.6663 189.0642)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-428.2788" x2="-428.2788" y1="-57.4336" y2="-51.435">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="17.03,10.1,15.92,9.763,14.22,15.34,15.34,15.68"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="8.38" x2="15.22" y1="21.75" y2="14.91">
-<stop offset="0" stop-color="#59595A"/>
-<stop offset="1" stop-color="#222021"/>
+<polygon fill="url(#SVGID_6_)" points="17.032,10.101 15.915,9.763 14.22,15.344 15.339,15.684 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="8.3799" x2="15.2201" y1="21.7544" y2="14.9142">
+<stop offset="0" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#222021"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="15.48,15.16,14.97,14.66,8.091,21.54,8.596,22.04"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.31" x2="18.31" y1="14.94" y2="15.51">
-<stop offset="0" stop-color="#B34D4D"/>
-<stop offset="1" stop-color="#763242"/>
+<polygon fill="url(#SVGID_7_)" points="15.479,15.16 14.974,14.655 8.091,21.539 8.596,22.044 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="18.3057" x2="18.3057" y1="14.9443" y2="15.5124">
+<stop offset="0" style="stop-color:#B34D4D"/>
+<stop offset="1" style="stop-color:#763242"/>
</linearGradient>
-<path d="M25.11,15h-9.158c-0.091-0.442-0.482-0.778-0.953-0.778s-0.86,0.34-0.95,0.78h-2.55v0.389h2.55c0.089,0.443,0.48,0.778,0.951,0.778s0.862-0.335,0.953-0.778h9.158v-0.39z" fill="url(#SVGID_8_)"/>
-<circle cx="15" cy="15.19" fill="#DABEB1" r="0.583"/>
+<path d="M25.111,15h-9.158c-0.091-0.442-0.482-0.778-0.953-0.778S14.138,14.558,14.049,15h-2.55v0.389h2.55 c0.089,0.443,0.48,0.778,0.951,0.778s0.862-0.335,0.953-0.778h9.158V15z" fill="url(#SVGID_8_)"/>
+<circle cx="15" cy="15.194" fill="#DABEB1" r="0.583"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_service.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_service.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,64 +1,66 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_tv.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_video_tv.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,69 +1,71 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649" y2="3605">
-<stop offset="0" stop-color="#757575"/>
-<stop offset="0.2424" stop-color="#000000"/>
-<stop offset="0.8606" stop-color="#000000"/>
-<stop offset="1" stop-color="#363636"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2164" x2="-2164" y1="3649.3477" y2="3604.5469">
+<stop offset="0" style="stop-color:#757575"/>
+<stop offset="0.2424" style="stop-color:#000000"/>
+<stop offset="0.8606" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#363636"/>
</linearGradient>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v41.81c0,0.82,0.666,1.49,1.493,1.49h53.01c0.82,0,1.49-0.67,1.49-1.49v-41.82c0-0.824-0.67-1.494-1.49-1.494zm-47.79,41.81c0,0.412-0.336,0.748-0.745,0.748h-2.988c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.745,0.746h-2.988c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.987c0.409,0,0.745,0.339,0.745,0.748v1.49zm6.721,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.747-0.336-0.747-0.748v-1.49c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.41,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.337,0.748-0.747,0.748h-2.986c-0.411,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748h2.986c0.41,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.338,0.748-0.747,0.748h-2.985c-0.412,0-0.748-0.336-0.748-0.748v-1.49c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746v1.493zm0-37.33c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748h2.985c0.409,0,0.747,0.339,0.747,0.748v1.49zm6.72,37.33c0,0.412-0.335,0.748-0.745,0.748h-2.987c-0.412,0-0.746-0.336-0.746-0.748v-1.49c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746v1.493zm0-37.33c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748h2.987c0.41,0,0.745,0.339,0.745,0.748v1.49zm6.72,37.33c0,0.412-0.336,0.748-0.746,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746v1.493zm0-37.33c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.41,0,0.746,0.339,0.746,0.748v1.49zm6.72,37.33c0,0.412-0.339,0.748-0.748,0.748h-2.987c-0.41,0-0.745-0.336-0.745-0.748v-1.49c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746v1.493zm0-37.33c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748h2.987c0.409,0,0.748,0.339,0.748,0.748v1.49z" fill="url(#SVGID_1_)"/>
-<path d="M56.51,7.6h-53.02c-0.827,0-1.493,0.67-1.493,1.494v0.745c0-0.824,0.666-1.493,1.493-1.493h53.01c0.82,0,1.49,0.669,1.49,1.493v-0.745c0-0.824-0.67-1.494-1.49-1.494z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
-<path d="M3.493,52.4h53.01c0.82,0,1.49-0.67,1.49-1.49v-0.745c0,0.824-0.67,1.493-1.494,1.493h-53.02c-0.827,0-1.493-0.67-1.493-1.49v0.745c0,0.83,0.666,1.5,1.493,1.5z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.5" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v41.813C2,51.732,2.666,52.4,3.493,52.4h53.013 C57.33,52.4,58,51.732,58,50.906V9.094C58,8.27,57.33,7.6,56.506,7.6z M8.719,49.413c0,0.412-0.336,0.748-0.745,0.748H4.986 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.987c0.409,0,0.745,0.336,0.745,0.746V49.413z M8.719,12.08c0,0.41-0.336,0.746-0.745,0.746H4.986c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.987c0.409,0,0.745,0.339,0.745,0.748V12.08z M15.438,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.747-0.336-0.747-0.748V47.92c0-0.41,0.335-0.746,0.747-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M15.438,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.747-0.336-0.747-0.746v-1.493c0-0.409,0.335-0.748,0.747-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M22.159,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.41,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M22.159,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.41,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M28.88,49.413c0,0.412-0.337,0.748-0.747,0.748h-2.986 c-0.411,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.335-0.746,0.746-0.746h2.986c0.41,0,0.747,0.336,0.747,0.746V49.413z M28.88,12.08c0,0.41-0.337,0.746-0.747,0.746h-2.986c-0.411,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.335-0.748,0.746-0.748 h2.986c0.41,0,0.747,0.339,0.747,0.748V12.08z M35.6,49.413c0,0.412-0.338,0.748-0.747,0.748h-2.985 c-0.412,0-0.748-0.336-0.748-0.748V47.92c0-0.41,0.336-0.746,0.748-0.746h2.985c0.409,0,0.747,0.336,0.747,0.746V49.413z M35.6,12.08c0,0.41-0.338,0.746-0.747,0.746h-2.985c-0.412,0-0.748-0.336-0.748-0.746v-1.493c0-0.409,0.336-0.748,0.748-0.748 h2.985c0.409,0,0.747,0.339,0.747,0.748V12.08z M42.318,49.413c0,0.412-0.335,0.748-0.745,0.748h-2.987 c-0.412,0-0.746-0.336-0.746-0.748V47.92c0-0.41,0.334-0.746,0.746-0.746h2.987c0.41,0,0.745,0.336,0.745,0.746V49.413z M42.318,12.08c0,0.41-0.335,0.746-0.745,0.746h-2.987c-0.412,0-0.746-0.336-0.746-0.746v-1.493c0-0.409,0.334-0.748,0.746-0.748 h2.987c0.41,0,0.745,0.339,0.745,0.748V12.08z M49.039,49.413c0,0.412-0.336,0.748-0.746,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.41,0,0.746,0.336,0.746,0.746V49.413z M49.039,12.08c0,0.41-0.336,0.746-0.746,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.41,0,0.746,0.339,0.746,0.748V12.08z M55.761,49.413c0,0.412-0.339,0.748-0.748,0.748h-2.987 c-0.41,0-0.745-0.336-0.745-0.748V47.92c0-0.41,0.335-0.746,0.745-0.746h2.987c0.409,0,0.748,0.336,0.748,0.746V49.413z M55.761,12.08c0,0.41-0.339,0.746-0.748,0.746h-2.987c-0.41,0-0.745-0.336-0.745-0.746v-1.493c0-0.409,0.335-0.748,0.745-0.748 h2.987c0.409,0,0.748,0.339,0.748,0.748V12.08z" fill="url(#SVGID_1_)"/>
+<path d="M56.506,7.6H3.493C2.666,7.6,2,8.27,2,9.094v0.745 c0-0.824,0.666-1.493,1.493-1.493h53.013C57.33,8.346,58,9.015,58,9.839V9.094C58,8.27,57.33,7.6,56.506,7.6z" fill="#FFFFFF" fill-opacity="0.55" stroke-opacity="0.55"/>
+<path d="M3.493,52.4h53.013C57.33,52.4,58,51.732,58,50.906v-0.745 c0,0.824-0.67,1.493-1.494,1.493H3.493C2.666,51.654,2,50.985,2,50.161v0.745C2,51.732,2.666,52.4,3.493,52.4z" fill="#FFFFFF" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2164" x2="-2164" y1="3641.7637" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.5" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="29.87" width="56" x="2" y="15.06"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164" x2="-2164" y1="3612" y2="3642">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<rect fill="url(#SVGID_2_)" height="29.871" width="56" x="2" y="15.064"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2164.0005" x2="-2164.0005" y1="3612.0117" y2="3641.8828">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.76,43.44c0,0.821-0.673,1.494-1.493,1.494h-48.54c-0.82,0-1.494-0.673-1.494-1.494v-26.88c0-0.819,0.674-1.494,1.494-1.494h48.54c0.82,0,1.493,0.675,1.493,1.494v26.89z" fill="url(#SVGID_3_)"/>
-<path d="M54.27,43.44h-48.54c-0.82,0-1.494,0.074-1.494-0.748,0,0.822,0.674,1.493,1.494,1.493h48.54c0.82,0,1.493-0.671,1.493-1.493,0,0.83-0.67,0.75-1.49,0.75z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164" x2="-2164" y1="3642" y2="3612">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#404040"/>
+<path d="M55.761,43.441c0,0.821-0.673,1.494-1.493,1.494H5.732c-0.82,0-1.494-0.673-1.494-1.494V16.559 c0-0.819,0.674-1.494,1.494-1.494h48.535c0.82,0,1.493,0.675,1.493,1.494V43.441z" fill="url(#SVGID_3_)"/>
+<path d="M54.268,43.441H5.732c-0.82,0-1.494,0.074-1.494-0.748l0,0 c0,0.822,0.674,1.493,1.494,1.493h48.535c0.82,0,1.493-0.671,1.493-1.493l0,0C55.761,43.516,55.088,43.441,54.268,43.441z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3656.9473)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-2164.0005" x2="-2164.0005" y1="3641.8828" y2="3611.8926">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#404040"/>
</linearGradient>
-<path d="M54.27,15.81c0.41,0,0.745,0.336,0.745,0.745v26.88c0,0.412-0.335,0.745-0.745,0.745h-48.55c-0.411,0-0.746-0.333-0.746-0.745v-26.88c0-0.409,0.335-0.745,0.746-0.745h48.54m0.002-0.75h-48.54c-0.82,0-1.494,0.675-1.494,1.494v26.88c0,0.821,0.674,1.494,1.494,1.494h48.54c0.82,0,1.493-0.673,1.493-1.494v-26.87c0-0.819-0.67-1.499-1.49-1.499z" fill="url(#SVGID_4_)"/>
-<path d="M54.27,24.02v-5.974c0-0.824-0.67-1.493-1.494-1.493h-45.55c-0.824,0-1.493,0.669-1.493,1.493v9.709l48.54-3.74z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M54.268,15.813c0.41,0,0.745,0.336,0.745,0.745v26.883c0,0.412-0.335,0.745-0.745,0.745H5.732 c-0.411,0-0.746-0.333-0.746-0.745V16.559c0-0.409,0.335-0.745,0.746-0.745H54.268 M54.268,15.064H5.732 c-0.82,0-1.494,0.675-1.494,1.494v26.883c0,0.821,0.674,1.494,1.494,1.494h48.535c0.82,0,1.493-0.673,1.493-1.494V16.559 C55.761,15.739,55.088,15.064,54.268,15.064L54.268,15.064z" fill="url(#SVGID_4_)"/>
+<path d="M54.268,24.025v-5.974c0-0.824-0.67-1.493-1.494-1.493H7.226 c-0.824,0-1.493,0.669-1.493,1.493v9.709L54.268,24.025z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
-<polygon fill="none" points="0,4.111,0,24.33,0,30,30,30,30,24.33,30,4.111,30,0"/>
-<path d="M8.389,27.67c-0.893,0-1.633-0.681-1.74-1.557h-4.872c-0.98,0-1.777-0.8-1.777-1.78v-20.22c0-0.98,0.797-1.777,1.777-1.777h26.44c0.98,0,1.778,0.797,1.778,1.777v20.22c0,0.98-0.798,1.777-1.778,1.777h-4.87c-0.108,0.876-0.848,1.557-1.74,1.557h-13.22z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="26.59" y2="24.8">
-<stop offset="0" stop-color="#404040"/>
-<stop offset="1" stop-color="#000000"/>
+<polygon fill="none" points="0,4.111 0,24.333 0,30 30,30 30,24.333 30,4.111 30,0 0,0 "/>
+<path d="M8.389,27.667c-0.893,0-1.633-0.681-1.74-1.557H1.777C0.797,26.11,0,25.313,0,24.333V4.111 c0-0.98,0.797-1.777,1.777-1.777h26.444c0.98,0,1.778,0.797,1.778,1.777v20.222c0,0.98-0.798,1.777-1.778,1.777h-4.87 c-0.108,0.876-0.848,1.557-1.74,1.557H8.389z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="15" x2="15" y1="26.5859" y2="24.8039">
+<stop offset="0" style="stop-color:#404040"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M22.36,25.89c0,0.431-0.338,0.778-0.754,0.778h-13.22c-0.416,0-0.754-0.348-0.754-0.778s-0.023-1.166-0.023-1.166h14.78s-0.03,0.74-0.03,1.17z" fill="url(#SVGID_1__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="3.205" y2="25.11">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="0.1212" stop-color="#F2F2F2"/>
-<stop offset="0.5515" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#E7E8E7"/>
+<path d="M22.365,25.889c0,0.431-0.338,0.778-0.754,0.778H8.389c-0.416,0-0.754-0.348-0.754-0.778l0,0 c0-0.43-0.023-1.166-0.023-1.166h14.777C22.389,24.723,22.365,25.459,22.365,25.889L22.365,25.889z" fill="url(#SVGID_1__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15" x2="15" y1="3.2046" y2="25.112">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="0.1212" style="stop-color:#F2F2F2"/>
+<stop offset="0.5515" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#E7E8E7"/>
</linearGradient>
-<path d="M29,24.33c0,0.431-0.35,0.777-0.778,0.777h-26.44c-0.429,0-0.777-0.35-0.777-0.78v-20.22c0-0.429,0.348-0.777,0.777-0.777h26.44c0.43,0,0.78,0.349,0.78,0.777v20.22z" fill="url(#SVGID_2__)"/>
-<path d="M28.22,24.72h-26.44c-0.429,0-0.777-0.35-0.777-0.78v0.389c0,0.431,0.348,0.777,0.777,0.777h26.44c0.429,0,0.778-0.347,0.778-0.777v-0.389c0,0.43-0.35,0.78-0.78,0.78z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="15" x2="15" y1="20.7" y2="5.235">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M29,24.333c0,0.431-0.35,0.777-0.778,0.777H1.777C1.348,25.11,1,24.764,1,24.333V4.111 c0-0.429,0.348-0.777,0.777-0.777h26.444C28.65,3.334,29,3.683,29,4.111V24.333z" fill="url(#SVGID_2__)"/>
+<path d="M28.222,24.723H1.777C1.348,24.723,1,24.374,1,23.944v0.389c0,0.431,0.348,0.777,0.777,0.777 h26.444c0.429,0,0.778-0.347,0.778-0.777v-0.389C29,24.374,28.65,24.723,28.222,24.723z" fill="#222021" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3__" x1="14.999" x2="14.999" y1="20.7036" y2="5.2349">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<rect fill="url(#SVGID_3__)" height="15.94" width="24.89" x="2.555" y="4.89"/>
-<rect fill="#FFFFFF" height="0.39" width="24.89" x="2.555" y="20.44"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="2.95,13.06,27.06,9.876,27.06,5.277,2.943,5.277" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="15" x2="15" y1="24.28" y2="21.31">
-<stop offset="0" stop-color="#83BEB9"/>
-<stop offset="1" stop-color="#5473A3"/>
+<rect fill="url(#SVGID_3__)" height="15.943" width="24.889" x="2.555" y="4.89"/>
+<rect fill="#FFFFFF" height="0.39" width="24.889" x="2.555" y="20.443"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="2.95,13.056 27.055,9.876 27.055,5.277 2.943,5.277 " stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4__" x1="14.999" x2="14.999" y1="24.2773" y2="21.3131">
+<stop offset="0" style="stop-color:#83BEB9"/>
+<stop offset="1" style="stop-color:#5473A3"/>
</linearGradient>
-<path d="M15,21.81c0.537,0,0.971,0.436,0.971,0.972s-0.43,0.97-0.97,0.97c-0.535,0-0.973-0.437-0.973-0.973s0.43-0.97,0.97-0.97m0-0.59c-0.859,0-1.557,0.697-1.557,1.556s0.697,1.556,1.557,1.556,1.555-0.696,1.555-1.556c0-0.86-0.7-1.56-1.56-1.56z" fill="url(#SVGID_4__)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.787" y2="24.4">
-<stop offset="0" stop-color="#E7E8E7"/>
-<stop offset="1" stop-color="#AFB3B2"/>
+<path d="M15,21.806c0.537,0,0.971,0.436,0.971,0.972S15.537,23.75,15,23.75c-0.535,0-0.973-0.437-0.973-0.973 S14.465,21.806,15,21.806 M15,21.222c-0.859,0-1.557,0.697-1.557,1.556c0,0.859,0.697,1.556,1.557,1.556s1.555-0.696,1.555-1.556 C16.555,21.919,15.859,21.222,15,21.222L15,21.222z" fill="url(#SVGID_4__)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="3.7866" y2="24.3979">
+<stop offset="0" style="stop-color:#E7E8E7"/>
+<stop offset="1" style="stop-color:#AFB3B2"/>
</linearGradient>
-<path d="M27.83,3.722h-25.66c-0.43,0-0.777,0.349-0.777,0.778v19.06c0,0.431,0.348,0.778,0.777,0.778h11.37c-0.414-0.39-0.674-0.941-0.674-1.556,0-0.613,0.26-1.165,0.674-1.556h-11.37v-16.72h25.67v16.72h-11.36c0.414,0.391,0.674,0.942,0.674,1.556s-0.26,1.166-0.674,1.556h11.37c0.43,0,0.779-0.348,0.779-0.778v-19.06c-0.01-0.43-0.36-0.778-0.79-0.778z" fill="url(#SVGID_5_)"/>
-<path d="M21.61,26.28h-13.22c-0.35,0-0.643-0.248-0.727-0.583-0.016,0.063-0.027,0.127-0.027,0.194,0,0.431,0.338,0.778,0.754,0.778h13.22c0.416,0,0.754-0.348,0.754-0.778,0-0.067-0.012-0.132-0.027-0.194-0.08,0.33-0.37,0.58-0.72,0.58z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M27.832,3.722H2.166c-0.43,0-0.777,0.349-0.777,0.778v19.055c0,0.431,0.348,0.778,0.777,0.778h11.369 c-0.414-0.39-0.674-0.941-0.674-1.556c0-0.613,0.26-1.165,0.674-1.556H2.166V4.5h25.666v16.722H16.465 c0.414,0.391,0.674,0.942,0.674,1.556c0,0.614-0.26,1.166-0.674,1.556h11.367c0.43,0,0.779-0.348,0.779-0.778V4.5 C28.611,4.07,28.262,3.722,27.832,3.722z" fill="url(#SVGID_5_)"/>
+<path d="M21.611,26.277H8.389c-0.35,0-0.643-0.248-0.727-0.583c-0.016,0.063-0.027,0.127-0.027,0.194 c0,0.431,0.338,0.778,0.754,0.778h13.223c0.416,0,0.754-0.348,0.754-0.778c0-0.067-0.012-0.132-0.027-0.194 C22.254,26.029,21.963,26.277,21.611,26.277z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
+<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
+<stop offset="0" style="stop-color:#6FB2B5"/>
+<stop offset="0.297" style="stop-color:#6FB2B5"/>
+<stop offset="0.6667" style="stop-color:#4C5F94"/>
+<stop offset="0.7939" style="stop-color:#679FAD"/>
+<stop offset="1" style="stop-color:#679FAD"/>
</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="0.5091" style="stop-color:#1D1A33"/>
+<stop offset="1" style="stop-color:#516C8F"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_recorder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voice_recorder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,250 +1,252 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<path d="M49.82,18.77c2.203-4.334,1.499-9.768-2.128-13.39-3.624-3.624-9.056-4.33-13.39-2.127,0,0-0.002,0.001-0.005,0.002-1.055,0.538-2.049,1.242-2.932,2.125l-10.35,10.34c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.82,0,16.33,2.907,2.907,6.978,3.929,10.71,3.087,0.18-0.039,0.357-0.081,0.535-0.131,0.151-0.041,0.301-0.088,0.449-0.135,0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055-0.028,0.005-0.05,0.016-0.077,0.021-0.13,0.033-0.258,0.074-0.378,0.128-0.012,0.005-0.023,0.013-0.036,0.017-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333,0.008,0.153,0.02,0.377,0.033,0.745h23c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046-0.01-0.004-0.021-0.012-0.033-0.017-0.122-0.054-0.248-0.095-0.378-0.128-0.027-0.006-0.051-0.017-0.077-0.021-0.156-0.035-0.317-0.055-0.482-0.055h-5.405l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721c0.3-0.299,0.3-0.789,0-1.089,0,0,10.69-10.72,10.85-10.91v-0.001c0.645-0.736,1.186-1.529,1.613-2.367l0.02,0.01z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="267.1" x2="290.2" y1="468" y2="468">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.3818" stop-color="#FFFFFF"/>
-<stop offset="0.7091" stop-color="#6A6C6E"/>
-<stop offset="1" stop-color="#AAAFAE"/>
+<path d="M49.816,18.774L49.816,18.774c2.203-4.334,1.499-9.768-2.128-13.393c-3.624-3.624-9.056-4.33-13.391-2.127 l0,0c0,0-0.002,0.001-0.005,0.002c-1.055,0.538-2.049,1.242-2.932,2.125L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 v-0.002l-2.177,2.179c-0.299,0.3-0.299,0.789,0,1.089l-4.897,4.897c-4.51,4.51-4.51,11.821,0,16.33 c2.907,2.907,6.978,3.929,10.711,3.087c0.18-0.039,0.357-0.081,0.535-0.131c0.151-0.041,0.301-0.088,0.449-0.135 c0.041-0.015,0.083-0.024,0.125-0.038v3.85c-0.892,0.086-1.541,0.4-1.541,1.388v5.367h-5.405c-0.166,0-0.327,0.02-0.482,0.055 c-0.028,0.005-0.05,0.016-0.077,0.021c-0.13,0.033-0.258,0.074-0.378,0.128c-0.012,0.005-0.023,0.013-0.036,0.017 c-0.776,0.364-1.32,1.14-1.32,2.046v0.506c0,0.084,0.005,0.166,0.014,0.333c0.008,0.153,0.02,0.377,0.033,0.745h0.002h22.994h0.001 c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-0.906-0.542-1.682-1.321-2.046c-0.01-0.004-0.021-0.012-0.033-0.017 c-0.122-0.054-0.248-0.095-0.378-0.128c-0.027-0.006-0.051-0.017-0.077-0.021c-0.156-0.035-0.317-0.055-0.482-0.055h-5.405 l-0.001-5.367c0-0.987-0.649-1.302-1.538-1.388v-6.742l4.788-4.79c0.301,0.3,0.79,0.3,1.09,0l2.721-2.721 c0.3-0.299,0.3-0.789,0-1.089c0,0,10.687-10.718,10.854-10.906v-0.001c0.645-0.736,1.186-1.529,1.613-2.367L49.816,18.774z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="267.0962" x2="290.189" y1="468.0112" y2="468.0112">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.3818" style="stop-color:#FFFFFF"/>
+<stop offset="0.7091" style="stop-color:#6A6C6E"/>
+<stop offset="1" style="stop-color:#AAAFAE"/>
</linearGradient>
-<path d="M47.69,5.382c-4.507-4.509-11.82-4.509-16.33,0l-10.34,10.34,16.33,16.33,10.34-10.34c4.51-4.51,4.51-11.82,0-16.33z" fill="url(#SVGID_1_)"/>
-<path d="M47.69,5.382c-4.507-4.509-11.82-4.509-16.33,0l-1.634,1.633c4.51-4.509,9.643-2.331,14.15,2.178,4.511,4.51,6.687,9.644,2.178,14.15l1.632-1.633c4.51-4.51,4.51-11.82,0-16.33z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M47.69,5.382c-4.507-4.509-11.82-4.509-16.33,0l-1.634,1.633c4.51-4.509,11.82-4.509,16.33,0,4.51,4.511,4.508,11.82,0,16.33l1.632-1.633c4.51-4.51,4.51-11.82,0-16.33z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="267.1" x2="290.2" y1="493" y2="493">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0L21.019,15.725l16.328,16.328l10.341-10.342 C52.198,17.202,52.199,9.893,47.688,5.382z" fill="url(#SVGID_1_)"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,9.643-2.331,14.151,2.178c4.511,4.51,6.687,9.644,2.178,14.151l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M47.688,5.382c-4.507-4.509-11.819-4.509-16.327,0l-1.634,1.633 c4.51-4.509,11.821-4.509,16.33,0c4.51,4.511,4.508,11.821,0,16.329l1.632-1.633C52.198,17.202,52.199,9.893,47.688,5.382z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="267.0962" x2="290.1899" y1="493.0283" y2="493.0283">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M21.02,15.72l-8.709,8.707c-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0l8.708-8.709-16.33-16.33z" fill="url(#SVGID_2_)"/>
-<path d="M16.66,36.41c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0l0.543-0.545c-4.51,4.51-8.01,0.7-12.52-3.81z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M15.03,38.04c-4.508-4.508-6.685-9.643-2.177-14.15l-0.544,0.544c-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0l0.543-0.545c-4.51,4.51-9.64,2.33-14.15-2.18z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13.4,39.67c-4.511-4.51-5.6-10.73-1.09-15.24-4.51,4.51-4.51,11.82,0,16.33,4.508,4.51,11.82,4.51,16.33,0-4.51,4.51-10.73,3.42-15.24-1.09z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="266.3" x2="291" y1="483.8" y2="483.8">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M21.019,15.725l-8.709,8.707c-4.51,4.51-4.51,11.821,0,16.33c4.508,4.51,11.821,4.51,16.33,0 l8.708-8.709L21.019,15.725z" fill="url(#SVGID_2_)"/>
+<path d="M16.664,36.407c-4.51-4.509-8.318-8.01-3.81-12.52l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,21.173,40.916,16.664,36.407z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M15.031,38.04c-4.508-4.508-6.685-9.643-2.177-14.152l-0.544,0.544c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0.543-0.545C24.674,44.728,19.541,42.55,15.031,38.04z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.398,39.674C8.889,35.164,7.8,28.941,12.31,24.432l0,0c-4.51,4.51-4.51,11.821,0,16.33 c4.508,4.51,11.821,4.51,16.33,0l0,0C24.131,45.271,17.909,44.183,13.398,39.674z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="266.3257" x2="290.9585" y1="483.7915" y2="483.7915">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M34.63,35.86c-0.301,0.3-0.79,0.3-1.09,0l-16.33-16.33c-0.299-0.3-0.299-0.789,0-1.089l2.721-2.721c0.301-0.3,0.791-0.3,1.09,0l16.33,16.33c0.3,0.3,0.3,0.79,0,1.089l-2.72,2.72z" fill="url(#SVGID_3_)"/>
-<path d="M37.35,32.05l-16.33-16.33c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544c0.301-0.299,0.79-0.299,1.09,0l16.33,16.33c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544c0.3-0.3,0.3-0.79,0-1.09z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.09" x="12.46" y="28.67"/>
-<rect fill="#FFFFFF" fill-opacity="0.2" height="0.771" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.09" x="17.91" y="23.23"/>
-<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.09" x="13.01" y="28.13"/>
-<rect fill-opacity="0.4" height="0.769" stroke-opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.09" x="13.55" y="27.59"/>
-<path d="M22.65,15.18c0.301-0.299,0.301-0.786,0-1.087l-1.089,1.087c0.3,0.3,0.79,0.3,1.09,0z" fill="#FFFFFF"/>
-<path d="M27,10.82c0.301-0.3,0.301-0.787,0-1.088l-1.087,1.088c0.31,0.31,0.79,0.3,1.09,0z" fill="#FFFFFF"/>
-<path d="M31.36,6.471c0.291-0.291,0.293-0.753,0.021-1.055-0.19,0.167-0.384,0.329-0.566,0.511l-0.544,0.544c0.3,0.3,0.79,0.3,1.09,0z" fill="#FFFFFF"/>
-<circle cx="27.01" cy="15.18" fill="#FFFFFF" r="0.769"/>
-<circle cx="31.36" cy="10.82" fill="#FFFFFF" r="0.77"/>
-<circle cx="35.72" cy="6.471" fill="#FFFFFF" r="0.77"/>
-<circle cx="27.55" cy="20.08" fill="#FFFFFF" r="0.769"/>
-<circle cx="31.9" cy="15.72" fill="#FFFFFF" r="0.77"/>
-<circle cx="36.26" cy="11.37" fill="#FFFFFF" r="0.769"/>
-<path d="M37.89,30.42c-0.299,0.301-0.299,0.788,0,1.089l1.089-1.089c-0.3-0.3-0.79-0.3-1.09,0z" fill="#FFFFFF"/>
-<path d="M42.25,26.06c-0.301,0.301-0.301,0.788,0,1.089l1.088-1.089c-0.31-0.3-0.79-0.29-1.09,0z" fill="#FFFFFF"/>
-<path d="M47.66,21.69c-0.302-0.272-0.766-0.27-1.057,0.021-0.301,0.3-0.301,0.788,0,1.088l0.544-0.544c0.19-0.19,0.35-0.38,0.52-0.57z" fill="#FFFFFF"/>
-<circle cx="37.89" cy="26.06" fill="#FFFFFF" r="0.77"/>
-<circle cx="42.25" cy="21.71" fill="#FFFFFF" r="0.77"/>
-<circle cx="46.6" cy="17.36" fill="#FFFFFF" r="0.77"/>
-<circle cx="32.99" cy="25.52" fill="#FFFFFF" r="0.769"/>
-<circle cx="37.35" cy="21.17" fill="#FFFFFF" r="0.77"/>
-<circle cx="41.7" cy="16.81" fill="#FFFFFF" r="0.769"/>
-<circle cx="32.45" cy="20.62" fill="#FFFFFF" r="0.77"/>
-<circle cx="36.8" cy="16.27" fill="#FFFFFF" r="0.769"/>
-<circle cx="41.16" cy="11.91" fill="#FFFFFF" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="267.5" x2="267.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M34.626,35.862c-0.301,0.3-0.79,0.3-1.09,0L17.208,19.534c-0.299-0.3-0.299-0.789,0-1.089 l2.721-2.721c0.301-0.3,0.791-0.3,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089L34.626,35.862z" fill="url(#SVGID_3_)"/>
+<path d="M37.347,32.053L21.019,15.725c-0.3-0.3-0.79-0.3-1.09,0l-0.544,0.544 c0.301-0.299,0.79-0.299,1.09,0l16.328,16.328c0.3,0.3,0.3,0.79,0,1.089l0.544-0.544C37.647,32.843,37.647,32.353,37.347,32.053z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.5824 -8.4675)" width="23.093" x="12.465" y="28.674"/>
+<rect fill="#FFFFFF" fill-opacity="0.2" height="0.771" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 25.326 -13.911)" width="23.091" x="17.909" y="23.23"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.3549 -9.0122)" width="23.091" x="13.01" y="28.13"/>
+<rect fill-opacity="0.4" height="0.769" stroke-opacity="0.4" transform="matrix(0.7071 0.7071 -0.7071 0.7071 27.131 -9.5558)" width="23.092" x="13.554" y="27.586"/>
+<path d="M22.652,15.179c0.301-0.299,0.301-0.786,0-1.087l-1.089,1.087C21.864,15.481,22.351,15.48,22.652,15.179z" fill="#FFFFFF"/>
+<path d="M27.005,10.824c0.301-0.3,0.301-0.787,0-1.088l-1.087,1.088C26.217,11.126,26.705,11.125,27.005,10.824z" fill="#FFFFFF"/>
+<path d="M31.361,6.471c0.291-0.291,0.293-0.753,0.021-1.055c-0.19,0.167-0.384,0.329-0.566,0.511l-0.544,0.544 C30.571,6.771,31.059,6.771,31.361,6.471z" fill="#FFFFFF"/>
+<circle cx="27.006" cy="15.181" fill="#FFFFFF" r="0.769"/>
+<circle cx="31.359" cy="10.825" fill="#FFFFFF" r="0.77"/>
+<circle cx="35.715" cy="6.471" fill="#FFFFFF" r="0.77"/>
+<circle cx="27.549" cy="20.078" fill="#FFFFFF" r="0.769"/>
+<circle cx="31.905" cy="15.724" fill="#FFFFFF" r="0.77"/>
+<circle cx="36.26" cy="11.369" fill="#FFFFFF" r="0.769"/>
+<path d="M37.891,30.42c-0.299,0.301-0.299,0.788,0,1.089l1.089-1.089C38.68,30.119,38.193,30.119,37.891,30.42z" fill="#FFFFFF"/>
+<path d="M42.246,26.065c-0.301,0.301-0.301,0.788,0,1.089l1.088-1.089C43.033,25.765,42.547,25.766,42.246,26.065z" fill="#FFFFFF"/>
+<path d="M47.657,21.689c-0.302-0.272-0.766-0.27-1.057,0.021c-0.301,0.3-0.301,0.788,0,1.088l0.544-0.544 C47.326,22.073,47.49,21.881,47.657,21.689z" fill="#FFFFFF"/>
+<circle cx="37.892" cy="26.065" fill="#FFFFFF" r="0.77"/>
+<circle cx="42.246" cy="21.71" fill="#FFFFFF" r="0.77"/>
+<circle cx="46.6" cy="17.357" fill="#FFFFFF" r="0.77"/>
+<circle cx="32.992" cy="25.521" fill="#FFFFFF" r="0.769"/>
+<circle cx="37.347" cy="21.167" fill="#FFFFFF" r="0.77"/>
+<circle cx="41.702" cy="16.813" fill="#FFFFFF" r="0.769"/>
+<circle cx="32.448" cy="20.622" fill="#FFFFFF" r="0.77"/>
+<circle cx="36.803" cy="16.269" fill="#FFFFFF" r="0.769"/>
+<circle cx="41.157" cy="11.914" fill="#FFFFFF" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="267.4819" x2="267.4819" y1="462.314" y2="479.7079">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M23.2,14.64c0.301-0.302,0.301-0.788,0-1.091l-1.088,1.091c0.3,0.3,0.79,0.3,1.09,0z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="267.5" x2="267.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M23.196,14.637c0.301-0.302,0.301-0.788,0-1.091l-1.088,1.091 C22.409,14.937,22.895,14.937,23.196,14.637z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="267.481" x2="267.481" y1="462.3311" y2="479.7029">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M27.55,10.28c0.302-0.3,0.302-0.788,0-1.088l-1.087,1.088c0.3,0.3,0.79,0.3,1.09,0z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.5" x2="267.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M27.549,10.28c0.302-0.3,0.302-0.788,0-1.088l-1.087,1.088C26.763,10.582,27.249,10.581,27.549,10.28 z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="267.481" x2="267.481" y1="462.3467" y2="479.6524">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M31.9,5.927c0.292-0.291,0.294-0.754,0.023-1.057-0.192,0.168-0.386,0.33-0.566,0.512l-0.545,0.545c0.32,0.301,0.8,0.301,1.1,0z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="270.9" x2="270.9" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M31.903,5.927c0.292-0.291,0.294-0.754,0.023-1.057c-0.192,0.168-0.386,0.33-0.566,0.512 l-0.545,0.545C31.116,6.228,31.603,6.228,31.903,5.927z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="270.9458" x2="270.9458" y1="462.3418" y2="479.7027">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="27.55" cy="14.64" fill="url(#SVGID_7_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="270.9" x2="270.9" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="27.549" cy="14.635" fill="url(#SVGID_7_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="270.9458" x2="270.9458" y1="462.3311" y2="479.6974">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="31.9" cy="10.28" fill="url(#SVGID_8_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="270.9" x2="270.9" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="31.905" cy="10.28" fill="url(#SVGID_8_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="270.9458" x2="270.9458" y1="462.3247" y2="479.6966">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
<circle cx="36.26" cy="5.926" fill="url(#SVGID_9_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="274.8" x2="274.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="274.7954" x2="274.7954" y1="462.314" y2="479.7079">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="28.09" cy="19.53" fill="url(#SVGID_10_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="274.8" x2="274.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="28.094" cy="19.534" fill="url(#SVGID_10_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="274.7944" x2="274.7944" y1="462.3257" y2="479.7086">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="32.45" cy="15.18" fill="url(#SVGID_11_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="274.8" x2="274.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="32.448" cy="15.181" fill="url(#SVGID_11_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="274.7944" x2="274.7944" y1="462.3267" y2="479.6985">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="36.8" cy="10.82" fill="url(#SVGID_12_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="289.8" x2="289.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="36.803" cy="10.825" fill="url(#SVGID_12_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="289.8052" x2="289.8052" y1="462.335" y2="479.7068">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M38.44,29.88c-0.301,0.301-0.301,0.788,0,1.088l1.088-1.088c-0.31-0.31-0.79-0.3-1.09,0z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="289.8" x2="289.8" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M38.437,29.876c-0.301,0.301-0.301,0.788,0,1.088l1.088-1.088 C39.225,29.574,38.737,29.575,38.437,29.876z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="289.8052" x2="289.8052" y1="462.3247" y2="479.7076">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M42.79,25.52c-0.301,0.301-0.301,0.787,0,1.09l1.088-1.09c-0.3-0.3-0.79-0.3-1.09,0z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="289.8" x2="289.8" y1="462.4" y2="479.6">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M42.79,25.521c-0.301,0.301-0.301,0.787,0,1.09l1.088-1.09C43.579,25.22,43.091,25.22,42.79,25.521z " fill="url(#SVGID_14_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="289.8032" x2="289.8032" y1="462.3516" y2="479.6407">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M48.2,21.15c-0.302-0.274-0.765-0.271-1.057,0.02-0.301,0.302-0.301,0.788,0,1.089l0.544-0.544c0.19-0.19,0.35-0.38,0.52-0.57z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="286.3" x2="286.3" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M48.201,21.146c-0.302-0.274-0.765-0.271-1.057,0.02c-0.301,0.302-0.301,0.788,0,1.089l0.544-0.544 C47.871,21.529,48.034,21.335,48.201,21.146z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="286.3403" x2="286.3403" y1="462.3247" y2="479.7076">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="38.44" cy="25.52" fill="url(#SVGID_16_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="286.3" x2="286.3" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="38.436" cy="25.521" fill="url(#SVGID_16_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="286.3403" x2="286.3403" y1="462.3271" y2="479.7046">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="42.79" cy="21.17" fill="url(#SVGID_17_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="286.3" x2="286.3" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="42.79" cy="21.167" fill="url(#SVGID_17_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="286.3403" x2="286.3403" y1="462.3262" y2="479.7036">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M47.69,17.36c-0.297,0.3-0.786,0.3-1.088,0-0.301-0.301-0.301-0.788,0-1.089s0.787-0.301,1.088,0c0.3,0.3,0.3,0.79,0,1.09z" fill="url(#SVGID_18_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="282.5" x2="282.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M47.688,17.357c-0.297,0.3-0.786,0.3-1.088,0c-0.301-0.301-0.301-0.788,0-1.089s0.787-0.301,1.088,0 C47.991,16.569,47.989,17.057,47.688,17.357z" fill="url(#SVGID_18_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_19_" x1="282.4907" x2="282.4907" y1="462.3296" y2="479.707">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M34.08,25.52c-0.298,0.301-0.786,0.301-1.088,0-0.301-0.301-0.301-0.788,0-1.089,0.301-0.3,0.789-0.301,1.088,0,0.3,0.3,0.3,0.79,0,1.09z" fill="url(#SVGID_19_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="282.5" x2="282.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M34.08,25.521c-0.298,0.301-0.786,0.301-1.088,0c-0.301-0.301-0.301-0.788,0-1.089 c0.301-0.3,0.789-0.301,1.088,0C34.383,24.734,34.381,25.22,34.08,25.521z" fill="url(#SVGID_19_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="282.4917" x2="282.4917" y1="462.3237" y2="479.7066">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="37.89" cy="20.62" fill="url(#SVGID_20_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="282.5" x2="282.5" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="37.892" cy="20.622" fill="url(#SVGID_20_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_21_" x1="282.4917" x2="282.4917" y1="462.3267" y2="479.7041">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="42.25" cy="16.27" fill="url(#SVGID_21_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="278.6" x2="278.6" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="42.246" cy="16.269" fill="url(#SVGID_21_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_22_" x1="278.6431" x2="278.6431" y1="462.3335" y2="479.7054">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="32.99" cy="20.08" fill="url(#SVGID_22_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="278.6" x2="278.6" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="32.992" cy="20.078" fill="url(#SVGID_22_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_23_" x1="278.6431" x2="278.6431" y1="462.3223" y2="479.7107">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="37.35" cy="15.72" fill="url(#SVGID_23_)" r="0.77"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="278.6" x2="278.6" y1="462.3" y2="479.7">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2" stop-color="#4F4F4F"/>
-<stop offset="0.7152" stop-color="#000000"/>
-<stop offset="1" stop-color="#000000"/>
+<circle cx="37.347" cy="15.724" fill="url(#SVGID_23_)" r="0.77"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 172.3383 -513.3235)" gradientUnits="userSpaceOnUse" id="SVGID_24_" x1="278.6431" x2="278.6431" y1="462.3242" y2="479.7016">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2" style="stop-color:#4F4F4F"/>
+<stop offset="0.7152" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="41.7" cy="11.37" fill="url(#SVGID_24_)" r="0.769"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -374.1758 -502.9102)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="404.8" x2="396.4" y1="554.9" y2="554.9">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.2545" stop-color="#1A1A1A"/>
-<stop offset="0.6182" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<circle cx="41.702" cy="11.369" fill="url(#SVGID_24_)" r="0.769"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -374.1758 -502.9102)" gradientUnits="userSpaceOnUse" id="SVGID_25_" x1="404.7837" x2="396.38" y1="554.8911" y2="554.8911">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.2545" style="stop-color:#1A1A1A"/>
+<stop offset="0.6182" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M30.29,54.4c-0.001,1.216-0.979,2.203-2.185,2.203h-3.328c-1.207,0-2.185-0.987-2.185-2.2v-5.618c0-1.215,0.978-1.42,2.185-1.42h3.327c1.207,0,2.184,0.205,2.184,1.42l0.02,5.62z" fill="url(#SVGID_25_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="14.89" x2="37.98" y1="56.07" y2="56.07">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#999999"/>
-<stop offset="0.7515" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M30.288,54.397c-0.001,1.216-0.979,2.203-2.185,2.203h-3.328c-1.207,0-2.185-0.987-2.185-2.2v-5.618 c0-1.215,0.978-1.42,2.185-1.42h3.327c1.207,0,2.184,0.205,2.184,1.42L30.288,54.397z" fill="url(#SVGID_25_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_26_" x1="14.8921" x2="37.9844" y1="56.0747" y2="56.0747">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#999999"/>
+<stop offset="0.7515" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
+</linearGradient>
+<path d="M37.937,58c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-1.251-1.026-2.267-2.292-2.267H17.186 c-1.266,0-2.293,1.016-2.293,2.267v0.506c0,0.158,0.019,0.312,0.049,1.078H37.937z" fill="url(#SVGID_26_)"/>
+<path d="M15.032,55.661h22.811c-0.101-0.282-0.255-0.537-0.453-0.755H15.488 C15.29,55.124,15.135,55.379,15.032,55.661z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14.904,57.243c0.009,0.154,0.02,0.381,0.035,0.757h22.997c0.017-0.376,0.028-0.603,0.037-0.757H14.904z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M15.488,54.906H37.39c-0.42-0.462-1.021-0.757-1.698-0.757H17.186 C16.509,54.149,15.908,54.444,15.488,54.906z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M30,49.086v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304 c0.391,0.721,1.147,1.216,2.02,1.216h3.079C28.854,50.302,29.606,49.807,30,49.086z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M29.518,47.992v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294 c0,0.85,0.69,1.54,1.539,1.54h3.079C28.827,49.532,29.518,48.842,29.518,47.992z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M28.64,40.762l1.648-1.649V25.67c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307 c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.275C24.807,43.534,26.924,42.476,28.64,40.762z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M28.64,40.762l0.878-0.879V25.67c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.097 C25.293,43.269,27.125,42.275,28.64,40.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="26.4395" x2="26.4395" y1="25.1289" y2="48.4234">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.3818" style="stop-color:#7A7A7A"/>
+<stop offset="0.7091" style="stop-color:#1A1A1A"/>
+<stop offset="1" style="stop-color:#4D4D4D"/>
</linearGradient>
-<path d="M37.94,58c0.032-0.767,0.048-0.92,0.048-1.078v-0.506c0-1.251-1.026-2.267-2.292-2.267h-18.51c-1.266,0-2.293,1.016-2.293,2.267v0.506c0,0.158,0.019,0.312,0.049,1.078h23z" fill="url(#SVGID_26_)"/>
-<path d="M15.03,55.66h22.81c-0.101-0.282-0.255-0.537-0.453-0.755h-21.9c-0.198,0.22-0.348,0.48-0.458,0.76z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M14.9,57.24c0.009,0.154,0.02,0.381,0.035,0.757h23c0.017-0.376,0.028-0.603,0.037-0.757h-23.08z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M15.49,54.91h21.9c-0.42-0.462-1.021-0.757-1.698-0.757h-18.5c-0.676,0-1.276,0.29-1.696,0.76z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M30,49.09v-0.304c0-1.215-0.906-1.42-2.022-1.42h-3.079c-1.115,0-2.02,0.205-2.02,1.42v0.304c0.391,0.721,1.147,1.216,2.02,1.216h3.079c0.87-0.01,1.63-0.5,2.02-1.22z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M29.52,47.99v-0.294c-0.371-0.265-0.918-0.336-1.54-0.336h-3.079c-0.62,0-1.169,0.071-1.539,0.336v0.294c0,0.85,0.69,1.54,1.539,1.54h3.079c0.85,0,1.54-0.69,1.54-1.54z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M28.64,40.76l1.648-1.649v-13.44c0-0.298-0.062-0.58-0.164-0.84l-1.305-1.307c-0.261-0.104-0.542-0.163-0.841-0.163h-3.079c-1.273,0-2.309,1.036-2.309,2.31v18.28c2.22-0.41,4.33-1.46,6.05-3.18z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M28.64,40.76l0.878-0.879v-14.21c0-0.85-0.691-1.54-1.54-1.54h-3.079c-0.849,0-1.539,0.69-1.539,1.54v18.1c1.93-0.5,3.76-1.49,5.28-3.01z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_27_" x1="26.44" x2="26.44" y1="25.13" y2="48.42">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.3818" stop-color="#7A7A7A"/>
-<stop offset="0.7091" stop-color="#1A1A1A"/>
-<stop offset="1" stop-color="#4D4D4D"/>
+<path d="M28.748,47.992c0,0.426-0.344,0.77-0.77,0.77h-3.079c-0.425,0-0.768-0.344-0.768-0.77V25.67 c0-0.425,0.343-0.771,0.768-0.771h3.079c0.426,0,0.77,0.346,0.77,0.771V47.992z" fill="url(#SVGID_27_)"/>
+<path d="M26.439,29.237c-2.124,0-3.849-1.727-3.849-3.848c0-2.123,1.725-3.85,3.849-3.85 c2.121,0,3.848,1.727,3.848,3.85C30.288,27.511,28.56,29.237,26.439,29.237L26.439,29.237z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.439" x2="26.439" y1="22.3696" y2="28.3803">
+<stop offset="0" style="stop-color:#9C9C9C"/>
+<stop offset="0.1515" style="stop-color:#D5D5D5"/>
+<stop offset="0.703" style="stop-color:#565656"/>
+<stop offset="0.9879" style="stop-color:#575757"/>
+<stop offset="1" style="stop-color:#575757"/>
</linearGradient>
-<path d="M28.75,47.99c0,0.426-0.344,0.77-0.77,0.77h-3.079c-0.425,0-0.768-0.344-0.768-0.77v-22.32c0-0.425,0.343-0.771,0.768-0.771h3.079c0.426,0,0.77,0.346,0.77,0.771v22.32z" fill="url(#SVGID_27_)"/>
-<path d="M26.44,29.24c-2.124,0-3.849-1.727-3.849-3.848,0-2.123,1.725-3.85,3.849-3.85,2.121,0,3.848,1.727,3.848,3.85,0,2.12-1.73,3.85-3.85,3.85z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_28_" x1="26.44" x2="26.44" y1="22.37" y2="28.38">
-<stop offset="0" stop-color="#9C9C9C"/>
-<stop offset="0.1515" stop-color="#D5D5D5"/>
-<stop offset="0.703" stop-color="#565656"/>
-<stop offset="0.9879" stop-color="#575757"/>
-<stop offset="1" stop-color="#575757"/>
+<circle cx="26.439" cy="25.39" fill="url(#SVGID_28_)" r="3.079"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.4385" x2="26.4385" y1="23.8794" y2="26.8862">
+<stop offset="0" style="stop-color:#646464"/>
+<stop offset="1" style="stop-color:#EBEBEB"/>
</linearGradient>
-<circle cx="26.44" cy="25.39" fill="url(#SVGID_28_)" r="3.079"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_29_" x1="26.44" x2="26.44" y1="23.88" y2="26.89">
-<stop offset="0" stop-color="#646464"/>
-<stop offset="1" stop-color="#EBEBEB"/>
-</linearGradient>
-<path d="M26.44,26.93c-0.851,0-1.541-0.691-1.541-1.54,0-0.85,0.69-1.54,1.541-1.54,0.847,0,1.539,0.69,1.539,1.54s-0.69,1.54-1.54,1.54z" fill="url(#SVGID_29_)"/>
-<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" width="7.697" x="22.59" y="53.38"/>
-<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" width="7.697" x="22.59" y="52.61"/>
+<path d="M26.439,26.93c-0.851,0-1.541-0.691-1.541-1.54c0-0.85,0.69-1.54,1.541-1.54 c0.847,0,1.539,0.69,1.539,1.54C27.978,26.238,27.287,26.93,26.439,26.93L26.439,26.93z" fill="url(#SVGID_29_)"/>
+<rect fill-opacity="0.2" height="0.769" stroke-opacity="0.2" width="7.697" x="22.59" y="53.381"/>
+<rect fill-opacity="0.1" height="0.77" stroke-opacity="0.1" width="7.697" x="22.59" y="52.611"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,71 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
+<radialGradient cx="-2058.7837" cy="-2250.877" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6653">
+<stop offset="0" style="stop-color:#6FB2B5"/>
+<stop offset="0.297" style="stop-color:#6FB2B5"/>
+<stop offset="0.6667" style="stop-color:#4C5F94"/>
+<stop offset="0.7939" style="stop-color:#679FAD"/>
+<stop offset="1" style="stop-color:#679FAD"/>
</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333c-0.617-0.665-2.567-3.083-2.968-3.735 c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.085-7.646,9.956-8.107 c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967c0.534,0.492,0.872,0.588,1.299,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778c-2.476-2.889-8.594-5.015-10.751-5.399 c-1.923-0.345-3.876-0.872-6.567,0.235c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.386,2.158,2.51,8.275,5.399,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2070.7568" x2="-2070.3252" y1="-2266.8511" y2="-2263.2749">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<path d="M35.172,17.108c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.048-0.035,0.062-0.046,0.064-0.046c0.253-0.184,1.032-0.738,2.12-1.514 c-0.251-0.204-3.468-2.809-4.8-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2070.7607" x2="-2070.3289" y1="5104.5752" y2="5108.1523">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="1" style="stop-color:#1D1A33"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.713c0.376,0.666,2.351,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.298c-0.035,0.047-0.046,0.062-0.046,0.062c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.204-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.9224" x2="3.9991" y1="3.9307" y2="47.854">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M2.979,47.467c-0.344-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.341,4.269,40.9,3.215c2.691-1.108,4.644-0.581,6.567-0.236 c1.981,0.354,7.296,2.178,10.069,4.711c-2.552-2.815-8.496-4.879-10.617-5.258c-1.923-0.345-3.876-0.872-6.567,0.235 c-2.559,1.054-13.075,8.536-21.112,16.572C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567 c0.378,2.122,2.441,8.065,5.258,10.617C5.156,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.3535" x2="3.9474" y1="3.2017" y2="53.6078">
+<stop offset="0" style="stop-color:#C4E6D4"/>
+<stop offset="1" style="stop-color:#7DA8B4"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
+<path d="M20.37,41.951c0.3-0.437,0.234-0.799-0.258-1.333 c-0.617-0.665-2.567-3.083-2.968-3.735c-0.353-0.575-0.412-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.085-7.646,9.956-8.107c0.76-0.4,1.038-0.345,1.711,0.035c0.666,0.377,3.069,2.352,3.735,2.967 c0.534,0.492,0.872,0.588,1.299,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.524-1.778 c-0.292-0.339-0.634-0.665-1.013-0.982c0.49,0.657,0.198,1.134-0.607,1.666C54.65,9.447,41.576,18.739,40.825,19.29 c-0.431,0.314-0.767,0.219-1.3-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.948-0.436-1.71-0.034 c-0.871,0.46-3.764,1.914-9.956,8.106c-6.193,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.319,1.135,0.035,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.493,0.533,0.559,0.896,0.259,1.332c-0.517,0.755-9.828,13.794-10.76,15.195 c-0.533,0.803-1.008,1.098-1.665,0.606c0.314,0.378,0.644,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2041.9355" x2="-2041.9355" y1="-2305.2153" y2="-2243.2966">
+<stop offset="0" style="stop-color:#5A7E9E"/>
+<stop offset="0.5091" style="stop-color:#1D1A33"/>
+<stop offset="1" style="stop-color:#516C8F"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31c8.505-8.506,20.532-17.529,23.308-18.803 c0.527-0.241,1.02-0.411,1.493-0.545c-0.511-0.096-1.03-0.19-1.565-0.26c-0.086,0.036-0.163,0.063-0.25,0.102 c-2.818,1.293-14.971,10.397-23.533,18.959C12.595,29.717,3.489,41.869,2.195,44.688c-0.038,0.087-0.063,0.166-0.101,0.25 c0.07,0.535,0.166,1.055,0.259,1.565C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_active.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_active.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,62 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#93AC5D"/>
-<stop offset="0.297" stop-color="#93AC5D"/>
-<stop offset="0.6667" stop-color="#356742"/>
-<stop offset="0.7939" stop-color="#447B42"/>
-<stop offset="1" stop-color="#447B42"/>
+<g>
+<radialGradient cx="-1627.3687" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#93AC5D"/>
+<stop offset="0.297" style="stop-color:#93AC5D"/>
+<stop offset="0.6667" style="stop-color:#356742"/>
+<stop offset="0.7939" style="stop-color:#447B42"/>
+<stop offset="1" style="stop-color:#447B42"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-2.477-2.889-8.594-5.015-10.75-5.399-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.616,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-2.477-2.889-8.594-5.015-10.752-5.399 c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571C11.203,27.277,3.722,37.795,2.668,40.352 c-1.108,2.691-0.581,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.616,1.213,0.323,1.777-0.525 C10.542,55.745,19.852,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3428" x2="-1638.9111" y1="-2494.9824" y2="-2491.4067">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.034,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.739,2.119-1.514-0.252-0.205-3.469-2.809-4.801-2.956-2.43-0.27-4.12,1.24-4.12,1.24z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#3C7440"/>
-<stop offset="1" stop-color="#1E3A31"/>
+<path d="M35.172,17.107c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.034,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.739,2.119-1.514 c-0.252-0.205-3.469-2.809-4.801-2.956C36.855,15.598,35.172,17.107,35.172,17.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3467" x2="-1638.9149" y1="4063.0557" y2="4066.6318">
+<stop offset="0" style="stop-color:#3C7440"/>
+<stop offset="1" style="stop-color:#1E3A31"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.714,0.376,0.665,2.351,3.067,2.967,3.737,0.492,0.53,0.587,0.869,0.274,1.297-0.035,0.049-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.12-0.203-0.252-2.807-3.469-2.956-4.8-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<path d="M2.979,47.47c-0.344-1.923-0.873-3.877,0.235-6.567,1.054-2.557,8.535-13.07,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.922-0.345-3.875-0.873-6.564,0.236-2.561,1.053-13.08,8.534-21.11,16.57-8.05,8.04-15.53,18.56-16.58,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.258-1.332-0.617-0.666-2.567-3.084-2.968-3.737-0.353-0.575-0.411-1.02-0.034-1.71,0.473-0.865,1.915-3.764,8.107-9.956s9.084-7.646,9.956-8.108c0.76-0.399,1.037-0.344,1.711,0.036,0.666,0.376,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.77,0.85-0.565,1.141-1.062,0.523-1.779-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.658,0.197,1.134-0.607,1.667-1.4,0.932-14.48,10.22-15.23,10.78-0.43,0.313-0.768,0.218-1.299-0.273-0.668-0.618-3.07-2.592-3.738-2.969-0.672-0.38-0.949-0.436-1.711-0.035-0.869,0.462-3.763,1.915-9.955,8.107s-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.558,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.666,0.606,0.314,0.378,0.643,0.723,0.982,1.013,0.718,0.616,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#315D3E"/>
-<stop offset="0.5" stop-color="#1E3A31"/>
-<stop offset="1" stop-color="#2E593D"/>
+<path d="M17.092,35.188c-0.401,0.763-0.346,1.039,0.035,1.714c0.376,0.665,2.351,3.067,2.967,3.737 c0.492,0.53,0.587,0.869,0.274,1.297c-0.035,0.049-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.12 c-0.203-0.252-2.807-3.469-2.956-4.8C15.579,36.875,17.092,35.188,17.092,35.188z" fill="url(#SVGID_3_)"/>
+<path d="M2.979,47.466c-0.344-1.923-0.873-3.877,0.235-6.567c1.054-2.557,8.535-13.074,16.573-21.112 C27.825,11.749,38.34,4.268,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236c1.98,0.354,7.297,2.178,10.07,4.711 c-2.553-2.815-8.496-4.879-10.619-5.258c-1.922-0.345-3.875-0.873-6.564,0.236c-2.561,1.053-13.076,8.534-21.113,16.571 C11.203,27.277,3.722,37.795,2.668,40.352c-1.108,2.691-0.581,4.645-0.236,6.567c0.378,2.122,2.441,8.065,5.258,10.617 C5.156,54.763,3.333,49.448,2.979,47.466z" fill="#B1BE95" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.258-1.332c-0.617-0.666-2.567-3.084-2.968-3.737 c-0.353-0.575-0.411-1.02-0.034-1.71c0.473-0.865,1.915-3.764,8.107-9.956c6.192-6.192,9.084-7.646,9.956-8.108 c0.76-0.399,1.037-0.344,1.711,0.036c0.666,0.376,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.774c0.85-0.565,1.141-1.062,0.523-1.779c-0.291-0.339-0.635-0.665-1.012-0.982 c0.488,0.658,0.197,1.134-0.607,1.667c-1.4,0.932-14.475,10.224-15.227,10.775c-0.43,0.313-0.768,0.218-1.299-0.273 c-0.668-0.618-3.07-2.592-3.738-2.969c-0.672-0.38-0.949-0.436-1.711-0.035c-0.869,0.462-3.763,1.915-9.955,8.107 c-6.192,6.192-7.635,9.092-8.107,9.956c-0.378,0.69-0.32,1.135,0.035,1.711c0.4,0.651,2.351,3.069,2.967,3.736 c0.493,0.533,0.558,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195c-0.534,0.803-1.009,1.098-1.666,0.606 c0.314,0.378,0.643,0.723,0.982,1.013c0.718,0.616,1.213,0.323,1.777-0.525C10.542,55.745,19.852,42.705,20.37,41.951z" fill="#B1BE95" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1610.522" x2="-1610.522" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#315D3E"/>
+<stop offset="0.5" style="stop-color:#1E3A31"/>
+<stop offset="1" style="stop-color:#2E593D"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.776,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96-8.562,8.562-17.67,20.72-18.96,23.54-0.038,0.086-0.063,0.165-0.101,0.25,0.071,0.534,0.165,1.054,0.259,1.564,0.141-0.48,0.31-0.97,0.551-1.5z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.776,10.299-14.805,18.804-23.31 c8.505-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.534,18.958c-8.562,8.562-17.667,20.715-18.96,23.535 c-0.038,0.086-0.063,0.165-0.101,0.25c0.071,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_end.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_end.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,70 +1,74 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-1374" cy="2709" gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.26">
-<stop offset="0" stop-color="#C0A26F"/>
-<stop offset="0.297" stop-color="#C0A26F"/>
-<stop offset="0.6667" stop-color="#954749"/>
-<stop offset="0.7939" stop-color="#BE8A6B"/>
-<stop offset="1" stop-color="#BE8A6B"/>
+<g>
+<radialGradient cx="-1374.2305" cy="2708.6123" gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2612">
+<stop offset="0" style="stop-color:#C0A26F"/>
+<stop offset="0.297" style="stop-color:#C0A26F"/>
+<stop offset="0.6667" style="stop-color:#954749"/>
+<stop offset="0.7939" style="stop-color:#BE8A6B"/>
+<stop offset="1" style="stop-color:#BE8A6B"/>
</radialGradient>
-<path d="M17.88,35.42c0.413-0.078,0.579-0.318,0.603-0.895,0.027-0.721,0.29-3.172,0.431-3.764,0.124-0.521,0.342-0.805,0.941-0.98,0.75-0.22,3.188-1.037,10.14-1.038,6.954,0,9.393,0.807,10.14,1.038,0.651,0.201,0.777,0.389,0.941,0.98,0.162,0.586,0.402,3.043,0.431,3.764,0.024,0.576,0.16,0.82,0.577,0.883,0.731,0.113,13.29,2.238,14.6,2.502,0.794,0.16,1.237,0.045,1.292-0.705,0.231-3.012-2.009-7.641-3.005-9.067-0.887-1.274-1.687-2.667-3.82-3.557-2.028-0.845-12.13-2.548-21.16-2.548-9.026-0.001-19.13,1.704-21.16,2.548-2.133,0.889-2.935,2.282-3.82,3.555-0.995,1.429-3.237,6.055-3.006,9.069,0.058,0.748,0.5,0.863,1.292,0.703,1.334-0.25,13.88-2.34,14.59-2.47z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1384" x2="-1383" y1="2721" y2="2718">
-<stop offset="0" stop-color="#905A46"/>
-<stop offset="1" stop-color="#6B2E36"/>
+<path d="M17.884,35.418c0.413-0.078,0.579-0.318,0.603-0.895c0.027-0.721,0.29-3.172,0.431-3.764 c0.124-0.521,0.342-0.805,0.941-0.98c0.75-0.22,3.188-1.037,10.143-1.038c6.954,0,9.393,0.807,10.141,1.038 c0.651,0.201,0.777,0.389,0.941,0.98c0.162,0.586,0.402,3.043,0.431,3.764c0.024,0.576,0.16,0.82,0.577,0.883 c0.731,0.113,13.291,2.238,14.601,2.502c0.794,0.16,1.237,0.045,1.292-0.705c0.231-3.012-2.009-7.641-3.005-9.067 c-0.887-1.274-1.687-2.667-3.82-3.557c-2.028-0.845-12.133-2.548-21.158-2.548c-9.026-0.001-19.132,1.704-21.159,2.548 c-2.133,0.889-2.935,2.282-3.82,3.555c-0.995,1.429-3.237,6.055-3.006,9.069c0.058,0.748,0.5,0.863,1.292,0.703 C4.62,37.645,17.169,35.549,17.884,35.418z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0 1 1 0 -2678.1238 1416.3748)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1383.7373" x2="-1383.3947" y1="2721.2969" y2="2718.4587">
+<stop offset="0" style="stop-color:#905A46"/>
+<stop offset="1" style="stop-color:#6B2E36"/>
</linearGradient>
-<path d="M40.14,29.78c0.65,0.202,0.775,0.39,0.94,0.981,0.162,0.584,0.401,3.043,0.431,3.762,0.024,0.578,0.16,0.82,0.576,0.885,0.046,0.008,0.062,0.01,0.063,0.01,0.244,0.039,0.993,0.164,2.039,0.342-0.026-0.258-0.37-3.525-1.036-4.357-1.21-1.51-3.01-1.61-3.01-1.61z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0 1 -1 0 -3579.3215 1416.3782)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1384" x2="-1383" y1="-3596" y2="-3599">
-<stop offset="0" stop-color="#905A46"/>
-<stop offset="1" stop-color="#6B2E36"/>
+<path d="M40.145,29.779c0.65,0.202,0.775,0.39,0.94,0.981c0.162,0.584,0.401,3.043,0.431,3.762 c0.024,0.578,0.16,0.82,0.576,0.885c0.046,0.008,0.062,0.01,0.063,0.01c0.244,0.039,0.993,0.164,2.039,0.342 c-0.026-0.258-0.37-3.525-1.036-4.357C41.938,29.877,40.145,29.779,40.145,29.779z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0 1 -1 0 -3579.3215 1416.3782)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1383.7422" x2="-1383.3992" y1="-3596.1938" y2="-3599.0347">
+<stop offset="0" style="stop-color:#905A46"/>
+<stop offset="1" style="stop-color:#6B2E36"/>
</linearGradient>
-<path d="M19.84,29.78c-0.654,0.203-0.778,0.39-0.942,0.981-0.163,0.586-0.404,3.045-0.433,3.766-0.021,0.574-0.158,0.818-0.574,0.883-0.047,0.008-0.061,0.01-0.061,0.01-0.245,0.039-0.994,0.164-2.041,0.338,0.028-0.254,0.371-3.523,1.036-4.355,1.2-1.52,3-1.62,3-1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="78.53" x2="43.33" y1="-72.92" y2="-108.1">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M19.841,29.779c-0.654,0.203-0.778,0.39-0.942,0.981c-0.163,0.586-0.404,3.045-0.433,3.766 c-0.021,0.574-0.158,0.818-0.574,0.883c-0.047,0.008-0.061,0.01-0.061,0.01c-0.245,0.039-0.994,0.164-2.041,0.338 c0.028-0.254,0.371-3.523,1.036-4.355C18.043,29.876,19.841,29.779,19.841,29.779z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="78.5283" x2="43.332" y1="-72.9224" y2="-108.1187">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M5.021,28.75c0.887-1.275,1.688-2.668,3.819-3.555,2.029-0.846,12.13-2.55,21.16-2.549,9.027-0.001,19.13,1.703,21.16,2.549,2.131,0.888,2.933,2.28,3.819,3.554,0.912,1.311,2.875,5.32,3.009,8.3,0.146-3.016-2.031-7.511-3.009-8.915-0.888-1.274-1.688-2.666-3.82-3.556-2.028-0.845-12.13-2.548-21.16-2.549-9.027,0.001-19.13,1.706-21.16,2.55-2.133,0.889-2.935,2.282-3.82,3.555-0.979,1.404-3.158,5.899-3.009,8.915,0.135-2.99,2.097-7,3.01-8.31z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="82.89" x2="42.85" y1="-73.09" y2="-113.1">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M5.021,28.75c0.887-1.275,1.688-2.668,3.819-3.555 c2.029-0.846,12.134-2.55,21.16-2.549c9.027-0.001,19.13,1.703,21.161,2.549c2.131,0.888,2.933,2.28,3.819,3.554 c0.912,1.311,2.875,5.32,3.009,8.3c0.146-3.016-2.031-7.511-3.009-8.915c-0.888-1.274-1.688-2.666-3.82-3.556 c-2.028-0.845-12.134-2.548-21.158-2.549c-9.027,0.001-19.133,1.706-21.16,2.55c-2.133,0.889-2.935,2.282-3.82,3.555 c-0.979,1.404-3.158,5.899-3.009,8.915C2.146,34.068,4.108,30.06,5.021,28.75z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 51.2805 -77.5527)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="82.8936" x2="42.849" y1="-73.0874" y2="-113.132">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M17.88,35.42c0.413-0.078,0.579-0.318,0.603-0.895,0.027-0.721,0.29-3.172,0.431-3.764,0.124-0.521,0.342-0.805,0.941-0.98,0.75-0.22,3.188-1.037,10.14-1.038,6.954,0,9.393,0.807,10.14,1.038,0.651,0.201,0.777,0.389,0.941,0.98,0.162,0.586,0.402,3.043,0.431,3.764,0.024,0.576,0.16,0.82,0.577,0.883,0.731,0.113,13.29,2.238,14.6,2.502,0.794,0.16,1.237,0.045,1.292-0.705,0.027-0.354,0.018-0.73-0.017-1.119-0.094,0.643-0.526,0.748-1.276,0.594-1.311-0.262-13.87-2.385-14.6-2.5-0.418-0.064-0.553-0.307-0.576-0.883-0.029-0.719-0.27-3.177-0.433-3.765-0.163-0.59-0.287-0.777-0.941-0.979-0.746-0.229-3.188-1.039-10.14-1.037-6.954,0-9.393,0.817-10.14,1.037-0.599,0.176-0.816,0.459-0.94,0.981-0.141,0.59-0.403,3.042-0.433,3.763-0.022,0.576-0.189,0.816-0.603,0.893-0.7,0.15-13.25,2.24-14.56,2.51-0.751,0.15-1.183,0.049-1.275-0.596-0.036,0.389-0.044,0.766-0.018,1.119,0.058,0.748,0.5,0.861,1.292,0.703,1.312-0.26,13.86-2.35,14.57-2.48z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0 1 1 0 -2702.5007 1379.2039)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1353" x2="-1353" y1="2757" y2="2708">
-<stop offset="0" stop-color="#885F4A"/>
-<stop offset="0.5" stop-color="#4F2430"/>
-<stop offset="1" stop-color="#885F4A"/>
+<path d="M17.884,35.418c0.413-0.078,0.579-0.318,0.603-0.895 c0.027-0.721,0.29-3.172,0.431-3.764c0.124-0.521,0.342-0.805,0.941-0.98c0.75-0.22,3.188-1.037,10.143-1.038 c6.954,0,9.393,0.807,10.141,1.038c0.651,0.201,0.777,0.389,0.941,0.98c0.162,0.586,0.402,3.043,0.431,3.764 c0.024,0.576,0.16,0.82,0.577,0.883c0.731,0.113,13.291,2.238,14.601,2.502c0.794,0.16,1.237,0.045,1.292-0.705 c0.027-0.354,0.018-0.73-0.017-1.119c-0.094,0.643-0.526,0.748-1.276,0.594c-1.311-0.262-13.869-2.385-14.6-2.5 c-0.418-0.064-0.553-0.307-0.576-0.883c-0.029-0.719-0.27-3.177-0.433-3.765c-0.163-0.59-0.287-0.777-0.941-0.979 c-0.746-0.229-3.188-1.039-10.14-1.037c-6.954,0-9.393,0.817-10.143,1.037c-0.599,0.176-0.816,0.459-0.94,0.981 c-0.141,0.59-0.403,3.042-0.433,3.763c-0.022,0.576-0.189,0.816-0.603,0.893C17.168,34.32,4.62,36.414,3.309,36.68 c-0.751,0.15-1.183,0.049-1.275-0.596c-0.036,0.389-0.044,0.766-0.018,1.119c0.058,0.748,0.5,0.861,1.292,0.703 C4.62,37.645,17.169,35.549,17.884,35.418z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0 1 1 0 -2702.5007 1379.2039)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1353.1973" x2="-1353.1973" y1="2756.7813" y2="2707.613">
+<stop offset="0" style="stop-color:#885F4A"/>
+<stop offset="0.5" style="stop-color:#4F2430"/>
+<stop offset="1" style="stop-color:#885F4A"/>
</linearGradient>
-<path d="M6.355,27.33c2.275-0.843,14.1-2.529,23.65-2.53,9.552,0,21.37,1.687,23.65,2.53,0.431,0.161,0.804,0.343,1.144,0.531-0.233-0.341-0.472-0.685-0.733-1.024-0.069-0.028-0.127-0.056-0.196-0.082-2.309-0.856-14.24-2.568-23.86-2.568-9.616,0-21.55,1.71-23.86,2.566-0.07,0.028-0.128,0.058-0.198,0.085-0.26,0.339-0.5,0.685-0.733,1.023,0.345-0.19,0.715-0.37,1.146-0.53z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M6.355,27.326c2.275-0.843,14.095-2.529,23.646-2.53 c9.552,0,21.371,1.687,23.646,2.53c0.431,0.161,0.804,0.343,1.144,0.531c-0.233-0.341-0.472-0.685-0.733-1.024 c-0.069-0.028-0.127-0.056-0.196-0.082c-2.309-0.856-14.245-2.568-23.858-2.568c-9.616,0-21.553,1.71-23.862,2.566 c-0.07,0.028-0.128,0.058-0.198,0.085c-0.26,0.339-0.5,0.685-0.733,1.023C5.554,27.667,5.924,27.487,6.355,27.326z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+</g>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_hold.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_hold.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,70 +1,72 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-2350" cy="1517" gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.26">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="0.7939" stop-color="#C2A673"/>
-<stop offset="1" stop-color="#C2A673"/>
+<g>
+<radialGradient cx="-2349.8247" cy="1517.2324" gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="36.2594">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="0.7939" style="stop-color:#C2A673"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</radialGradient>
-<path d="M42.12,24.58c-0.412,0.077-0.578,0.316-0.602,0.895-0.027,0.719-0.291,3.172-0.433,3.764-0.125,0.521-0.342,0.804-0.94,0.979-0.75,0.221-3.188,1.038-10.14,1.039-6.953,0-9.396-0.809-10.14-1.038-0.651-0.201-0.774-0.389-0.94-0.98-0.162-0.586-0.401-3.045-0.433-3.764-0.022-0.576-0.157-0.819-0.575-0.883-0.729-0.113-13.29-2.238-14.6-2.502-0.795-0.158-1.236-0.045-1.293,0.704-0.231,3.013,2.01,7.642,3.004,9.068,0.888,1.272,1.688,2.664,3.82,3.555,2.019,0.85,12.13,2.55,21.15,2.55,9.027,0,19.13-1.705,21.16-2.549,2.134-0.891,2.934-2.282,3.82-3.555,0.994-1.429,3.236-6.056,3.005-9.068-0.057-0.749-0.499-0.862-1.293-0.702-1.31,0.27-13.86,2.36-14.57,2.49z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2359" x2="-2359" y1="1530" y2="1527">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M42.117,24.584c-0.412,0.077-0.578,0.316-0.602,0.895c-0.027,0.719-0.291,3.172-0.433,3.764 c-0.125,0.521-0.342,0.804-0.94,0.979c-0.75,0.221-3.188,1.038-10.144,1.039c-6.953,0-9.396-0.809-10.142-1.038 c-0.651-0.201-0.774-0.389-0.94-0.98c-0.162-0.586-0.401-3.045-0.433-3.764c-0.022-0.576-0.157-0.819-0.575-0.883 c-0.729-0.113-13.291-2.238-14.601-2.502c-0.795-0.158-1.236-0.045-1.293,0.704c-0.231,3.013,2.01,7.642,3.004,9.068 c0.888,1.272,1.688,2.664,3.82,3.555C10.869,36.267,20.977,37.97,30,37.97c9.027,0,19.132-1.705,21.159-2.549 c2.134-0.891,2.934-2.282,3.82-3.555c0.994-1.429,3.236-6.056,3.005-9.068c-0.057-0.749-0.499-0.862-1.293-0.702 C55.381,22.357,42.832,24.451,42.117,24.584z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1546.7637 -2331.9561)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2359.3091" x2="-2358.9661" y1="1529.9209" y2="1527.0802">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M19.86,30.22c-0.652-0.201-0.775-0.389-0.941-0.98-0.162-0.586-0.402-3.045-0.432-3.764-0.023-0.576-0.158-0.819-0.576-0.883-0.047-0.008-0.061-0.011-0.061-0.012-0.246-0.039-0.994-0.165-2.041-0.34,0.024,0.255,0.371,3.523,1.034,4.354,1.22,1.52,3.02,1.62,3.02,1.62z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(4.489659e-010 -1 1 4.489659e-010 2447.9541 -2331.959)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2359" x2="-2359" y1="-2405" y2="-2408">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M19.859,30.222c-0.652-0.201-0.775-0.389-0.941-0.98c-0.162-0.586-0.402-3.045-0.432-3.764 c-0.023-0.576-0.158-0.819-0.576-0.883c-0.047-0.008-0.061-0.011-0.061-0.012c-0.246-0.039-0.994-0.165-2.041-0.34 c0.024,0.255,0.371,3.523,1.034,4.354C18.064,30.123,19.859,30.222,19.859,30.222z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(4.489659e-010 -1 1 4.489659e-010 2447.9541 -2331.959)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2359.3081" x2="-2358.9651" y1="-2404.8115" y2="-2407.6523">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M40.16,30.22c0.654-0.203,0.779-0.389,0.943-0.98,0.162-0.586,0.401-3.045,0.434-3.766,0.021-0.574,0.158-0.817,0.574-0.883,0.045-0.008,0.059-0.009,0.059-0.009,0.246-0.04,0.994-0.166,2.041-0.34-0.026,0.256-0.369,3.522-1.035,4.354-1.2,1.53-3,1.63-3,1.63z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1454" x2="-1489" y1="-225.5" y2="-260.7">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M40.16,30.222c0.654-0.203,0.779-0.389,0.943-0.98c0.162-0.586,0.401-3.045,0.434-3.766 c0.021-0.574,0.158-0.817,0.574-0.883c0.045-0.008,0.059-0.009,0.059-0.009c0.246-0.04,0.994-0.166,2.041-0.34 c-0.026,0.256-0.369,3.522-1.035,4.354C41.957,30.124,40.16,30.222,40.16,30.222z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1453.7261" x2="-1488.9213" y1="-225.5083" y2="-260.7034">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M54.98,31.25c-0.888,1.272-1.688,2.667-3.819,3.555-2.027,0.845-12.13,2.549-21.16,2.549-9.025,0-19.13-1.704-21.16-2.549-2.133-0.889-2.934-2.281-3.82-3.555-0.912-1.312-2.873-5.318-3.008-8.299-0.147,3.014,2.029,7.509,3.008,8.913,0.888,1.272,1.688,2.664,3.82,3.555,2.03,0.87,12.14,2.57,21.16,2.57,9.027,0,19.13-1.705,21.16-2.549,2.134-0.891,2.934-2.282,3.82-3.555,0.979-1.404,3.158-5.899,3.009-8.913-0.14,2.98-2.09,6.99-3.01,8.3z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1449" x2="-1489" y1="-225.7" y2="-265.7">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M54.979,31.252c-0.888,1.272-1.688,2.667-3.819,3.555 c-2.027,0.845-12.132,2.549-21.16,2.549c-9.025,0-19.129-1.704-21.158-2.549c-2.133-0.889-2.934-2.281-3.82-3.555 c-0.912-1.312-2.873-5.318-3.008-8.299c-0.147,3.014,2.029,7.509,3.008,8.913c0.888,1.272,1.688,2.664,3.82,3.555 C10.869,36.267,20.977,37.97,30,37.97c9.027,0,19.132-1.705,21.159-2.549c2.134-0.891,2.934-2.282,3.82-3.555 c0.979-1.404,3.158-5.899,3.009-8.913C57.854,25.934,55.895,29.94,54.979,31.252z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1182.6451 -838.0215)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1449.3701" x2="-1489.4139" y1="-225.6621" y2="-265.7059">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M42.12,24.58c-0.412,0.077-0.578,0.316-0.602,0.895-0.027,0.719-0.291,3.172-0.433,3.764-0.125,0.521-0.342,0.804-0.94,0.979-0.75,0.221-3.188,1.038-10.14,1.039-6.953,0-9.396-0.809-10.14-1.038-0.651-0.201-0.774-0.389-0.94-0.98-0.162-0.586-0.401-3.045-0.433-3.764-0.022-0.576-0.157-0.819-0.575-0.883-0.729-0.113-13.29-2.238-14.6-2.502-0.795-0.158-1.236-0.045-1.293,0.704-0.027,0.354-0.018,0.729,0.019,1.12,0.094-0.645,0.524-0.747,1.274-0.596,1.312,0.265,13.87,2.388,14.6,2.5,0.418,0.064,0.553,0.309,0.575,0.884,0.029,0.722,0.271,3.179,0.433,3.766,0.164,0.589,0.289,0.776,0.94,0.979,0.746,0.229,3.188,1.038,10.14,1.037,6.955,0.001,9.394-0.816,10.14-1.036,0.6-0.177,0.815-0.458,0.94-0.981,0.142-0.59,0.402-3.043,0.433-3.763,0.022-0.576,0.188-0.815,0.602-0.894,0.715-0.133,13.26-2.228,14.57-2.49,0.75-0.151,1.184-0.051,1.274,0.594,0.036-0.389,0.046-0.768,0.019-1.119-0.058-0.749-0.499-0.863-1.293-0.703-1.31,0.26-13.86,2.35-14.57,2.48z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1571.1406 -2294.7852)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2329" x2="-2329" y1="1565" y2="1516">
-<stop offset="0" stop-color="#9B7956"/>
-<stop offset="0.5" stop-color="#64352E"/>
-<stop offset="1" stop-color="#9B7956"/>
+<path d="M42.117,24.584c-0.412,0.077-0.578,0.316-0.602,0.895 c-0.027,0.719-0.291,3.172-0.433,3.764c-0.125,0.521-0.342,0.804-0.94,0.979c-0.75,0.221-3.188,1.038-10.144,1.039 c-6.953,0-9.396-0.809-10.142-1.038c-0.651-0.201-0.774-0.389-0.94-0.98c-0.162-0.586-0.401-3.045-0.433-3.764 c-0.022-0.576-0.157-0.819-0.575-0.883c-0.729-0.113-13.291-2.238-14.601-2.502c-0.795-0.158-1.236-0.045-1.293,0.704 c-0.027,0.354-0.018,0.729,0.019,1.12c0.094-0.645,0.524-0.747,1.274-0.596c1.312,0.265,13.869,2.388,14.601,2.5 c0.418,0.064,0.553,0.309,0.575,0.884c0.029,0.722,0.271,3.179,0.433,3.766c0.164,0.589,0.289,0.776,0.94,0.979 c0.746,0.229,3.188,1.038,10.142,1.037c6.955,0.001,9.394-0.816,10.144-1.036c0.6-0.177,0.815-0.458,0.94-0.981 c0.142-0.59,0.402-3.043,0.433-3.763c0.022-0.576,0.188-0.815,0.602-0.894c0.715-0.133,13.264-2.228,14.574-2.49 c0.75-0.151,1.184-0.051,1.274,0.594c0.036-0.389,0.046-0.768,0.019-1.119c-0.058-0.749-0.499-0.863-1.293-0.703 C55.381,22.357,42.832,24.451,42.117,24.584z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(4.489659e-010 -1 -1 -4.489659e-010 1571.1406 -2294.7852)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2328.7651" x2="-2328.7651" y1="1565.4004" y2="1516.2345">
+<stop offset="0" style="stop-color:#9B7956"/>
+<stop offset="0.5" style="stop-color:#64352E"/>
+<stop offset="1" style="stop-color:#9B7956"/>
</linearGradient>
-<path d="M53.65,32.68c-2.28,0.84-14.1,2.52-23.65,2.52-9.551,0-21.37-1.688-23.64-2.53-0.433-0.161-0.804-0.342-1.144-0.532,0.231,0.341,0.472,0.687,0.731,1.025,0.068,0.026,0.127,0.056,0.197,0.083,2.307,0.86,14.25,2.58,23.86,2.58,9.614,0,21.55-1.711,23.86-2.566,0.069-0.027,0.129-0.059,0.196-0.085,0.261-0.339,0.5-0.685,0.733-1.023-0.34,0.19-0.71,0.37-1.14,0.54z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M53.646,32.675C51.37,33.519,39.55,35.204,30,35.205 c-9.551,0-21.371-1.688-23.645-2.53c-0.433-0.161-0.804-0.342-1.144-0.532c0.231,0.341,0.472,0.687,0.731,1.025 c0.068,0.026,0.127,0.056,0.197,0.083C8.451,34.105,20.387,35.818,30,35.818c9.614,0,21.55-1.711,23.86-2.566 c0.069-0.027,0.129-0.059,0.196-0.085c0.261-0.339,0.5-0.685,0.733-1.023C54.447,32.333,54.077,32.514,53.646,32.675z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_waiting.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_call_waiting.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,70 +1,72 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="0.7939" stop-color="#C2A673"/>
-<stop offset="1" stop-color="#C2A673"/>
+<g>
+<radialGradient cx="-1627.3691" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="0.7939" style="stop-color:#C2A673"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.259-1.333-0.616-0.665-2.566-3.083-2.968-3.735-0.353-0.575-0.411-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.084-7.646,9.955-8.107,0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.523-1.778-2.477-2.889-8.594-5.015-10.75-5.399-1.924-0.345-3.877-0.872-6.568,0.235-2.559,1.054-13.07,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.107,2.691-0.58,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333c-0.616-0.665-2.566-3.083-2.968-3.735 c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.084-7.646,9.955-8.107 c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778c-2.477-2.889-8.594-5.015-10.75-5.399 c-1.924-0.345-3.877-0.872-6.568,0.235c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352 c-1.107,2.691-0.58,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3418" x2="-1638.9102" y1="-2494.9819" y2="-2491.4063">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.035,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.738,2.119-1.514-0.252-0.204-3.469-2.809-4.801-2.956-2.43-0.26-4.12,1.25-4.12,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M35.172,17.108c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.035,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.738,2.119-1.514 c-0.252-0.204-3.469-2.809-4.801-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3462" x2="-1638.9143" y1="4063.0557" y2="4066.6326">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.347,1.039,0.034,1.713,0.376,0.666,2.352,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.297-0.034,0.048-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.119-0.203-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.41" x2="4.083" y1="3.447" y2="47.77">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M17.093,35.188c-0.401,0.763-0.347,1.039,0.034,1.713c0.376,0.666,2.352,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.297c-0.034,0.048-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.203-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.093,35.188,17.093,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4072" x2="4.0833" y1="3.4473" y2="47.7712">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M2.979,47.47c-0.345-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.924-0.345-3.877-0.872-6.568,0.235-2.559,1.054-13.07,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.107,2.691-0.58,4.645-0.236,6.567,0.379,2.122,2.441,8.065,5.259,10.62-2.536-2.78-4.358-8.09-4.712-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9" x2="3.473" y1="3.654" y2="54.08">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9023" x2="3.4732" y1="3.6543" y2="54.0835">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.259-1.333-0.616-0.665-2.566-3.083-2.968-3.735-0.353-0.575-0.411-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.084-7.646,9.955-8.107,0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.523-1.778-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.657,0.197,1.134-0.607,1.666-1.4,0.933-14.48,10.22-15.23,10.78-0.43,0.314-0.768,0.219-1.299-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.949-0.436-1.711-0.034-0.869,0.46-3.763,1.914-9.954,8.106-6.193,6.192-7.636,9.092-8.108,9.956-0.378,0.69-0.319,1.135,0.036,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.492,0.533,0.559,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.665,0.606,0.314,0.378,0.643,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.927-1.42,10.24-14.46,10.76-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#9B7956"/>
-<stop offset="0.5" stop-color="#64352E"/>
-<stop offset="1" stop-color="#9B7956"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1610.521" x2="-1610.521" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#9B7956"/>
+<stop offset="0.5" style="stop-color:#64352E"/>
+<stop offset="1" style="stop-color:#9B7956"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.506-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.66,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.251,0.07,0.534,0.165,1.054,0.259,1.564,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29.5C7.004,29.5,0.5,22.996,0.5,15C0.5,7.004,7.004,0.5,15,0.5 c7.995,0,14.5,6.505,14.5,14.5S22.995,29.5,15,29.5L15,29.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<radialGradient cx="435.2295" cy="910.6348" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.704">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.464"/>
+<path d="M27.983,14.263c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1L15.18,2.15 l-4.386,2.615l-0.165,1.102H8.083l1.006,1.71L6.365,9.8l-0.635,2.744l2.25,3.987l2.297-0.469l0.839,0.723l0.655,0.064l0.433,1.691 l-0.571,1.484l2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863l0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586 c-0.02,0.139,0.299,2.855,1.234,2.643c0.711-0.16,3.248-4.873,3.296-5.322c0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156 l-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605l0.837-2.698l1.275-1.038l-0.28-0.508l0.962-0.926l-0.538-0.979 l0.41,0.049l2.396,5.362l0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779L27.983,14.263z M15.161,8.231l-0.2-0.535h1.202 l0.586,1.316h-0.871V8.23L15.161,8.231L15.161,8.231z M19.129,10.882l0.961,1.402l0.064,0.168l-0.984-0.595l-0.234-0.848 L19.129,10.882z M20.573,13.331l0.29,0.29l-0.375,0.084l-0.085-0.104L20.573,13.331z M13.06,3.903l0.611,0.946l-0.694,0.212 l-0.271-0.154L13.06,3.903z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.1904" x2="333.1904" y1="416.6045" y2="431.9054">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,1.536C7.564,1.536,1.536,7.565,1.536,15 c0,7.439,6.029,13.464,13.464,13.464c7.438,0,13.465-6.027,13.465-13.464C28.465,7.565,22.438,1.536,15,1.536z M15,27.428 C8.146,27.428,2.571,21.854,2.571,15C2.571,8.147,8.146,2.571,15,2.571S27.428,8.147,27.428,15 C27.428,21.854,21.854,27.428,15,27.428z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="333.6309" cy="418.627" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.0429">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.296,18.848l-1.401,1.402c0,0-0.848,0-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094 c-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037C20.871,23.35,23.734,19.523,22.296,18.848z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="333.6299" cy="418.6211" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.4663">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M19.132,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663L13.583,3.76l0.894,1.383 l-1.563,0.48l-0.842-0.48l0.296-0.84l-1.098,0.76l-0.196,1.324H8.988L9.759,7.7l-2.932,2.39l-0.552,2.387l1.088,2.107L8.018,15 l2.297-0.469l0.839,0.721l0.763,0.074l0.83,3.246l-0.552,1.436l1.22,2.697l0.343,1.119h2.126l1.202-0.65l0.905-1.053V20.85 l1.724-0.881v-1.885l0.681-1.297l1.521-1.366l0.363-1.585l-1.988,0.443l-0.522-0.637l0.371-0.594l-1.411-0.854l-0.601-2.164 l1.042-0.68l0.96,1.402l0.359,0.922l0.722,0.721l0.842,0.44l0.936-0.151l1.039-1l-0.731-1.334l-0.921,0.24l-0.833-0.991l0.791-0.552 l2.482,0.301v0.883l2.161,4.452l0.491-0.393C27.176,9.158,23.783,4.849,19.132,3.213z M18.004,9.23l-1.134,0.3h-1.511V8.749h-1.443 L12.774,9.05l-1.741-0.482l-0.482-0.901l2.404-0.541h2.406L15,6.164h1.202l0.67,1.503l1.134,0.398V9.23H18.004z M20.589,7.247 l-2.044-0.361V6.165l1.022-0.24l0.3-0.36l0.722,0.6V7.247L20.589,7.247z" fill="url(#SVGID_4__)"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_dialled_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_dialled_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,89 +1,77 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<g>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2303.3008)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6116.3018" x2="6116.3018" y1="4610.5996" y2="4709.6021">
+<stop offset="0" style="stop-color:#7DC7BB"/>
+<stop offset="0.15" style="stop-color:#7DC7BB"/>
+<stop offset="0.56" style="stop-color:#6292A3"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_1_)" points="47.517,26.58 26.813,5.055 5.899,26.58 17.177,26.58 17.177,51.16 36.474,51.16 36.474,26.58 "/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2303.3008)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6116.3955" x2="6116.3955" y1="4615.6016" y2="4661.0015">
+<stop offset="0" style="stop-color:#CAE8D4"/>
+<stop offset="0.42" style="stop-color:#CAE8D4"/>
+<stop offset="1" style="stop-color:#83B4B4"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<polygon fill="url(#SVGID_2_)" points="6.548,26.58 26.813,5.777 46.954,26.58 48.356,26.58 26.813,4.34 5.153,26.58 "/>
+<polygon fill="#659BA9" points="36.497,51.66 17.177,51.66 17.177,50.66 36.497,50.66 "/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="16" cy="14" fill="url(#SVGID_1__)" r="13"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
+</radialGradient>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
+</linearGradient>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
+</radialGradient>
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-<polygon fill="none" points="30.15,0.436,15.61,0.436,15.19,0,14.76,0.436,0.152,0.436,0.152,15.44,0,15.59,0.152,15.59,0.152,30.44,30.15,30.44,30.15,15.59,30.3,15.59,30.15,15.45"/>
-<polygon fill-opacity="0.35" points="8.484,30.43,8.48,15.59,0.4,15.59,0,15.59,15.19,0,30.3,15.59,21.91,15.59,21.92,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2177" x2="-2177" y1="2986" y2="2956">
-<stop offset="0" stop-color="#7DC7BB"/>
-<stop offset="0.1455" stop-color="#7DC7BB"/>
-<stop offset="0.5576" stop-color="#6292A3"/>
-<stop offset="1" stop-color="#455188"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1___)" points="27.44,14.59,15.18,1.861,2.814,14.59,9.48,14.59,9.484,29.14,20.91,29.14,20.91,14.59"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8438)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="-2176" x2="-2176" y1="2984" y2="2971">
-<stop offset="0" stop-color="#CAE8D4"/>
-<stop offset="0.4182" stop-color="#CAE8D4"/>
-<stop offset="1" stop-color="#83B4B4"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2___)" points="3.195,14.59,15.18,2.286,27.11,14.59,27.93,14.59,15.18,1.436,2.37,14.59"/>
-<line fill="none" x1="9.484" x2="20.91" y1="29.14" y2="29.14"/>
-<polygon fill="#659BA9" points="20.91,29.44,9.484,29.43,9.484,28.84,20.91,28.84"/>
-<rect fill="none" height="30" width="30" x="0.152" y="0.436"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_missed_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_missed_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,89 +1,78 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 2136.5195 1393.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-2109.7646" x2="-2109.7646" y1="-1385.3232" y2="-1339.4194">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<path d="M32.684,33.764v-8.793h9.246L24.578,6.939L7.066,24.969h9.438v8.795 c0,14.865,12.367,19.297,24.27,19.297h5.67V39.97h-5.67C37.105,39.97,32.684,38.161,32.684,33.764z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -57.48 -5687.4375)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="81.9756" x2="81.9756" y1="-5694.6797" y2="-5729.4688">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_2_)" points="24.578,8.98 39.961,24.969 41.926,24.969 24.578,6.939 7.066,24.969 9.043,24.969 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="39.5635" x2="39.5635" y1="7.2305" y2="42.0313">
+<stop offset="0" style="stop-color:#C8A885"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<path d="M40.773,39.97L40.773,39.97c-3.668-0.002-8.09-1.809-8.09-6.206v2.041 c0,4.393,4.422,6.209,8.09,6.209h5.67V39.97H40.773z" fill="url(#SVGID_3_)"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="16" cy="14" fill="url(#SVGID_1__)" r="13"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
+</radialGradient>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3__)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
+</linearGradient>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
+</radialGradient>
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-<polygon fill="none" points="15.05,0,14.63,0.439,0,0.439,0,30.44,30,30.44,30,0.439,15.48,0.439"/>
-<path d="M24.88,30.44c-10,0-15.74-4.635-15.74-12.72v-4.339h-7.087l13-13.38,12.88,13.38h-6.962v4.339c0,2.189,2.56,2.768,3.913,2.768h1v9.947h-0.996z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 2194 3014.6338)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2179" x2="-2179" y1="3012" y2="2984">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<path d="M19.97,17.72v-5.339h5.611l-10.53-10.94-10.63,10.94h5.73v5.339c0,9.024,7.509,11.72,14.74,11.72v-7.947c-2.23,0-4.92-1.1-4.92-3.77z" fill="url(#SVGID_1___)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="15" x2="15" y1="1.713" y2="22.59">
-<stop offset="0" stop-color="#CDB48B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2___)" points="15.05,2.438,24.62,12.38,25.58,12.38,15.05,1.438,4.418,12.38,5.389,12.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3___" x1="22.43" x2="22.43" y1="1.713" y2="22.59">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
-</linearGradient>
-<path d="M19.97,17.72v1c0,2.668,2.688,3.768,4.913,3.768v-1c-2.22,0-4.91-1.1-4.91-3.77z" fill="url(#SVGID_3___)"/>
-<rect fill="none" height="30" width="30" y="0.439"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_received_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_voip_received_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,89 +1,78 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="60" width="60"/>
-<radialGradient cx="-2059" cy="-2251" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.67">
-<stop offset="0" stop-color="#6FB2B5"/>
-<stop offset="0.297" stop-color="#6FB2B5"/>
-<stop offset="0.6667" stop-color="#4C5F94"/>
-<stop offset="0.7939" stop-color="#679FAD"/>
-<stop offset="1" stop-color="#679FAD"/>
-</radialGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-2.476-2.889-8.594-5.015-10.75-5.399-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.108,2.691-0.581,4.645-0.236,6.567,0.386,2.158,2.51,8.275,5.399,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.932-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -98.2555 3084.1135)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-2071" x2="-2070" y1="-2267" y2="-2263">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
+<g>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2204.0161)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6116.6025" x2="6116.4023" y1="4426.6328" y2="4519.0361">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.73" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.048-0.035,0.062-0.046,0.064-0.046,0.253-0.184,1.032-0.738,2.12-1.514-0.251-0.204-3.468-2.809-4.8-2.956-2.44-0.26-4.13,1.25-4.13,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -2128.2356 5114.0977)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-2071" x2="-2070" y1="5105" y2="5108">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="1" stop-color="#1D1A33"/>
-</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.346,1.039,0.035,1.713,0.376,0.666,2.351,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.298-0.035,0.047-0.046,0.062-0.046,0.062-0.183,0.253-0.738,1.032-1.515,2.119-0.204-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="47.92" x2="3.999" y1="3.931" y2="47.85">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
+<polygon fill="url(#SVGID_1_)" points="6.052,34.437 26.636,55.941 47.556,34.437 36.274,34.437 36.274,9.834 17.095,9.832 17.095,34.437 "/>
+<line fill="none" x1="36.274" x2="17.095" y1="9.842" y2="9.84"/>
+<polygon fill="#E4EACE" points="17.095,9.34 36.274,9.342 36.274,10.342 17.095,10.34 "/>
+<polygon fill="#E4EACE" fill-opacity="0.5" points="36.274,34.437 48.054,34.437 47.175,35.461 36.274,35.461 " stroke-opacity="0.5"/>
+<polygon fill="#E4EACE" fill-opacity="0.5" points="5.397,34.437 17.075,34.437 17.075,35.461 6.453,35.461 " stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.5 0 0 0.5 -3031.4424 -2204.0161)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="6153.1982" x2="6077.7983" y1="4499.1309" y2="4499.1309">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M2.979,47.47c-0.344-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.691-1.108,4.644-0.581,6.567-0.236,1.981,0.354,7.296,2.178,10.07,4.711-2.552-2.815-8.496-4.879-10.62-5.258-1.923-0.345-3.876-0.872-6.567,0.235-2.559,1.054-13.08,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.108,2.691-0.581,4.645-0.236,6.567,0.378,2.122,2.441,8.065,5.258,10.62-2.534-2.78-4.357-8.09-4.711-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="54.35" x2="3.947" y1="3.202" y2="53.61">
-<stop offset="0" stop-color="#C4E6D4"/>
-<stop offset="1" stop-color="#7DA8B4"/>
-</linearGradient>
-<path d="M20.37,41.95c0.3-0.437,0.234-0.799-0.258-1.333-0.617-0.665-2.567-3.083-2.968-3.735-0.353-0.575-0.412-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.085-7.646,9.956-8.107,0.76-0.4,1.038-0.345,1.711,0.035,0.666,0.377,3.069,2.352,3.735,2.967,0.534,0.492,0.872,0.588,1.299,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.524-1.778-0.292-0.339-0.634-0.665-1.013-0.982,0.49,0.657,0.198,1.134-0.607,1.666-1.4,0.941-14.47,10.23-15.23,10.78-0.431,0.314-0.767,0.219-1.3-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.948-0.436-1.71-0.034-0.871,0.46-3.764,1.914-9.956,8.106-6.193,6.192-7.635,9.092-8.107,9.956-0.378,0.69-0.319,1.135,0.035,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.493,0.533,0.559,0.896,0.259,1.332-0.517,0.755-9.828,13.79-10.76,15.2-0.533,0.803-1.008,1.098-1.665,0.606,0.314,0.378,0.644,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.937-1.42,10.25-14.46,10.77-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.776 3075.0667)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-2042" x2="-2042" y1="-2305" y2="-2243">
-<stop offset="0" stop-color="#5A7E9E"/>
-<stop offset="0.5091" stop-color="#1D1A33"/>
-<stop offset="1" stop-color="#516C8F"/>
-</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.505-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.493-0.545-0.511-0.096-1.03-0.19-1.565-0.26-0.086,0.036-0.163,0.063-0.25,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.67,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.25,0.07,0.535,0.166,1.055,0.259,1.565,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)"/>
+<polygon fill="url(#SVGID_2_)" points="46.896,34.437 26.636,55.219 6.604,34.437 5.214,34.437 26.636,56.66 48.296,34.437 "/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(1 0 0 1 30 30)">
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.996,0-14.5-6.5-14.5-14.5,0-7.996,6.504-14.5,14.5-14.5,7.995,0,14.5,6.505,14.5,14.5s-6.5,14.5-14.5,14.5z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<radialGradient cx="435.2" cy="910.6" gradientTransform="matrix(0.618 0 0 0.618 -253.9715 -552.4329)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="28.7">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1__" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1__)" r="13.46"/>
-<path d="M27.98,14.26c-0.299-5.259-3.704-9.788-8.679-11.54l-0.605,0.1-3.52-0.67-4.386,2.615-0.165,1.102h-2.537l1.006,1.71-2.724,2.223-0.635,2.744,2.25,3.987,2.297-0.469,0.839,0.723,0.655,0.064,0.433,1.691-0.571,1.484,2.084,5.332h2.126l2.107-1.701v-0.695l0.557-0.863,0.459-0.236c-0.116,0.18-0.3,0.586-0.3,0.586-0.02,0.139,0.299,2.855,1.234,2.643,0.711-0.16,3.248-4.873,3.296-5.322,0.096-0.887-0.387-1.252-0.683-1.391l-0.329-0.156-1.515,1.52c-0.162,0.012-0.309,0.039-0.44,0.078v-1.26l1.645-1.605,0.837-2.698,1.275-1.038-0.28-0.508,0.962-0.926-0.538-0.979,0.41,0.049,2.396,5.362,0.49-0.39c-0.015-0.262-0.043-0.521-0.073-0.779l0.61-0.76zm-12.82-6.029l-0.2-0.535h1.202l0.586,1.316h-0.871v-0.782l-0.72,0.001zm3.97,2.649l0.961,1.402,0.064,0.168-0.984-0.595-0.234-0.848,0.19-0.13zm1.44,2.45l0.29,0.29-0.375,0.084-0.085-0.104,0.17-0.27zm-7.51-9.427l0.611,0.946-0.694,0.212-0.271-0.154,0.35-1.004z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="333.2" x2="333.2" y1="416.6" y2="431.9">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<circle cx="16" cy="14" fill="url(#SVGID_1__)" r="13"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2__" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,1.536c-7.436,0-13.46,6.029-13.46,13.46,0,7.439,6.029,13.46,13.46,13.46,7.438,0,13.46-6.027,13.46-13.46,0-7.435-6.02-13.46-13.46-13.46zm0,25.89c-6.854,0-12.43-5.58-12.43-12.43,0-6.853,5.575-12.43,12.43-12.43s12.43,5.576,12.43,12.43c0,6.85-5.58,12.43-12.43,12.43z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_3__" r="9.043">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2__)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
+</radialGradient>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.3,18.85l-1.401,1.402-0.887,0.336c-0.02,0.145-0.065,0.771-0.208,1.094-0.282,0.195-0.619,0.842-0.619,0.842s-0.175,1.25,0.761,1.037c0.93-0.21,3.79-4.04,2.36-4.71z" fill="url(#SVGID_3__)"/>
-<radialGradient cx="333.6" cy="418.6" gradientTransform="matrix(1.7647 0 0 1.7647 -572.9794 -733.5799)" gradientUnits="userSpaceOnUse" id="SVGID_4__" r="10.47">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
+</linearGradient>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M19.13,3.213c-0.23,0.087-0.387,0.146-0.387,0.146l-3.463-0.663-1.7,1.064,0.894,1.383-1.563,0.48-0.842-0.48,0.296-0.84-1.098,0.76-0.196,1.324h-2.082l0.771,1.313-2.932,2.39-0.552,2.387,1.088,2.107,0.655,0.41,2.297-0.469,0.839,0.721,0.763,0.074,0.83,3.246-0.552,1.436,1.22,2.697,0.343,1.119h2.126l1.202-0.65,0.905-1.053v-1.28l1.724-0.881v-1.885l0.681-1.297,1.521-1.366,0.363-1.585-1.988,0.443-0.522-0.637,0.371-0.594-1.411-0.854-0.601-2.164,1.042-0.68,0.96,1.402,0.359,0.922,0.722,0.721,0.842,0.44,0.936-0.151,1.039-1-0.731-1.334-0.921,0.24-0.833-0.991,0.791-0.552,2.482,0.301v0.883l2.161,4.452,0.491-0.393c-0.29-5.122-3.69-9.431-8.34-11.07zm-1.13,6.017l-1.134,0.3h-1.511v-0.781h-1.443l-1.15,0.301-1.741-0.482-0.482-0.901,2.404-0.541h2.406l-0.36-0.962h1.202l0.67,1.503,1.134,0.398v1.165h0.004zm2.59-1.983l-2.044-0.361v-0.721l1.022-0.24,0.3-0.36,0.722,0.6v1.082z" fill="url(#SVGID_4__)"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
+</radialGradient>
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
</g>
-<polygon fill="none" points="30.1,0,0.096,0,0.096,14.83,0,14.83,0.096,14.93,0.096,30,14.6,30,15.02,30.44,15.45,30,30.1,30,30.1,14.96,30.22,14.84,30.1,14.84"/>
-<polygon fill-opacity="0.35" points="0,14.83,3.596,14.83,3.625,14.86,8.375,14.86,8.375,0,21.73,0.001,21.73,14.84,30.22,14.84,15.02,30.44" stroke-opacity="0.35"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_1___" x1="-2177" x2="-2177" y1="2985" y2="2957">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
-</linearGradient>
-<polygon fill="url(#SVGID_1___)" points="2.846,15.86,15.02,28.58,27.4,15.84,20.73,15.84,20.73,1.292,9.375,1.291,9.375,15.86"/>
-<line fill="none" x1="20.73" x2="9.375" y1="1.297" y2="1.296"/>
-<polygon fill="#E4EACE" points="9.375,1,20.73,1.001,20.73,1.593,9.375,1.592"/>
-<polygon fill="#E4EACE" points="20.56,15.87,27.53,15.87,27,16.46,20.56,16.46"/>
-<polygon fill="#E4EACE" points="2.459,15.86,9.365,15.86,9.365,16.45,3.08,16.45"/>
-<linearGradient gradientTransform="matrix(1 1.000000e-004 1.000000e-004 -1 2191.3389 2985.8491)" gradientUnits="userSpaceOnUse" id="SVGID_2___" x1="-2166" x2="-2188" y1="2963" y2="2963">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
-</linearGradient>
-<polygon fill="url(#SVGID_2___)" points="27.02,15.84,15.02,28.15,3.172,15.83,2.348,15.83,15.02,29,27.84,15.84"/>
-<rect fill="none" height="30" width="30" x="0.096"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_waiting_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_waiting_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,39 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<radialGradient cx="-1627" cy="-2479" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.66">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="0.297" stop-color="#C7B17C"/>
-<stop offset="0.6667" stop-color="#A86F49"/>
-<stop offset="0.7939" stop-color="#C2A673"/>
-<stop offset="1" stop-color="#C2A673"/>
+<g>
+<radialGradient cx="-1627.3691" cy="-2479.0078" gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="45.6647">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="0.297" style="stop-color:#C7B17C"/>
+<stop offset="0.6667" style="stop-color:#A86F49"/>
+<stop offset="0.7939" style="stop-color:#C2A673"/>
+<stop offset="1" style="stop-color:#C2A673"/>
</radialGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.259-1.333-0.616-0.665-2.566-3.083-2.968-3.735-0.353-0.575-0.411-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.084-7.646,9.955-8.107,0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.523-1.778-2.477-2.889-8.594-5.015-10.75-5.399-1.924-0.345-3.877-0.872-6.568,0.235-2.559,1.054-13.07,8.536-21.11,16.57-8.04,8.05-15.52,18.57-16.57,21.12-1.107,2.691-0.58,4.645-0.236,6.567,0.387,2.158,2.511,8.275,5.4,10.75,0.718,0.615,1.213,0.323,1.777-0.525,0.931-1.4,10.24-14.44,10.76-15.19z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639" x2="-1639" y1="-2495" y2="-2491">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333c-0.616-0.665-2.566-3.083-2.968-3.735 c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956c6.191-6.192,9.084-7.646,9.955-8.107 c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967c0.535,0.492,0.873,0.588,1.301,0.274 c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778c-2.477-2.889-8.594-5.015-10.75-5.399 c-1.924-0.345-3.877-0.872-6.568,0.235c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352 c-1.107,2.691-0.58,4.645-0.236,6.567c0.387,2.158,2.511,8.275,5.4,10.752c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -564.6201 2940.3716)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1639.3418" x2="-1638.9102" y1="-2494.9819" y2="-2491.4063">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M35.17,17.11c0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.047-0.035,0.063-0.046,0.064-0.046,0.252-0.184,1.031-0.738,2.119-1.514-0.252-0.204-3.469-2.809-4.801-2.956-2.43-0.26-4.12,1.25-4.12,1.25z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639" x2="-1639" y1="4063" y2="4067">
-<stop offset="0" stop-color="#A47952"/>
-<stop offset="1" stop-color="#7C4738"/>
+<path d="M35.172,17.108c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.047-0.035,0.063-0.046,0.064-0.046c0.252-0.184,1.031-0.738,2.119-1.514 c-0.252-0.204-3.469-2.809-4.801-2.956C36.857,15.598,35.172,17.108,35.172,17.108z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 0.7071 -0.7071 -1696.8304 4072.5859)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1639.3462" x2="-1638.9143" y1="4063.0557" y2="4066.6326">
+<stop offset="0" style="stop-color:#A47952"/>
+<stop offset="1" style="stop-color:#7C4738"/>
</linearGradient>
-<path d="M17.09,35.19c-0.401,0.763-0.347,1.039,0.034,1.713,0.376,0.666,2.352,3.069,2.967,3.738,0.493,0.531,0.587,0.869,0.274,1.297-0.034,0.048-0.046,0.063-0.046,0.063-0.183,0.253-0.738,1.032-1.515,2.119-0.203-0.252-2.807-3.467-2.956-4.799-0.26-2.44,1.25-4.13,1.25-4.13z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.41" x2="4.083" y1="3.447" y2="47.77">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M17.093,35.188c-0.401,0.763-0.347,1.039,0.034,1.713c0.376,0.666,2.352,3.069,2.967,3.738 c0.493,0.531,0.587,0.869,0.274,1.297c-0.034,0.048-0.046,0.063-0.046,0.063c-0.183,0.253-0.738,1.032-1.515,2.119 c-0.203-0.252-2.807-3.467-2.956-4.799C15.579,36.875,17.093,35.188,17.093,35.188z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="48.4072" x2="4.0833" y1="3.4473" y2="47.7712">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M2.979,47.47c-0.345-1.925-0.873-3.878,0.235-6.567,1.054-2.559,8.535-13.08,16.57-21.11,8.04-8.04,18.56-15.52,21.12-16.58,2.689-1.108,4.643-0.581,6.566-0.236,1.98,0.354,7.297,2.178,10.07,4.711-2.553-2.815-8.496-4.879-10.62-5.258-1.924-0.345-3.877-0.872-6.568,0.235-2.559,1.054-13.07,8.536-21.11,16.57-8.04,8.04-15.52,18.56-16.57,21.11-1.107,2.691-0.58,4.645-0.236,6.567,0.379,2.122,2.441,8.065,5.259,10.62-2.536-2.78-4.358-8.09-4.712-10.07z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9" x2="3.473" y1="3.654" y2="54.08">
-<stop offset="0" stop-color="#D3C59A"/>
-<stop offset="1" stop-color="#D0BA98"/>
+<path d="M2.979,47.467c-0.345-1.925-0.873-3.878,0.235-6.567 c1.054-2.559,8.535-13.075,16.573-21.112C27.825,11.749,38.34,4.269,40.9,3.215c2.689-1.108,4.643-0.581,6.566-0.236 c1.98,0.354,7.297,2.178,10.07,4.711c-2.553-2.815-8.496-4.879-10.617-5.258c-1.924-0.345-3.877-0.872-6.568,0.235 c-2.559,1.054-13.074,8.536-21.11,16.572C11.203,27.277,3.723,37.795,2.668,40.352c-1.107,2.691-0.58,4.645-0.236,6.567 c0.379,2.122,2.441,8.065,5.259,10.617C5.155,54.763,3.333,49.448,2.979,47.467z" fill="url(#SVGID_4_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="53.9023" x2="3.4732" y1="3.6543" y2="54.0835">
+<stop offset="0" style="stop-color:#D3C59A"/>
+<stop offset="1" style="stop-color:#D0BA98"/>
</linearGradient>
-<path d="M20.37,41.95c0.299-0.437,0.233-0.799-0.259-1.333-0.616-0.665-2.566-3.083-2.968-3.735-0.353-0.575-0.411-1.021-0.034-1.711,0.473-0.864,1.915-3.763,8.107-9.956,6.191-6.192,9.084-7.646,9.955-8.107,0.76-0.4,1.037-0.345,1.711,0.035,0.666,0.377,3.068,2.352,3.734,2.967,0.535,0.492,0.873,0.588,1.301,0.274,0.752-0.551,13.83-9.843,15.23-10.78,0.85-0.564,1.141-1.061,0.523-1.778-0.291-0.339-0.635-0.665-1.012-0.982,0.488,0.657,0.197,1.134-0.607,1.666-1.4,0.933-14.48,10.22-15.23,10.78-0.43,0.314-0.768,0.219-1.299-0.273-0.668-0.616-3.07-2.591-3.738-2.968-0.672-0.38-0.949-0.436-1.711-0.034-0.869,0.46-3.763,1.914-9.954,8.106-6.193,6.192-7.636,9.092-8.108,9.956-0.378,0.69-0.319,1.135,0.036,1.711,0.4,0.651,2.351,3.069,2.967,3.736,0.492,0.533,0.559,0.896,0.259,1.332-0.518,0.755-9.828,13.79-10.76,15.2-0.534,0.803-1.009,1.098-1.665,0.606,0.314,0.378,0.643,0.723,0.981,1.013,0.718,0.615,1.213,0.323,1.777-0.525,0.927-1.42,10.24-14.46,10.76-15.21z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1611" x2="-1611" y1="-2533" y2="-2471">
-<stop offset="0" stop-color="#9B7956"/>
-<stop offset="0.5" stop-color="#64352E"/>
-<stop offset="1" stop-color="#9B7956"/>
+<path d="M20.37,41.951c0.299-0.437,0.233-0.799-0.259-1.333 c-0.616-0.665-2.566-3.083-2.968-3.735c-0.353-0.575-0.411-1.021-0.034-1.711c0.473-0.864,1.915-3.763,8.107-9.956 c6.191-6.192,9.084-7.646,9.955-8.107c0.76-0.4,1.037-0.345,1.711,0.035c0.666,0.377,3.068,2.352,3.734,2.967 c0.535,0.492,0.873,0.588,1.301,0.274c0.752-0.551,13.828-9.843,15.229-10.775c0.85-0.564,1.141-1.061,0.523-1.778 c-0.291-0.339-0.635-0.665-1.012-0.982c0.488,0.657,0.197,1.134-0.607,1.666c-1.4,0.933-14.475,10.225-15.227,10.775 c-0.43,0.314-0.768,0.219-1.299-0.273c-0.668-0.616-3.07-2.591-3.738-2.968c-0.672-0.38-0.949-0.436-1.711-0.034 c-0.869,0.46-3.763,1.914-9.954,8.106c-6.193,6.192-7.636,9.092-8.108,9.956c-0.378,0.69-0.319,1.135,0.036,1.711 c0.4,0.651,2.351,3.069,2.967,3.736c0.492,0.533,0.559,0.896,0.259,1.332c-0.518,0.755-9.828,13.794-10.76,15.195 c-0.534,0.803-1.009,1.098-1.665,0.606c0.314,0.378,0.643,0.723,0.981,1.013c0.718,0.615,1.213,0.323,1.777-0.525 C10.542,55.745,19.853,42.705,20.37,41.951z" fill="url(#SVGID_5_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -608.1406 2931.3247)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1610.521" x2="-1610.521" y1="-2533.3467" y2="-2471.428">
+<stop offset="0" style="stop-color:#9B7956"/>
+<stop offset="0.5" style="stop-color:#64352E"/>
+<stop offset="1" style="stop-color:#9B7956"/>
</linearGradient>
-<path d="M2.899,45.01c1.275-2.777,10.3-14.8,18.8-23.31,8.506-8.506,20.53-17.53,23.31-18.8,0.527-0.241,1.02-0.411,1.492-0.545-0.512-0.096-1.031-0.19-1.566-0.26-0.086,0.036-0.162,0.063-0.248,0.102-2.818,1.293-14.97,10.4-23.53,18.96s-17.66,20.71-18.96,23.53c-0.038,0.087-0.063,0.166-0.101,0.251,0.07,0.534,0.165,1.054,0.259,1.564,0.136-0.47,0.305-0.96,0.546-1.49z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M2.899,45.012c1.275-2.777,10.299-14.804,18.804-23.31 c8.506-8.506,20.531-17.529,23.309-18.803c0.527-0.241,1.02-0.411,1.492-0.545c-0.512-0.096-1.031-0.19-1.566-0.26 c-0.086,0.036-0.162,0.063-0.248,0.102c-2.818,1.293-14.972,10.397-23.533,18.959S3.489,41.869,2.195,44.688 c-0.038,0.087-0.063,0.166-0.101,0.251c0.07,0.534,0.165,1.054,0.259,1.564C2.489,46.03,2.658,45.539,2.899,45.012z" fill="url(#SVGID_6_)" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_warning.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_warning.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,31 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="5.937" y2="55.92">
-<stop offset="0" stop-color="#F0EDDC"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="29.9995" x2="29.9995" y1="5.937" y2="55.9156">
+<stop offset="0" style="stop-color:#F0EDDC"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="2,54.25,30,5.752,58,54.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="30" x2="30" y1="8.377" y2="52.77">
-<stop offset="0" stop-color="#D3CA99"/>
-<stop offset="0.1394" stop-color="#D3CA99"/>
-<stop offset="0.7879" stop-color="#AC8A4A"/>
-<stop offset="1" stop-color="#C3B475"/>
+<polygon fill="url(#SVGID_1_)" points="2,54.248 30,5.752 58,54.248 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="29.9995" x2="29.9995" y1="8.3774" y2="52.771">
+<stop offset="0" style="stop-color:#D3CA99"/>
+<stop offset="0.1394" style="stop-color:#D3CA99"/>
+<stop offset="0.7879" style="stop-color:#AC8A4A"/>
+<stop offset="1" style="stop-color:#C3B475"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="4.564,52.77,30,8.713,55.44,52.77"/>
-<rect fill-opacity="0.1" height="18.61" stroke-opacity="0.1" width="5.91" x="26.86" y="22.12"/>
-<circle cx="29.82" cy="46.69" fill-opacity="0.1" r="3.242" stroke-opacity="0.1"/>
-<rect fill-opacity="0.2" height="18.61" stroke-opacity="0.2" width="5.91" x="26.86" y="21.51"/>
-<circle cx="29.82" cy="46.08" fill-opacity="0.2" r="3.242" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.81" x2="29.81" y1="20.81" y2="48.77">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<polygon fill="url(#SVGID_2_)" points="4.564,52.768 30,8.713 55.436,52.768 "/>
+<rect fill-opacity="0.1" height="18.612" stroke-opacity="0.1" width="5.91" x="26.86" y="22.119"/>
+<circle cx="29.815" cy="46.689" fill-opacity="0.1" r="3.242" stroke-opacity="0.1"/>
+<rect fill-opacity="0.2" height="18.612" stroke-opacity="0.2" width="5.91" x="26.86" y="21.511"/>
+<circle cx="29.815" cy="46.08" fill-opacity="0.2" r="3.242" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="29.8145" x2="29.8145" y1="20.8052" y2="48.7668">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="18.61" width="5.91" x="26.86" y="20.9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.81" x2="29.81" y1="42.18" y2="48.77">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#000000"/>
+<rect fill="url(#SVGID_3_)" height="18.612" width="5.91" x="26.86" y="20.902"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="29.8145" x2="29.8145" y1="42.1816" y2="48.7683">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<circle cx="29.82" cy="45.48" fill="url(#SVGID_4_)" r="3.242"/>
+<circle cx="29.815" cy="45.475" fill="url(#SVGID_4_)" r="3.242"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_web_feeds.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_web_feeds.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<path d="M56.86,51.79c0,2.797-2.269,5.066-5.069,5.066h-43.58c-2.801,0-5.066-2.27-5.066-5.066v-43.58c0-2.8,2.267-5.068,5.066-5.068h43.58c2.801,0,5.069,2.269,5.069,5.068v43.58z" fill="#D6C1A9"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="288" x2="336.4" y1="-351.5" y2="-399.9">
-<stop offset="0" stop-color="#A66C59"/>
-<stop offset="0.5" stop-color="#B78C65"/>
-<stop offset="1" stop-color="#9B5D55"/>
+<path d="M56.858,51.79c0,2.797-2.269,5.066-5.069,5.066H8.211c-2.801,0-5.066-2.27-5.066-5.066V8.212 c0-2.8,2.267-5.068,5.066-5.068h43.578c2.801,0,5.069,2.269,5.069,5.068V51.79L56.858,51.79z" fill="#D6C1A9"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="287.9697" x2="336.3918" y1="-351.5146" y2="-399.9242">
+<stop offset="0" style="stop-color:#A66C59"/>
+<stop offset="0.5" style="stop-color:#B78C65"/>
+<stop offset="1" style="stop-color:#9B5D55"/>
</linearGradient>
-<path d="M8.211,55.31c-1.943,0-3.524-1.582-3.524-3.524v-43.58c0-1.945,1.581-3.526,3.524-3.526h43.58c1.944,0,3.526,1.581,3.526,3.526v43.58c0,1.942-1.582,3.524-3.526,3.524h-43.58z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="312.5" x2="312.5" y1="-348.8" y2="-403.1">
-<stop offset="0" stop-color="#976059"/>
-<stop offset="0.5" stop-color="#B78C65"/>
-<stop offset="1" stop-color="#793436"/>
+<path d="M8.211,55.314c-1.943,0-3.524-1.582-3.524-3.524V8.212c0-1.945,1.581-3.526,3.524-3.526h43.578 c1.944,0,3.526,1.581,3.526,3.526V51.79c0,1.942-1.582,3.524-3.526,3.524H8.211z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -346.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="312.4805" x2="312.4805" y1="-348.7539" y2="-403.0745">
+<stop offset="0" style="stop-color:#976059"/>
+<stop offset="0.5" style="stop-color:#B78C65"/>
+<stop offset="1" style="stop-color:#793436"/>
</linearGradient>
-<path d="M51.9,3.857c2.338,0,4.238,1.901,4.238,4.236v43.81c0,2.336-1.9,4.234-4.238,4.234h-43.81c-2.335,0-4.236-1.901-4.236-4.234v-43.82c0-2.335,1.902-4.236,4.236-4.236h43.81m-0.004-0.858h-43.81c-2.812,0-5.092,2.282-5.092,5.094v43.81c0,2.81,2.28,5.095,5.092,5.095h43.81c2.815,0,5.097-2.285,5.097-5.095v-43.81c0-2.812-2.28-5.094-5.1-5.094z" fill="url(#SVGID_2_)"/>
-<circle cx="16.74" cy="43.26" fill="#FFFFFF" r="5.208"/>
-<path d="M41.52,47.89h6.942c0-20.05-16.31-36.35-36.36-36.35v6.942c16.23,0,29.42,13.19,29.42,29.41z" fill="#FFFFFF"/>
-<path d="M28.89,47.89h6.943c0-13.08-10.64-23.72-23.72-23.72v6.942c9.25,0,16.78,7.53,16.78,16.78z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M51.904,3.857c2.338,0,4.238,1.901,4.238,4.236v43.814c0,2.336-1.9,4.234-4.238,4.234H8.093 c-2.335,0-4.236-1.901-4.236-4.234V8.093c0-2.335,1.902-4.236,4.236-4.236H51.904 M51.904,2.999H8.093 c-2.812,0-5.092,2.282-5.092,5.094v43.814c0,2.81,2.28,5.095,5.092,5.095h43.812c2.815,0,5.097-2.285,5.097-5.095V8.093 C57.001,5.281,54.72,2.999,51.904,2.999L51.904,2.999z" fill="url(#SVGID_2_)"/>
+<circle cx="16.742" cy="43.259" fill="#FFFFFF" r="5.208"/>
+<path d="M41.524,47.889h6.942c0-20.047-16.309-36.354-36.355-36.354v6.942C28.33,18.476,41.524,31.671,41.524,47.889 z" fill="#FFFFFF"/>
+<path d="M28.892,47.889h6.943c0-13.082-10.642-23.721-23.722-23.721v6.942 C21.364,31.108,28.892,38.636,28.892,47.889z" fill="#FFFFFF"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_widget.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_widget.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,94 +1,96 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(0.9999 0.0024 -0.0024 0.9999 48.3995 33.6767)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-32.18" x2="-32.18" y1="-30.94" y2="-3.796">
-<stop offset="0" stop-color="#C2B282"/>
-<stop offset="0.3576" stop-color="#C2B282"/>
-<stop offset="0.8909" stop-color="#9B6943"/>
-<stop offset="1" stop-color="#AD8F60"/>
+<g>
+<linearGradient gradientTransform="matrix(0.9999 0.0024 -0.0024 0.9999 48.3995 33.6767)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-32.1763" x2="-32.1763" y1="-30.9438" y2="-3.796">
+<stop offset="0" style="stop-color:#C2B282"/>
+<stop offset="0.3576" style="stop-color:#C2B282"/>
+<stop offset="0.8909" style="stop-color:#9B6943"/>
+<stop offset="1" style="stop-color:#AD8F60"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="16.25,25.6,7.274,30.3,9.009,20.32,1.775,13.24,11.8,11.81,16.3,2.737,20.76,11.83,30.77,13.31,23.51,20.36,25.2,30.34"/>
-<radialGradient cx="-111.4" cy="-59.63" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="23.71">
-<stop offset="0" stop-color="#D3CA99"/>
-<stop offset="0.1394" stop-color="#D3CA99"/>
-<stop offset="0.5515" stop-color="#B39C4D"/>
-<stop offset="0.7273" stop-color="#AC8A4A"/>
-<stop offset="1" stop-color="#C3B475"/>
+<polygon fill="url(#SVGID_1_)" points="16.246,25.604 7.274,30.295 9.009,20.321 1.775,13.238 11.796,11.81 16.299,2.737 20.758,11.826 30.772,13.307 23.507,20.355 25.195,30.336 "/>
+<radialGradient cx="-111.4019" cy="-59.6338" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="23.7106">
+<stop offset="0" style="stop-color:#D3CA99"/>
+<stop offset="0.1394" style="stop-color:#D3CA99"/>
+<stop offset="0.5515" style="stop-color:#B39C4D"/>
+<stop offset="0.7273" style="stop-color:#AC8A4A"/>
+<stop offset="1" style="stop-color:#C3B475"/>
</radialGradient>
-<polygon fill="url(#SVGID_2_)" points="9.787,20.07,3.331,13.75,12.28,12.47,16.29,4.375,20.27,12.49,29.21,13.81,22.73,20.1,24.24,29.01,16.25,24.78,8.239,28.97"/>
-<radialGradient cx="-111.1" cy="-41.29" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="8.491">
-<stop offset="0" stop-color="#CDC18B"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_2_)" points="9.787,20.071 3.331,13.748 12.277,12.471 16.294,4.375 20.273,12.488 29.212,13.81 22.727,20.1 24.235,29.008 16.246,24.785 8.239,28.973 "/>
+<radialGradient cx="-111.1436" cy="-41.29" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="8.4911">
+<stop offset="0" style="stop-color:#CDC18B"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<polygon fill="url(#SVGID_3_)" points="16.26,24.06,8.378,28.18,8.239,28.97,16.25,24.78,24.24,29.01,24.1,28.21"/>
-<radialGradient cx="-111.1" cy="-56.75" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="32.95">
-<stop offset="0" stop-color="#F0EDDC"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<polygon fill="url(#SVGID_3_)" points="16.259,24.059 8.378,28.182 8.239,28.973 16.246,24.785 24.235,29.008 24.1,28.206 "/>
+<radialGradient cx="-111.1377" cy="-56.7529" gradientTransform="matrix(0.972 0.0144 -0.0144 0.972 123.6391 66.2654)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="32.9523">
+<stop offset="0" style="stop-color:#F0EDDC"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<polygon fill="url(#SVGID_4_)" points="12.63,13.2,16.27,5.825,19.9,13.21,28.56,14.44,29.21,13.81,20.27,12.49,16.29,4.375,12.28,12.47,3.331,13.75,3.981,14.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.27" x2="16.27" y1="31.85" y2="56.57">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.3152" stop-color="#BFC2C1"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#9CA0A0"/>
+<polygon fill="url(#SVGID_4_)" points="12.629,13.199 16.273,5.825 19.9,13.209 28.561,14.442 29.212,13.81 20.273,12.488 16.294,4.375 12.277,12.471 3.331,13.748 3.981,14.384 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="16.2739" x2="16.2739" y1="31.8535" y2="56.5747">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.3152" style="stop-color:#BFC2C1"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#9CA0A0"/>
</linearGradient>
-<path d="M26.75,31.85h-20.96c-0.891,0-1.613,0.721-1.613,1.611v20.96c0,0.889,0.722,1.611,1.613,1.611h20.96c0.89,0,1.612-0.723,1.612-1.611v-20.96c0.01-0.895-0.72-1.615-1.61-1.615z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.68" x2="43.68" y1="31.85" y2="56.57">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.3152" stop-color="#BFC2C1"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#9CA0A0"/>
+<path d="M26.754,31.854H5.795c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.722,1.611,1.613,1.611 h20.959c0.89,0,1.612-0.723,1.612-1.611V33.465C28.366,32.574,27.644,31.854,26.754,31.854z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="43.6836" x2="43.6836" y1="31.8535" y2="56.5747">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.3152" style="stop-color:#BFC2C1"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#9CA0A0"/>
</linearGradient>
-<path d="M54.16,31.85h-20.96c-0.891,0-1.613,0.721-1.613,1.611v20.96c0,0.889,0.723,1.611,1.613,1.611h20.96c0.891,0,1.613-0.723,1.613-1.611v-20.96c0.01-0.895-0.72-1.615-1.61-1.615z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="43.68" x2="43.68" y1="4.445" y2="29.17">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.3152" stop-color="#BFC2C1"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#9CA0A0"/>
+<path d="M54.163,31.854H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.723,1.611,1.613,1.611 h20.959c0.891,0,1.613-0.723,1.613-1.611V33.465C55.776,32.574,55.054,31.854,54.163,31.854z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="43.6836" x2="43.6836" y1="4.4453" y2="29.167">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.3152" style="stop-color:#BFC2C1"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#9CA0A0"/>
</linearGradient>
-<path d="M54.16,4.445h-20.96c-0.891,0-1.613,0.721-1.613,1.611v20.96c0,0.893,0.723,1.613,1.613,1.613h20.96c0.891,0,1.613-0.721,1.613-1.613v-20.96c0.01-0.891-0.72-1.612-1.61-1.612z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="16.27" x2="16.27" y1="31.85" y2="56.04">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.7455" stop-color="#9CA0A0"/>
-<stop offset="1" stop-color="#9CA0A0"/>
+<path d="M54.163,4.445H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.959c0,0.893,0.723,1.613,1.613,1.613 h20.959c0.891,0,1.613-0.721,1.613-1.613V6.057C55.776,5.166,55.054,4.445,54.163,4.445z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="16.2739" x2="16.2739" y1="31.8535" y2="56.0371">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.7455" style="stop-color:#9CA0A0"/>
+<stop offset="1" style="stop-color:#9CA0A0"/>
</linearGradient>
-<path d="M28.37,54.43c0,0.889-0.723,1.611-1.612,1.611h-20.96c-0.891,0-1.613-0.723-1.613-1.611v-20.96c0-0.891,0.722-1.611,1.613-1.611h20.96c0.89,0,1.612,0.721,1.612,1.611v20.97z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="16.27" x2="16.27" y1="31.85" y2="56.04">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="0.3152" stop-color="#D3D7D5"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#BCC2C0"/>
+<path d="M28.366,54.426c0,0.889-0.723,1.611-1.612,1.611H5.795c-0.891,0-1.613-0.723-1.613-1.611V33.465 c0-0.891,0.722-1.611,1.613-1.611h20.959c0.89,0,1.612,0.721,1.612,1.611V54.426z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="16.2739" x2="16.2739" y1="31.8535" y2="56.0371">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="0.3152" style="stop-color:#D3D7D5"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#BCC2C0"/>
</linearGradient>
-<path d="M26.75,31.85h-20.96c-0.891,0-1.613,0.721-1.613,1.611v20.96c0,0.889,0.722,1.611,1.613,1.611h20.96c0.89,0,1.612-0.723,1.612-1.611v-20.96c0.01-0.895-0.72-1.615-1.61-1.615zm0.81,22.58c0,0.443-0.363,0.807-0.807,0.807h-20.96c-0.445,0-0.807-0.363-0.807-0.807v-20.96c0-0.443,0.362-0.805,0.807-0.805h20.96c0.444,0,0.807,0.361,0.807,0.805v20.97z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="43.68" x2="43.68" y1="31.85" y2="56.04">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.5818" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M26.754,31.854H5.795c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.722,1.611,1.613,1.611 h20.959c0.89,0,1.612-0.723,1.612-1.611V33.465C28.366,32.574,27.644,31.854,26.754,31.854z M27.561,54.426 c0,0.443-0.363,0.807-0.807,0.807H5.795c-0.445,0-0.807-0.363-0.807-0.807V33.465c0-0.443,0.362-0.805,0.807-0.805h20.959 c0.444,0,0.807,0.361,0.807,0.805V54.426z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="43.6836" x2="43.6836" y1="31.8535" y2="56.0371">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.5818" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
-<path d="M55.78,54.43c0,0.889-0.723,1.611-1.613,1.611h-20.97c-0.891,0-1.613-0.723-1.613-1.611v-20.96c0-0.891,0.723-1.611,1.613-1.611h20.96c0.891,0,1.613,0.721,1.613,1.611v20.97z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="43.68" x2="43.68" y1="31.85" y2="57.11">
-<stop offset="0" stop-color="#72C3BF"/>
-<stop offset="0.7394" stop-color="#373D67"/>
-<stop offset="1" stop-color="#5F93A4"/>
+<path d="M55.776,54.426c0,0.889-0.723,1.611-1.613,1.611H33.204c-0.891,0-1.613-0.723-1.613-1.611V33.465 c0-0.891,0.723-1.611,1.613-1.611h20.959c0.891,0,1.613,0.721,1.613,1.611V54.426z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="43.6836" x2="43.6836" y1="31.8535" y2="57.1121">
+<stop offset="0" style="stop-color:#72C3BF"/>
+<stop offset="0.7394" style="stop-color:#373D67"/>
+<stop offset="1" style="stop-color:#5F93A4"/>
</linearGradient>
-<path d="M54.16,31.85h-20.96c-0.891,0-1.613,0.721-1.613,1.611v20.96c0,0.889,0.723,1.611,1.613,1.611h20.96c0.891,0,1.613-0.723,1.613-1.611v-20.96c0.01-0.895-0.72-1.615-1.61-1.615zm0.81,22.58c0,0.443-0.363,0.807-0.807,0.807h-20.96c-0.445,0-0.807-0.363-0.807-0.807v-20.96c0-0.443,0.361-0.805,0.807-0.805h20.96c0.443,0,0.807,0.361,0.807,0.805v20.97z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.68" x2="43.68" y1="4.445" y2="29.17">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.0424" stop-color="#ECEFED"/>
-<stop offset="0.7455" stop-color="#9CA0A0"/>
-<stop offset="1" stop-color="#9CA0A0"/>
+<path d="M54.163,31.854H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.961c0,0.889,0.723,1.611,1.613,1.611 h20.959c0.891,0,1.613-0.723,1.613-1.611V33.465C55.776,32.574,55.054,31.854,54.163,31.854z M54.97,54.426 c0,0.443-0.363,0.807-0.807,0.807H33.204c-0.445,0-0.807-0.363-0.807-0.807V33.465c0-0.443,0.361-0.805,0.807-0.805h20.959 c0.443,0,0.807,0.361,0.807,0.805V54.426z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="43.6836" x2="43.6836" y1="4.4453" y2="29.167">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.0424" style="stop-color:#ECEFED"/>
+<stop offset="0.7455" style="stop-color:#9CA0A0"/>
+<stop offset="1" style="stop-color:#9CA0A0"/>
</linearGradient>
-<path d="M55.78,27.02c0,0.893-0.723,1.613-1.613,1.613h-20.97c-0.891,0-1.613-0.721-1.613-1.613v-20.96c0-0.891,0.723-1.611,1.613-1.611h20.96c0.891,0,1.613,0.721,1.613,1.611v20.96z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="43.68" x2="43.68" y1="4.445" y2="29.17">
-<stop offset="0" stop-color="#F9FCF9"/>
-<stop offset="0.3152" stop-color="#D3D7D5"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="1" stop-color="#BCC2C0"/>
+<path d="M55.776,27.016c0,0.893-0.723,1.613-1.613,1.613H33.204c-0.891,0-1.613-0.721-1.613-1.613V6.057 c0-0.891,0.723-1.611,1.613-1.611h20.959c0.891,0,1.613,0.721,1.613,1.611V27.016z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="43.6836" x2="43.6836" y1="4.4453" y2="29.167">
+<stop offset="0" style="stop-color:#F9FCF9"/>
+<stop offset="0.3152" style="stop-color:#D3D7D5"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="1" style="stop-color:#BCC2C0"/>
</linearGradient>
-<path d="M54.16,4.445h-20.96c-0.891,0-1.613,0.721-1.613,1.611v20.96c0,0.893,0.723,1.613,1.613,1.613h20.96c0.891,0,1.613-0.721,1.613-1.613v-20.96c0.01-0.891-0.72-1.612-1.61-1.612zm0.81,22.58c0,0.443-0.363,0.807-0.807,0.807h-20.96c-0.445,0-0.807-0.363-0.807-0.807v-20.96c0-0.443,0.361-0.805,0.807-0.805h20.96c0.443,0,0.807,0.361,0.807,0.805v20.96z" fill="url(#SVGID_13_)"/>
-<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+<path d="M54.163,4.445H33.204c-0.891,0-1.613,0.721-1.613,1.611v20.959c0,0.893,0.723,1.613,1.613,1.613 h20.959c0.891,0,1.613-0.721,1.613-1.613V6.057C55.776,5.166,55.054,4.445,54.163,4.445z M54.97,27.016 c0,0.443-0.363,0.807-0.807,0.807H33.204c-0.445,0-0.807-0.363-0.807-0.807V6.057c0-0.443,0.361-0.805,0.807-0.805h20.959 c0.443,0,0.807,0.361,0.807,0.805V27.016z" fill="url(#SVGID_13_)"/>
+<rect fill="none" height="60" width="60.001"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wire_connect.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wire_connect.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="30" x2="30" y1="37.82" y2="57.77">
<stop offset="0" stop-color="#707070"/>
<stop offset="0.7939" stop-color="#080808"/>
@@ -54,4 +55,5 @@
<rect fill="#FFFFFF" fill-opacity="0.15" height="0.797" stroke-opacity="0.15" width="10.35" x="24.82" y="15.95"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="0.796" stroke-opacity="0.3" width="10.35" x="24.82" y="15.15"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,71 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="22.84" x2="37.5" y1="31.74" y2="31.74">
-<stop offset="0" stop-color="#DBDBDB"/>
-<stop offset="0.097" stop-color="#DBDBDB"/>
-<stop offset="0.6848" stop-color="#919191"/>
-<stop offset="1" stop-color="#B8B8B8"/>
-</linearGradient>
-<path d="M37.11,51.52h-14.15l3.86-36.34c0-1.776,1.44-3.216,3.216-3.216s3.216,1.439,3.216,3.216l3.85,36.34z" fill="url(#SVGID_1_)"/>
-<polygon fill-opacity="0.2" points="23.21,48.95,36.85,48.95,36.73,47.66,23.34,47.66" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.1" points="23.34,47.66,36.73,47.66,36.6,46.38,23.47,46.38" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.3" points="23.08,50.24,36.98,50.24,36.85,48.95,23.21,48.95" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.5" x2="48.71" y1="54.14" y2="54.14">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#919191"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="22.8379" x2="37.5014" y1="31.7412" y2="31.7412">
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#B8B8B8"/>
</linearGradient>
-<path d="M48.69,58v-3.859c0-2.133-1.729-3.86-3.859-3.86h-29.59c-2.131,0-3.859,1.728-3.859,3.86v3.86h37.31z" fill="url(#SVGID_2_)"/>
-<path d="M44.83,50.28h-29.59c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86h29.59c2.131,0,3.859,1.729,3.859,3.86v-1.286c0-2.13-1.73-3.86-3.86-3.86z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1672" x2="1652" y1="642.4" y2="662.3">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M37.109,51.521H22.957l3.86-36.345c0-1.776,1.44-3.216,3.216-3.216l0,0 c1.776,0,3.216,1.439,3.216,3.216L37.109,51.521z" fill="url(#SVGID_1_)"/>
+<polygon fill-opacity="0.2" points="23.212,48.949 36.854,48.949 36.726,47.662 23.34,47.662 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.1" points="23.34,47.662 36.726,47.662 36.599,46.375 23.467,46.375 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.3" points="23.083,50.235 36.982,50.235 36.854,48.949 23.212,48.949 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4971" x2="48.7082" y1="54.1401" y2="54.1401">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#919191"/>
</linearGradient>
-<path d="M9.31,2l4.156,4.152c-5.422,5.422-5.42,14.24,0,19.66l-4.154,4.155c-7.715-7.7-7.715-20.25-0.006-27.96z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1664" x2="1644" y1="635" y2="654.8">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M48.688,58v-3.859c0-2.133-1.729-3.86-3.859-3.86H15.237c-2.131,0-3.859,1.728-3.859,3.86V58H48.688z " fill="url(#SVGID_2_)"/>
+<path d="M44.828,50.28H15.237c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86 h29.591c2.131,0,3.859,1.729,3.859,3.86v-1.286C48.688,52.008,46.959,50.28,44.828,50.28z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1671.6611" x2="1651.5664" y1="642.4497" y2="662.2676">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M18.74,7.264l4.153,4.152c-2.52,2.52-2.52,6.617,0,9.136l-4.153,4.153c-4.81-4.81-4.81-12.64,0-17.45z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.507" x2="8.507" y1="29.63" y2="-3.066">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M9.31,2l4.156,4.152c-5.422,5.422-5.42,14.244,0,19.665l-4.154,4.155 C1.601,22.258,1.601,9.711,9.31,2z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1664.2842" x2="1644.192" y1="634.9834" y2="654.7988">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
+</linearGradient>
+<path d="M18.738,7.264l4.153,4.152c-2.52,2.52-2.52,6.617,0,9.136l-4.153,4.153 C13.928,19.898,13.928,12.074,18.738,7.264z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5073" x2="8.5073" y1="29.6333" y2="-3.0658">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M9.312,28.69c-3.692-3.693-5.597-8.497-5.753-13.34-0.171,5.27,1.734,10.6,5.753,14.62l4.154-4.155c-0.217-0.218-0.411-0.448-0.61-0.677l-3.548,3.55z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.02" x2="19.02" y1="24.73" y2="9.06">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M9.312,28.686c-3.692-3.693-5.597-8.497-5.753-13.344C3.388,20.618,5.293,25.95,9.312,29.973 l4.154-4.155c-0.217-0.218-0.411-0.448-0.61-0.677L9.312,28.686z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.0176" x2="19.0176" y1="24.7275" y2="9.0601">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M18.74,23.42c-2.242-2.24-3.424-5.136-3.577-8.077-0.174,3.369,1.009,6.797,3.577,9.363l4.153-4.153c-0.22-0.22-0.397-0.466-0.578-0.708l-3.57,3.58z" fill="url(#SVGID_6_)"/>
-<path d="M9.31,3.286l3.546,3.542c0.2-0.228,0.393-0.459,0.61-0.676l-4.16-4.152c-4.018,4.02-5.921,9.352-5.75,14.63,0.155-4.85,2.059-9.651,5.75-13.34z" fill="#FFFFFF"/>
-<path d="M18.74,8.551l3.576,3.574c0.181-0.242,0.358-0.487,0.578-0.709l-4.153-4.152c-2.568,2.568-3.751,5.996-3.577,9.364,0.14-2.93,1.33-5.83,3.57-8.069z" fill="#FFFFFF"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1803" x2="1783" y1="773.7" y2="793.5">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M18.738,23.419c-2.242-2.24-3.424-5.136-3.577-8.077c-0.174,3.369,1.009,6.797,3.577,9.363 l4.153-4.153c-0.22-0.22-0.397-0.466-0.578-0.708L18.738,23.419z" fill="url(#SVGID_6_)"/>
+<path d="M9.31,3.286l3.546,3.542c0.2-0.228,0.393-0.459,0.61-0.676L9.31,2c-4.018,4.02-5.921,9.352-5.75,14.628 C3.715,11.779,5.619,6.979,9.31,3.286z" fill="#FFFFFF"/>
+<path d="M18.738,8.551l3.576,3.574c0.181-0.242,0.358-0.487,0.578-0.709l-4.153-4.152 c-2.568,2.568-3.751,5.996-3.577,9.364C15.314,13.688,16.496,10.792,18.738,8.551z" fill="#FFFFFF"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1802.8955" x2="1782.8008" y1="773.6841" y2="793.502">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M50.69,2l-4.156,4.152c5.422,5.422,5.42,14.24,0,19.66l4.154,4.155c7.72-7.7,7.72-20.25,0.01-27.96z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1796" x2="1775" y1="766.2" y2="786">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M50.69,2l-4.156,4.152c5.422,5.422,5.42,14.244,0,19.665l4.154,4.155 C58.399,22.258,58.399,9.711,50.69,2z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1795.5195" x2="1775.4272" y1="766.2183" y2="786.0338">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M41.26,7.264l-4.153,4.152c2.52,2.52,2.52,6.617,0,9.136l4.153,4.153c4.81-4.81,4.81-12.64,0-17.45z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-177.1" x2="-177.1" y1="29.63" y2="-3.066">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M41.262,7.264l-4.153,4.152c2.52,2.52,2.52,6.617,0,9.136l4.153,4.153 C46.072,19.898,46.072,12.074,41.262,7.264z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-177.0845" x2="-177.0845" y1="29.6333" y2="-3.0658">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M50.69,28.69c3.692-3.693,5.597-8.497,5.753-13.34,0.171,5.276-1.734,10.61-5.753,14.63l-4.154-4.155c0.217-0.218,0.411-0.448,0.61-0.677l3.54,3.55z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-166.6" x2="-166.6" y1="24.73" y2="9.06">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M50.688,28.686c3.692-3.693,5.597-8.497,5.753-13.344c0.171,5.276-1.734,10.608-5.753,14.631 l-4.154-4.155c0.217-0.218,0.411-0.448,0.61-0.677L50.688,28.686z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-166.5747" x2="-166.5747" y1="24.7275" y2="9.0601">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M41.26,23.42c2.242-2.24,3.424-5.136,3.577-8.077,0.175,3.369-1.009,6.797-3.577,9.363l-4.153-4.153c0.22-0.22,0.397-0.466,0.578-0.708l3.57,3.58z" fill="url(#SVGID_10_)"/>
-<path d="M50.69,3.286l-3.546,3.542c-0.2-0.228-0.393-0.459-0.61-0.676l4.16-4.152c4.018,4.02,5.921,9.352,5.75,14.63-0.16-4.85-2.06-9.651-5.75-13.34z" fill="#FFFFFF"/>
-<path d="M41.26,8.551l-3.576,3.574c-0.181-0.242-0.358-0.487-0.578-0.709l4.153-4.152c2.568,2.568,3.752,5.996,3.577,9.364-0.14-2.93-1.33-5.83-3.57-8.069z" fill="#FFFFFF"/>
-<rect fill-opacity="0.1" height="1.287" stroke-opacity="0.1" width="37.31" x="11.38" y="56.71"/>
+<path d="M41.262,23.419c2.242-2.24,3.424-5.136,3.577-8.077c0.175,3.369-1.009,6.797-3.577,9.363 l-4.153-4.153c0.22-0.22,0.397-0.466,0.578-0.708L41.262,23.419z" fill="url(#SVGID_10_)"/>
+<path d="M50.69,3.286l-3.546,3.542c-0.2-0.228-0.393-0.459-0.61-0.676L50.69,2c4.018,4.02,5.921,9.352,5.75,14.628 C56.285,11.779,54.381,6.979,50.69,3.286z" fill="#FFFFFF"/>
+<path d="M41.262,8.551l-3.576,3.574c-0.181-0.242-0.358-0.487-0.578-0.709l4.153-4.152 c2.568,2.568,3.752,5.996,3.577,9.364C44.686,13.688,43.504,10.792,41.262,8.551z" fill="#FFFFFF"/>
+<rect fill-opacity="0.1" height="1.287" stroke-opacity="0.1" width="37.31" x="11.378" y="56.713"/>
<rect fill="none" height="60" width="60"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_wlan_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,82 +1,84 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="22.84" x2="37.5" y1="31.74" y2="31.74">
-<stop offset="0" stop-color="#DBDBDB"/>
-<stop offset="0.097" stop-color="#DBDBDB"/>
-<stop offset="0.6848" stop-color="#919191"/>
-<stop offset="1" stop-color="#B8B8B8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="22.8379" x2="37.5014" y1="31.7412" y2="31.7412">
+<stop offset="0" style="stop-color:#DBDBDB"/>
+<stop offset="0.097" style="stop-color:#DBDBDB"/>
+<stop offset="0.6848" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#B8B8B8"/>
</linearGradient>
-<path d="M37.11,51.52h-14.15l3.86-36.34c0-1.776,1.44-3.216,3.216-3.216s3.216,1.439,3.216,3.216l3.85,36.34z" fill="url(#SVGID_1_)"/>
-<polygon fill-opacity="0.2" points="23.21,48.95,36.85,48.95,36.73,47.66,23.34,47.66" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.1" points="23.34,47.66,36.73,47.66,36.6,46.38,23.47,46.38" stroke-opacity="0.1"/>
-<polygon fill-opacity="0.3" points="23.08,50.24,36.98,50.24,36.85,48.95,23.21,48.95" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.5" x2="48.71" y1="54.14" y2="54.14">
-<stop offset="0" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#919191"/>
+<path d="M37.109,51.521H22.957l3.86-36.345c0-1.776,1.44-3.216,3.216-3.216l0,0 c1.776,0,3.216,1.439,3.216,3.216L37.109,51.521z" fill="url(#SVGID_1_)"/>
+<polygon fill-opacity="0.2" points="23.212,48.949 36.854,48.949 36.726,47.662 23.34,47.662 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.1" points="23.34,47.662 36.726,47.662 36.599,46.375 23.467,46.375 " stroke-opacity="0.1"/>
+<polygon fill-opacity="0.3" points="23.083,50.235 36.982,50.235 36.854,48.949 23.212,48.949 " stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.4971" x2="48.7082" y1="54.1401" y2="54.1401">
+<stop offset="0" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#919191"/>
</linearGradient>
-<path d="M48.69,58v-3.859c0-2.133-1.729-3.86-3.859-3.86h-29.59c-2.131,0-3.859,1.728-3.859,3.86v3.86h37.31z" fill="url(#SVGID_2_)"/>
-<path d="M44.83,50.28h-29.59c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86h29.59c2.131,0,3.859,1.729,3.859,3.86v-1.286c0-2.13-1.73-3.86-3.86-3.86z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1672" x2="1652" y1="642.4" y2="662.3">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M48.688,58v-3.859c0-2.133-1.729-3.86-3.859-3.86H15.237c-2.131,0-3.859,1.728-3.859,3.86V58H48.688z " fill="url(#SVGID_2_)"/>
+<path d="M44.828,50.28H15.237c-2.131,0-3.859,1.728-3.859,3.86v1.286c0-2.132,1.729-3.86,3.859-3.86 h29.591c2.131,0,3.859,1.729,3.859,3.86v-1.286C48.688,52.008,46.959,50.28,44.828,50.28z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="1671.6611" x2="1651.5664" y1="642.4497" y2="662.2676">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M9.31,2l4.156,4.152c-5.422,5.422-5.42,14.24,0,19.66l-4.154,4.155c-7.715-7.7-7.715-20.25-0.006-27.96z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1664" x2="1644" y1="635" y2="654.8">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M9.31,2l4.156,4.152c-5.422,5.422-5.42,14.244,0,19.665l-4.154,4.155 C1.601,22.258,1.601,9.711,9.31,2z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 1644.7402 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="1664.2842" x2="1644.192" y1="634.9834" y2="654.7988">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M18.74,7.264l4.153,4.152c-2.52,2.52-2.52,6.617,0,9.136l-4.153,4.153c-4.81-4.81-4.81-12.64,0-17.45z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.507" x2="8.507" y1="29.63" y2="-3.066">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M18.738,7.264l4.153,4.152c-2.52,2.52-2.52,6.617,0,9.136l-4.153,4.153 C13.928,19.898,13.928,12.074,18.738,7.264z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5073" x2="8.5073" y1="29.6333" y2="-3.0658">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M9.312,28.69c-3.692-3.693-5.597-8.497-5.753-13.34-0.171,5.27,1.734,10.6,5.753,14.62l4.154-4.155c-0.217-0.218-0.411-0.448-0.61-0.677l-3.548,3.55z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.02" x2="19.02" y1="24.73" y2="9.06">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M9.312,28.686c-3.692-3.693-5.597-8.497-5.753-13.344C3.388,20.618,5.293,25.95,9.312,29.973 l4.154-4.155c-0.217-0.218-0.411-0.448-0.61-0.677L9.312,28.686z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="19.0176" x2="19.0176" y1="24.7275" y2="9.0601">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M18.74,23.42c-2.242-2.24-3.424-5.136-3.577-8.077-0.174,3.369,1.009,6.797,3.577,9.363l4.153-4.153c-0.22-0.22-0.397-0.466-0.578-0.708l-3.57,3.58z" fill="url(#SVGID_6_)"/>
-<path d="M9.31,3.286l3.546,3.542c0.2-0.228,0.393-0.459,0.61-0.676l-4.16-4.152c-4.018,4.02-5.921,9.352-5.75,14.63,0.155-4.85,2.059-9.651,5.75-13.34z" fill="#FFFFFF"/>
-<path d="M18.74,8.551l3.576,3.574c0.181-0.242,0.358-0.487,0.578-0.709l-4.153-4.152c-2.568,2.568-3.751,5.996-3.577,9.364,0.14-2.93,1.33-5.83,3.57-8.069z" fill="#FFFFFF"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1803" x2="1783" y1="773.7" y2="793.5">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M18.738,23.419c-2.242-2.24-3.424-5.136-3.577-8.077c-0.174,3.369,1.009,6.797,3.577,9.363 l4.153-4.153c-0.22-0.22-0.397-0.466-0.578-0.708L18.738,23.419z" fill="url(#SVGID_6_)"/>
+<path d="M9.31,3.286l3.546,3.542c0.2-0.228,0.393-0.459,0.61-0.676L9.31,2c-4.018,4.02-5.921,9.352-5.75,14.628 C3.715,11.779,5.619,6.979,9.31,3.286z" fill="#FFFFFF"/>
+<path d="M18.738,8.551l3.576,3.574c0.181-0.242,0.358-0.487,0.578-0.709l-4.153-4.152 c-2.568,2.568-3.751,5.996-3.577,9.364C15.314,13.688,16.496,10.792,18.738,8.551z" fill="#FFFFFF"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="1802.8955" x2="1782.8008" y1="773.6841" y2="793.502">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M50.69,2l-4.156,4.152c5.422,5.422,5.42,14.24,0,19.66l4.154,4.155c7.72-7.7,7.72-20.25,0.01-27.96z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1796" x2="1775" y1="766.2" y2="786">
-<stop offset="0" stop-color="#B3C77D"/>
-<stop offset="0.7273" stop-color="#3C743A"/>
-<stop offset="1" stop-color="#235138"/>
+<path d="M50.69,2l-4.156,4.152c5.422,5.422,5.42,14.244,0,19.665l4.154,4.155 C58.399,22.258,58.399,9.711,50.69,2z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(0.7071 -0.7071 0.7071 0.7071 -1770.332 729.6548)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="1795.5195" x2="1775.4272" y1="766.2183" y2="786.0338">
+<stop offset="0" style="stop-color:#B3C77D"/>
+<stop offset="0.7273" style="stop-color:#3C743A"/>
+<stop offset="1" style="stop-color:#235138"/>
</linearGradient>
-<path d="M41.26,7.264l-4.153,4.152c2.52,2.52,2.52,6.617,0,9.136l4.153,4.153c4.81-4.81,4.81-12.64,0-17.45z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-177.1" x2="-177.1" y1="29.63" y2="-3.066">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M41.262,7.264l-4.153,4.152c2.52,2.52,2.52,6.617,0,9.136l4.153,4.153 C46.072,19.898,46.072,12.074,41.262,7.264z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-177.0845" x2="-177.0845" y1="29.6333" y2="-3.0658">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M50.69,28.69c3.692-3.693,5.597-8.497,5.753-13.34,0.171,5.276-1.734,10.61-5.753,14.63l-4.154-4.155c0.217-0.218,0.411-0.448,0.61-0.677l3.54,3.55z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-166.6" x2="-166.6" y1="24.73" y2="9.06">
-<stop offset="0" stop-color="#9AB06A"/>
-<stop offset="1" stop-color="#367039"/>
+<path d="M50.688,28.686c3.692-3.693,5.597-8.497,5.753-13.344c0.171,5.276-1.734,10.608-5.753,14.631 l-4.154-4.155c0.217-0.218,0.411-0.448,0.61-0.677L50.688,28.686z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -125.5918 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-166.5747" x2="-166.5747" y1="24.7275" y2="9.0601">
+<stop offset="0" style="stop-color:#9AB06A"/>
+<stop offset="1" style="stop-color:#367039"/>
</linearGradient>
-<path d="M41.26,23.42c2.242-2.24,3.424-5.136,3.577-8.077,0.175,3.369-1.009,6.797-3.577,9.363l-4.153-4.153c0.22-0.22,0.397-0.466,0.578-0.708l3.57,3.58z" fill="url(#SVGID_10_)"/>
-<path d="M50.69,3.286l-3.546,3.542c-0.2-0.228-0.393-0.459-0.61-0.676l4.16-4.152c4.018,4.02,5.921,9.352,5.75,14.63-0.16-4.85-2.06-9.651-5.75-13.34z" fill="#FFFFFF"/>
-<path d="M41.26,8.551l-3.576,3.574c-0.181-0.242-0.358-0.487-0.578-0.709l4.153-4.152c2.568,2.568,3.752,5.996,3.577,9.364-0.14-2.93-1.33-5.83-3.57-8.069z" fill="#FFFFFF"/>
-<rect fill-opacity="0.1" height="1.287" stroke-opacity="0.1" width="37.31" x="11.38" y="56.71"/>
+<path d="M41.262,23.419c2.242-2.24,3.424-5.136,3.577-8.077c0.175,3.369-1.009,6.797-3.577,9.363 l-4.153-4.153c0.22-0.22,0.397-0.466,0.578-0.708L41.262,23.419z" fill="url(#SVGID_10_)"/>
+<path d="M50.69,3.286l-3.546,3.542c-0.2-0.228-0.393-0.459-0.61-0.676L50.69,2c4.018,4.02,5.921,9.352,5.75,14.628 C56.285,11.779,54.381,6.979,50.69,3.286z" fill="#FFFFFF"/>
+<path d="M41.262,8.551l-3.576,3.574c-0.181-0.242-0.358-0.487-0.578-0.709l4.153-4.152 c2.568,2.568,3.752,5.996,3.577,9.364C44.686,13.688,43.504,10.792,41.262,8.551z" fill="#FFFFFF"/>
+<rect fill-opacity="0.1" height="1.287" stroke-opacity="0.1" width="37.31" x="11.378" y="56.713"/>
<rect fill="none" height="60" width="60"/>
+</g>
<g transform="matrix(2 0 0 2 0 0)">
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.35" height="33.87" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.15" y="-2.239"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="656" y2="656">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="0.8424" stop-color="#954B50"/>
-<stop offset="1" stop-color="#B36B4D"/>
+<rect fill-opacity="0.35" height="33.866" stroke-opacity="0.35" transform="matrix(-0.6985 0.7156 -0.7156 -0.6985 35.9922 14.2223)" width="3.706" x="13.147" y="-2.239"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -257 670.6689)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="260" x2="284" y1="655.9761" y2="655.9761">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="0.8424" style="stop-color:#954B50"/>
+<stop offset="1" style="stop-color:#B36B4D"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="25.81,26.43,3,4.177,4.191,2.956,27,25.21"/>
+<polygon fill="url(#SVGID_1__)" points="25.809,26.431 3,4.177 4.191,2.956 27,25.21 "/>
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_zipmgr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_large_zipmgr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,143 +1,145 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="60" viewBox="0 0 60 60" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="60" width="60"/>
<rect fill="none" height="60" width="60"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1189" x2="-1186" y1="44.2" y2="44.2">
-<stop offset="0" stop-color="#979A9A"/>
-<stop offset="0.3394" stop-color="#5D5F61"/>
-<stop offset="0.7394" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#898A8B"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1188.8574" x2="-1185.7031" y1="44.1982" y2="44.1982">
+<stop offset="0" style="stop-color:#979A9A"/>
+<stop offset="0.3394" style="stop-color:#5D5F61"/>
+<stop offset="0.7394" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#898A8B"/>
</linearGradient>
-<path d="M36.7,55.46c0,0.969,0.705,1.754,1.576,1.754s1.578-0.785,1.578-1.754v-22.52c0-0.969-0.707-1.752-1.578-1.752s-1.576,0.784-1.576,1.752v22.53z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1190" x2="-1184" y1="50.51" y2="50.51">
-<stop offset="0" stop-color="#B9BDBC"/>
-<stop offset="0.297" stop-color="#919595"/>
-<stop offset="0.7333" stop-color="#E7EBE8"/>
-<stop offset="1" stop-color="#B7BCBA"/>
+<path d="M36.705,55.458c0,0.969,0.705,1.754,1.576,1.754l0,0c0.871,0,1.578-0.785,1.578-1.754V32.937 c0-0.969-0.707-1.752-1.578-1.752l0,0c-0.871,0-1.576,0.784-1.576,1.752V55.458z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1190.4336" x2="-1184.125" y1="50.5068" y2="50.5068">
+<stop offset="0" style="stop-color:#B9BDBC"/>
+<stop offset="0.297" style="stop-color:#919595"/>
+<stop offset="0.7333" style="stop-color:#E7EBE8"/>
+<stop offset="1" style="stop-color:#B7BCBA"/>
</linearGradient>
-<path d="M35.13,50.9c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.353,0.789-0.789v-0.789c0-0.436-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789v0.791z" fill="url(#SVGID_2_)"/>
-<path d="M35.92,49.32h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.435-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789c0-0.43,0.35-0.79,0.79-0.79z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.7" y="51.69"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1190" x2="-1184" y1="46.56" y2="46.56">
-<stop offset="0" stop-color="#B9BDBC"/>
-<stop offset="0.297" stop-color="#919595"/>
-<stop offset="0.7333" stop-color="#E7EBE8"/>
-<stop offset="1" stop-color="#B7BCBA"/>
+<path d="M35.127,50.901c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.353,0.789-0.789v-0.789 c0-0.436-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789V50.901z" fill="url(#SVGID_2_)"/>
+<path d="M35.916,49.324h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.435-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,49.677,35.479,49.324,35.916,49.324z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="51.69"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1190.4336" x2="-1184.125" y1="46.5635" y2="46.5635">
+<stop offset="0" style="stop-color:#B9BDBC"/>
+<stop offset="0.297" style="stop-color:#919595"/>
+<stop offset="0.7333" style="stop-color:#E7EBE8"/>
+<stop offset="1" style="stop-color:#B7BCBA"/>
</linearGradient>
-<path d="M35.13,46.96c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.352,0.789-0.789v-0.789c0-0.435-0.352-0.788-0.789-0.788h-4.73c-0.438,0-0.789,0.353-0.789,0.788v0.788z" fill="url(#SVGID_3_)"/>
-<path d="M35.92,45.38h4.73c0.438,0,0.789,0.353,0.789,0.788v0.789c0-0.436-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789c0-0.44,0.35-0.79,0.79-0.79z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.7" y="47.75"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1190" x2="-1184" y1="39.46" y2="39.46">
-<stop offset="0" stop-color="#B9BDBC"/>
-<stop offset="0.297" stop-color="#919595"/>
-<stop offset="0.7333" stop-color="#E7EBE8"/>
-<stop offset="1" stop-color="#B7BCBA"/>
+<path d="M35.127,46.958c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.352,0.789-0.789v-0.789 c0-0.435-0.352-0.788-0.789-0.788h-4.73c-0.438,0-0.789,0.353-0.789,0.788V46.958z" fill="url(#SVGID_3_)"/>
+<path d="M35.916,45.38h4.73c0.438,0,0.789,0.353,0.789,0.788v0.789c0-0.436-0.352-0.789-0.789-0.789h-4.73 c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,45.733,35.479,45.38,35.916,45.38z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="47.746"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1190.4336" x2="-1184.125" y1="39.4648" y2="39.4648">
+<stop offset="0" style="stop-color:#B9BDBC"/>
+<stop offset="0.297" style="stop-color:#919595"/>
+<stop offset="0.7333" style="stop-color:#E7EBE8"/>
+<stop offset="1" style="stop-color:#B7BCBA"/>
</linearGradient>
-<path d="M35.13,39.86c0,0.436,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.354,0.789-0.789v-0.789c0-0.437-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.353-0.789,0.789v0.789z" fill="url(#SVGID_4_)"/>
-<path d="M35.92,38.28h4.73c0.438,0,0.789,0.353,0.789,0.789v0.789c0-0.437-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.352-0.789,0.789v-0.789c0-0.44,0.35-0.79,0.79-0.79z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.7" y="40.65"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1190" x2="-1184" y1="35.52" y2="35.52">
-<stop offset="0" stop-color="#B9BDBC"/>
-<stop offset="0.297" stop-color="#919595"/>
-<stop offset="0.7333" stop-color="#E7EBE8"/>
-<stop offset="1" stop-color="#B7BCBA"/>
+<path d="M35.127,39.859c0,0.436,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.354,0.789-0.789v-0.789 c0-0.437-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.353-0.789,0.789V39.859z" fill="url(#SVGID_4_)"/>
+<path d="M35.916,38.282h4.73c0.438,0,0.789,0.353,0.789,0.789v0.789c0-0.437-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.352-0.789,0.789v-0.789C35.127,38.634,35.479,38.282,35.916,38.282z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="40.648"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-1190.4336" x2="-1184.125" y1="35.521" y2="35.521">
+<stop offset="0" style="stop-color:#B9BDBC"/>
+<stop offset="0.297" style="stop-color:#919595"/>
+<stop offset="0.7333" style="stop-color:#E7EBE8"/>
+<stop offset="1" style="stop-color:#B7BCBA"/>
</linearGradient>
-<path d="M35.13,35.92c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.352,0.789-0.789v-0.789c0-0.435-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789v0.786z" fill="url(#SVGID_5_)"/>
-<path d="M35.92,35.92h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73c-0.438,0-0.789-0.352-0.789-0.789v-0.789c0,0.43,0.35,0.79,0.79,0.79z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M35.92,46.96h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73c-0.438,0-0.789-0.352-0.789-0.789v-0.789c0,0.43,0.35,0.79,0.79,0.79z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M35.92,50.9h4.73c0.438,0,0.789-0.352,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73c-0.438,0-0.789-0.353-0.789-0.789v-0.789c0,0.44,0.35,0.79,0.79,0.79z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M35.92,34.34h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.436-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789c0-0.44,0.35-0.79,0.79-0.79z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.7" y="36.7"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1197" x2="-1178" y1="31.58" y2="31.58">
-<stop offset="0" stop-color="#979A9A"/>
-<stop offset="0.3394" stop-color="#5D5F61"/>
-<stop offset="0.7394" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#898A8B"/>
+<path d="M35.127,35.916c0,0.437,0.352,0.789,0.789,0.789h4.73c0.438,0,0.789-0.352,0.789-0.789v-0.789 c0-0.435-0.352-0.789-0.789-0.789h-4.73c-0.438,0-0.789,0.354-0.789,0.789V35.916z" fill="url(#SVGID_5_)"/>
+<path d="M35.916,35.916h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.352-0.789-0.789v-0.789C35.127,35.563,35.479,35.916,35.916,35.916z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M35.916,46.958h4.73c0.438,0,0.789-0.353,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.352-0.789-0.789v-0.789C35.127,46.605,35.479,46.958,35.916,46.958z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M35.916,50.901h4.73c0.438,0,0.789-0.352,0.789-0.789v0.789c0,0.437-0.352,0.789-0.789,0.789h-4.73 c-0.438,0-0.789-0.353-0.789-0.789v-0.789C35.127,50.549,35.479,50.901,35.916,50.901z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M35.916,34.338h4.73c0.438,0,0.789,0.354,0.789,0.789v0.789c0-0.436-0.352-0.789-0.789-0.789 h-4.73c-0.438,0-0.789,0.354-0.789,0.789v-0.789C35.127,34.691,35.479,34.338,35.916,34.338z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="3.154" x="36.705" y="36.704"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-1196.7441" x2="-1177.8145" y1="31.5776" y2="31.5776">
+<stop offset="0" style="stop-color:#979A9A"/>
+<stop offset="0.3394" style="stop-color:#5D5F61"/>
+<stop offset="0.7394" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#898A8B"/>
</linearGradient>
-<path d="M47.75,31.18c0,0.871-0.707,1.576-1.576,1.576h-15.78c-0.871,0-1.578-0.706-1.578-1.576v-0.789h18.93v0.794z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-1204" x2="-1171" y1="26.85" y2="26.85">
-<stop offset="0" stop-color="#4E8146"/>
-<stop offset="0.2606" stop-color="#326644"/>
-<stop offset="1" stop-color="#98B060"/>
+<path d="M47.746,31.184c0,0.871-0.707,1.576-1.576,1.576H30.395c-0.871,0-1.578-0.706-1.578-1.576v-0.789 h18.93V31.184z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-1203.8418" x2="-1170.7168" y1="26.8457" y2="26.8457">
+<stop offset="0" style="stop-color:#4E8146"/>
+<stop offset="0.2606" style="stop-color:#326644"/>
+<stop offset="1" style="stop-color:#98B060"/>
</linearGradient>
-<path d="M21.72,28.82c0,0.871,0.705,1.578,1.578,1.578h29.97c0.871,0,1.576-0.707,1.576-1.578v-3.944c0-0.871-0.705-1.578-1.576-1.578h-29.97c-0.873,0-1.578,0.707-1.578,1.578v3.937z" fill="url(#SVGID_7_)"/>
-<path d="M23.3,29.61h29.97c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578h-29.97c-0.873,0-1.578-0.707-1.578-1.578v-0.789c0,0.87,0.7,1.58,1.58,1.58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M23.3,23.3h29.97c0.871,0,1.576,0.707,1.576,1.578v0.789c0-0.871-0.705-1.578-1.576-1.578h-29.97c-0.873,0-1.578,0.707-1.578,1.578v-0.789c0-0.88,0.7-1.58,1.58-1.58z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-1204" x2="-1171" y1="19.75" y2="19.75">
-<stop offset="0" stop-color="#B39C4D"/>
-<stop offset="0.2545" stop-color="#AC8A4A"/>
-<stop offset="1" stop-color="#E4E0C1"/>
+<path d="M21.719,28.817c0,0.871,0.705,1.578,1.578,1.578h29.971c0.871,0,1.576-0.707,1.576-1.578v-3.944 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578V28.817z" fill="url(#SVGID_7_)"/>
+<path d="M23.297,29.606h29.971c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C21.719,28.899,22.424,29.606,23.297,29.606z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.297,23.296h29.971c0.871,0,1.576,0.707,1.576,1.578v0.789 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578v-0.789C21.719,24.003,22.424,23.296,23.297,23.296z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-1203.8418" x2="-1170.7168" y1="19.7471" y2="19.7471">
+<stop offset="0" style="stop-color:#B39C4D"/>
+<stop offset="0.2545" style="stop-color:#AC8A4A"/>
+<stop offset="1" style="stop-color:#E4E0C1"/>
</linearGradient>
-<path d="M21.72,21.72c0,0.872,0.705,1.578,1.578,1.578h29.97c0.871,0,1.576-0.706,1.576-1.578v-3.943c0-0.872-0.705-1.578-1.576-1.578h-29.97c-0.873,0-1.578,0.706-1.578,1.578v3.938z" fill="url(#SVGID_8_)"/>
-<path d="M23.3,22.51h29.97c0.871,0,1.576-0.706,1.576-1.578v0.789c0,0.872-0.705,1.578-1.576,1.578h-29.97c-0.873,0-1.578-0.706-1.578-1.578v-0.789c0,0.87,0.7,1.58,1.58,1.58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M23.3,16.2h29.97c0.871,0,1.576,0.706,1.576,1.578v0.789c0-0.872-0.705-1.578-1.576-1.578h-29.97c-0.873,0-1.578,0.706-1.578,1.578v-0.789c0-0.88,0.7-1.58,1.58-1.58z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-1204" x2="-1171" y1="12.65" y2="12.65">
-<stop offset="0" stop-color="#AF7563"/>
-<stop offset="0.2061" stop-color="#88444B"/>
-<stop offset="1" stop-color="#C39072"/>
+<path d="M21.719,21.718c0,0.872,0.705,1.578,1.578,1.578h29.971c0.871,0,1.576-0.706,1.576-1.578v-3.943 c0-0.872-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.706-1.578,1.578V21.718z" fill="url(#SVGID_8_)"/>
+<path d="M23.297,22.507h29.971c0.871,0,1.576-0.706,1.576-1.578v0.789c0,0.872-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.706-1.578-1.578v-0.789C21.719,21.801,22.424,22.507,23.297,22.507z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.297,16.198h29.971c0.871,0,1.576,0.706,1.576,1.578v0.789 c0-0.872-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.706-1.578,1.578v-0.789C21.719,16.904,22.424,16.198,23.297,16.198z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-1203.8418" x2="-1170.7168" y1="12.6484" y2="12.6484">
+<stop offset="0" style="stop-color:#AF7563"/>
+<stop offset="0.2061" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#C39072"/>
</linearGradient>
-<path d="M21.72,14.62c0,0.871,0.705,1.578,1.578,1.578h29.97c0.871,0,1.576-0.707,1.576-1.578v-3.944c0-0.871-0.705-1.578-1.576-1.578h-29.97c-0.873,0-1.578,0.707-1.578,1.578v3.94z" fill="url(#SVGID_9_)"/>
-<path d="M23.3,15.41h29.97c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578h-29.97c-0.873,0-1.578-0.707-1.578-1.578v-0.789c0,0.87,0.7,1.58,1.58,1.58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M23.3,9.099h29.97c0.871,0,1.576,0.707,1.576,1.578v0.789c0-0.871-0.705-1.578-1.576-1.578h-29.97c-0.873,0-1.578,0.707-1.578,1.578v-0.789c0-0.874,0.7-1.581,1.58-1.581z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-1196" x2="-1178" y1="55.63" y2="55.63">
-<stop offset="0" stop-color="#979A9A"/>
-<stop offset="0.3394" stop-color="#5D5F61"/>
-<stop offset="0.7394" stop-color="#BFC2C1"/>
-<stop offset="1" stop-color="#898A8B"/>
+<path d="M21.719,14.62c0,0.871,0.705,1.578,1.578,1.578h29.971c0.871,0,1.576-0.707,1.576-1.578v-3.944 c0-0.871-0.705-1.578-1.576-1.578H23.297c-0.873,0-1.578,0.707-1.578,1.578V14.62z" fill="url(#SVGID_9_)"/>
+<path d="M23.297,15.409h29.971c0.871,0,1.576-0.707,1.576-1.578v0.789c0,0.871-0.705,1.578-1.576,1.578H23.297 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C21.719,14.702,22.424,15.409,23.297,15.409z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.297,9.099h29.971c0.871,0,1.576,0.707,1.576,1.578v0.789c0-0.871-0.705-1.578-1.576-1.578 H23.297c-0.873,0-1.578,0.707-1.578,1.578v-0.789C21.719,9.806,22.424,9.099,23.297,9.099z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-1195.9551" x2="-1178.3573" y1="55.6343" y2="55.6343">
+<stop offset="0" style="stop-color:#979A9A"/>
+<stop offset="0.3394" style="stop-color:#5D5F61"/>
+<stop offset="0.7394" style="stop-color:#BFC2C1"/>
+<stop offset="1" style="stop-color:#898A8B"/>
</linearGradient>
-<path d="M29.6,56.42c0,0.871,0.705,1.578,1.578,1.578h14.2c0.869,0,1.576-0.707,1.576-1.578v-1.578c0-0.872-0.707-1.577-1.576-1.577h-14.2c-0.873,0-1.578,0.706-1.578,1.577v1.583z" fill="url(#SVGID_10_)"/>
-<path d="M31.18,57.21h14.2c0.869,0,1.576-0.708,1.576-1.578v0.789c0,0.871-0.707,1.578-1.576,1.578h-14.2c-0.873,0-1.578-0.707-1.578-1.578v-0.789c-0.01,0.87,0.7,1.58,1.57,1.58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M31.18,53.27h14.2c0.869,0,1.576,0.706,1.576,1.577v0.789c0-0.872-0.707-1.578-1.576-1.578h-14.2c-0.873,0-1.578,0.706-1.578,1.578v-0.789c-0.01-0.88,0.7-1.58,1.57-1.58z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-1176" x2="-1176" y1="38.81" y2="45.12">
-<stop offset="0" stop-color="#B6B6B6"/>
-<stop offset="0.4727" stop-color="#979A9A"/>
-<stop offset="0.8909" stop-color="#48494B"/>
-<stop offset="1" stop-color="#696B6C"/>
+<path d="M29.605,56.423c0,0.871,0.705,1.578,1.578,1.578h14.197c0.869,0,1.576-0.707,1.576-1.578v-1.578 c0-0.872-0.707-1.577-1.576-1.577H31.184c-0.873,0-1.578,0.706-1.578,1.577V56.423z" fill="url(#SVGID_10_)"/>
+<path d="M31.184,57.212h14.197c0.869,0,1.576-0.708,1.576-1.578v0.789c0,0.871-0.707,1.578-1.576,1.578H31.184 c-0.873,0-1.578-0.707-1.578-1.578v-0.789C29.605,56.504,30.311,57.212,31.184,57.212z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M31.184,53.268h14.197c0.869,0,1.576,0.706,1.576,1.577v0.789 c0-0.872-0.707-1.578-1.576-1.578H31.184c-0.873,0-1.578,0.706-1.578,1.578v-0.789C29.605,53.974,30.311,53.268,31.184,53.268z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-1176.2363" x2="-1176.2363" y1="38.8081" y2="45.1177">
+<stop offset="0" style="stop-color:#B6B6B6"/>
+<stop offset="0.4727" style="stop-color:#979A9A"/>
+<stop offset="0.8909" style="stop-color:#48494B"/>
+<stop offset="1" style="stop-color:#696B6C"/>
</linearGradient>
-<path d="M5.154,43.8c0,0.87,0.707,1.577,1.578,1.577h41.01c0.871,0,1.576-0.707,1.576-1.577v-3.155c0-0.873-0.705-1.578-1.576-1.578h-41.02c-0.871,0.01-1.578,4.74-1.578,4.74z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-1176" x2="-1176" y1="38.81" y2="45.12">
-<stop offset="0" stop-color="#E0E0E0"/>
-<stop offset="0.4727" stop-color="#AEB2B0"/>
-<stop offset="0.8909" stop-color="#48494B"/>
-<stop offset="1" stop-color="#696B6C"/>
+<path d="M5.154,43.804c0,0.87,0.707,1.577,1.578,1.577h41.014c0.871,0,1.576-0.707,1.576-1.577v-3.155 c0-0.873-0.705-1.578-1.576-1.578H6.732C5.861,39.071,5.154,43.804,5.154,43.804z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-1176.2363" x2="-1176.2363" y1="38.8081" y2="45.1177">
+<stop offset="0" style="stop-color:#E0E0E0"/>
+<stop offset="0.4727" style="stop-color:#AEB2B0"/>
+<stop offset="0.8909" style="stop-color:#48494B"/>
+<stop offset="1" style="stop-color:#696B6C"/>
</linearGradient>
-<path d="M5.154,43.8c0,0.87,0.707,1.577,1.578,1.577h41.01c0.871,0,1.576-0.707,1.576-1.577v-3.155c0-0.873-0.705-1.578-1.576-1.578h-41.02c-0.871,0.01-1.578,4.74-1.578,4.74zm0.789-3.15c0-0.434,0.354-0.789,0.789-0.789h41.01c0.436,0,0.789,0.355,0.789,0.789v3.155c0,0.434-0.354,0.789-0.789,0.789h-41.02c-0.436,0-0.789-0.355-0.789-0.789v-3.152z" fill="url(#SVGID_12_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-1178" x2="-1178" y1="2" y2="8.31">
-<stop offset="0" stop-color="#D9D9D9"/>
-<stop offset="0.4727" stop-color="#B2B7B5"/>
-<stop offset="0.8909" stop-color="#67696B"/>
-<stop offset="1" stop-color="#777A7B"/>
+<path d="M5.154,43.804c0,0.87,0.707,1.577,1.578,1.577h41.014c0.871,0,1.576-0.707,1.576-1.577v-3.155 c0-0.873-0.705-1.578-1.576-1.578H6.732C5.861,39.071,5.154,43.804,5.154,43.804z M5.943,40.648c0-0.434,0.354-0.789,0.789-0.789 h41.014c0.436,0,0.789,0.355,0.789,0.789v3.155c0,0.434-0.354,0.789-0.789,0.789H6.732c-0.436,0-0.789-0.355-0.789-0.789V40.648z" fill="url(#SVGID_12_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-1177.8145" x2="-1177.8145" y1="2.0005" y2="8.3101">
+<stop offset="0" style="stop-color:#D9D9D9"/>
+<stop offset="0.4727" style="stop-color:#B2B7B5"/>
+<stop offset="0.8909" style="stop-color:#67696B"/>
+<stop offset="1" style="stop-color:#777A7B"/>
</linearGradient>
-<path d="M6.732,8.31h44.17c0.871,0,1.578-0.706,1.578-1.577v-3.155c0-0.871-0.71-1.578-1.58-1.578h-44.17c-0.871,0-1.578,0.707-1.578,1.578,0,0,0.707,4.732,1.578,4.732z" fill="url(#SVGID_13_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-1178" x2="-1178" y1="2" y2="8.31">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.4727" stop-color="#D4DAD6"/>
-<stop offset="0.8909" stop-color="#67696B"/>
-<stop offset="1" stop-color="#777A7B"/>
+<path d="M6.732,8.31H50.9c0.871,0,1.578-0.706,1.578-1.577V3.578C52.479,2.707,51.771,2,50.9,2H6.732 C5.861,2,5.154,2.707,5.154,3.578C5.154,3.578,5.861,8.31,6.732,8.31z" fill="url(#SVGID_13_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-1177.8145" x2="-1177.8145" y1="2.0005" y2="8.3101">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.4727" style="stop-color:#D4DAD6"/>
+<stop offset="0.8909" style="stop-color:#67696B"/>
+<stop offset="1" style="stop-color:#777A7B"/>
</linearGradient>
-<path d="M5.154,3.578s0.707,4.732,1.578,4.732h44.17c0.871,0,1.578-0.706,1.578-1.577v-3.155c0-0.871-0.71-1.578-1.58-1.578h-44.17c-0.871,0-1.578,0.707-1.578,1.578zm0.789,0c0-0.435,0.354-0.789,0.789-0.789h44.17c0.436,0,0.789,0.354,0.789,0.789v3.155c0,0.434-0.354,0.788-0.789,0.788h-44.17c-0.435,0-0.789-3.943-0.789-3.943z" fill="url(#SVGID_14_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-1160" x2="-1160" y1="2" y2="45.4">
-<stop offset="0" stop-color="#DDE0DE"/>
-<stop offset="0.5273" stop-color="#919696"/>
-<stop offset="1" stop-color="#2D2D32"/>
+<path d="M5.154,3.578c0,0,0.707,4.732,1.578,4.732H50.9c0.871,0,1.578-0.706,1.578-1.577V3.578 C52.479,2.707,51.771,2,50.9,2H6.732C5.861,2,5.154,2.707,5.154,3.578z M5.943,3.578c0-0.435,0.354-0.789,0.789-0.789H50.9 c0.436,0,0.789,0.354,0.789,0.789v3.155c0,0.434-0.354,0.788-0.789,0.788H6.732C6.297,7.521,5.943,3.578,5.943,3.578z" fill="url(#SVGID_14_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-1160.0684" x2="-1160.0684" y1="2.0005" y2="45.4">
+<stop offset="0" style="stop-color:#DDE0DE"/>
+<stop offset="0.5273" style="stop-color:#919696"/>
+<stop offset="1" style="stop-color:#2D2D32"/>
</linearGradient>
-<path d="M5.775,2.332l11.22,5.978v30.76l-11.22,5.98c-0.375-0.288-0.621-0.736-0.621-1.245v-40.22c0-0.511,0.246-0.958,0.621-1.246z" fill="url(#SVGID_15_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-1155" x2="-1155" y1="2.215" y2="45.14">
-<stop offset="0" stop-color="#EEF2EF"/>
-<stop offset="0.2545" stop-color="#CBCFCD"/>
-<stop offset="0.5273" stop-color="#A6AEAC"/>
-<stop offset="1" stop-color="#2D2D32"/>
+<path d="M5.775,2.332L16.986,8.31v30.761L5.775,45.049c-0.375-0.288-0.621-0.736-0.621-1.245V3.578 C5.154,3.067,5.4,2.62,5.775,2.332z" fill="url(#SVGID_15_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-1154.9414" x2="-1154.9414" y1="2.2153" y2="45.1406">
+<stop offset="0" style="stop-color:#EEF2EF"/>
+<stop offset="0.2545" style="stop-color:#CBCFCD"/>
+<stop offset="0.5273" style="stop-color:#A6AEAC"/>
+<stop offset="1" style="stop-color:#2D2D32"/>
</linearGradient>
-<path d="M5.775,2.332l0.957,0.509v41.7l-0.957,0.509c-0.375-0.288-0.621-0.736-0.621-1.245v-40.22c0-0.511,0.246-0.958,0.621-1.246z" fill="url(#SVGID_16_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-1164" x2="-1164" y1="1.744" y2="45.71">
-<stop offset="0" stop-color="#B7BBBA"/>
-<stop offset="0.5273" stop-color="#797E7E"/>
-<stop offset="1" stop-color="#2D2D32"/>
+<path d="M5.775,2.332l0.957,0.509V44.54l-0.957,0.509c-0.375-0.288-0.621-0.736-0.621-1.245V3.578 C5.154,3.067,5.4,2.62,5.775,2.332z" fill="url(#SVGID_16_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1148.998 0)" gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="-1164.0117" x2="-1164.0117" y1="1.7437" y2="45.7098">
+<stop offset="0" style="stop-color:#B7BBBA"/>
+<stop offset="0.5273" style="stop-color:#797E7E"/>
+<stop offset="1" style="stop-color:#2D2D32"/>
</linearGradient>
-<polygon fill="url(#SVGID_17_)" points="13.04,6.208,16.99,8.31,16.99,39.07,13.04,41.17"/>
-<path d="M16.99,39.07l-11.22,5.98c-0.338-0.26-0.563-0.655-0.604-1.104,0.061,0.15,11.82-4.88,11.82-4.88z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<path d="M5.172,3.436c0.041-0.449,0.266-0.844,0.604-1.104l11.21,5.978s-11.76-5.026-11.82-4.874z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="18.93" x="28.82" y="30.4"/>
-<rect fill-opacity="0.2" height="0.788" stroke-opacity="0.2" width="3.154" x="36.7" y="32.76"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_17_)" points="13.041,6.208 16.986,8.31 16.986,39.071 13.041,41.173 "/>
+<path d="M16.986,39.071L5.775,45.049c-0.338-0.26-0.563-0.655-0.604-1.104C5.232,44.097,16.986,39.071,16.986,39.071z " fill-opacity="0.1" stroke-opacity="0.1"/>
+<path d="M5.172,3.436c0.041-0.449,0.266-0.844,0.604-1.104L16.986,8.31 C16.986,8.31,5.232,3.284,5.172,3.436z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<rect fill-opacity="0.2" height="0.789" stroke-opacity="0.2" width="18.93" x="28.816" y="30.395"/>
+<rect fill-opacity="0.2" height="0.788" stroke-opacity="0.2" width="3.154" x="36.705" y="32.76"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_0_3mp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_0_3mp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-19.42,14.26c-0.504,0.686-1.254,1.034-2.227,1.034-0.85,0-1.506-0.233-1.949-0.694-0.432-0.448-0.716-1.021-0.846-1.701-0.125-0.653-0.188-1.453-0.188-2.375,0-1.648,0.245-2.789,0.747-3.486,0.51-0.708,1.272-1.068,2.266-1.068,0.967,0,1.709,0.352,2.207,1.044,0.49,0.682,0.729,1.83,0.729,3.509,0,1.84-0.242,3.06-0.739,3.74zm3.316,0.7c-0.22,0.219-0.489,0.331-0.801,0.331s-0.579-0.11-0.8-0.33-0.334-0.49-0.334-0.798c0-0.313,0.112-0.58,0.332-0.799,0.22-0.217,0.491-0.327,0.806-0.327,0.311,0,0.58,0.11,0.8,0.327,0.22,0.219,0.332,0.486,0.332,0.799,0.01,0.31-0.11,0.58-0.33,0.8zm5.71-0.39c-0.557,0.478-1.389,0.72-2.477,0.72-0.641,0-1.305-0.095-1.976-0.283l-0.146-0.04v-1.372h0.2c0.807,0.192,1.399,0.287,1.822,0.287,0.474,0,0.83-0.115,1.057-0.343,0.228-0.227,0.343-0.585,0.343-1.063,0-0.514-0.132-0.867-0.403-1.078-0.194-0.152-0.717-0.333-2.098-0.333h-0.2v-1.39h0.2c1.365,0,1.854-0.166,2.023-0.306,0.238-0.196,0.354-0.499,0.354-0.924,0-0.372-0.091-0.638-0.28-0.815-0.188-0.178-0.486-0.268-0.885-0.268-0.379,0-0.927,0.098-1.629,0.292h-0.199l-0.065-0.193v-1.188l0.151-0.038c0.747-0.187,1.434-0.282,2.041-0.282,0.938,0,1.657,0.196,2.141,0.583,0.497,0.397,0.749,0.994,0.749,1.773,0,0.538-0.149,1.009-0.444,1.401-0.188,0.247-0.426,0.45-0.714,0.606,0.327,0.136,0.597,0.335,0.806,0.595,0.319,0.396,0.481,0.895,0.481,1.482,0.02,0.96-0.26,1.69-0.83,2.17zm9.82,0.63h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531v5.44h-2v-9.137h1.669l2.123,4.042,2.123-4.042h1.651v9.14z"/>
-<path d="M5.346,11.34c-0.281,0-0.474,0.103-0.604,0.323-0.15,0.255-0.246,0.597-0.284,1.019-0.04,0.445-0.061,1.063-0.061,1.839,0,1.883,0.141,2.605,0.259,2.88,0.152,0.353,0.371,0.518,0.689,0.518,0.199,0,0.488-0.057,0.691-0.548,0.174-0.42,0.263-1.379,0.263-2.85,0-1.755-0.146-2.431-0.268-2.689-0.158-0.33-0.376-0.49-0.685-0.49z"/>
-</svg>
\ No newline at end of file
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M7.584,18.26 c-0.504,0.686-1.254,1.034-2.227,1.034c-0.85,0-1.506-0.233-1.949-0.694c-0.432-0.448-0.716-1.021-0.846-1.701 c-0.125-0.653-0.188-1.453-0.188-2.375c0-1.648,0.245-2.789,0.747-3.486c0.51-0.708,1.272-1.068,2.266-1.068 c0.967,0,1.709,0.352,2.207,1.044c0.49,0.682,0.729,1.83,0.729,3.509C8.323,16.361,8.081,17.584,7.584,18.26z M10.904,18.963 c-0.22,0.219-0.489,0.331-0.801,0.331S9.521,19.182,9.3,18.96s-0.334-0.49-0.334-0.798c0-0.313,0.112-0.58,0.332-0.799 c0.22-0.217,0.491-0.327,0.806-0.327c0.311,0,0.58,0.11,0.8,0.327c0.22,0.219,0.332,0.486,0.332,0.799 C11.235,18.474,11.123,18.743,10.904,18.963z M16.611,18.574c-0.557,0.478-1.389,0.72-2.477,0.72c-0.641,0-1.305-0.095-1.976-0.283 l-0.146-0.04v-1.372h0.2c0.807,0.192,1.399,0.287,1.822,0.287c0.474,0,0.83-0.115,1.057-0.343c0.228-0.227,0.343-0.585,0.343-1.063 c0-0.514-0.132-0.867-0.403-1.078c-0.194-0.152-0.717-0.333-2.098-0.333h-0.2V13.69h0.2c1.365,0,1.854-0.166,2.023-0.306 c0.238-0.196,0.354-0.499,0.354-0.924c0-0.372-0.091-0.638-0.28-0.815c-0.188-0.178-0.486-0.268-0.885-0.268 c-0.379,0-0.927,0.098-1.629,0.292h-0.199l-0.065-0.193v-1.188l0.151-0.038c0.747-0.187,1.434-0.282,2.041-0.282 c0.938,0,1.657,0.196,2.141,0.583c0.497,0.397,0.749,0.994,0.749,1.773c0,0.538-0.149,1.009-0.444,1.401 c-0.188,0.247-0.426,0.45-0.714,0.606c0.327,0.136,0.597,0.335,0.806,0.595c0.319,0.396,0.481,0.895,0.481,1.482 C17.464,17.361,17.178,18.09,16.611,18.574z M26.429,19.2h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531V19.2h-2v-9.137h1.669 l2.123,4.042l2.123-4.042h1.651V19.2z"/>
+<path d="M5.346,11.343c-0.281,0-0.474,0.103-0.604,0.323c-0.15,0.255-0.246,0.597-0.284,1.019c-0.04,0.445-0.061,1.063-0.061,1.839 c0,1.883,0.141,2.605,0.259,2.88c0.152,0.353,0.371,0.518,0.689,0.518c0.199,0,0.488-0.057,0.691-0.548 c0.174-0.42,0.263-1.379,0.263-2.85c0-1.755-0.146-2.431-0.268-2.689C5.873,11.499,5.655,11.343,5.346,11.343z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_12mp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_12mp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-16.76,15.2h-5.579v-1.338h1.84v-6.088l-1.84,0.422v-1.335l2.724-0.859,1.11-0.009v7.869h1.74v1.34zm6.52,0h-5.627v-0.839c0-0.635,0.112-1.209,0.334-1.704,0.219-0.49,0.493-0.916,0.815-1.265,0.313-0.338,0.713-0.714,1.19-1.116,0.546-0.459,0.891-0.813,1.027-1.053,0.13-0.23,0.196-0.459,0.196-0.681,0-0.394-0.1-0.689-0.298-0.877-0.201-0.191-0.518-0.288-0.943-0.288-0.482,0-1.08,0.128-1.778,0.38h-0.2l-0.08-0.188v-1.19l0.14-0.044c0.774-0.243,1.539-0.367,2.275-0.367,0.931,0,1.655,0.212,2.15,0.63,0.506,0.427,0.763,1.057,0.763,1.873,0,0.455-0.112,0.908-0.332,1.347-0.222,0.441-0.717,0.98-1.515,1.648-0.424,0.358-0.755,0.657-0.995,0.896-0.229,0.229-0.424,0.482-0.58,0.758-0.116,0.202-0.191,0.424-0.227,0.658h3.684v1.41zm8.86,0h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531v5.44h-2v-9.137h1.669l2.123,4.042,2.123-4.042h1.651v9.14z"/>
-</svg>
\ No newline at end of file
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M10.235,19.2H4.661 v-1.338h1.84v-6.088l-1.84,0.422v-1.335l2.724-0.859l1.11-0.009v7.869h1.74V19.2z M16.763,19.2h-5.627v-0.839 c0-0.635,0.112-1.209,0.334-1.704c0.219-0.49,0.493-0.916,0.815-1.265c0.313-0.338,0.713-0.714,1.19-1.116 c0.546-0.459,0.891-0.813,1.027-1.053c0.13-0.23,0.196-0.459,0.196-0.681c0-0.394-0.1-0.689-0.298-0.877 c-0.201-0.191-0.518-0.288-0.943-0.288c-0.482,0-1.08,0.128-1.778,0.38h-0.2l-0.08-0.188v-1.19l0.14-0.044 c0.774-0.243,1.539-0.367,2.275-0.367c0.931,0,1.655,0.212,2.15,0.63c0.506,0.427,0.763,1.057,0.763,1.873 c0,0.455-0.112,0.908-0.332,1.347c-0.222,0.441-0.717,0.98-1.515,1.648c-0.424,0.358-0.755,0.657-0.995,0.896 c-0.229,0.229-0.424,0.482-0.58,0.758c-0.116,0.202-0.191,0.424-0.227,0.658h3.684V19.2z M25.622,19.2h-1.994v-5.435l-1.325,2.529 h-0.916l-1.331-2.531V19.2h-2v-9.137h1.669l2.123,4.042l2.123-4.042h1.651V19.2z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_1_3mp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_1_3mp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-18.76,15.2h-5.574v-1.338h1.84v-6.088l-1.84,0.422v-1.335l2.724-0.859,1.11-0.009v7.869h1.74v1.34zm2.665-0.24c-0.22,0.22-0.489,0.331-0.801,0.331s-0.579-0.11-0.8-0.33c-0.221-0.222-0.334-0.49-0.334-0.798,0-0.312,0.112-0.581,0.332-0.798,0.22-0.218,0.491-0.328,0.806-0.328,0.311,0,0.58,0.11,0.8,0.328,0.22,0.217,0.332,0.486,0.332,0.798s-0.11,0.58-0.33,0.8zm5.71-0.38c-0.557,0.477-1.389,0.719-2.477,0.719-0.64,0-1.305-0.096-1.976-0.283l-0.146-0.041v-1.371h0.2c0.807,0.193,1.399,0.287,1.822,0.287,0.474,0,0.83-0.115,1.057-0.343,0.228-0.228,0.343-0.585,0.343-1.063,0-0.514-0.132-0.867-0.403-1.079-0.194-0.152-0.716-0.333-2.098-0.333h-0.2v-1.4h0.2c1.365,0,1.854-0.166,2.023-0.306,0.239-0.196,0.354-0.499,0.354-0.924,0-0.372-0.091-0.638-0.28-0.815-0.189-0.178-0.487-0.268-0.885-0.268-0.378,0-0.927,0.098-1.628,0.292h-0.2l-0.065-0.193v-1.188l0.152-0.038c0.747-0.187,1.433-0.282,2.041-0.282,0.937,0,1.657,0.196,2.141,0.583,0.497,0.397,0.749,0.994,0.749,1.773,0,0.538-0.149,1.009-0.444,1.401-0.188,0.247-0.426,0.45-0.714,0.606,0.327,0.136,0.597,0.335,0.806,0.595,0.319,0.396,0.481,0.895,0.481,1.482,0.02,0.96-0.26,1.69-0.83,2.18zm9.82,0.62h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531v5.44h-2v-9.137h1.669l2.123,4.042,2.123-4.042h1.651v9.14z"/>
-</svg>
\ No newline at end of file
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M8.235,19.2H2.661 v-1.338h1.84v-6.088l-1.84,0.422v-1.335l2.724-0.859l1.11-0.009v7.869h1.74V19.2z M10.904,18.963 c-0.22,0.22-0.489,0.331-0.801,0.331S9.521,19.181,9.3,18.96c-0.221-0.222-0.334-0.49-0.334-0.798c0-0.312,0.112-0.581,0.332-0.798 c0.22-0.218,0.491-0.328,0.806-0.328c0.311,0,0.58,0.11,0.8,0.328c0.22,0.217,0.332,0.486,0.332,0.798S11.124,18.743,10.904,18.963z M16.611,18.575c-0.557,0.477-1.389,0.719-2.477,0.719c-0.64,0-1.305-0.096-1.976-0.283l-0.146-0.041v-1.371h0.2 c0.807,0.193,1.399,0.287,1.822,0.287c0.474,0,0.83-0.115,1.057-0.343c0.228-0.228,0.343-0.585,0.343-1.063 c0-0.514-0.132-0.867-0.403-1.079c-0.194-0.152-0.716-0.333-2.098-0.333h-0.2V13.69h0.2c1.365,0,1.854-0.166,2.023-0.306 c0.239-0.196,0.354-0.499,0.354-0.924c0-0.372-0.091-0.638-0.28-0.815c-0.189-0.178-0.487-0.268-0.885-0.268 c-0.378,0-0.927,0.098-1.628,0.292h-0.2l-0.065-0.193v-1.188l0.152-0.038c0.747-0.187,1.433-0.282,2.041-0.282 c0.937,0,1.657,0.196,2.141,0.583c0.497,0.397,0.749,0.994,0.749,1.773c0,0.538-0.149,1.009-0.444,1.401 c-0.188,0.247-0.426,0.45-0.714,0.606c0.327,0.136,0.597,0.335,0.806,0.595c0.319,0.396,0.481,0.895,0.481,1.482 C17.464,17.361,17.178,18.09,16.611,18.575z M26.429,19.2h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531V19.2h-2v-9.137h1.669 l2.123,4.042l2.123-4.042h1.651V19.2z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_3mp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_3mp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-14.89,14.57c-0.557,0.478-1.39,0.72-2.477,0.72-0.64,0-1.305-0.095-1.976-0.283l-0.146-0.04v-1.372h0.2c0.807,0.192,1.399,0.287,1.822,0.287,0.474,0,0.83-0.115,1.057-0.343,0.228-0.227,0.343-0.585,0.343-1.063,0-0.514-0.132-0.867-0.403-1.078-0.194-0.152-0.716-0.333-2.098-0.333h-0.2v-1.39h0.2c1.365,0,1.854-0.166,2.023-0.306,0.239-0.196,0.354-0.499,0.354-0.924,0-0.372-0.091-0.638-0.28-0.815-0.189-0.178-0.487-0.268-0.885-0.268-0.378,0-0.927,0.098-1.628,0.292h-0.2l-0.065-0.193v-1.188l0.152-0.038c0.743-0.18,1.43-0.27,2.037-0.27,0.937,0,1.657,0.196,2.141,0.583,0.497,0.397,0.749,0.994,0.749,1.773,0,0.538-0.15,1.009-0.445,1.401-0.187,0.247-0.425,0.45-0.713,0.606,0.327,0.136,0.597,0.335,0.806,0.595,0.319,0.396,0.481,0.894,0.481,1.482,0,0.96-0.29,1.69-0.85,2.17zm9.81,0.63h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531v5.44h-2v-9.137h1.669l2.123,4.042,2.123-4.042h1.651v9.14z"/>
-</svg>
\ No newline at end of file
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M12.108,18.574 c-0.557,0.478-1.39,0.72-2.477,0.72c-0.64,0-1.305-0.095-1.976-0.283l-0.146-0.04v-1.372h0.2c0.807,0.192,1.399,0.287,1.822,0.287 c0.474,0,0.83-0.115,1.057-0.343c0.228-0.227,0.343-0.585,0.343-1.063c0-0.514-0.132-0.867-0.403-1.078 c-0.194-0.152-0.716-0.333-2.098-0.333h-0.2V13.69h0.2c1.365,0,1.854-0.166,2.023-0.306c0.239-0.196,0.354-0.499,0.354-0.924 c0-0.372-0.091-0.638-0.28-0.815c-0.189-0.178-0.487-0.268-0.885-0.268c-0.378,0-0.927,0.098-1.628,0.292h-0.2l-0.065-0.193v-1.188 l0.152-0.038C8.647,10.064,9.334,9.97,9.941,9.97c0.937,0,1.657,0.196,2.141,0.583c0.497,0.397,0.749,0.994,0.749,1.773 c0,0.538-0.15,1.009-0.445,1.401c-0.187,0.247-0.425,0.45-0.713,0.606c0.327,0.136,0.597,0.335,0.806,0.595 c0.319,0.396,0.481,0.894,0.481,1.482C12.96,17.361,12.673,18.09,12.108,18.574z M21.925,19.2h-1.994v-5.435l-1.325,2.529h-0.916 l-1.331-2.531V19.2h-2v-9.137h1.669l2.123,4.042l2.123-4.042h1.651V19.2z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_9mp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_9mp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M10.3,11.34c-0.303,0-0.526,0.111-0.681,0.34-0.117,0.172-0.255,0.586-0.255,1.581,0,0.598,0.081,1.026,0.24,1.271,0.144,0.221,0.356,0.328,0.65,0.328,0.318,0,0.553-0.112,0.72-0.342,0.179-0.247,0.27-0.613,0.27-1.087,0-0.727-0.089-1.274-0.266-1.627-0.15-0.31-0.37-0.46-0.67-0.46z"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-14.65,14c-0.627,0.857-1.563,1.292-2.781,1.292-0.428,0-0.915-0.048-1.447-0.144l-0.165-0.029v-1.435l0.25,0.065c0.345,0.089,0.735,0.134,1.157,0.134,0.59,0,1.019-0.174,1.31-0.532,0.247-0.305,0.413-0.785,0.495-1.434-0.37,0.217-0.806,0.327-1.3,0.327-0.81,0-1.438-0.27-1.869-0.801-0.42-0.519-0.634-1.253-0.634-2.183,0-1.021,0.252-1.832,0.749-2.41,0.504-0.586,1.237-0.884,2.176-0.884,0.981,0,1.735,0.352,2.242,1.046,0.499,0.684,0.742,1.793,0.742,3.39,0.01,1.55-0.3,2.76-0.91,3.6zm9.57,1.2h-1.994v-5.435l-1.325,2.529h-0.916l-1.331-2.531v5.44h-2v-9.137h1.669l2.123,4.042,2.123-4.042h1.651v9.14z"/>
-</svg>
\ No newline at end of file
+<path d="M10.299,11.343c-0.303,0-0.526,0.111-0.681,0.34c-0.117,0.172-0.255,0.586-0.255,1.581c0,0.598,0.081,1.026,0.24,1.271 c0.144,0.221,0.356,0.328,0.65,0.328c0.318,0,0.553-0.112,0.72-0.342c0.179-0.247,0.27-0.613,0.27-1.087 c0-0.727-0.089-1.274-0.266-1.627C10.817,11.49,10.602,11.343,10.299,11.343z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M12.347,18.002 c-0.627,0.857-1.563,1.292-2.781,1.292c-0.428,0-0.915-0.048-1.447-0.144l-0.165-0.029v-1.435l0.25,0.065 c0.345,0.089,0.735,0.134,1.157,0.134c0.59,0,1.019-0.174,1.31-0.532c0.247-0.305,0.413-0.785,0.495-1.434 c-0.37,0.217-0.806,0.327-1.3,0.327c-0.81,0-1.438-0.27-1.869-0.801c-0.42-0.519-0.634-1.253-0.634-2.183 c0-1.021,0.252-1.832,0.749-2.41c0.504-0.586,1.237-0.884,2.176-0.884c0.981,0,1.735,0.352,2.242,1.046 c0.499,0.684,0.742,1.793,0.742,3.39C13.271,15.954,12.959,17.164,12.347,18.002z M21.925,19.2h-1.994v-5.435l-1.325,2.529h-0.916 l-1.331-2.531V19.2h-2v-9.137h1.669l2.123,4.042l2.123-4.042h1.651V19.2z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_accented_characters.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_accented_characters.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="7.79,8.82,5.865,5.946,4.046,5.946,6.243,8.82"/>
-<polygon points="16.47,8.303,19,5,17.42,5,15.72,7,14,5,12.42,5,14.96,8.303"/>
-<path d="M5.394,8.9c-1.107,0-2.283,0.171-3.527,0.513v1.528c1.217-0.362,2.259-0.544,3.128-0.544,0.533,0,0.967,0.087,1.302,0.262,0.335,0.174,0.574,0.42,0.718,0.738,0.144,0.317,0.215,0.774,0.215,1.368v1.118c-1.107,0-2.037,0.05-2.789,0.148-0.752,0.1-1.401,0.305-1.947,0.615-0.548,0.312-0.952,0.718-1.216,1.221-0.263,0.502-0.395,1.105-0.395,1.81,0,1.101,0.304,1.957,0.913,2.568,0.607,0.612,1.452,0.918,2.532,0.918,1.559,0,2.707-0.629,3.445-1.887l0.44,1.71h1.2v-8.295c0-1.313-0.358-2.275-1.077-2.887-0.717-0.607-1.698-0.913-2.942-0.913zm1.835,8.11c0,0.827-0.21,1.481-0.63,1.963-0.421,0.482-1.004,0.723-1.749,0.723-0.588,0-1.032-0.177-1.332-0.533-0.302-0.354-0.451-0.857-0.451-1.507,0-0.766,0.229-1.369,0.687-1.81s1.278-0.662,2.461-0.662h1.015v1.832z"/>
-<polygon points="19.86,10.4,19.86,9.074,11.94,9.074,11.94,10.6,17.28,10.6,11.52,19.66,11.52,21,19.99,21,19.99,19.46,14.09,19.46"/>
-<path d="M29,19.44c-0.471,0.157-1.142,0.236-2.01,0.236-1.004,0-1.764-0.409-2.275-1.226-0.514-0.817-0.77-1.991-0.77-3.522,0-1.429,0.258-2.541,0.774-3.338,0.516-0.796,1.272-1.194,2.271-1.194,0.772,0,1.416,0.082,1.928,0.246v-1.494c-0.725-0.17-1.397-0.256-2.02-0.256-1.702,0-2.999,0.521-3.892,1.563-0.892,1.043-1.338,2.518-1.338,4.425,0,2.044,0.41,3.601,1.23,4.671,0.82,1.069,2.051,1.604,3.691,1.604,0.175,0,0.332-0.022,0.501-0.03-0.234,0.652-0.441,1.331-0.612,1.866h-1.48v1h2v-0.002h1c0.088,0.041,0.368-1.639,0.73-3.088,0.087-0.021,0.183-0.029,0.268-0.054v-1.409z"/>
-</svg>
\ No newline at end of file
+<polygon points="7.79,8.82 5.865,5.946 4.046,5.946 6.243,8.82 "/>
+<polygon points="16.467,8.303 19,5 17.424,5 15.72,7 14,5 12.424,5 14.957,8.303 "/>
+<path d="M5.394,8.9c-1.107,0-2.283,0.171-3.527,0.513v1.528c1.217-0.362,2.259-0.544,3.128-0.544c0.533,0,0.967,0.087,1.302,0.262 c0.335,0.174,0.574,0.42,0.718,0.738c0.144,0.317,0.215,0.774,0.215,1.368v1.118c-1.107,0-2.037,0.05-2.789,0.148 c-0.752,0.1-1.401,0.305-1.947,0.615c-0.548,0.312-0.952,0.718-1.216,1.221c-0.263,0.502-0.395,1.105-0.395,1.81 c0,1.101,0.304,1.957,0.913,2.568c0.607,0.612,1.452,0.918,2.532,0.918c1.559,0,2.707-0.629,3.445-1.887L8.213,21h1.2v-8.295 c0-1.313-0.358-2.275-1.077-2.887C7.619,9.206,6.638,8.9,5.394,8.9z M7.229,17.012c0,0.827-0.21,1.481-0.63,1.963 c-0.421,0.482-1.004,0.723-1.749,0.723c-0.588,0-1.032-0.177-1.332-0.533c-0.302-0.354-0.451-0.857-0.451-1.507 c0-0.766,0.229-1.369,0.687-1.81c0.458-0.441,1.278-0.662,2.461-0.662h1.015V17.012z"/>
+<polygon points="19.861,10.397 19.861,9.074 11.945,9.074 11.945,10.603 17.277,10.603 11.525,19.656 11.525,21 19.994,21 19.994,19.462 14.088,19.462 "/>
+<path d="M28.998,19.441c-0.471,0.157-1.142,0.236-2.01,0.236c-1.004,0-1.764-0.409-2.275-1.226c-0.514-0.817-0.77-1.991-0.77-3.522 c0-1.429,0.258-2.541,0.774-3.338c0.516-0.796,1.272-1.194,2.271-1.194c0.772,0,1.416,0.082,1.928,0.246V9.156 c-0.725-0.17-1.397-0.256-2.02-0.256c-1.702,0-2.999,0.521-3.892,1.563c-0.892,1.043-1.338,2.518-1.338,4.425 c0,2.044,0.41,3.601,1.23,4.671c0.82,1.069,2.051,1.604,3.691,1.604c0.175,0,0.332-0.022,0.501-0.03 c-0.234,0.652-0.441,1.331-0.612,1.866H25v1h2v-0.002h1c0.088,0.041,0.368-1.639,0.73-3.088c0.087-0.021,0.183-0.029,0.268-0.054 V19.441z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_activitystream.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_activitystream.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M10.3,17.47c0.053-0.005,0.277-0.016,0.332-0.021-1.624-1.71-2.63-4.31-2.63-6.97,0-3.686,1.954-6.821,4.67-7.988-0.82-1.505-2.15-2.492-3.67-2.492-2.481,0-4.5,2.641-4.5,5.892,0,2.276,1.011,4.543,2.514,5.648,0.117,0.087,0.184,0.224,0.184,0.367v0.33c0,1.304-1.227,1.792-2.249,1.814-4.445,0.45-4.931,5.69-4.949,5.95h5.387c1.127-1.3,2.713-2.31,4.913-2.53z"/>
-<path d="M15,19c0-2.104,1.64-3.816,3.706-3.97,0.8-1.28,1.29-2.91,1.29-4.55,0-3.575-2.24-6.48-5-6.48s-5,2.905-5,6.481c0,2.504,1.123,4.998,2.793,6.213,0.131,0.096,0.205,0.246,0.205,0.404v0.362c0,1.435-1.364,1.972-2.5,1.996-4.939,0.5-5.48,6.27-5.5,6.55h10v-7z"/>
-<path d="M22,10.48c0,1.588-0.365,3.15-1.002,4.519h6.512c-0.644-0.486-1.445-0.846-2.461-0.948-0.776,0-2.25-0.378-2.25-1.814v-0.33c0-0.144,0.07-0.28,0.184-0.367,1.507-1.105,2.518-3.372,2.518-5.648,0-3.251-2.02-5.892-4.5-5.892-1.515,0-2.854,0.987-3.67,2.493,2.72,1.167,4.67,4.303,4.67,7.987z"/>
-<path d="M28,17h-9c-1.104,0-2,0.896-2,2v9c0,1.104,0.896,2,2,2h9c1.104,0,2-0.896,2-2v-9c0-1.1-0.9-2-2-2zm-8.19,11.56c-0.752,0-1.361-0.608-1.361-1.359,0-0.75,0.609-1.36,1.361-1.36s1.363,0.61,1.363,1.36c0,0.75-0.61,1.36-1.36,1.36zm5.29,0h-1.93c0.003-0.08,0.013-0.159,0.013-0.241,0-2.48-2.022-4.5-4.507-4.5-0.078,0-0.154,0.008-0.23,0.012v-1.928c0.076-0.002,0.152-0.011,0.23-0.011,3.549,0,6.438,2.883,6.438,6.427,0,0.08-0.01,0.16-0.01,0.24zm3.44,0h-1.93c0.003-0.082,0.013-0.164,0.013-0.245,0-4.377-3.564-7.937-7.947-7.937-0.078,0-0.154,0.01-0.23,0.012v-1.928c0.078-0.002,0.152-0.012,0.23-0.012,5.448,0,9.88,4.425,9.88,9.864,0.01,0.08-0.01,0.16-0.01,0.25z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M10.299,17.467c0.053-0.005,0.277-0.016,0.332-0.021C9.006,15.738,8,13.14,8,10.481c0-3.686,1.954-6.821,4.67-7.988 C11.854,0.987,10.515,0,9,0C6.519,0,4.5,2.641,4.5,5.892c0,2.276,1.011,4.543,2.514,5.648c0.117,0.087,0.184,0.224,0.184,0.367v0.33 c0,1.304-1.227,1.792-2.249,1.814C0.504,14.5,0.018,19.742,0,20h5.387C6.514,18.701,8.1,17.687,10.299,17.467z"/>
+<path d="M15,19c0-2.104,1.64-3.816,3.706-3.97C19.511,13.754,20,12.124,20,10.481C20,6.905,17.758,4,15,4s-5,2.905-5,6.481 c0,2.504,1.123,4.998,2.793,6.213c0.131,0.096,0.205,0.246,0.205,0.404v0.362c0,1.435-1.364,1.972-2.5,1.996 C5.561,19.949,5.02,25.716,5,26h10V19z"/>
+<path d="M22,10.481c0,1.588-0.365,3.15-1.002,4.519h6.512c-0.644-0.486-1.445-0.846-2.461-0.948c-0.776,0-2.25-0.378-2.25-1.814 v-0.33c0-0.144,0.07-0.28,0.184-0.367c1.507-1.105,2.518-3.372,2.518-5.648C25.5,2.641,23.481,0,21,0 c-1.515,0-2.854,0.987-3.67,2.493C20.046,3.66,22,6.796,22,10.481z"/>
+<path d="M28,17h-9c-1.104,0-2,0.896-2,2v9c0,1.104,0.896,2,2,2h9c1.104,0,2-0.896,2-2v-9C30,17.896,29.104,17,28,17z M19.807,28.555 c-0.752,0-1.361-0.608-1.361-1.359c0-0.75,0.609-1.36,1.361-1.36s1.363,0.61,1.363,1.36C21.17,27.946,20.559,28.555,19.807,28.555z M25.102,28.555H23.17c0.003-0.08,0.013-0.159,0.013-0.241c0-2.48-2.022-4.5-4.507-4.5c-0.078,0-0.154,0.008-0.23,0.012v-1.928 c0.076-0.002,0.152-0.011,0.23-0.011c3.549,0,6.438,2.883,6.438,6.427C25.113,28.396,25.105,28.475,25.102,28.555z M28.543,28.555 H26.61c0.003-0.082,0.013-0.164,0.013-0.245c0-4.377-3.564-7.937-7.947-7.937c-0.078,0-0.154,0.01-0.23,0.012v-1.928 c0.078-0.002,0.152-0.012,0.23-0.012c5.448,0,9.88,4.425,9.88,9.864C28.556,28.391,28.544,28.473,28.543,28.555z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_contact.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_contact.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M14,23c0-1.917,0.607-3.692,1.633-5.154-0.676-0.348-1.234-0.944-1.234-1.938v-0.43c0-0.187,0.093-0.365,0.245-0.478,2.01-1.43,3.36-4.38,3.36-7.34,0-4.226-2.69-7.66-6-7.66s-6,3.434-6,7.66c0,2.959,1.348,5.907,3.352,7.343,0.157,0.113,0.245,0.291,0.245,0.478v0.428c0,1.695-1.636,2.33-2.999,2.359-5.925,0.58-6.574,7.39-6.598,7.73h14.52c-0.33-0.94-0.52-1.95-0.52-3z"/>
-<path d="M23,16c-3.865,0-7,3.135-7,7,0,3.867,3.135,7,7,7s7-3.133,7-7c0-3.86-3.14-7-7-7zm1,8v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M14,23c0-1.917,0.607-3.692,1.633-5.154c-0.676-0.348-1.234-0.944-1.234-1.938V15.48c0-0.187,0.093-0.365,0.245-0.478 C16.652,13.566,18,10.619,18,7.66C18,3.434,15.309,0,12,0S6,3.434,6,7.66c0,2.959,1.348,5.907,3.352,7.343 c0.157,0.113,0.245,0.291,0.245,0.478v0.428c0,1.695-1.636,2.33-2.999,2.359C0.673,18.85,0.024,25.664,0,26h14.525 C14.191,25.061,14,24.053,14,23z"/>
+<path d="M23,16c-3.865,0-7,3.135-7,7c0,3.867,3.135,7,7,7s7-3.133,7-7C30,19.135,26.865,16,23,16z M24,24v4h-2v-4h-4v-2h4v-4h2v4h4 v2H24z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_calendar.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_calendar.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7,16c-1.438,0-2.793-0.348-4-0.949v12.95c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-16h-14.52c-1.619,2.41-4.369,4-7.479,4zm9,9.04c0-0.782,0.199-1.544,0.596-2.278,0.397-0.738,1.158-1.567,2.285-2.485,0.596-0.492,1.004-0.897,1.226-1.217,0.221-0.317,0.332-0.677,0.332-1.076,0-1.035-0.572-1.555-1.714-1.555-0.636,0-1.418,0.167-2.346,0.496v-1.481c1.02-0.29,2.01-0.44,2.97-0.44,1.182,0,2.078,0.245,2.689,0.733,0.609,0.491,0.915,1.211,0.915,2.164,0,0.458-0.075,0.876-0.226,1.256-0.153,0.38-0.376,0.735-0.672,1.07-0.296,0.333-0.732,0.737-1.314,1.215-0.64,0.525-1.105,0.938-1.4,1.237-0.291,0.298-0.521,0.604-0.687,0.911-0.167,0.31-0.278,0.79-0.308,1.378h4.65v1.03h-7v-0.958zm-1,0.96h-6v-1h2v-8.14l-2,0.417v-1.288l3.06-0.99h1.375v10h1.56v1z"/>
-<path d="M27,3h-4v-1c0-0.552-0.447-1-1-1h-1c-0.553,0-1,0.448-1,1v1h-4.949c0.6,1.207,0.95,2.562,0.95,4,0,1.053-0.191,2.06-0.525,3h13.52v-5c0-1.104-0.9-2-2-2z"/>
-<path d="M14,7c0-3.867-3.134-7-7-7-1.101,0-2.138,0.26-3.063,0.713,3.864,1.889,4.169,4.746,4.103,5.953h2.96l-4,5.334-4-5.334h3.043c0.074-0.533,0.172-3.057-4.017-4.59-1.252,1.264-2.026,3.003-2.026,4.924,0,3.865,3.134,7,7,7s7-3.14,7-7z"/>
-</svg>
\ No newline at end of file
+<path d="M7,16c-1.438,0-2.793-0.348-4-0.949V28c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V12H14.479C12.861,14.41,10.113,16,7,16z M16,25.042c0-0.782,0.199-1.544,0.596-2.278c0.397-0.738,1.158-1.567,2.285-2.485c0.596-0.492,1.004-0.897,1.226-1.217 c0.221-0.317,0.332-0.677,0.332-1.076c0-1.035-0.572-1.555-1.714-1.555c-0.636,0-1.418,0.167-2.346,0.496v-1.481 C17.396,15.149,18.387,15,19.35,15c1.182,0,2.078,0.245,2.689,0.733c0.609,0.491,0.915,1.211,0.915,2.164 c0,0.458-0.075,0.876-0.226,1.256c-0.153,0.38-0.376,0.735-0.672,1.07c-0.296,0.333-0.732,0.737-1.314,1.215 c-0.64,0.525-1.105,0.938-1.4,1.237c-0.291,0.298-0.521,0.604-0.687,0.911c-0.167,0.31-0.278,0.79-0.308,1.378H23V26h-7V25.042z M15,26H9v-1h2v-8.14l-2,0.417v-1.288L12.063,15h1.375v10H15V26z"/>
+<path d="M27,3h-4V2c0-0.552-0.447-1-1-1h-1c-0.553,0-1,0.448-1,1v1h-4.949C15.652,4.207,16,5.562,16,7c0,1.053-0.191,2.06-0.525,3 H29V5C29,3.896,28.104,3,27,3z"/>
+<path d="M14,7c0-3.867-3.134-7-7-7C5.899,0,4.862,0.26,3.937,0.713c3.864,1.889,4.169,4.746,4.103,5.953H9h2L7,12L3,6.666h2h1.043 c0.074-0.533,0.172-3.057-4.017-4.59C0.774,3.34,0,5.079,0,7c0,3.865,3.134,7,7,7S14,10.865,14,7z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_contact.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_contact.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M7,0c-1.101,0-2.138,0.26-3.063,0.713,3.864,1.889,4.169,4.746,4.103,5.953h2.96l-4,5.334-4-5.334h3.043c0.074-0.533,0.172-3.057-4.017-4.59-1.252,1.264-2.026,3.003-2.026,4.924,0,3.865,3.134,7,7,7s7-3.135,7-7c0-3.867-3.13-7-7-7z"/>
+<path d="M7,0C5.899,0,4.862,0.26,3.937,0.713c3.864,1.889,4.169,4.746,4.103,5.953H9h2L7,12L3,6.666h2h1.043 c0.074-0.533,0.172-3.057-4.017-4.59C0.774,3.34,0,5.079,0,7c0,3.865,3.134,7,7,7s7-3.135,7-7C14,3.133,10.866,0,7,0z"/>
<rect height="11" width="2" x="28" y="5"/>
-<path d="M3,15.05v14.95h2v-14.23c-0.702-0.159-1.371-0.409-2-0.719z"/>
-<path d="M25,2h-10.52c0.961,1.432,1.521,3.15,1.521,5,0,0.84-0.124,1.65-0.34,2.422,0.4-0.261,0.86-0.422,1.34-0.422,1.654,0,3,1.717,3,3.83,0,1.479-0.674,2.953-1.678,3.671-0.076,0.057-0.121,0.146-0.121,0.239v0.214c0,0.934,0.98,1.18,1.498,1.18,2.96,0.29,3.29,3.7,3.3,3.87h-12c0.014-0.168,0.336-3.575,3.301-3.866,0.68-0.015,1.5-0.332,1.5-1.18v-0.21c0-0.094-0.047-0.183-0.123-0.239-1.01-0.72-1.68-2.19-1.68-3.67,0-0.071,0.014-0.138,0.017-0.208-1.66,2.06-4.184,3.38-7.02,3.38v14h18c1.104,0,2-0.896,2-2v-24c0-1.104-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M3,15.051V30h2V15.769C4.298,15.608,3.629,15.364,3,15.051z"/>
+<path d="M25,2H14.479C15.438,3.432,16,5.15,16,7c0,0.84-0.124,1.65-0.34,2.422C16.064,9.161,16.516,9,17,9c1.654,0,3,1.717,3,3.83 c0,1.479-0.674,2.953-1.678,3.671c-0.076,0.057-0.121,0.146-0.121,0.239v0.214c0,0.934,0.98,1.18,1.498,1.18 C22.664,18.425,22.988,21.832,23,22H11c0.014-0.168,0.336-3.575,3.301-3.866c0.68-0.015,1.5-0.332,1.5-1.18V16.74 c0-0.094-0.047-0.183-0.123-0.239C14.674,15.783,14,14.31,14,12.83c0-0.071,0.014-0.138,0.017-0.208C12.365,14.678,9.836,16,7,16v14 h18c1.104,0,2-0.896,2-2V4C27,2.896,26.104,2,25,2z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_favourites.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_favourites.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M29.95,12.94c-0.136-0.408-0.518-0.686-0.949-0.686h-9.217l-2.825-8.571c-0.081-0.247-0.255-0.442-0.474-0.558-0.15-0.074-0.32-0.121-0.5-0.121h-0.012c-0.299,0.004-0.569,0.146-0.753,0.367,0.49,1.112,0.77,2.34,0.77,3.633,0,4.963-4.037,9-9,9-0.856,0-1.682-0.128-2.467-0.352l5.34,3.977-3.174,9.044c-0.145,0.414-0.004,0.874,0.35,1.135,0.176,0.14,0.385,0.2,0.595,0.2,0.208,0,0.415-0.064,0.592-0.193l7.764-5.71,7.766,5.704c0.17,0.14,0.38,0.2,0.59,0.2,0.209,0,0.418-0.065,0.595-0.196,0.353-0.261,0.494-0.721,0.349-1.135l-3.174-9.044,7.471-5.564c0.33-0.26,0.47-0.71,0.34-1.12z"/>
-<path d="M7,0c-1.101,0-2.138,0.26-3.063,0.713,3.864,1.889,4.169,4.746,4.103,5.953h2.96l-4,5.334-4-5.334h3.043c0.074-0.533,0.172-3.057-4.017-4.59-1.252,1.264-2.026,3.003-2.026,4.924,0,3.865,3.134,7,7,7s7-3.135,7-7c0-3.867-3.13-7-7-7z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M29.949,12.944c-0.136-0.408-0.518-0.686-0.949-0.686h-9.217l-2.825-8.571c-0.081-0.247-0.255-0.442-0.474-0.558 C16.338,3.047,16.169,3,15.992,3c-0.004,0-0.008,0-0.012,0c-0.299,0.004-0.569,0.146-0.753,0.367C15.721,4.479,16,5.707,16,7 c0,4.963-4.037,9-9,9c-0.856,0-1.682-0.128-2.467-0.352l5.34,3.977l-3.174,9.044c-0.145,0.414-0.004,0.874,0.35,1.135 C7.225,29.935,7.434,30,7.644,30c0.208,0,0.415-0.064,0.592-0.193L16,24.103l7.766,5.704C23.941,29.936,24.149,30,24.357,30 c0.209,0,0.418-0.065,0.595-0.196c0.353-0.261,0.494-0.721,0.349-1.135l-3.174-9.044l7.471-5.564 C29.943,13.804,30.085,13.354,29.949,12.944z"/>
+<path d="M7,0C5.899,0,4.862,0.26,3.937,0.713c3.864,1.889,4.169,4.746,4.103,5.953H9h2L7,12L3,6.666h2h1.043 c0.074-0.533,0.172-3.057-4.017-4.59C0.774,3.34,0,5.079,0,7c0,3.865,3.134,7,7,7s7-3.135,7-7C14,3.133,10.866,0,7,0z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_homescreen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_homescreen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M23,1h-9.312c0.539,0.6,0.999,1.272,1.364,2h7.95v18h-14v-5.232c-0.644,0.15-1.312,0.23-2,0.23v11c0,1.104,0.895,2,2,2h14c1.104,0,2-0.896,2-2v-24c0-1.104-0.9-2-2-2zm-11,25h-3v-2h3v2zm4,1c-1.105,0-2-0.896-2-2s0.895-2,2-2c1.104,0,2,0.896,2,2s-0.9,2-2,2zm7-1h-3v-2h3v2z"/>
-<path d="M15.48,4c0.33,0.94,0.52,1.947,0.52,3,0,3.909-2.511,7.235-6,8.475v4.52h12v-16h-6.525z"/>
-<path d="M7,0c-1.101,0-2.138,0.26-3.064,0.713,3.865,1.889,4.17,4.746,4.104,5.953h2.96l-4,5.334-4-5.334h3.043c0.074-0.533,0.172-3.057-4.017-4.59-1.252,1.264-2.026,3.003-2.026,4.924,0,3.865,3.134,7,7,7,3.865,0,7-3.135,7-7,0-3.867-3.13-7-7-7z"/>
-</svg>
\ No newline at end of file
+<path d="M23,1h-9.312c0.539,0.6,0.999,1.272,1.364,2H23v18H9v-5.232C8.356,15.915,7.688,16,7,16v11c0,1.104,0.895,2,2,2h14 c1.104,0,2-0.896,2-2V3C25,1.896,24.104,1,23,1z M12,26H9v-2h3V26z M16,27c-1.105,0-2-0.896-2-2s0.895-2,2-2c1.104,0,2,0.896,2,2 S17.104,27,16,27z M23,26h-3v-2h3V26z"/>
+<path d="M15.475,4C15.809,4.94,16,5.947,16,7c0,3.909-2.511,7.235-6,8.475V20h12V4H15.475z"/>
+<path d="M7,0C5.899,0,4.862,0.26,3.936,0.713c3.865,1.889,4.17,4.746,4.104,5.953H9h2L7,12L3,6.666h2h1.043 c0.074-0.533,0.172-3.057-4.017-4.59C0.774,3.34,0,5.079,0,7c0,3.865,3.134,7,7,7c3.865,0,7-3.135,7-7C14,3.133,10.866,0,7,0z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_video_collection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_add_to_video_collection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
@@ -10,8 +10,8 @@
<rect height="2" width="2" x="13" y="22"/>
<rect height="2" width="2" x="16" y="11"/>
<rect height="2" width="2" x="16" y="22"/>
-<path d="M27,1h-13.31c0.777,0.866,1.389,1.881,1.785,3h10.53v20h1c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2z"/>
-<path d="M13.69,13h1.31v-1.896c-0.36,0.69-0.8,1.33-1.31,1.9z"/>
-<path d="M22,6h-6.059c0.04,0.329,0.06,0.662,0.06,1,0,0.688-0.085,1.355-0.232,2h4.23c0.553,0,1,0.448,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.448,1,1s-0.447,1-1,1h-2v5h2c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.447,1,1s-0.447,1-1,1h-15c-0.553,0-1-0.447-1-1s0.447-1,1-1h1v-2h-1c-0.553,0-1-0.447-1-1s0.447-1,1-1h2v-4c-2.307,0-4.406-0.879-6-2.311v13.31c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2z"/>
-<path d="M7,0c-1.101,0-2.138,0.26-3.063,0.713,3.864,1.889,4.169,4.746,4.103,5.953h2.96l-4,5.334-4-5.334h3.043c0.074-0.533,0.172-3.057-4.017-4.59-1.252,1.264-2.026,3.003-2.026,4.924,0,3.865,3.134,7,7,7s7-3.135,7-7c0-3.867-3.13-7-7-7z"/>
-</svg>
\ No newline at end of file
+<path d="M27,1H13.689c0.777,0.866,1.389,1.881,1.785,3H26v17v3h1c1.104,0,2-0.896,2-2V3C29,1.896,28.104,1,27,1z"/>
+<path d="M13.689,13H15v-1.896C14.645,11.793,14.203,12.428,13.689,13z"/>
+<path d="M22,6h-6.059C15.978,6.329,16,6.662,16,7c0,0.688-0.085,1.355-0.232,2H20c0.553,0,1,0.448,1,1s-0.447,1-1,1h-1v2h1 c0.553,0,1,0.448,1,1s-0.447,1-1,1h-2v5h2c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.447,1,1s-0.447,1-1,1H5 c-0.553,0-1-0.447-1-1s0.447-1,1-1h1v-2H5c-0.553,0-1-0.447-1-1s0.447-1,1-1h2v-4c-2.307,0-4.406-0.879-6-2.311V27 c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2V8C24,6.896,23.104,6,22,6z"/>
+<path d="M7,0C5.899,0,4.862,0.26,3.937,0.713c3.864,1.889,4.169,4.746,4.103,5.953H9h2L7,12L3,6.666h2h1.043 c0.074-0.533,0.172-3.057-4.017-4.59C0.774,3.34,0,5.079,0,7c0,3.865,3.134,7,7,7s7-3.135,7-7C14,3.133,10.866,0,7,0z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_addcity.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_addcity.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.13-7-7-7zm1,8v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4z"/>
-<path d="M26,14.52c0.711,0.252,1.384,0.583,2,0.997v-5.52c0-1.104-0.896-2-2-2h-1c-1.104,0-2,0.896-2,2h3v2h-3v2h3v0.525z"/>
-<path d="M14,23h-3v-4h3v4c0-2.307,0.879-4.406,2.311-6h-0.31v-4h3v1.95c0.923-0.46,1.932-0.772,3-0.891v-7.06-0.005-1.995c0-0.379-0.215-0.725-0.553-0.895l-6-3c-0.14-0.07-0.3-0.105-0.45-0.105-0.154,0-0.307,0.035-0.447,0.105l-6,3c-0.337,0.17-0.55,0.516-0.55,0.895v2,0.002,18h-1v-2h-3v-2h3v-2h-3v-2h3v-2h-3v-2h3c0-1.104-0.896-2-2-2h-1c-1.104,0-2,0.896-2,2v12.09c-0.581,0.207-1,0.756-1,1.408,0,0.83,0.671,1.5,1.5,1.5h13.02c-0.96-1.43-1.52-3.15-1.52-5zm2-16h3v4h-3v-4zm-5,0h3v4h-3v-4zm0,6h3v4h-3v-4z"/>
-</svg>
\ No newline at end of file
+<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7s7-3.134,7-7S26.866,16,23,16z M24,24v4h-2v-4h-4v-2h4v-4h2v4h4v2H24z"/>
+<path d="M26,14.525c0.711,0.252,1.384,0.583,2,0.997V10c0-1.104-0.896-2-2-2h-1c-1.104,0-2,0.896-2,2h3v2h-3v2h3V14.525z"/>
+<path d="M14,23h-3v-4h3V23c0-2.307,0.879-4.406,2.311-6H16v-4h3v1.95c0.923-0.46,1.932-0.772,3-0.891V7c0-0.001,0-0.003,0-0.005V5 c0-0.379-0.215-0.725-0.553-0.895l-6-3C15.307,1.035,15.152,1,15,1c-0.154,0-0.307,0.035-0.447,0.105l-6,3C8.213,4.275,8,4.621,8,5 v2c0,0.001,0,0.001,0,0.002V25H7v-2H4v-2h3v-2H4v-2h3v-2H4v-2h3c0-1.104-0.896-2-2-2H4c-1.104,0-2,0.896-2,2v12.092 c-0.581,0.207-1,0.756-1,1.408C1,27.328,1.671,28,2.5,28h13.021C14.562,26.568,14,24.85,14,23z M16,7h3v4h-3V7z M11,7h3v4h-3V7z M11,13h3v4h-3V13z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M5.954,9.943l14.19,14.11c0.69,1.91,0.198,2.633-0.681,3.512l-1.44,1.44-17.02-16.93,1.436-1.436c0.877-0.877,1.602-1.369,3.518-0.687z"/>
-<path d="M12.26,24.48c-1.676,0.432-3.574-0.029-4.943-1.392-1.368-1.36-1.839-3.256-1.41-4.928l6.353,6.32z"/>
-<path d="M28.15,11.77s-0.413-2.225-2.375-4.551l0.066-0.066c0.778-0.778,0.775-2.048-0.004-2.826-0.79-0.774-2.07-0.772-2.85,0.005l-0.06,0.058c-2.385-2.043-4.697-2.466-4.697-2.466-0.968-0.171-1.985-0.156-2.924,0.16-1.508,0.507-2.375,1.876-3.349,3.055-0.616,0.747-1.2,1.535-1.847,2.256-0.75,0.843-1.48,1.392-2.13,1.752l12.94,12.87c0.358-0.649,0.908-1.379,1.752-2.136,0.721-0.647,1.509-1.231,2.256-1.849,1.18-0.974,2.551-1.843,3.055-3.349,0.31-0.93,0.32-1.94,0.15-2.91z"/>
-</svg>
\ No newline at end of file
+<path d="M5.954,9.943L20.14,24.053c0.69,1.91,0.198,2.633-0.681,3.512L18.023,29L1,12.067l1.436-1.436 C3.313,9.753,4.038,9.261,5.954,9.943z"/>
+<path d="M12.262,24.475c-1.676,0.432-3.574-0.029-4.943-1.392c-1.368-1.36-1.839-3.256-1.41-4.928L12.262,24.475z"/>
+<path d="M28.147,11.771c0,0-0.413-2.225-2.375-4.551l0.066-0.066c0.778-0.778,0.775-2.048-0.004-2.826 C25.055,3.553,23.779,3.555,23,4.332L22.943,4.39c-2.385-2.043-4.697-2.466-4.697-2.466c-0.968-0.171-1.985-0.156-2.924,0.16 c-1.508,0.507-2.375,1.876-3.349,3.055c-0.616,0.747-1.2,1.535-1.847,2.256C9.37,8.238,8.64,8.787,7.99,9.147l12.942,12.873 c0.358-0.649,0.908-1.379,1.752-2.136c0.721-0.647,1.509-1.231,2.256-1.849c1.18-0.974,2.551-1.843,3.055-3.349 C28.31,13.752,28.321,12.737,28.147,11.771z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_inactive.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_inactive.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M5.954,9.943l14.19,14.11c0.69,1.91,0.198,2.633-0.681,3.512l-1.44,1.44-17.02-16.93,1.436-1.436c0.877-0.877,1.602-1.369,3.518-0.687z"/>
-<path d="M12.26,24.48c-1.676,0.432-3.574-0.029-4.943-1.392-1.368-1.36-1.839-3.256-1.41-4.928l6.353,6.32z"/>
-<path d="M23.42,19.27c0.506-0.413,1.02-0.818,1.521-1.233,1.18-0.974,2.551-1.843,3.055-3.349,0.314-0.936,0.326-1.95,0.152-2.916,0,0-0.413-2.225-2.375-4.551l0.066-0.066c0.778-0.778,0.775-2.048-0.004-2.826-0.79-0.774-2.07-0.772-2.85,0.005l-0.06,0.058c-2.385-2.043-4.697-2.466-4.697-2.466-0.968-0.171-1.985-0.156-2.924,0.16-1.508,0.507-2.375,1.876-3.349,3.055-0.403,0.489-0.8,0.99-1.202,1.484l12.65,12.65z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<path d="M5.954,9.943L20.14,24.053c0.69,1.91,0.198,2.633-0.681,3.512L18.023,29L1,12.067l1.436-1.436 C3.313,9.753,4.038,9.261,5.954,9.943z"/>
+<path d="M12.262,24.475c-1.676,0.432-3.574-0.029-4.943-1.392c-1.368-1.36-1.839-3.256-1.41-4.928L12.262,24.475z"/>
+<path d="M23.42,19.27c0.506-0.413,1.02-0.818,1.521-1.233c1.18-0.974,2.551-1.843,3.055-3.349c0.314-0.936,0.326-1.95,0.152-2.916 c0,0-0.413-2.225-2.375-4.551l0.066-0.066c0.778-0.778,0.775-2.048-0.004-2.826C25.055,3.553,23.779,3.555,23,4.332L22.943,4.39 c-2.385-2.043-4.697-2.466-4.697-2.466c-0.968-0.171-1.985-0.156-2.924,0.16c-1.508,0.507-2.375,1.876-3.349,3.055 c-0.403,0.489-0.8,0.99-1.202,1.484L23.42,19.27z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_new.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_new.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M12.26,24.48c-1.676,0.432-3.574-0.029-4.943-1.393-1.368-1.359-1.839-3.256-1.41-4.928l6.353,6.32z"/>
-<path d="M14,23c0-1.467,0.359-2.85,0.985-4.074l-9.026-8.987c-1.916-0.683-2.642-0.19-3.519,0.688l-1.435,1.44,13.31,13.24c-0.19-0.74-0.31-1.51-0.31-2.31z"/>
-<path d="M23,14c1.723,0,3.328,0.495,4.697,1.338,0.115-0.205,0.221-0.418,0.298-0.65,0.314-0.936,0.326-1.95,0.152-2.916,0,0-0.413-2.225-2.375-4.551l0.066-0.066c0.778-0.778,0.775-2.048-0.004-2.826-0.79-0.774-2.07-0.772-2.85,0.005l-0.06,0.058c-2.385-2.043-4.697-2.466-4.697-2.466-0.968-0.171-1.985-0.156-2.924,0.16-1.508,0.507-2.375,1.876-3.349,3.055-0.616,0.747-1.2,1.535-1.847,2.256-0.75,0.843-1.48,1.392-2.13,1.752l8.118,8.075c1.65-1.96,4.13-3.22,6.89-3.22z"/>
-<path d="M23,16c-3.865,0-7,3.135-7,7,0,3.867,3.135,7,7,7s7-3.133,7-7c0-3.86-3.14-7-7-7zm1,8v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4z"/>
-</svg>
\ No newline at end of file
+<path d="M12.262,24.475c-1.676,0.432-3.574-0.029-4.943-1.393c-1.368-1.359-1.839-3.256-1.41-4.928L12.262,24.475z"/>
+<path d="M14,23c0-1.467,0.359-2.85,0.985-4.074L5.954,9.943c-1.916-0.683-2.642-0.19-3.519,0.688L1,12.067l13.311,13.239 C14.115,24.568,14,23.799,14,23z"/>
+<path d="M23,14c1.723,0,3.328,0.495,4.697,1.338c0.115-0.205,0.221-0.418,0.298-0.65c0.314-0.936,0.326-1.95,0.152-2.916 c0,0-0.413-2.225-2.375-4.551l0.066-0.066c0.778-0.778,0.775-2.048-0.004-2.826C25.055,3.553,23.779,3.555,23,4.332L22.943,4.39 c-2.385-2.043-4.697-2.466-4.697-2.466c-0.968-0.171-1.985-0.156-2.924,0.16c-1.508,0.507-2.375,1.876-3.349,3.055 c-0.616,0.747-1.2,1.535-1.847,2.256C9.37,8.238,8.64,8.787,7.99,9.147l8.118,8.075C17.761,15.255,20.235,14,23,14z"/>
+<path d="M23,16c-3.865,0-7,3.135-7,7c0,3.867,3.135,7,7,7s7-3.133,7-7C30,19.135,26.865,16,23,16z M24,24v4h-2v-4h-4v-2h4v-4h2v4h4 v2H24z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_snooze.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alarm_snooze.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
<path d="M22.21,3.211l0.707-0.707c0.779-0.777,2.054-0.777,2.83,0s0.776,2.051,0,2.828l-0.707,0.707-2.83-2.828z"/>
@@ -7,4 +7,4 @@
<path d="M9.701,21.1l-4.442-4.44c-0.431,1.676,0.036,3.572,1.399,4.938,0.865,0.863,1.943,1.365,3.043,1.508v-2.006z"/>
<path d="M24.34,3.918c-3.892-3.891-10.25-3.891-14.14,0l-4.25,4.242c-1.913-0.685-2.637-0.191-3.514,0.686l-1.436,1.434,8.729,8.729h7.58v-5.709h9.664c0.77-3.26-0.1-6.849-2.63-9.382z"/>
<path d="M11.46,29v-1.053l3.637-5.762h-3.398v-1.18h5.571v1.031l-3.657,5.783h3.739v1.18h-5.887z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alpha_mode.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_alpha_mode.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.836,13h2.273l-3.219-11.65h-2.532l-3.359,11.65h1.953l0.688-2.563h3.523l0.672,2.56zm-3.891-3.875l1.469-5.789,1.43,5.789h-2.899z"/>
-<path d="M18.9,12.18c0.651-0.547,0.977-1.367,0.977-2.461,0-1.567-0.742-2.521-2.227-2.859,1.292-0.458,1.938-1.354,1.938-2.688,0-0.938-0.278-1.642-0.836-2.113s-1.394-0.707-2.508-0.707h-3.891v11.65h3.617c1.3,0,2.28-0.27,2.93-0.82zm-4.4-9.516h1.281c0.542,0,0.949,0.144,1.223,0.43s0.41,0.714,0.41,1.281c0,0.667-0.149,1.153-0.449,1.461s-0.77,0.461-1.41,0.461h-1.05v-3.633zm0,9.026v-4.081h1.164c0.683,0,1.184,0.164,1.504,0.492s0.48,0.836,0.48,1.523c0,0.734-0.155,1.262-0.465,1.582s-0.812,0.48-1.504,0.48h-1.18z"/>
-<path d="M25.89,2.57c0.484,0,1.034,0.091,1.648,0.273v-1.366c-0.62-0.167-1.237-0.25-1.852-0.25-1.505,0-2.634,0.485-3.387,1.457s-1.129,2.426-1.129,4.363c0,2.161,0.374,3.715,1.121,4.66s1.863,1.418,3.348,1.418c0.646,0,1.278-0.083,1.898-0.25v-1.328c-0.558,0.156-1.083,0.234-1.578,0.234-0.849,0-1.485-0.372-1.91-1.117s-0.637-1.972-0.637-3.68c0-1.469,0.206-2.571,0.617-3.309s1.03-1.101,1.86-1.101z"/>
-<path d="M19.5,15h-1.5c-0.828,0-1.5,0.672-1.5,1.5s0.67,1.5,1.5,1.5h1.5c1.381,0,2.5,1.119,2.5,2.5s-1.12,2.5-2.5,2.5h-6.5v-2c0-0.347-0.18-0.668-0.475-0.851-0.16-0.1-0.34-0.15-0.52-0.15-0.152,0-0.307,0.035-0.447,0.105l-6,3c-0.336,0.18-0.55,0.52-0.55,0.9s0.214,0.725,0.553,0.895l6,3c0.14,0.06,0.3,0.1,0.45,0.1,0.183,0,0.365-0.051,0.525-0.149,0.3-0.18,0.48-0.5,0.48-0.85v-1h6.5c3.033,0,5.5-2.467,5.5-5.5s-2.47-5.5-5.5-5.5z"/>
-</svg>
\ No newline at end of file
+<path d="M8.836,13h2.273L7.891,1.352H5.359L2,13h1.953l0.688-2.563h3.523L8.836,13z M4.945,9.125l1.469-5.789l1.43,5.789H4.945z"/>
+<path d="M18.898,12.18c0.651-0.547,0.977-1.367,0.977-2.461c0-1.567-0.742-2.521-2.227-2.859c1.292-0.458,1.938-1.354,1.938-2.688 c0-0.938-0.278-1.642-0.836-2.113s-1.394-0.707-2.508-0.707h-3.891V13h3.617C17.271,13,18.247,12.727,18.898,12.18z M14.5,2.664 h1.281c0.542,0,0.949,0.144,1.223,0.43s0.41,0.714,0.41,1.281c0,0.667-0.149,1.153-0.449,1.461s-0.77,0.461-1.41,0.461H14.5V2.664z M14.5,11.688V7.609h1.164c0.683,0,1.184,0.164,1.504,0.492s0.48,0.836,0.48,1.523c0,0.734-0.155,1.262-0.465,1.582 s-0.812,0.48-1.504,0.48H14.5z"/>
+<path d="M25.891,2.57c0.484,0,1.034,0.091,1.648,0.273V1.477c-0.62-0.167-1.237-0.25-1.852-0.25c-1.505,0-2.634,0.485-3.387,1.457 s-1.129,2.426-1.129,4.363c0,2.161,0.374,3.715,1.121,4.66s1.863,1.418,3.348,1.418c0.646,0,1.278-0.083,1.898-0.25v-1.328 c-0.558,0.156-1.083,0.234-1.578,0.234c-0.849,0-1.485-0.372-1.91-1.117s-0.637-1.972-0.637-3.68c0-1.469,0.206-2.571,0.617-3.309 S25.063,2.57,25.891,2.57z"/>
+<path d="M19.5,15H18c-0.828,0-1.5,0.672-1.5,1.5S17.172,18,18,18h1.5c1.381,0,2.5,1.119,2.5,2.5S20.881,23,19.5,23H18h-5v-2 c0-0.347-0.18-0.668-0.475-0.851C12.365,20.051,12.183,20,12,20c-0.152,0-0.307,0.035-0.447,0.105l-6,3C5.214,23.275,5,23.621,5,24 s0.214,0.725,0.553,0.895l6,3C11.693,27.965,11.848,28,12,28c0.183,0,0.365-0.051,0.525-0.149C12.82,27.668,13,27.347,13,27v-1h6.5 c3.033,0,5.5-2.467,5.5-5.5S22.533,15,19.5,15z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_app_exit.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_app_exit.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M19,8h-9v-3c0-0.389-0.225-0.74-0.576-0.906-0.135-0.063-0.279-0.094-0.424-0.094-0.229,0-0.457,0.079-0.641,0.231l-6,5.001c-0.227,0.19-0.359,0.471-0.359,0.768s0.132,0.578,0.359,0.768l6,5c0.184,0.15,0.412,0.23,0.641,0.23,0.145,0,0.289-0.031,0.424-0.094,0.351-0.17,0.576-0.52,0.576-0.91v-3h9c2.757,0,5,2.243,5,5s-2.243,5-5,5h-1c-1.104,0-2,0.896-2,2s0.896,2,2,2h1c4.963,0,9-4.037,9-9s-4.04-9-9-9z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M19,8h-9V5c0-0.389-0.225-0.74-0.576-0.906C9.289,4.031,9.145,4,9,4C8.771,4,8.543,4.079,8.359,4.231l-6,5.001 C2.132,9.422,2,9.703,2,10s0.132,0.578,0.359,0.768l6,5C8.543,15.921,8.771,16,9,16c0.145,0,0.289-0.031,0.424-0.094 C9.775,15.741,10,15.389,10,15v-3h9c2.757,0,5,2.243,5,5s-2.243,5-5,5h-1c-1.104,0-2,0.896-2,2s0.896,2,2,2h1c4.963,0,9-4.037,9-9 S23.963,8,19,8z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M14,1v11h11v-11h-11zm8,8h-5v-5h5v5z"/>
-<path d="M14,25h11v-11h-11v11zm3-8h5v5h-5v-5z"/>
-<path d="M1,25h11v-11h-11v11zm3-8h5v5h-5v-5z"/>
-<path d="M12,10c0,1.104-0.896,2-2,2h-8c-1.104,0-2-0.896-2-2v-8c0-1.104,0.896-2,2-2h8c1.104,0,2,0.896,2,2v8z"/>
-</svg>
\ No newline at end of file
+<path d="M14,1v11h11V1H14z M22,9h-5V4h5V9z"/>
+<path d="M14,25h11V14H14V25z M17,17h5v5h-5V17z"/>
+<path d="M1,25h11V14H1V25z M4,17h5v5H4V17z"/>
+<path d="M12,10c0,1.104-0.896,2-2,2H2c-1.104,0-2-0.896-2-2V2c0-1.104,0.896-2,2-2h8c1.104,0,2,0.896,2,2V10z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_collections.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_applications_collections.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -1 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect height="4" width="4" x="14" y="19"/>
<rect height="4" width="4" x="5" y="19"/>
-<path d="M21,5h-19c-1.105,0-2,0.896-2,2v19c0,1.104,0.895,2,2,2h19c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2zm-10,20h-8v-8h8v8zm0-9h-8v-8h8v8zm9,9h-8v-8h8v8zm0-9h-8v-8h8v8z"/>
+<path d="M21,5H2C0.895,5,0,5.896,0,7v19c0,1.104,0.895,2,2,2h19c1.104,0,2-0.896,2-2V7C23,5.896,22.104,5,21,5z M11,25H3v-8h8V25z M11,16H3V8h8V16z M20,25h-8v-8h8V25z M20,16h-8V8h8V16z"/>
<rect height="4" width="4" x="14" y="10"/>
-<path d="M26,0h-19c-1.105,0-2,0.896-2,2v1h20v20h1c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M26,0H7C5.895,0,5,0.896,5,2v1h20v17v3h1c1.104,0,2-0.896,2-2V2C28,0.896,27.104,0,26,0z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_down.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_down.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27,7c0-0.334-0.084-0.668-0.25-0.97-0.35-0.635-1.02-1.03-1.75-1.03h-20c-0.727,0-1.396,0.395-1.75,1.03-0.166,0.302-0.25,0.636-0.25,0.97,0,0.369,0.102,0.736,0.305,1.061l9.999,16c0.37,0.58,1.01,0.94,1.7,0.94s1.33-0.355,1.696-0.939l9.999-16c0.2-0.324,0.3-0.691,0.3-1.06z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M27,7c0-0.334-0.084-0.668-0.25-0.97C26.396,5.395,25.727,5,25,5H5C4.273,5,3.604,5.395,3.25,6.03C3.084,6.332,3,6.666,3,7 c0,0.369,0.102,0.736,0.305,1.061l9.999,16C13.67,24.645,14.311,25,15,25s1.33-0.355,1.696-0.939l9.999-16 C26.898,7.736,27,7.369,27,7L27,7z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_left.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_left.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M23,27c0.334,0,0.668-0.084,0.97-0.25,0.63-0.35,1.03-1.02,1.03-1.75v-20c0-0.727-0.395-1.396-1.03-1.75-0.3-0.166-0.64-0.25-0.97-0.25-0.369,0-0.736,0.102-1.061,0.305l-16,9.999c-0.585,0.37-0.94,1.01-0.94,1.7s0.355,1.33,0.939,1.696l16,9.999c0.32,0.2,0.69,0.3,1.06,0.3z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M23,27c0.334,0,0.668-0.084,0.97-0.25C24.605,26.396,25,25.727,25,25V5c0-0.727-0.395-1.396-1.03-1.75 C23.668,3.084,23.334,3,23,3c-0.369,0-0.736,0.102-1.061,0.305l-16,9.999C5.355,13.67,5,14.311,5,15s0.355,1.33,0.939,1.696 l16,9.999C22.264,26.898,22.631,27,23,27L23,27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_right.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_right.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M7,27c-0.334,0-0.668-0.084-0.97-0.25-0.635-0.35-1.03-1.02-1.03-1.75v-20c0-0.727,0.395-1.396,1.03-1.75,0.302-0.166,0.636-0.25,0.97-0.25,0.369,0,0.736,0.102,1.061,0.305l16,9.999c0.58,0.37,0.94,1.01,0.94,1.7s-0.355,1.33-0.939,1.696l-16,9.999c-0.324,0.2-0.691,0.3-1.06,0.3z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M7,27c-0.334,0-0.668-0.084-0.97-0.25C5.395,26.396,5,25.727,5,25V5c0-0.727,0.395-1.396,1.03-1.75C6.332,3.084,6.666,3,7,3 c0.369,0,0.736,0.102,1.061,0.305l16,9.999C24.645,13.67,25,14.311,25,15s-0.355,1.33-0.939,1.696l-16,9.999 C7.736,26.898,7.369,27,7,27L7,27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_up.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_arrow_up.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27,23c0,0.334-0.084,0.668-0.25,0.97-0.35,0.63-1.02,1.03-1.75,1.03h-20c-0.727,0-1.396-0.395-1.75-1.03-0.166-0.3-0.25-0.64-0.25-0.97,0-0.369,0.102-0.736,0.305-1.061l9.999-16c0.37-0.585,1.01-0.94,1.7-0.94s1.33,0.355,1.696,0.939l9.999,16c0.2,0.32,0.3,0.69,0.3,1.06z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M27,23c0,0.334-0.084,0.668-0.25,0.97C26.396,24.605,25.727,25,25,25H5c-0.727,0-1.396-0.395-1.75-1.03 C3.084,23.668,3,23.334,3,23c0-0.369,0.102-0.736,0.305-1.061l9.999-16C13.67,5.355,14.311,5,15,5s1.33,0.355,1.696,0.939l9.999,16 C26.898,22.264,27,22.631,27,23L27,23z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_artists.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_artists.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M21.63,22.85v-2.501c-0.97-1.055-2.325-1.891-4.233-2.078-1.035,0-3-0.492-3-2.359v-0.43c0-0.188,0.093-0.365,0.245-0.479,2.01-1.43,3.36-4.38,3.36-7.34,0-4.226-2.69-7.66-6-7.66s-6,3.434-6,7.66c0,2.959,1.348,5.906,3.352,7.342,0.157,0.113,0.245,0.291,0.245,0.479v0.428c0,1.695-1.636,2.33-2.999,2.359-5.925,0.58-6.574,7.39-6.598,7.73h17.27c0.63-1.66,2.3-2.92,4.36-3.15z"/>
-<path d="M29.55,16.17l-5.211-1.153c-0.04-0.02-0.09-0.02-0.13-0.02-0.131,0-0.259,0.044-0.363,0.126-0.137,0.11-0.216,0.276-0.216,0.451v9.437c-0.399-0.132-0.841-0.206-1.303-0.206-1.839,0-3.329,1.163-3.329,2.596,0,1.43,1.49,2.59,3.33,2.59s3.618-1.163,3.618-2.597v-7.966l3.348,0.741c0.043,0.009,0.084,0.014,0.126,0.014,0,0,0.259-0.044,0.362-0.127,0.13-0.09,0.21-0.26,0.21-0.43v-2.89c0-0.27-0.19-0.5-0.45-0.56z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M21.632,22.847v-2.501c-0.97-1.055-2.325-1.891-4.233-2.078c-1.035,0-3-0.492-3-2.359V15.48 c0-0.188,0.093-0.365,0.245-0.479C16.652,13.566,18,10.619,18,7.66C18,3.434,15.309,0,12,0S6,3.434,6,7.66 c0,2.959,1.348,5.906,3.352,7.342c0.157,0.113,0.245,0.291,0.245,0.479v0.428c0,1.695-1.636,2.33-2.999,2.359 C0.673,18.85,0.024,25.664,0,26h17.273C17.896,24.338,19.572,23.08,21.632,22.847z"/>
+<path d="M29.547,16.167l-5.211-1.153C24.295,15.005,24.252,15,24.211,15c-0.131,0-0.259,0.044-0.363,0.126 c-0.137,0.11-0.216,0.276-0.216,0.451v0.576v2.309v6.552c-0.399-0.132-0.841-0.206-1.303-0.206c-1.839,0-3.329,1.163-3.329,2.596 C19,28.837,20.49,30,22.329,30s3.618-1.163,3.618-2.597c0-0.077,0-5.665,0-7.966l3.348,0.741c0.043,0.009,0.084,0.014,0.126,0.014 c0,0,0.259-0.044,0.362-0.127C29.92,19.956,30,19.791,30,19.615V16.73C30,16.46,29.812,16.227,29.547,16.167z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_natural.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_natural.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,6v18h-20v-18h20m1-3h-22c-1.104,0-2,0.896-2,2v20c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-20c0-1.104-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M25,6v18H5V6H25 M26,3H4C2.896,3,2,3.896,2,5v20c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V5C28,3.896,27.104,3,26,3L26,3 z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_stretched.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_stretched.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,6v18h-20v-18h20m1-3h-22c-1.104,0-2,0.896-2,2v20c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-20c0-1.104-0.9-2-2-2z"/>
-<path d="M19,12h-8v6h8v-6zm-2,4h-4v-2h4v2z"/>
-<polygon points="15,7,12,10,18,10"/>
-<polygon points="15,23,18,20,12,20"/>
-<polygon points="21,12,21,18,24,15"/>
-<polygon points="9,12,6,15,9,18"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M25,6v18H5V6H25 M26,3H4C2.896,3,2,3.896,2,5v20c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V5C28,3.896,27.104,3,26,3L26,3 z"/>
+<path d="M19,12h-8v6h8V12z M17,16h-4v-2h4V16z"/>
+<polygon points="15,7 12,10 18,10 "/>
+<polygon points="15,23 18,20 12,20 "/>
+<polygon points="21,12 21,18 24,15 "/>
+<polygon points="9,12 6,15 9,18 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_zoom.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_aspect_ratio_zoom.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M22.5,10h-2.5v-2.5c0-0.828-0.67-1.5-1.5-1.5s-1.5,0.672-1.5,1.5v2.5h-2.5c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5h2.5v2.5c0,0.828,0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5v-2.5h2.5c0.828,0,1.5-0.672,1.5-1.5,0-0.83-0.67-1.5-1.5-1.5z"/>
-<path d="M11.28,18.72c4.1,4.102,10.75,4.102,14.85,0,4.102-4.1,4.102-10.75,0-14.85-4.1-4.102-10.75-4.102-14.85-0.002-4.1,4.103-4.1,10.75,0,14.85zm12.73-12.73c2.93,2.93,2.93,7.678,0,10.6-2.928,2.93-7.678,2.93-10.6,0-2.94-2.92-2.94-7.67-0.01-10.6,2.93-2.927,7.68-2.927,10.61,0.002z"/>
-<path d="M1.381,27.2l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242c-0.781,0.79-0.781,2.05,0,2.83z"/>
-<path d="M26,21.43v4.57h-14.93l-2.619,2.619c-0.17,0.17-0.369,0.29-0.576,0.38h19.12c1.105,0,2-0.896,2-2v-8.623c-0.429,0.621-0.911,1.211-1.457,1.756-0.48,0.48-1,0.9-1.54,1.29z"/>
-<path d="M4,18.93v-14.93h4.555c0.389-0.541,0.824-1.059,1.311-1.545,0.544-0.545,1.134-1.026,1.754-1.455h-8.62c-1.104,0-2,0.896-2,2v19.13c0.096-0.211,0.214-0.412,0.381-0.58l2.619-2.62z"/>
-<path d="M29,4.214v-1.214c0-1.104-0.895-2-2-2h-1.213c0.621,0.429,1.211,0.912,1.757,1.457,0.54,0.545,1.02,1.136,1.45,1.757z"/>
-<path d="M10.17,21.95l1.541-1.541c-0.393-0.303-0.777-0.623-1.139-0.982-0.359-0.361-0.68-0.746-0.982-1.139l-1.541,1.543c-0.766-0.451-1.768-0.355-2.426,0.303l-2.828,2.828,4.242,4.242,2.828-2.828c0.657-0.65,0.757-1.65,0.307-2.42z"/>
-</svg>
\ No newline at end of file
+<path d="M22.5,10H20V7.5C20,6.672,19.328,6,18.5,6S17,6.672,17,7.5V10h-2.5c-0.828,0-1.5,0.672-1.5,1.5c0,0.828,0.672,1.5,1.5,1.5 H17v2.5c0,0.828,0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5V13h2.5c0.828,0,1.5-0.672,1.5-1.5C24,10.672,23.328,10,22.5,10z"/>
+<path d="M11.281,18.719c4.1,4.102,10.748,4.102,14.848,0c4.102-4.1,4.102-10.748,0-14.848c-4.1-4.102-10.748-4.102-14.85-0.002 C7.18,7.971,7.18,14.619,11.281,18.719z M24.008,5.992c2.93,2.93,2.93,7.678,0,10.605c-2.928,2.93-7.678,2.93-10.605,0 C10.473,13.67,10.473,8.92,13.4,5.99C16.33,3.063,21.078,3.063,24.008,5.992z"/>
+<path d="M1.381,27.205l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242C0.6,25.158,0.6,26.424,1.381,27.205z"/>
+<path d="M26,21.432V26H11.07l-2.619,2.619C8.281,28.791,8.082,28.906,7.875,29H27c1.105,0,2-0.896,2-2v-8.623 c-0.429,0.621-0.911,1.211-1.457,1.756C27.063,20.615,26.541,21.039,26,21.432z"/>
+<path d="M4,18.93V4h4.555c0.389-0.541,0.824-1.059,1.311-1.545C10.41,1.91,11,1.429,11.621,1H3C1.896,1,1,1.896,1,3v19.129 c0.096-0.211,0.214-0.412,0.381-0.58L4,18.93z"/>
+<path d="M29,4.214V3c0-1.104-0.895-2-2-2h-1.213c0.621,0.429,1.211,0.912,1.757,1.457C28.09,3.002,28.571,3.593,29,4.214z"/>
+<path d="M10.17,21.951l1.541-1.541c-0.393-0.303-0.777-0.623-1.139-0.982c-0.359-0.361-0.68-0.746-0.982-1.139l-1.541,1.543 c-0.766-0.451-1.768-0.355-2.426,0.303l-2.828,2.828l4.242,4.242l2.828-2.828C10.524,23.719,10.622,22.719,10.17,21.951z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M22.5,1h-10c-0.83,0-1.5,0.672-1.5,1.5v18c0,2.206,1.795,4,4,4s4-1.794,4-4v-11c0-0.828-0.67-1.5-1.5-1.5s-1.5,0.672-1.5,1.5v11c0,0.552-0.449,1-1,1s-1-0.448-1-1v-16.5h7v18.5c0,2.481-2.019,4.5-4.5,4.5h-3c-2.48,0-4.5-2.02-4.5-4.5v-13c0-0.828-0.672-1.5-1.5-1.5s-1.5,0.672-1.5,1.5v13c0,4.136,3.364,7.5,7.5,7.5h3c4.136,0,7.5-3.364,7.5-7.5v-20c0-0.828-0.67-1.5-1.5-1.5z"/>
-</svg>
\ No newline at end of file
+<path d="M22.5,1h-10C11.672,1,11,1.672,11,2.5v18c0,2.206,1.795,4,4,4s4-1.794,4-4v-11C19,8.672,18.328,8,17.5,8S16,8.672,16,9.5v11 c0,0.552-0.449,1-1,1s-1-0.448-1-1V4h7v18.5c0,2.481-2.019,4.5-4.5,4.5h-3C11.019,27,9,24.981,9,22.5v-13C9,8.672,8.328,8,7.5,8 S6,8.672,6,9.5v13c0,4.136,3.364,7.5,7.5,7.5h3c4.136,0,7.5-3.364,7.5-7.5v-20C24,1.672,23.328,1,22.5,1z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_audio.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_audio.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,3h-13c-1.104,0-2,0.896-2,2v15.44c-0.751-0.28-1.599-0.44-2.5-0.44-3.037,0-5.5,1.79-5.5,4s2.463,4,5.5,4,5.5-1.791,5.5-4v-15h11v9.439c-0.75-0.28-1.6-0.44-2.5-0.44-3.037,0-5.5,1.791-5.5,4s2.463,4,5.5,4,5.5-1.791,5.5-4v-17c0-1.104-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M25,3H12c-1.104,0-2,0.896-2,2v15.439C9.249,20.16,8.401,20,7.5,20C4.463,20,2,21.791,2,24s2.463,4,5.5,4s5.5-1.791,5.5-4V9 h11v9.439C23.249,18.16,22.401,18,21.5,18c-3.037,0-5.5,1.791-5.5,4s2.463,4,5.5,4s5.5-1.791,5.5-4V5C27,3.896,26.104,3,25,3z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_autoflash.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_autoflash.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M6.163,12l-5.163,17h3.002l1.072-4h5.376l1.056,4h3.49l-4.947-17h-3.887zm-0.553,11l2.173-8.104,2.139,8.1h-4.312z"/>
-<path d="M27,21h-2.869l3.87-11h-8.639l3.179-9h-5.302l-4.24,12h8.639l-2.811,8h-2.83c-0.396,0-0.756,0.234-0.916,0.598-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6c0.19,0.2,0.46,0.32,0.74,0.32s0.548-0.117,0.737-0.324l5.5-6c0.268-0.293,0.338-0.715,0.179-1.078-0.16-0.37-0.52-0.6-0.92-0.6z"/>
-</svg>
\ No newline at end of file
+<path d="M6.163,12L1,29h3.002l1.072-4h5.376l1.056,4H15l-4.947-17H6.163z M5.61,23l2.173-8.104L9.922,23H5.61z"/>
+<path d="M27,21h-2.869L28,10h-8.639l3.179-9h-5.302L13,13h8.639l-2.811,8H16c-0.396,0-0.756,0.234-0.916,0.598 c-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6C20.952,28.883,21.22,29,21.5,29s0.548-0.117,0.737-0.324l5.5-6 c0.268-0.293,0.338-0.715,0.179-1.078C27.756,21.234,27.396,21,27,21z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_automatic.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_automatic.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="13.89,16.41,15.91,16.41,14.91,12.37"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-10.12,16.2l-0.588-2.242h-2.775l-0.6,2.24h-2.128l3.055-10.59h2.518l2.93,10.59h-2.408z"/>
-</svg>
\ No newline at end of file
+<polygon points="13.889,16.409 15.912,16.409 14.914,12.368 "/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M16.882,20.2 l-0.588-2.242h-2.775L12.917,20.2h-2.128l3.055-10.593h2.518L19.288,20.2H16.882z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_back.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_back.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M19,8h-9v-3c0-0.389-0.225-0.74-0.576-0.906-0.135-0.063-0.279-0.094-0.424-0.094-0.229,0-0.457,0.079-0.641,0.231l-6,5.001c-0.227,0.19-0.359,0.471-0.359,0.768s0.132,0.578,0.359,0.768l6,5c0.184,0.15,0.412,0.23,0.641,0.23,0.145,0,0.289-0.031,0.424-0.094,0.351-0.17,0.576-0.52,0.576-0.91v-3h9c2.757,0,5,2.243,5,5s-2.243,5-5,5h-1c-1.104,0-2,0.896-2,2s0.896,2,2,2h1c4.963,0,9-4.037,9-9s-4.04-9-9-9z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M19,8h-9V5c0-0.389-0.225-0.74-0.576-0.906C9.289,4.031,9.145,4,9,4C8.771,4,8.543,4.079,8.359,4.231l-6,5.001 C2.132,9.422,2,9.703,2,10s0.132,0.578,0.359,0.768l6,5C8.543,15.921,8.771,16,9,16c0.145,0,0.289-0.031,0.424-0.094 C9.775,15.741,10,15.389,10,15v-3h9c2.757,0,5,2.243,5,5s-2.243,5-5,5h-1c-1.104,0-2,0.896-2,2s0.896,2,2,2h1c4.963,0,9-4.037,9-9 S23.963,8,19,8z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace1.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace1.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -9 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M25,4h-16v-3c0-0.375-0.209-0.718-0.542-0.889-0.145-0.074-0.302-0.111-0.458-0.111-0.205,0-0.408,0.063-0.581,0.186l-7,5.001c-0.263,0.187-0.419,0.491-0.419,0.813,0,0.323,0.156,0.626,0.419,0.814l7,5c0.173,0.13,0.376,0.19,0.581,0.19,0.156,0,0.313-0.037,0.457-0.111,0.334-0.17,0.543-0.51,0.543-0.89v-3h16c1.104,0,2-0.896,2-2s-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M25,4H9V1c0-0.375-0.209-0.718-0.542-0.889C8.313,0.037,8.156,0,8,0C7.795,0,7.592,0.063,7.419,0.186l-7,5.001 C0.156,5.374,0,5.678,0,6c0,0.323,0.156,0.626,0.419,0.814l7,5C7.592,11.938,7.795,12,8,12c0.156,0,0.313-0.037,0.457-0.111 C8.791,11.718,9,11.375,9,11V8h16c1.104,0,2-0.896,2-2S26.104,4,25,4z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace2.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_backspace2.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M28,5h-16c-0.209,0-0.406,0.041-0.596,0.101-0.032,0.01-0.064,0.018-0.096,0.029-0.188,0.069-0.359,0.165-0.515,0.284,0,0.01-10.03,8.026-10.03,8.026-0.474,0.38-0.75,0.95-0.75,1.56s0.276,1.182,0.75,1.562,10.03,8.015,10.04,8.024c0.155,0.119,0.327,0.215,0.515,0.284,0.031,0.012,0.063,0.02,0.096,0.029,0.19,0.07,0.39,0.11,0.6,0.11h16c1.104,0,2-0.896,2-2v-16c0-1.104-0.9-2-2-2zm-3.05,12.83c0.586,0.586,0.586,1.536,0,2.122-0.585,0.585-1.535,0.585-2.121,0l-2.83-2.83-2.828,2.828c-0.586,0.585-1.536,0.585-2.121,0-0.586-0.586-0.586-1.536,0-2.122l2.83-2.83-2.828-2.828c-0.586-0.586-0.586-1.536,0-2.121,0.585-0.586,1.535-0.586,2.121,0l2.83,2.83,2.828-2.828c0.586-0.586,1.536-0.586,2.121,0,0.586,0.585,0.586,1.535,0,2.121l-2.83,2.83,2.83,2.83z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M28,5H12c-0.209,0-0.406,0.041-0.596,0.101c-0.032,0.01-0.064,0.018-0.096,0.029c-0.188,0.069-0.359,0.165-0.515,0.284 C10.78,5.424,0.75,13.438,0.75,13.438C0.276,13.818,0,14.393,0,15s0.276,1.182,0.75,1.562c0,0,10.03,8.015,10.044,8.024 c0.155,0.119,0.327,0.215,0.515,0.284c0.031,0.012,0.063,0.02,0.096,0.029C11.594,24.959,11.791,25,12,25h16c1.104,0,2-0.896,2-2V7 C30,5.896,29.104,5,28,5z M24.949,17.828c0.586,0.586,0.586,1.536,0,2.122c-0.585,0.585-1.535,0.585-2.121,0L20,17.122l-2.828,2.828 c-0.586,0.585-1.536,0.585-2.121,0c-0.586-0.586-0.586-1.536,0-2.122L17.879,15l-2.828-2.828c-0.586-0.586-0.586-1.536,0-2.121 c0.585-0.586,1.535-0.586,2.121,0L20,12.879l2.828-2.828c0.586-0.586,1.536-0.586,2.121,0c0.586,0.585,0.586,1.535,0,2.121 L22.121,15L24.949,17.828z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M14,2v10.28l-4.437-4.294-1.563,1.563,5.543,5.336-5.54,5.41,1.563,1.562,4.437-4.3v10.45l8-8-5.539-5.115,5.54-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.47,2.47zm-2.48-7.74v-4.944l2.473,2.473-2.47,2.471z"/>
-</svg>
\ No newline at end of file
+<path d="M14,2v10.282L9.563,7.986L8,9.549l5.543,5.336L8,20.286l1.563,1.562L14,17.554V28 l8-8l-5.539-5.115L22,10L14,2z M18.477,20.025l-2.473,2.473v-4.944L18.477,20.025z M16.004,12.282V7.336l2.473,2.473L16.004,12.282z " fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_headset.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_headset.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M0,17.5c0,2.48,1.791,4.5,4,4.5v-9c-2.209,0-4,2.02-4,4.5z"/>
-<path d="M26,13v9c2.209,0,4-2.015,4-4.5s-1.79-4.5-4-4.5z"/>
-<path d="M15,2c-5.514,0-10,4.486-10,10v10c0,0.553,0.447,1,1,1s1-0.447,1-1v-10c0-4.411,3.589-8,8-8s8,3.589,8,8v10c0,0.553,0.447,1,1,1s1-0.447,1-1v-10c0-5.514-4.49-10-10-10z"/>
-<path d="M14,6v8.778l-3.736-3.666-1.26,1.34,5,4.555-5,4.612,1.264,1.332,3.743-3.486v8.55l6-6.999-4-4,4-4-6-7zm3.47,15l-1.998,2.5v-4.22l2,1.72zm-1.99-6.22v-4.223l1.998,2.444-2,1.78z"/>
-</svg>
\ No newline at end of file
+<path d="M0,17.5C0,19.985,1.791,22,4,22v-9C1.791,13,0,15.015,0,17.5z"/>
+<path d="M26,13v9c2.209,0,4-2.015,4-4.5S28.209,13,26,13z"/>
+<path d="M15,2C9.486,2,5,6.486,5,12v10c0,0.553,0.447,1,1,1s1-0.447,1-1V12c0-4.411,3.589-8,8-8s8,3.589,8,8v10c0,0.553,0.447,1,1,1 s1-0.447,1-1V12C25,6.486,20.514,2,15,2z"/>
+<path d="M14,6v8.778l-3.736-3.666L9,12.446l5,4.555l-5,4.612l1.264,1.332l3.743-3.486L14,28l6-6.999l-4-4l4-4L14,6z M17.473,21.001 l-1.998,2.5V19.28L17.473,21.001z M15.475,14.779v-4.223l1.998,2.444L15.475,14.779z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bluetooth_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="16,11.85,16,7.336,18.48,9.809,16.22,12.07,17.83,13.68,22,10,14,2,14,9.85"/>
-<polygon points="17.18,21.32,16,22.5,16,20.15,14,18.15,14,28,18.93,23.07"/>
-<polygon points="12.12,16.27,8,20.29,9.563,21.85,13.7,17.85"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.049,1.368-0.363,0.363-0.979,0.343-1.367-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.363,0.979-0.341,1.367,0.048l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<polygon fill-rule="evenodd" points="16.004,11.854 16.004,7.336 18.477,9.809 16.219,12.068 17.829,13.679 22,10 14,2 14,9.85 "/>
+<polygon fill-rule="evenodd" points="17.178,21.324 16.004,22.498 16.004,20.15 14,18.146 14,28 18.927,23.074 "/>
+<polygon fill-rule="evenodd" points="12.123,16.269 8,20.286 9.563,21.848 13.699,17.846 "/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.049,1.368c-0.363,0.363-0.979,0.343-1.367-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.363,0.979-0.341,1.367,0.048L27.693,26.372z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bold.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bold.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M15.08,27c2.705,0,4.756-0.568,6.148-1.706,1.396-1.138,2.092-2.823,2.092-5.055,0-1.696-0.391-3.015-1.174-3.96-0.783-0.944-1.947-1.59-3.494-1.932,2.793-0.967,4.188-2.812,4.188-5.537,0-1.48-0.336-2.664-1.006-3.55-0.672-0.885-1.541-1.483-2.609-1.795-1.07-0.312-2.45-0.468-4.15-0.468h-8.402v24h8.402zm-2.96-13.97v-6.92h1.98c1.32,0,2.199,0.285,2.639,0.86,0.441,0.574,0.66,1.371,0.66,2.392,0,1.179-0.246,2.086-0.738,2.72-0.494,0.633-1.504,0.948-3.027,0.948h-1.513zm0,10.86v-7.838h1.578c0.924,0,1.66,0.105,2.215,0.321,0.551,0.215,0.998,0.599,1.336,1.149,0.338,0.553,0.508,1.373,0.508,2.455,0,1.32-0.264,2.303-0.791,2.946-0.523,0.644-1.594,0.966-3.203,0.966h-1.663l0.003-0.01z"/>
-</svg>
\ No newline at end of file
+<path d="M15.08,27c2.705,0,4.756-0.568,6.148-1.706c1.396-1.138,2.092-2.823,2.092-5.055c0-1.696-0.391-3.015-1.174-3.96 c-0.783-0.944-1.947-1.59-3.494-1.932c2.793-0.967,4.188-2.812,4.188-5.537c0-1.48-0.336-2.664-1.006-3.55 c-0.672-0.885-1.541-1.483-2.609-1.795C18.158,3.156,16.775,3,15.08,3H6.678v24H15.08z M12.117,13.027v-6.92h1.98 c1.32,0,2.199,0.285,2.639,0.86c0.441,0.574,0.66,1.371,0.66,2.392c0,1.179-0.246,2.086-0.738,2.72 c-0.494,0.633-1.504,0.948-3.027,0.948H12.117z M12.117,23.893v-7.838h1.578c0.924,0,1.66,0.105,2.215,0.321 c0.551,0.215,0.998,0.599,1.336,1.149c0.338,0.553,0.508,1.373,0.508,2.455c0,1.32-0.264,2.303-0.791,2.946 c-0.523,0.644-1.594,0.966-3.203,0.966H12.117L12.117,23.893z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_add_new.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_add_new.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M12.46,13.88l5.54-4.88-8-8v10.28l-4.437-4.294-1.563,1.563,5.543,5.336-5.543,5.41,1.563,1.562,4.437-4.3v10.45l4-4c0-2.19,0.788-4.198,2.094-5.761l-3.63-3.36zm-0.46-7.544l2.473,2.473-2.473,2.474v-4.944zm0,15.16v-4.944l2.473,2.472-2.47,2.47z"/>
-<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.13-7-7-7zm1,8v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4z"/>
-</svg>
\ No newline at end of file
+<path d="M12.461,13.885L18,9l-8-8v10.282L5.563,6.986L4,8.549l5.543,5.336L4,19.286 l1.563,1.562L10,16.554V27l4-4c0-2.19,0.788-4.198,2.094-5.761L12.461,13.885z M12.004,6.336l2.473,2.473l-2.473,2.474V6.336z M12.004,21.498v-4.944l2.473,2.472L12.004,21.498z" fill-rule="evenodd"/>
+<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7s7-3.134,7-7S26.866,16,23,16z M24,24v4h-2v-4h-4v-2h4v-4h2v4h4v2H24z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_pair.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_pair.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7,0v10.28l-4.437-4.294-1.563,1.563,5.543,5.336-5.543,5.41,1.563,1.562,4.437-4.3v10.45l8-8-5.539-5.115,5.539-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.473,2.47zm-2.476-7.74v-4.944l2.473,2.473-2.476,2.471z"/>
-<path d="M20,4v10.28l-4.438-4.296-1.56,1.566,5.543,5.336-5.54,5.4,1.563,1.562,4.44-4.3v10.45l8-8-5.539-5.115,5.54-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.47,2.47zm-2.48-7.74v-4.944l2.473,2.473-2.47,2.47z"/>
-</svg>
\ No newline at end of file
+<path d="M7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.286l1.563,1.562L7,15.554V26 l8-8l-5.539-5.115L15,8L7,0z M11.477,18.025l-2.473,2.473v-4.944L11.477,18.025z M9.004,10.282V5.336l2.473,2.473L9.004,10.282z" fill-rule="evenodd"/>
+<path d="M20,4v10.282l-4.438-4.296L14,11.549l5.543,5.336L14,22.286l1.563,1.562L20,19.554 V30l8-8l-5.539-5.115L28,12L20,4z M24.477,22.025l-2.473,2.473v-4.944L24.477,22.025z M22.004,14.282V9.336l2.473,2.473 L22.004,14.282z" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="13.15,10.28,13.15,13.33,14.73,11.8"/>
-<polygon points="13.15,16.57,13.15,19.61,14.73,18.09"/>
-<path d="M25,20.75c1.022,0.381,2.02,0.894,2.969,1.558,0.01-0.11,0.03-0.21,0.03-0.31v-20c0-1.1-0.9-2-2-2h-16c-1.1,0-2,0.9-2,2v1h17v17.75z"/>
-<path d="M21,20c0.673,0,1.339,0.083,2,0.203v-13.2c0-1.1-0.9-2-2-2h-16c-1.1,0-2,0.9-2,2v20c0,1.1,0.9,2,2,2h6.086c-0.221-0.252-0.445-0.494-0.658-0.765-0.57-0.725-0.57-1.746,0-2.471,2.92-3.72,6.67-5.77,10.57-5.77zm-12-0.79l-1.004-0.96,3.563-3.324-3.56-3.29,1.004-0.962,2.996,2.65v-6.33l5,5-3.561,2.929,3.56,3.07-5,5v-6.43l-2.996,2.64z"/>
-<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654c0.695-0.709,1.521-1.386,2.463-1.922-0.06,0.3-0.11,0.6-0.11,0.92,0,2.21,1.792,4,4,4s4-1.79,4-4c0-0.318-0.047-0.624-0.117-0.922,0.941,0.536,1.768,1.213,2.463,1.922h2.66zm-9,1c-1.104,0-2-0.447-2-1s0.896-1,2-1,2,0.447,2,1-0.9,1-2,1z"/>
-</svg>
\ No newline at end of file
+<polygon fill-rule="evenodd" points="13.146,10.283 13.146,13.327 14.734,11.805 "/>
+<polygon fill-rule="evenodd" points="13.146,16.57 13.146,19.614 14.734,18.092 "/>
+<path d="M25,20.748c1.022,0.381,2.02,0.894,2.969,1.558C27.984,22.205,28,22.104,28,22V2 c0-1.1-0.9-2-2-2H10C8.9,0,8,0.9,8,2v1h17V20.748z" fill-rule="evenodd"/>
+<path d="M21,20c0.673,0,1.339,0.083,2,0.203V7c0-1.1-0.9-2-2-2H5C3.9,5,3,5.9,3,7v20 c0,1.1,0.9,2,2,2h6.086c-0.221-0.252-0.445-0.494-0.658-0.765c-0.57-0.725-0.57-1.746,0-2.471C13.348,22.047,17.104,20,21,20z M9.004,19.214L8,18.253l3.563-3.324L8,11.645l1.004-0.962L12,13.327V7l5,5l-3.561,2.929L17,18l-5,5v-6.43L9.004,19.214z" fill-rule="evenodd"/>
+<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654 c0.695-0.709,1.521-1.386,2.463-1.922C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4 c0-0.318-0.047-0.624-0.117-0.922c0.941,0.536,1.768,1.213,2.463,1.922H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1 S22.104,28,21,28z" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_pair.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_show_pair.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7,0v10.28l-4.437-4.294-1.563,1.563,5.543,5.336-5.543,5.41,1.563,1.562,4.437-4.3v10.45l8-8-5.539-5.115,5.539-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.473,2.47zm-2.476-7.74v-4.944l2.473,2.473-2.476,2.471z"/>
-<path d="M14.02,22.31c1.686-1.18,3.509-1.919,5.389-2.189l0.59-0.57v0.512c0.33-0.02,0.66-0.06,1-0.06,0.336,0,0.67,0.035,1.004,0.066v-0.513l0.564,0.564c1.822,0.259,3.589,0.968,5.231,2.082l0.21-0.2-5.539-5.115,5.54-4.88-8-8v10.28l-4.438-4.296-1.56,1.566,5.543,5.336-5.54,5.4,0.02,0.02zm7.98-12.97l2.473,2.473-2.473,2.474v-4.944z"/>
-<path d="M30,27c-2.453-3.123-5.586-5-9-5s-6.545,1.877-9,5h2.654c0.695-0.709,1.522-1.385,2.463-1.921-0.06,0.3-0.11,0.6-0.11,0.92,0,2.21,1.793,4,4,4,2.209,0,4-1.79,4-4,0-0.318-0.047-0.625-0.117-0.922,0.941,0.536,1.769,1.213,2.463,1.922h2.66zm-9,1c-1.104,0-2-0.447-2-1s0.896-1,2-1c1.105,0,2,0.447,2,1s-0.9,1-2,1z"/>
-</svg>
\ No newline at end of file
+<path d="M7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.286l1.563,1.562L7,15.554V26 l8-8l-5.539-5.115L15,8L7,0z M11.477,18.025l-2.473,2.473v-4.944L11.477,18.025z M9.004,10.282V5.336l2.473,2.473L9.004,10.282z" fill-rule="evenodd"/>
+<path d="M14.024,22.311c1.686-1.18,3.509-1.919,5.389-2.189L20,19.554v0.512 C20.332,20.035,20.665,20,21,20c0.336,0,0.67,0.035,1.004,0.066v-0.513l0.564,0.564c1.822,0.259,3.589,0.968,5.231,2.082L28,22 l-5.539-5.115L28,12l-8-8v10.282l-4.438-4.296L14,11.549l5.543,5.336L14,22.286L14.024,22.311z M22.004,9.336l2.473,2.473 l-2.473,2.474V9.336z" fill-rule="evenodd"/>
+<path d="M30,27c-2.453-3.123-5.586-5-9-5s-6.545,1.877-9,5h2.654 c0.695-0.709,1.522-1.385,2.463-1.921C17.047,25.376,17,25.682,17,26c0,2.21,1.793,4,4,4c2.209,0,4-1.79,4-4 c0-0.318-0.047-0.625-0.117-0.922c0.941,0.536,1.769,1.213,2.463,1.922H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1 c1.105,0,2,0.447,2,1S22.105,28,21,28z" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_unpair.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bt_unpair.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7,0v10.28l-4.437-4.294-1.563,1.563,5.543,5.336-5.543,5.41,1.563,1.561,4.437-4.3v10.45l8-8-5.539-5.115,5.539-4.88-8-8zm4.48,18.02l-2.473,2.473v-4.944l2.473,2.47zm-2.476-7.74v-4.944l2.473,2.472-2.476,2.472z"/>
-<path d="M22,14.06v-4.724l2.473,2.472-2.23,2.232c1.045-0.087,2.1,0.01,3.117,0.286l2.64-2.33-8-8v10.28l-4.438-4.296-1.56,1.566,4.072,3.92c1.2-0.79,2.55-1.25,3.93-1.41z"/>
-<path d="M14.04,22.25l-0.04,0.04,0.037,0.035v-0.07z"/>
-<path d="M27.95,18.05c-2.733-2.734-7.165-2.734-9.898,0-2.734,2.734-2.734,7.166,0,9.898,2.733,2.734,7.165,2.734,9.898,0,2.73-2.73,2.73-7.17,0-9.9zm-0.71,7.78l-1.414,1.414-2.83-2.83-2.828,2.828-1.414-1.414,2.83-2.83-2.828-2.828,1.414-1.414,2.83,2.83,2.828-2.828,1.414,1.414-2.83,2.83,2.83,2.83z"/>
-</svg>
\ No newline at end of file
+<path d="M7,0v10.282L2.563,5.986L1,7.549l5.543,5.336L1,18.287l1.563,1.561L7,15.554V26 l8-8l-5.539-5.115L15,8L7,0z M11.477,18.025l-2.473,2.473v-4.944L11.477,18.025z M9.004,10.282V5.336l2.473,2.472L9.004,10.282z" fill-rule="evenodd"/>
+<path d="M22.004,14.064V9.336l2.473,2.472l-2.23,2.232c1.045-0.087,2.1,0.01,3.117,0.286 L28,12l-8-8v10.282l-4.438-4.296L14,11.549l4.072,3.92C19.274,14.682,20.625,14.217,22.004,14.064z" fill-rule="evenodd"/>
+<path d="M14.04,22.248L14,22.287l0.037,0.035C14.039,22.297,14.038,22.271,14.04,22.248z" fill-rule="evenodd"/>
+<path d="M27.949,18.051c-2.733-2.734-7.165-2.734-9.898,0c-2.734,2.734-2.734,7.166,0,9.898c2.733,2.734,7.165,2.734,9.898,0 C30.684,25.217,30.684,20.785,27.949,18.051z M27.242,25.828l-1.414,1.414L23,24.414l-2.828,2.828l-1.414-1.414L21.586,23 l-2.828-2.828l1.414-1.414L23,21.586l2.828-2.828l1.414,1.414L24.414,23L27.242,25.828z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bullet.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_bullet.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M26,4.5c0,0.828-0.67,1.5-1.5,1.5h-14c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5h14c0.83,0,1.5,0.672,1.5,1.5z"/>
-<circle cx="5.5" cy="4.5" r="1.5"/>
-<path d="M26,9.5c0,0.828-0.672,1.5-1.5,1.5h-14c-0.828,0-1.5-0.67-1.5-1.5,0-0.828,0.672-1.5,1.5-1.5h14c0.83,0,1.5,0.672,1.5,1.5z"/>
-<circle cx="5.5" cy="9.5" r="1.5"/>
-<path d="M26,14.5c0,0.828-0.672,1.5-1.5,1.5h-14c-0.828,0-1.5-0.67-1.5-1.5,0-0.828,0.672-1.5,1.5-1.5h14c0.83,0,1.5,0.67,1.5,1.5z"/>
-<circle cx="5.5" cy="14.5" r="1.5"/>
-<path d="M26,19.5c0,0.828-0.672,1.5-1.5,1.5h-14c-0.828,0-1.5-0.67-1.5-1.5,0-0.828,0.672-1.5,1.5-1.5h14c0.83,0,1.5,0.67,1.5,1.5z"/>
-<circle cx="5.5" cy="19.5" r="1.5"/>
-<path d="M26,24.5c0,0.828-0.672,1.5-1.5,1.5h-14c-0.828,0-1.5-0.67-1.5-1.5,0-0.828,0.672-1.5,1.5-1.5h14c0.83,0,1.5,0.67,1.5,1.5z"/>
-<circle cx="5.5" cy="24.5" r="1.5"/>
-</svg>
\ No newline at end of file
+<path d="M26,4.5C26,5.328,25.328,6,24.5,6h-14C9.672,6,9,5.328,9,4.5l0,0 C9,3.672,9.672,3,10.5,3h14C25.328,3,26,3.672,26,4.5L26,4.5z" fill-rule="evenodd"/>
+<circle cx="5.5" cy="4.5" fill-rule="evenodd" r="1.5"/>
+<path d="M26,9.5c0,0.828-0.672,1.5-1.5,1.5h-14C9.672,11,9,10.328,9,9.5l0,0 C9,8.672,9.672,8,10.5,8h14C25.328,8,26,8.672,26,9.5L26,9.5z" fill-rule="evenodd"/>
+<circle cx="5.5" cy="9.5" fill-rule="evenodd" r="1.5"/>
+<path d="M26,14.5c0,0.828-0.672,1.5-1.5,1.5h-14C9.672,16,9,15.328,9,14.5l0,0 c0-0.828,0.672-1.5,1.5-1.5h14C25.328,13,26,13.672,26,14.5L26,14.5z" fill-rule="evenodd"/>
+<circle cx="5.5" cy="14.5" fill-rule="evenodd" r="1.5"/>
+<path d="M26,19.5c0,0.828-0.672,1.5-1.5,1.5h-14C9.672,21,9,20.328,9,19.5l0,0 c0-0.828,0.672-1.5,1.5-1.5h14C25.328,18,26,18.672,26,19.5L26,19.5z" fill-rule="evenodd"/>
+<circle cx="5.5" cy="19.5" fill-rule="evenodd" r="1.5"/>
+<path d="M26,24.5c0,0.828-0.672,1.5-1.5,1.5h-14C9.672,26,9,25.328,9,24.5l0,0 c0-0.828,0.672-1.5,1.5-1.5h14C25.328,23,26,23.672,26,24.5L26,24.5z" fill-rule="evenodd"/>
+<circle cx="5.5" cy="24.5" fill-rule="evenodd" r="1.5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27.58,6.524l-7.359,4.248c-0.364,0.153-0.771,0.057-0.953-0.255l-1.277-2.143c-0.002,0.002-0.006,0.008-0.007,0.008s0-0.002-0.001-0.004c-1.119,0.582-3.617,2.223-5.187,3.792-1.632,1.634-3.149,3.392-4.417,5.575,0,0-0.006,0.008-0.008,0.01,0.009,0.002,0.018,0.002,0.027,0.002l2.725,1.744c0.344,0.221,0.412,0.705,0.158,1.078l-4.793,7.041c-0.254,0.371-0.736,0.492-1.081,0.268,0,0-0.298-0.193-1.021-0.83h-0.003c-0.394-0.346-0.411-0.475-0.785-0.924-0.319-0.385-0.573-0.766-0.783-1.115l-0.005-0.002c-0.043-0.07-0.081-0.139-0.119-0.207-0.005-0.008-0.01-0.018-0.015-0.023-0.391-0.699-0.56-1.211-0.56-1.211-0.178-0.688-0.252-3.057,0.563-5.205,0.52-1.365,3.24-5.671,6.42-8.854,3.181-3.182,8.125-6.348,10.3-7.004,2.176-0.657,3.903-0.557,4.417-0.375,0,0,1.326,0.433,2.53,1.537,0.401,0.367,0.439,0.38,0.751,0.763,0.002,0.004,0,0.006,0.002,0.008l-0.004-0.004c0.61,0.745,0.81,1.049,0.81,1.049,0.2,0.344,0.05,0.803-0.33,1.024z"/>
-</svg>
\ No newline at end of file
+<path d="M27.578,6.524l-7.359,4.248c-0.364,0.153-0.771,0.057-0.953-0.255l-1.277-2.143c-0.002,0.002-0.006,0.008-0.007,0.008 s0-0.002-0.001-0.004c-1.119,0.582-3.617,2.223-5.187,3.792c-1.632,1.634-3.149,3.392-4.417,5.575c0,0-0.006,0.008-0.008,0.01 c0.009,0.002,0.018,0.002,0.027,0.002l2.725,1.744c0.344,0.221,0.412,0.705,0.158,1.078l-4.793,7.041 c-0.254,0.371-0.736,0.492-1.081,0.268c0,0-0.298-0.193-1.021-0.83c-0.001,0-0.002,0-0.003,0c-0.394-0.346-0.411-0.475-0.785-0.924 c-0.319-0.385-0.573-0.766-0.783-1.115c0,0-0.004,0-0.005-0.002c-0.043-0.07-0.081-0.139-0.119-0.207 c-0.005-0.008-0.01-0.018-0.015-0.023c-0.391-0.699-0.56-1.211-0.56-1.211c-0.178-0.688-0.252-3.057,0.563-5.205 c0.52-1.365,3.24-5.671,6.42-8.854c3.181-3.182,8.125-6.348,10.3-7.004c2.176-0.657,3.903-0.557,4.417-0.375 c0,0,1.326,0.433,2.53,1.537c0.401,0.367,0.439,0.38,0.751,0.763c0.002,0.004,0,0.006,0.002,0.008 c-0.002-0.002-0.002-0.004-0.004-0.004C27.709,5.196,27.912,5.5,27.912,5.5C28.111,5.844,27.961,6.303,27.578,6.524z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call_diverted.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_call_diverted.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27,9h-7c-0.404,0-0.77,0.244-0.924,0.617-0.154,0.374-0.069,0.804,0.217,1.09l2.045,2.045-4.25,4.24h-13.09c-1.104,0-2,0.896-2,2s0.896,2,2,2h14.75v-0.005l5.416-5.415,2.127,2.127c0.18,0.19,0.44,0.29,0.7,0.29,0.129,0,0.259-0.025,0.383-0.076,0.38-0.15,0.62-0.52,0.62-0.92v-7c0-0.553-0.45-1-1-1z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M27,9h-7c-0.404,0-0.77,0.244-0.924,0.617c-0.154,0.374-0.069,0.804,0.217,1.09l2.045,2.045L17.088,17H4 c-1.104,0-2,0.896-2,2s0.896,2,2,2h14.75v-0.005l5.416-5.415l2.127,2.127C26.484,17.898,26.74,18,27,18 c0.129,0,0.259-0.025,0.383-0.076C27.756,17.77,28,17.404,28,17v-7C28,9.447,27.553,9,27,9z"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_cam_mode_camcorder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect height="1" width="11.999" x="9.5" y="11.025"/>
+<polygon points="19.143,19.025 7.5,19.025 7.5,8.025 23.525,8.025 23.525,16.768 25.5,20.109 25.5,10.775 28.5,13.025 28.5,7.025 25.5,9.275 25.5,6.051 5.526,6.051 5.526,21 17.975,21 "/>
+<polygon points="1.5,19.025 4.5,17.025 4.5,8.025 1.5,6.025 "/>
+<polygon points="27,24.613 22,16.152 17,24.613 20.5,24.613 20.5,29 23.5,29 23.5,24.613 "/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_cam_mode_camera.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="30"/>
+<rect height="1.536" width="3.841" x="18.841" y="3.331"/>
+<polygon points="19.141,19.023 6.986,19.023 6.986,7.609 23.014,7.609 23.014,15.9 24.986,19.24 24.986,5.635 5.014,5.635 5.014,20.998 17.975,20.998 "/>
+<circle cx="9.382" cy="9.99" r="1.152"/>
+<path d="M10.774,13.316c0,2.547,2.063,4.609,4.609,4.609c2.547,0,4.609-2.062,4.609-4.609c0-2.545-2.065-4.609-4.609-4.609 C12.838,8.707,10.774,10.771,10.774,13.316z M17.688,13.316c0,1.273-1.027,2.305-2.305,2.305c-1.271,0-2.305-1.031-2.305-2.305 c0-1.271,1.033-2.305,2.305-2.305C16.656,11.012,17.688,12.045,17.688,13.316z"/>
+<polygon points="27,24.613 22,16.152 17,24.613 20.5,24.613 20.5,29 23.5,29 23.5,24.613 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcorder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcorder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M30,8l-3,2v-2c0-1.104-0.896-2-2-2h-17c-1.104,0-2,0.896-2,2v14c0,1.104,0.896,2,2,2h17c1.104,0,2-0.896,2-2v-8l3,2v-8zm-12.5,13c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5,1.5,0.672,1.5,1.5-0.67,1.5-1.5,1.5zm5,0c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5,1.5,0.672,1.5,1.5-0.67,1.5-1.5,1.5z"/>
-<polygon points="0,19,5,17,5,9,0,7"/>
-</svg>
\ No newline at end of file
+<path d="M30,8l-3,2V8c0-1.104-0.896-2-2-2H8C6.896,6,6,6.896,6,8v14c0,1.104,0.896,2,2,2h17c1.104,0,2-0.896,2-2v-8l3,2V8z M17.5,21 c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S18.328,21,17.5,21z M22.5,21c-0.828,0-1.5-0.672-1.5-1.5 s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S23.328,21,22.5,21z"/>
+<polygon points="0,19 5,17 5,9 0,7 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcorder_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camcorder_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,10v-2c0-1.105-0.896-2-2-2h-14.85l12.04,12.04c0.1-0.03,0.2-0.04,0.31-0.04,0.828,0,1.5,0.672,1.5,1.5,0,0.107-0.013,0.213-0.035,0.315l2.898,2.897c0.09-0.23,0.14-0.47,0.14-0.72v-8l3,2v-8l-3,2z"/>
-<polygon points="0,19,5,17,5,9,0,7"/>
-<path d="M6,22c0,1.104,0.896,2,2,2h11.85l-13.85-13.85v11.85z"/>
-<path d="M3.627,2.307c-0.389-0.389-1.004-0.412-1.367-0.048-0.364,0.362-0.342,0.977,0.047,1.366l24.07,24.07c0.389,0.389,1.004,0.408,1.366,0.046,0.362-0.363,0.341-0.979-0.048-1.367l-24.07-24.07z"/>
-</svg>
\ No newline at end of file
+<path d="M27,10V8c0-1.105-0.896-2-2-2H10.148l12.035,12.035C22.286,18.012,22.392,18,22.5,18c0.828,0,1.5,0.672,1.5,1.5 c0,0.107-0.013,0.213-0.035,0.315l2.898,2.897C26.948,22.491,27,22.252,27,22v-8l3,2V8L27,10z"/>
+<polygon points="0,19 5,17 5,9 0,7 "/>
+<path d="M6,22c0,1.104,0.896,2,2,2h11.852L6,10.147V22z"/>
+<path d="M3.627,2.307C3.238,1.918,2.623,1.895,2.26,2.259C1.896,2.621,1.918,3.236,2.307,3.625l24.068,24.07 c0.389,0.389,1.004,0.408,1.366,0.046c0.362-0.363,0.341-0.979-0.048-1.367L3.627,2.307z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camera.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_camera.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,6h-24c-1.104,0-2,0.896-2,2v16c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-16c0-1.104-0.9-2-2-2zm-12,18c-4.418,0-8-3.582-8-8s3.582-8,8-8,8,3.582,8,8-3.58,8-8,8zm12-13h-4v-3h4v3z"/>
-<path d="M15,10c-3.309,0-6,2.691-6,6s2.691,6,6,6,6-2.691,6-6-2.69-6-6-6zm0,10c-2.205,0-4-1.795-4-4,0-2.206,1.795-4,4-4s4,1.794,4,4c0,2.2-1.8,4-4,4z"/>
-<path d="M9,4c0-0.552-0.447-1-1-1h-4c-0.553,0-1,0.448-1,1v1h6v-1z"/>
-</svg>
\ No newline at end of file
+<path d="M27,6H9H3C1.896,6,1,6.896,1,8v16c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V8C29,6.896,28.104,6,27,6z M15,24 c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S19.418,24,15,24z M27,11h-4V8h4V11z"/>
+<path d="M15,10c-3.309,0-6,2.691-6,6s2.691,6,6,6s6-2.691,6-6S18.309,10,15,10z M15,20c-2.205,0-4-1.795-4-4c0-2.206,1.795-4,4-4 s4,1.794,4,4C19,18.205,17.205,20,15,20z"/>
+<path d="M9,4c0-0.552-0.447-1-1-1H4C3.447,3,3,3.448,3,4v1h6V4z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_capture.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_capture.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24.8,11.62l-2.084,2.288c0.18,0.66,0.28,1.36,0.28,2.09,0,4.418-3.582,8-8,8s-8-3.582-8-8,3.582-8,8-8c1.176,0,2.287,0.26,3.293,0.715l-2.98-2.715h-12.31c-1.104,0-2,0.896-2,2v16c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-12l-4.2-0.376z"/>
-<path d="M9,5v-1c0-0.552-0.447-1-1-1h-4c-0.553,0-1,0.448-1,1v1h6z"/>
-<path d="M19.92,16c-0.271,0-0.546-0.055-0.805-0.169-0.054-0.023-0.094-0.064-0.144-0.092,0,0.09,0.02,0.17,0.02,0.26,0,2.205-1.795,4-4,4s-4-1.795-4-4c0-2.206,1.795-4,4-4,1.186,0,2.24,0.528,2.973,1.35l0.219-2.421c-0.92-0.59-2.02-0.93-3.19-0.93-3.309,0-6,2.691-6,6s2.691,6,6,6,6-2.691,6-6c0-0.106-0.011-0.21-0.016-0.315-0.32,0.21-0.68,0.32-1.06,0.32z"/>
-<polygon points="25.54,6.014,30,10.08,23.99,9.535,19.92,14,20.46,7.988,16,3.922,22.02,4.465,26.08,0"/>
-</svg>
\ No newline at end of file
+<path d="M24.797,11.616l-2.084,2.288C22.895,14.573,23,15.273,23,16c0,4.418-3.582,8-8,8s-8-3.582-8-8s3.582-8,8-8 c1.176,0,2.287,0.26,3.293,0.715L15.312,6H3C1.896,6,1,6.896,1,8v16c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V11.996 L24.797,11.616z"/>
+<path d="M9,5V4c0-0.552-0.447-1-1-1H4C3.447,3,3,3.448,3,4v1H9z"/>
+<path d="M19.922,16c-0.271,0-0.546-0.055-0.805-0.169c-0.054-0.023-0.094-0.064-0.144-0.092C18.979,15.827,19,15.91,19,16 c0,2.205-1.795,4-4,4s-4-1.795-4-4c0-2.206,1.795-4,4-4c1.186,0,2.24,0.528,2.973,1.35l0.219-2.421C17.266,10.344,16.174,10,15,10 c-3.309,0-6,2.691-6,6s2.691,6,6,6s6-2.691,6-6c0-0.106-0.011-0.21-0.016-0.315C20.664,15.886,20.297,16,19.922,16z"/>
+<polygon points="25.537,6.014 30,10.078 23.986,9.535 19.922,14 20.465,7.988 16,3.922 22.016,4.465 26.08,0 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_car_itut.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_car_itut.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.262,21.14c-1.67,0-2.926-0.531-3.766-1.596-0.842-1.063-1.262-2.811-1.262-5.242,0-2.18,0.423-3.815,1.27-4.908s2.117-1.64,3.811-1.64c0.691,0,1.386,0.094,2.083,0.281v1.538c-0.691-0.205-1.31-0.308-1.854-0.308-0.932,0-1.629,0.415-2.092,1.243-0.463,0.83-0.694,2.07-0.694,3.723,0,1.922,0.238,3.302,0.716,4.14s1.194,1.257,2.149,1.257c0.557,0,1.148-0.088,1.775-0.264v1.494c-0.7,0.19-1.412,0.28-2.138,0.28z"/>
-<path d="M17.57,19.52c-0.703,1.078-1.717,1.617-3.041,1.617-0.973,0-1.729-0.265-2.268-0.795s-0.809-1.273-0.809-2.229c0-0.75,0.168-1.367,0.505-1.85,0.337-0.484,0.875-0.846,1.613-1.086s1.866-0.366,3.384-0.378v-1.002c0-0.58-0.16-1.017-0.479-1.31s-0.795-0.439-1.428-0.439c-0.732,0-1.632,0.167-2.698,0.501v-1.529c1.113-0.299,2.2-0.448,3.261-0.448,1.219,0,2.147,0.28,2.786,0.84s0.958,1.384,0.958,2.474v7.13h-1.389l-0.39-1.48zm-0.62-3.43h-0.84c-0.768,0-1.344,0.167-1.728,0.501s-0.575,0.832-0.575,1.494c0,0.527,0.114,0.923,0.343,1.187s0.571,0.396,1.028,0.396c0.574,0,1.014-0.183,1.318-0.549s0.457-0.884,0.457-1.552v-1.483z"/>
-<path d="M21.71,21v-10.27h1.389l0.466,1.705c0.287-0.598,0.683-1.047,1.187-1.349s1.116-0.453,1.837-0.453c0.188,0,0.325,0.006,0.413,0.018v1.969c-0.328-0.023-0.568-0.035-0.721-0.035-0.791,0-1.354,0.175-1.688,0.523s-0.501,0.924-0.501,1.727v6.17h-2.391z"/>
-</svg>
\ No newline at end of file
+<path d="M8.262,21.141c-1.67,0-2.926-0.531-3.766-1.596c-0.842-1.063-1.262-2.811-1.262-5.242c0-2.18,0.423-3.815,1.27-4.908 s2.117-1.64,3.811-1.64c0.691,0,1.386,0.094,2.083,0.281v1.538c-0.691-0.205-1.31-0.308-1.854-0.308 c-0.932,0-1.629,0.415-2.092,1.243c-0.463,0.83-0.694,2.07-0.694,3.723c0,1.922,0.238,3.302,0.716,4.14s1.194,1.257,2.149,1.257 c0.557,0,1.148-0.088,1.775-0.264v1.494C9.7,21.047,8.988,21.141,8.262,21.141z"/>
+<path d="M17.569,19.523c-0.703,1.078-1.717,1.617-3.041,1.617c-0.973,0-1.729-0.265-2.268-0.795s-0.809-1.273-0.809-2.229 c0-0.75,0.168-1.367,0.505-1.85c0.337-0.484,0.875-0.846,1.613-1.086s1.866-0.366,3.384-0.378v-1.002c0-0.58-0.16-1.017-0.479-1.31 s-0.795-0.439-1.428-0.439c-0.732,0-1.632,0.167-2.698,0.501v-1.529c1.113-0.299,2.2-0.448,3.261-0.448 c1.219,0,2.147,0.28,2.786,0.84s0.958,1.384,0.958,2.474V21h-1.389L17.569,19.523z M16.954,16.087H16.11 c-0.768,0-1.344,0.167-1.728,0.501s-0.575,0.832-0.575,1.494c0,0.527,0.114,0.923,0.343,1.187s0.571,0.396,1.028,0.396 c0.574,0,1.014-0.183,1.318-0.549s0.457-0.884,0.457-1.552V16.087z"/>
+<path d="M21.709,21V10.726h1.389l0.466,1.705c0.287-0.598,0.683-1.047,1.187-1.349s1.116-0.453,1.837-0.453 c0.188,0,0.325,0.006,0.413,0.018v1.969c-0.328-0.023-0.568-0.035-0.721-0.035c-0.791,0-1.354,0.175-1.688,0.523 s-0.501,0.924-0.501,1.727V21H21.709z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_car_qwerty.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_car_qwerty.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M9.219,14.12c-1.484,0-2.601-0.473-3.348-1.418s-1.121-2.49-1.121-4.653c0-1.938,0.376-3.392,1.129-4.363s1.882-1.457,3.387-1.457c0.614,0,1.231,0.083,1.852,0.25v1.367c-0.62-0.183-1.167-0.274-1.651-0.274-0.828,0-1.448,0.368-1.859,1.105s-0.617,1.84-0.617,3.309c0,1.708,0.212,2.935,0.637,3.68s1.062,1.117,1.91,1.117c0.495,0,1.021-0.078,1.578-0.234v1.328c-0.62,0.16-1.256,0.24-1.901,0.24z"/>
-<path d="M17.49,12.69c-0.625,0.958-1.526,1.438-2.703,1.438-0.864,0-1.536-0.235-2.016-0.707s-0.719-1.132-0.719-1.98c0-0.667,0.149-1.215,0.449-1.645s0.777-0.751,1.434-0.965,1.659-0.325,3.008-0.336v-0.892c0-0.516-0.142-0.903-0.426-1.164s-0.707-0.391-1.27-0.391c-0.651,0-1.45,0.148-2.398,0.445v-1.359c0.989-0.266,1.956-0.398,2.898-0.398,1.083,0,1.909,0.249,2.477,0.746s0.852,1.23,0.852,2.199v6.32h-1.234l-0.35-1.31zm-0.55-3.057h-0.75c-0.683,0-1.194,0.148-1.535,0.445s-0.512,0.739-0.512,1.328c0,0.469,0.102,0.82,0.305,1.055s0.508,0.352,0.914,0.352c0.511,0,0.901-0.163,1.172-0.488s0.406-0.785,0.406-1.379v-1.307z"/>
-<path d="M21.17,14v-9.133h1.234l0.414,1.516c0.255-0.531,0.606-0.931,1.055-1.199s0.992-0.402,1.633-0.402c0.167,0,0.289,0.005,0.367,0.016v1.75c-0.292-0.021-0.505-0.031-0.641-0.031-0.703,0-1.203,0.155-1.5,0.465s-0.445,0.821-0.445,1.535v5.483h-2.108z"/>
-<path d="M10.04,26.91v1.09h-6.035v-1.094h2.146v-7.629l-2.146,0.49v-1.094l3.015-0.95h0.991v9.181h2.03z"/>
-<path d="M17.66,26.81v1.19h-6.098v-0.745c0-0.711,0.123-1.342,0.369-1.894s0.549-1.021,0.909-1.412c0.36-0.389,0.815-0.816,1.367-1.281,0.661-0.556,1.078-0.986,1.251-1.292s0.26-0.608,0.26-0.909c0-0.528-0.141-0.926-0.42-1.193-0.281-0.266-0.701-0.399-1.262-0.399-0.593,0-1.311,0.152-2.153,0.458h-0.014v-1.217c0.884-0.278,1.745-0.417,2.584-0.417,1.034,0,1.82,0.227,2.358,0.681,0.538,0.453,0.807,1.122,0.807,2.006,0,0.497-0.121,0.985-0.362,1.467-0.241,0.48-0.812,1.097-1.709,1.849-0.501,0.424-0.894,0.777-1.176,1.06s-0.521,0.594-0.714,0.934c-0.194,0.339-0.3,0.712-0.318,1.117h4.306z"/>
-<path d="M20.3,22.04c1.34,0,2.176-0.137,2.509-0.41s0.499-0.692,0.499-1.258c0-0.497-0.133-0.87-0.4-1.121-0.266-0.251-0.664-0.376-1.192-0.376-0.465,0-1.119,0.116-1.962,0.349h-0.014v-1.2c0.856-0.214,1.632-0.321,2.324-0.321,1.044,0,1.827,0.21,2.352,0.629s0.786,1.048,0.786,1.887c0,0.579-0.157,1.077-0.472,1.493-0.314,0.418-0.766,0.713-1.354,0.886,0.638,0.114,1.127,0.382,1.467,0.804,0.339,0.421,0.509,0.948,0.509,1.582,0,1.044-0.304,1.826-0.913,2.348-0.607,0.522-1.521,0.783-2.737,0.783-0.729,0-1.477-0.107-2.242-0.321v-1.189h0.014c0.894,0.224,1.598,0.335,2.112,0.335,0.62,0,1.086-0.156,1.398-0.469,0.312-0.312,0.468-0.78,0.468-1.404,0-0.67-0.187-1.15-0.561-1.442s-1.237-0.438-2.591-0.438v-1.151z"/>
-</svg>
\ No newline at end of file
+<path d="M9.219,14.125c-1.484,0-2.601-0.473-3.348-1.418S4.75,10.208,4.75,8.047c0-1.938,0.376-3.392,1.129-4.363 s1.882-1.457,3.387-1.457c0.614,0,1.231,0.083,1.852,0.25v1.367C10.503,3.661,9.953,3.57,9.469,3.57 c-0.828,0-1.448,0.368-1.859,1.105s-0.617,1.84-0.617,3.309c0,1.708,0.212,2.935,0.637,3.68s1.062,1.117,1.91,1.117 c0.495,0,1.021-0.078,1.578-0.234v1.328C10.497,14.042,9.864,14.125,9.219,14.125z"/>
+<path d="M17.492,12.688c-0.625,0.958-1.526,1.438-2.703,1.438c-0.864,0-1.536-0.235-2.016-0.707s-0.719-1.132-0.719-1.98 c0-0.667,0.149-1.215,0.449-1.645s0.777-0.751,1.434-0.965s1.659-0.325,3.008-0.336V7.602c0-0.516-0.142-0.903-0.426-1.164 s-0.707-0.391-1.27-0.391c-0.651,0-1.45,0.148-2.398,0.445V5.133c0.989-0.266,1.956-0.398,2.898-0.398 c1.083,0,1.909,0.249,2.477,0.746s0.852,1.23,0.852,2.199V14h-1.234L17.492,12.688z M16.945,9.633h-0.75 c-0.683,0-1.194,0.148-1.535,0.445s-0.512,0.739-0.512,1.328c0,0.469,0.102,0.82,0.305,1.055s0.508,0.352,0.914,0.352 c0.511,0,0.901-0.163,1.172-0.488s0.406-0.785,0.406-1.379V9.633z"/>
+<path d="M21.172,14V4.867h1.234l0.414,1.516c0.255-0.531,0.606-0.931,1.055-1.199s0.992-0.402,1.633-0.402 c0.167,0,0.289,0.005,0.367,0.016v1.75c-0.292-0.021-0.505-0.031-0.641-0.031c-0.703,0-1.203,0.155-1.5,0.465 s-0.445,0.821-0.445,1.535V14H21.172z"/>
+<path d="M10.041,26.906V28H4.005v-1.094h2.146v-7.629L4.005,19.77v-1.094l3.015-0.95h0.991v9.181H10.041z"/>
+<path d="M17.656,26.811V28h-6.098v-0.745c0-0.711,0.123-1.342,0.369-1.894s0.549-1.021,0.909-1.412 c0.36-0.389,0.815-0.816,1.367-1.281c0.661-0.556,1.078-0.986,1.251-1.292s0.26-0.608,0.26-0.909c0-0.528-0.141-0.926-0.42-1.193 c-0.281-0.266-0.701-0.399-1.262-0.399c-0.593,0-1.311,0.152-2.153,0.458h-0.014v-1.217c0.884-0.278,1.745-0.417,2.584-0.417 c1.034,0,1.82,0.227,2.358,0.681c0.538,0.453,0.807,1.122,0.807,2.006c0,0.497-0.121,0.985-0.362,1.467 c-0.241,0.48-0.812,1.097-1.709,1.849c-0.501,0.424-0.894,0.777-1.176,1.06s-0.521,0.594-0.714,0.934 c-0.194,0.339-0.3,0.712-0.318,1.117H17.656z"/>
+<path d="M20.295,22.039c1.34,0,2.176-0.137,2.509-0.41s0.499-0.692,0.499-1.258c0-0.497-0.133-0.87-0.4-1.121 c-0.266-0.251-0.664-0.376-1.192-0.376c-0.465,0-1.119,0.116-1.962,0.349h-0.014V18.02c0.856-0.214,1.632-0.321,2.324-0.321 c1.044,0,1.827,0.21,2.352,0.629s0.786,1.048,0.786,1.887c0,0.579-0.157,1.077-0.472,1.493c-0.314,0.418-0.766,0.713-1.354,0.886 c0.638,0.114,1.127,0.382,1.467,0.804c0.339,0.421,0.509,0.948,0.509,1.582c0,1.044-0.304,1.826-0.913,2.348 c-0.607,0.522-1.521,0.783-2.737,0.783c-0.729,0-1.477-0.107-2.242-0.321v-1.189h0.014c0.894,0.224,1.598,0.335,2.112,0.335 c0.62,0,1.086-0.156,1.398-0.469c0.312-0.312,0.468-0.78,0.468-1.404c0-0.67-0.187-1.15-0.561-1.442s-1.237-0.438-2.591-0.438 V22.039z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_change_cam_mode.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_change_cam_mode.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
<circle cx="12" cy="9" r="3"/>
-<path d="M3,16c0-1.509,1.089-2.647,2.532-2.647,0.428,0,0.851,0.103,1.257,0.306l1.536,0.768c0.208-0.484,0.515-0.914,0.887-1.278-1.333-0.9-2.212-2.43-2.212-4.15,0-2.757,2.243-5,5-5s5,2.243,5,5c0,1.13-0.391,2.162-1.025,3h7.02v-8c0-1.104-0.896-2-2-2h-13v-1c0-0.552-0.447-1-1-1h-3c-0.553,0-1,0.448-1,1v1c-1.104,0-2,0.896-2,2v11c0,1.104,0.896,2,2,2v-1zm15-12h3v2h-3v-2z"/>
-<path d="M29.17,16.56l-1.17,0.77v-1.33c0-1.104-0.896-2-2-2h-14c-1.104,0-2,0.896-2,2v11c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2v-4.333l1.168,0.778c0.46,0.3,0.83,0.1,0.83-0.45v-6c0-0.55-0.37-0.75-0.83-0.44zm-10.67,9.44c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5,1.5,0.672,1.5,1.5-0.67,1.5-1.5,1.5zm5,0c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5,1.5,0.672,1.5,1.5-0.67,1.5-1.5,1.5z"/>
-<path d="M8.105,16.55l-2.211-1.105c-0.492-0.24-0.894,0.01-0.894,0.56v8c0,0.55,0.402,0.799,0.895,0.553l2.211-1.105c0.492-0.24,0.894-0.89,0.894-1.44v-4c0-0.55-0.402-1.2-0.895-1.45z"/>
-</svg>
\ No newline at end of file
+<path d="M3,16c0-1.509,1.089-2.647,2.532-2.647c0.428,0,0.851,0.103,1.257,0.306l1.536,0.768c0.208-0.484,0.515-0.914,0.887-1.278 C7.879,12.249,7,10.725,7,9c0-2.757,2.243-5,5-5s5,2.243,5,5c0,1.13-0.391,2.162-1.025,3H23V4c0-1.104-0.896-2-2-2H8V1 c0-0.552-0.447-1-1-1H4C3.447,0,3,0.448,3,1v1C1.896,2,1,2.896,1,4v11c0,1.104,0.896,2,2,2V16z M18,4h3v2h-3V4z"/>
+<path d="M29.168,16.555L28,17.333V16c0-1.104-0.896-2-2-2H12c-1.104,0-2,0.896-2,2v11c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2 v-4.333l1.168,0.778C29.626,23.75,30,23.55,30,23v-6C30,16.45,29.626,16.25,29.168,16.555z M18.5,26c-0.828,0-1.5-0.672-1.5-1.5 s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S19.328,26,18.5,26z M23.5,26c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5 S24.328,26,23.5,26z"/>
+<path d="M8.105,16.553l-2.211-1.105C5.402,15.201,5,15.45,5,16v8c0,0.55,0.402,0.799,0.895,0.553l2.211-1.105 C8.598,23.201,9,22.55,9,22v-4C9,17.45,8.598,16.799,8.105,16.553z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_ciphering_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_ciphering_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11.41,7.263c0.65-1.334,2.01-2.263,3.59-2.263,2.205,0,4,1.794,4,4v3h-2.85l9.85,9.85v-7.85c0-1.104-0.896-2-2-2h-1v-3c0-4.418-3.582-8-8-8-2.682,0-5.049,1.324-6.501,3.349l2.911,2.914z"/>
-<path d="M16.33,20.47c-0.102,0.092-0.207,0.181-0.326,0.25v2.28c0,0.553-0.447,1-1,1s-1-0.447-1-1v-2.277c-0.596-0.347-1-0.984-1-1.723,0-0.515,0.2-0.979,0.52-1.334l-6.52-6.52v0.85h-1c-1.104,0-2,0.896-2,2v12c0,1.104,0.896,2,2,2h17.85l-7.52-7.53z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.049,1.368-0.363,0.363-0.979,0.343-1.367-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.366,0.363-0.363,0.979-0.341,1.367,0.048l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<path d="M11.414,7.263C12.063,5.929,13.42,5,15,5c2.205,0,4,1.794,4,4v3h-2.85L26,21.85V14c0-1.104-0.896-2-2-2h-1V9 c0-4.418-3.582-8-8-8c-2.682,0-5.049,1.324-6.501,3.349L11.414,7.263z"/>
+<path d="M16.326,20.473c-0.102,0.092-0.207,0.181-0.326,0.25V23c0,0.553-0.447,1-1,1s-1-0.447-1-1v-2.277 c-0.596-0.347-1-0.984-1-1.723c0-0.515,0.2-0.979,0.52-1.334L7,11.146V12H6c-1.104,0-2,0.896-2,2v12c0,1.104,0.896,2,2,2h17.854 L16.326,20.473z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.049,1.368c-0.363,0.363-0.979,0.343-1.367-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.259c0.363-0.363,0.979-0.341,1.367,0.048L27.693,26.372z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_close_up.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_close_up.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24,9.5c0-2.192-0.887-4.185-2.33-5.692-0.176-0.063-0.41-0.089-0.679,0.035l-1.033,3.445c-0.13,0.422-0.52,0.712-0.96,0.712s-0.831-0.29-0.958-0.713l-1.737-5.79c-0.34-0.307-0.8-0.497-1.3-0.497s-0.955,0.19-1.305,0.497l-1.737,5.79c-0.13,0.423-0.52,0.713-0.96,0.713s-0.831-0.29-0.958-0.713l-1.031-3.445c-0.269-0.124-0.503-0.097-0.679-0.034-1.443,1.507-2.33,3.5-2.33,5.692,0,4.375,3.5,7.975,8,8.444v11.06h2v-11.06c4.5-0.464,8-4.064,8-8.444z"/>
-<path d="M25.84,17.46c-0.19-0.3-0.51-0.46-0.84-0.46-0.181,0-0.364,0.049-0.528,0.152l-8,5c-0.227,0.142-0.388,0.367-0.446,0.628s-0.011,0.534,0.134,0.759c0.918,1.436,2.638,2.327,4.487,2.327,1.144,0,2.271-0.335,3.262-0.968,2.67-1.71,3.52-4.97,1.94-7.44z"/>
-<path d="M13.53,22.28l-8-5c-0.164-0.103-0.348-0.151-0.528-0.151-0.33,0-0.653,0.163-0.843,0.461-1.578,2.466-0.729,5.733,1.935,7.437,0.99,0.63,2.117,0.97,3.26,0.97,1.85,0,3.569-0.893,4.487-2.327,0.145-0.225,0.192-0.498,0.134-0.759s-0.21-0.48-0.44-0.63z"/>
-</svg>
\ No newline at end of file
+<path d="M24,9.5c0-2.192-0.887-4.185-2.33-5.692c-0.176-0.063-0.41-0.089-0.679,0.035l-1.033,3.445C19.831,7.71,19.441,8,19,8 s-0.831-0.29-0.958-0.713l-1.737-5.79C15.955,1.19,15.502,1,15,1s-0.955,0.19-1.305,0.497l-1.737,5.79C11.831,7.71,11.441,8,11,8 s-0.831-0.29-0.958-0.713L9.009,3.842C8.74,3.718,8.506,3.745,8.33,3.808C6.887,5.315,6,7.308,6,9.5c0,4.375,3.5,7.975,8,8.444V29h2 V17.944C20.5,17.475,24,13.875,24,9.5z"/>
+<path d="M25.842,17.461C25.652,17.163,25.329,17,24.999,17c-0.181,0-0.364,0.049-0.528,0.152l-8,5 c-0.227,0.142-0.388,0.367-0.446,0.628s-0.011,0.534,0.134,0.759c0.918,1.436,2.638,2.327,4.487,2.327 c1.144,0,2.271-0.335,3.262-0.968C26.57,23.193,27.42,19.928,25.842,17.461z"/>
+<path d="M13.529,22.285l-8-5c-0.164-0.103-0.348-0.151-0.528-0.151c-0.33,0-0.653,0.163-0.843,0.461 c-1.578,2.466-0.729,5.733,1.935,7.437C7.084,25.665,8.211,26,9.354,26c1.85,0,3.569-0.893,4.487-2.327 c0.145-0.225,0.192-0.498,0.134-0.759S13.756,22.428,13.529,22.285z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_collapse.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_collapse.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M24,0h-22c-1.104,0-2,0.896-2,2v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-22c0-1.104-0.9-2-2-2zm-4,15h-14v-4h14v4z"/>
-</svg>
\ No newline at end of file
+<path d="M24,0H2C0.896,0,0,0.896,0,2v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V2C26,0.896,25.104,0,24,0z M20,15H6v-4h14V15z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_communication.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_communication.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M19.68,3.48l-5.662,3.268c-0.279,0.117-0.592,0.043-0.732-0.195l-0.984-1.648c-0.002,0-0.002,0.006-0.004,0.006v-0.005c-0.861,0.447-2.783,1.709-3.99,2.916-1.256,1.258-2.422,2.609-3.398,4.289,0,0-0.004,0.008-0.006,0.008,0.008,0,0.014,0,0.021,0.002l2.096,1.342c0.264,0.17,0.318,0.543,0.123,0.828l-3.689,5.418c-0.195,0.283-0.566,0.377-0.83,0.205,0,0-0.229-0.148-0.787-0.639h-0.002c-0.301-0.266-0.314-0.365-0.604-0.711-0.244-0.295-0.439-0.588-0.602-0.857l-0.004-0.002c-0.05-0.06-0.079-0.11-0.109-0.16-0.004-0.008-0.008-0.016-0.01-0.02-0.301-0.537-0.43-0.932-0.43-0.932-0.139-0.529-0.195-2.35,0.432-4.004,0.399-1.06,2.493-4.37,4.938-6.819s6.25-4.885,7.924-5.389c1.674-0.506,3.002-0.428,3.396-0.287,0,0,1.021,0.334,1.947,1.18,0.307,0.283,0.338,0.295,0.577,0.59v0.006s0-0.004-0.001-0.004c0.473,0.582,0.628,0.816,0.628,0.816,0.15,0.266,0.03,0.62-0.26,0.787z"/>
-<path d="M26.78,11.22c-2.14-2.134-4.76-3.22-7.78-3.22-3.006,0-5.619,1.088-7.768,3.229-2.142,2.15-3.23,4.75-3.23,7.75,0,3.014,1.086,5.633,3.227,7.783,2.13,2.15,4.75,3.24,7.77,3.24h0.268v-2.775h-0.27c-2.266,0-4.221-0.811-5.813-2.412-1.598-1.594-2.406-3.555-2.406-5.828,0-2.268,0.807-4.223,2.396-5.813,1.588-1.588,3.547-2.391,5.822-2.391,2.266,0,4.232,0.811,5.847,2.408,1.62,1.604,2.442,3.553,2.442,5.795,0,0.979-0.162,1.875-0.496,2.738-0.426,1.086-0.994,1.613-1.739,1.613-0.562,0-1.312-0.209-1.312-2.008v-8.082h-2.799v0.412c-0.662-0.439-1.494-0.662-2.486-0.662-1.648,0-2.979,0.615-3.951,1.832-0.908,1.119-1.369,2.523-1.369,4.172,0,1.639,0.459,3.049,1.367,4.195,0.99,1.252,2.32,1.887,3.953,1.887,1.258,0,2.32-0.395,3.17-1.174,0.748,1.42,1.9,2.141,3.427,2.141,1.687,0,2.991-0.832,3.875-2.469,0.72-1.29,1.08-2.83,1.08-4.59,0-3.01-1.08-5.62-3.22-7.76zm-8.32,4.52c1.58,0,2.347,1.033,2.347,3.158,0,2.311-0.767,3.436-2.349,3.436-1.592,0-2.367-1.09-2.367-3.334,0-0.875,0.188-1.602,0.574-2.221,0.43-0.71,1.01-1.05,1.8-1.05z"/>
-</svg>
\ No newline at end of file
+<path d="M19.676,3.48l-5.662,3.268c-0.279,0.117-0.592,0.043-0.732-0.195l-0.984-1.648c-0.002,0-0.002,0.006-0.004,0.006V4.906 c-0.861,0.447-2.783,1.709-3.99,2.916c-1.256,1.258-2.422,2.609-3.398,4.289c0,0-0.004,0.008-0.006,0.008 c0.008,0,0.014,0,0.021,0.002l2.096,1.342c0.264,0.17,0.318,0.543,0.123,0.828l-3.689,5.418c-0.195,0.283-0.566,0.377-0.83,0.205 c0,0-0.229-0.148-0.787-0.639c0,0,0,0-0.002,0c-0.301-0.266-0.314-0.365-0.604-0.711c-0.244-0.295-0.439-0.588-0.602-0.857 l-0.004-0.002C0.588,17.65,0.559,17.6,0.529,17.547c-0.004-0.008-0.008-0.016-0.01-0.02c-0.301-0.537-0.43-0.932-0.43-0.932 c-0.139-0.529-0.195-2.35,0.432-4.004C0.92,11.543,3.014,8.23,5.459,5.781s6.25-4.885,7.924-5.389 c1.674-0.506,3.002-0.428,3.396-0.287c0,0,1.021,0.334,1.947,1.18c0.307,0.283,0.338,0.295,0.577,0.59v0.006 c0,0,0-0.004-0.001-0.004c0.473,0.582,0.628,0.816,0.628,0.816C20.086,2.959,19.969,3.313,19.676,3.48z"/>
+<path d="M26.775,11.223C24.635,9.086,22.02,8,19,8c-3.006,0-5.619,1.088-7.768,3.229C9.088,13.375,8,15.982,8,18.984 c0,3.014,1.086,5.633,3.227,7.783C13.363,28.912,15.979,30,19,30h0.268v-2.775H19c-2.266,0-4.221-0.811-5.813-2.412 c-1.598-1.594-2.406-3.555-2.406-5.828c0-2.268,0.807-4.223,2.396-5.813c1.588-1.588,3.547-2.391,5.822-2.391 c2.266,0,4.232,0.811,5.847,2.408c1.62,1.604,2.442,3.553,2.442,5.795c0,0.979-0.162,1.875-0.496,2.738 c-0.426,1.086-0.994,1.613-1.739,1.613c-0.562,0-1.312-0.209-1.312-2.008v-8.082h-2.799v0.412c-0.662-0.439-1.494-0.662-2.486-0.662 c-1.648,0-2.979,0.615-3.951,1.832c-0.908,1.119-1.369,2.523-1.369,4.172c0,1.639,0.459,3.049,1.367,4.195 c0.99,1.252,2.32,1.887,3.953,1.887c1.258,0,2.32-0.395,3.17-1.174c0.748,1.42,1.9,2.141,3.427,2.141 c1.687,0,2.991-0.832,3.875-2.469C29.64,22.285,30,20.738,30,18.984C30,15.969,28.916,13.357,26.775,11.223z M18.457,15.74 c1.58,0,2.347,1.033,2.347,3.158c0,2.311-0.767,3.436-2.349,3.436c-1.592,0-2.367-1.09-2.367-3.334c0-0.875,0.188-1.602,0.574-2.221 C17.086,16.08,17.674,15.74,18.457,15.74z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contact_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contact_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M16,17.3c0-2.155,0.775-4.09,2-5.428v-7.87h-12v16h10.41c-0.26-0.86-0.41-1.77-0.41-2.7z"/>
-<path d="M12.77,26.85c-0.24,0.09-0.5,0.15-0.77,0.15-1.104,0-2-0.896-2-2s0.896-2,2-2c1.061,0,1.92,0.828,1.987,1.872,0.883-1.044,2.104-1.882,3.774-2.157-0.391-0.512-0.723-1.092-0.992-1.715h-11.77v-18h14v7.988c0.607-0.43,1.282-0.73,2-0.878v-7.11c0-1.104-0.896-2-2-2h-14c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h7.114c0.12-0.66,0.33-1.41,0.66-2.15zm-4.77-0.85h-3v-2h3v2z"/>
-<path d="M14,30c0.016-0.232,0.448-4.95,4.398-5.354,0.908-0.02,1.999-0.459,1.999-1.633v-0.297c0-0.129-0.06-0.252-0.163-0.33-1.34-1-2.24-3.04-2.24-5.09,0-2.92,1.79-5.3,4-5.3s4,2.377,4,5.303c0,2.049-0.898,4.09-2.238,5.084-0.101,0.078-0.162,0.201-0.162,0.33v0.297c0,1.292,1.31,1.633,1.999,1.633,3.95,0.41,4.38,5.13,4.4,5.36h-16z"/>
-</svg>
\ No newline at end of file
+<path d="M16,17.303c0-2.155,0.775-4.09,2-5.428V4H6v16h10.406C16.146,19.14,16,18.227,16,17.303z"/>
+<path d="M12.769,26.846C12.532,26.944,12.272,27,12,27c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.061,0,1.92,0.828,1.987,1.872 c0.883-1.044,2.104-1.882,3.774-2.157c-0.391-0.512-0.723-1.092-0.992-1.715H5V3h14v7.988c0.607-0.43,1.282-0.73,2-0.878V3 c0-1.104-0.896-2-2-2H5C3.896,1,3,1.896,3,3v24c0,1.104,0.896,2,2,2h7.114C12.232,28.339,12.441,27.592,12.769,26.846z M8,26H5v-2h3 V26z"/>
+<path d="M14,30c0.016-0.232,0.448-4.95,4.398-5.354c0.908-0.02,1.999-0.459,1.999-1.633v-0.297c0-0.129-0.06-0.252-0.163-0.33 C18.898,21.393,18,19.352,18,17.303C18,14.377,19.794,12,22,12s4,2.377,4,5.303c0,2.049-0.898,4.09-2.238,5.084 c-0.101,0.078-0.162,0.201-0.162,0.33v0.297c0,1.292,1.31,1.633,1.999,1.633C29.553,25.05,29.982,29.768,30,30H14z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contacts.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contacts.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<rect height="11" width="2" x="26" y="4"/>
<rect height="28" width="2" x="1" y="1"/>
-<path d="M23,1h-18v28h18c1.105,0,2-0.896,2-2v-24c0-1.105-0.9-2-2-2zm-14,20c0.014-0.168,0.336-3.576,3.301-3.867,0.68-0.014,1.5-0.332,1.5-1.18v-0.21c0-0.094-0.047-0.184-0.123-0.24-1.01-0.72-1.68-2.19-1.68-3.67,0-2.113,1.35-3.83,3-3.83s3,1.717,3,3.83c0,1.479-0.674,2.953-1.678,3.67-0.076,0.057-0.121,0.146-0.121,0.24v0.213c0,0.934,0.98,1.18,1.498,1.18,2.96,0.29,3.29,3.7,3.3,3.87h-12z"/>
-</svg>
\ No newline at end of file
+<path d="M23,1H5v28h18c1.105,0,2-0.896,2-2V3C25,1.895,24.105,1,23,1z M9,21c0.014-0.168,0.336-3.576,3.301-3.867 c0.68-0.014,1.5-0.332,1.5-1.18V15.74c0-0.094-0.047-0.184-0.123-0.24C12.674,14.783,12,13.309,12,11.83C12,9.717,13.346,8,15,8 s3,1.717,3,3.83c0,1.479-0.674,2.953-1.678,3.67c-0.076,0.057-0.121,0.146-0.121,0.24v0.213c0,0.934,0.98,1.18,1.498,1.18 C20.664,17.424,20.988,20.832,21,21H9z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_continuous_capture.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_continuous_capture.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M28,12h-1v13h-15v1c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2v-12c0-1.1-0.9-2-2-2z"/>
-<path d="M23,7h-1v13h-15v1c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2v-12c0-1.104-0.9-2-2-2z"/>
-<path d="M18,2h-14c-1.104,0-2,0.896-2,2v12c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2v-12c0-1.104-0.9-2-2-2zm-1,13h-12v-10h12v10z"/>
-</svg>
\ No newline at end of file
+<path d="M28,12h-1v13H12v1c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2V14C30,12.896,29.104,12,28,12z"/>
+<path d="M23,7h-1v13H7v1c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2V9C25,7.896,24.104,7,23,7z"/>
+<path d="M18,2H4C2.896,2,2,2.896,2,4v12c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2V4C20,2.896,19.104,2,18,2z M17,15H5V5h12V15z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,2c-7.18,0-13,5.82-13,13s5.82,13,13,13,13-5.82,13-13-5.82-13-13-13zm0,23c-5.523,0-10-4.48-10-10s4.477-10,10-10v20z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M15,2C7.82,2,2,7.82,2,15s5.82,13,13,13s13-5.82,13-13S22.18,2,15,2z M15,25C9.477,25,5,20.523,5,15S9.477,5,15,5V25z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast_high.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast_high.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-</svg>
\ No newline at end of file
+<rect fill="none" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="30"/>
+<g>
+<path d="M14.998,0.999C7.279,0.999,1,7.277,1,14.998C1,22.721,7.279,29,14.998,29C22.721,29,29,22.721,29,14.998 C29,7.277,22.721,0.999,14.998,0.999 M22.08,18.762h-3.305v3.309h-3.777v4.385c-6.316,0-11.455-5.139-11.455-11.457 c0-6.313,5.139-11.453,11.455-11.453v4.643h3.777v3.312h3.305V18.762z"/>
+<polygon points="10.125,16.84 13.428,16.84 13.428,20.15 16.852,20.15 16.852,16.84 20.158,16.84 20.158,13.42 16.852,13.42 16.852,10.109 13.428,10.109 13.428,13.42 10.125,13.42 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast_low.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_contrast_low.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M0,0v30h30v-30h-30zm28.24,26.99l-6.012-6.012-0.454,2.042,5.218,5.219h-24.37l5.535-5.534-0.454-2.042-5.942,5.941v-23.6l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202-2.479-1.04-3.137-2.756-3.311-3.69l-3.856-3.856h23.59l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738v24.36z" fill-opacity="0.5" stroke-opacity="0.5"/>
-<rect height="3.519" width="17.65" x="6.177" y="13.25"/>
-<polygon points="9.706,25.59,20.29,25.59,22.06,17.65,7.941,17.65"/>
-<path d="M10.52,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766v-3.871c0.866,0.304,2.249,0.588,3.599,0.017,2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01c-0.032-0.31-0.328-1.98-2.973-3.101-2.925-1.238-4.335,0.06-4.335,0.06s-0.102,2.261,2.825,3.499z"/>
-</svg>
\ No newline at end of file
+<rect fill="none" fill-opacity="0.3" height="30" stroke-opacity="0.3" width="30"/>
+<g>
+<path d="M15,1C7.279,1,1,7.279,1,15s6.279,14,14,14c7.72,0,14-6.279,14-14S22.72,1,15,1 M22.083,18.762H15v7.695 C8.681,26.457,3.543,21.32,3.543,15C3.543,8.688,8.681,3.549,15,3.549V11.5h7.083V18.762z"/>
+<rect height="3.418" width="10.034" x="9.983" y="13.291"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_corrupted.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_corrupted.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24,1h-6.382l-3.31,6.619,5.207,3.124-5,6,4.822,2.894-5.11,9.37h9.77c1.104,0,2-0.896,2-2v-24c0-1.105-0.9-2-2-2z"/>
-<path d="M16.66,20.36l-5.178-3.106,5-6-4.793-2.876,3.69-7.374h-9.38c-1.104,0-2,0.895-2,2v19l7,7h0.951l4.71-8.64zm-5.66,6.52l-4.879-4.88h2.879c1.104,0,2,0.895,2,2v2.879z"/>
-</svg>
\ No newline at end of file
+<path d="M24,1h-6.382l-3.31,6.619l5.207,3.124l-5,6l4.822,2.894L14.23,29H24c1.104,0,2-0.896,2-2V3C26,1.895,25.104,1,24,1z"/>
+<path d="M16.662,20.363l-5.178-3.106l5-6l-4.793-2.876L15.382,1H6C4.896,1,4,1.895,4,3v19l7,7h0.951L16.662,20.363z M11,26.879 L6.121,22H9c1.104,0,2,0.895,2,2V26.879z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-3.96 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="13.32,24.47,15.44,26.59,9.78,28,11.2,22.35"/>
-<path d="M9.256,21.86c0.081-0.323,0.48-0.822,0.804-1.188-2.09-0.273-3.729-1.016-4.905-2.242-1.513-1.576-2.27-3.941-2.27-7.096,0-2.807,0.815-5.011,2.447-6.61s3.755-2.399,6.371-2.399c2.488,0,4.404,0.754,5.749,2.263,1.344,1.509,2.017,3.648,2.017,6.419,0,0.083-0.008,0.154-0.009,0.236l0.923-0.924c0.391-0.391,0.902-0.586,1.414-0.586,0.105,0,0.21,0.014,0.314,0.03-0.177-2.912-1.073-5.219-2.697-6.912-1.81-1.902-4.4-2.852-7.75-2.852-3.374,0-6.159,1.017-8.355,3.049-2.196,2.033-3.295,4.84-3.295,8.421,0,3.756,1.066,6.641,3.199,8.654,1.542,1.456,3.478,2.377,5.795,2.781l0.262-1.04z"/>
-<path d="M12.72,5.154c-2.215,0-3.981,0.693-5.298,2.078-1.322,1.386-1.981,3.298-1.981,5.728,0,1.577,0.374,2.816,1.121,3.719s1.668,1.354,2.762,1.354c0.812,0,1.511-0.189,2.099-0.567s1.142-1.06,1.661-2.044c0.163,0.577,0.416,1.055,0.747,1.448l1.886-1.886c-0.009-0.027-0.021-0.045-0.028-0.075-0.096-0.378-0.144-0.918-0.144-1.62,0-1.768,0.319-4.479,0.957-8.135h-3.795zm-0.28,6.156c-0.219,1.714-0.499,2.908-0.841,3.582-0.342,0.675-0.781,1.012-1.319,1.012-0.602,0-1.019-0.241-1.251-0.725-0.232-0.482-0.349-1.267-0.349-2.352,0-1.695,0.333-3.039,0.998-4.033,0.665-0.993,1.472-1.49,2.42-1.49h0.848l-0.51,4.003z"/>
-<polygon points="12.26,21.28,16.49,25.52,26.04,15.98,21.8,11.73,12.25,21.28"/>
-</svg>
\ No newline at end of file
+<polygon points="13.317,24.467 15.438,26.59 9.78,28 11.196,22.346 "/>
+<path d="M9.256,21.859c0.081-0.323,0.48-0.822,0.804-1.188c-2.09-0.273-3.729-1.016-4.905-2.242c-1.513-1.576-2.27-3.941-2.27-7.096 c0-2.807,0.815-5.011,2.447-6.61s3.755-2.399,6.371-2.399c2.488,0,4.404,0.754,5.749,2.263c1.344,1.509,2.017,3.648,2.017,6.419 c0,0.083-0.008,0.154-0.009,0.236l0.923-0.924c0.391-0.391,0.902-0.586,1.414-0.586c0.105,0,0.21,0.014,0.314,0.03 c-0.177-2.912-1.073-5.219-2.697-6.912C17.591,0.95,15.003,0,11.648,0C8.276,0,5.491,1.017,3.295,3.049 C1.099,5.082,0,7.889,0,11.471c0,3.756,1.066,6.641,3.199,8.654c1.542,1.456,3.478,2.377,5.795,2.781L9.256,21.859z"/>
+<path d="M12.715,5.154c-2.215,0-3.981,0.693-5.298,2.078C6.1,8.618,5.441,10.527,5.441,12.961c0,1.577,0.374,2.816,1.121,3.719 s1.668,1.354,2.762,1.354c0.812,0,1.511-0.189,2.099-0.567s1.142-1.06,1.661-2.044c0.163,0.577,0.416,1.055,0.747,1.448l1.886-1.886 c-0.009-0.027-0.021-0.045-0.028-0.075c-0.096-0.378-0.144-0.918-0.144-1.62c0-1.768,0.319-4.479,0.957-8.135H12.715z M12.441,11.307c-0.219,1.714-0.499,2.908-0.841,3.582c-0.342,0.675-0.781,1.012-1.319,1.012c-0.602,0-1.019-0.241-1.251-0.725 c-0.232-0.482-0.349-1.267-0.349-2.352c0-1.695,0.333-3.039,0.998-4.033c0.665-0.993,1.472-1.49,2.42-1.49h0.848L12.441,11.307z"/>
+<polygon points="12.257,21.285 16.492,25.523 26.04,15.975 21.797,11.732 12.251,21.279 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_event.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_event.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="17.28,26.47,19.4,28.59,13.74,30,15.16,24.35"/>
-<polygon points="16.22,23.28,20.45,27.52,30,17.98,25.76,13.73,16.21,23.28"/>
-<path d="M13.22,23.86c0.151-0.603,1.387-1.802,1.579-1.994l9.547-9.547c0.194-0.194,0.419-0.34,0.658-0.438v-8.88c0-1.104-0.896-2-2-2h-18.01c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h6.929l1.29-5.14zm-3.22-17.86h11v2h-11v-2zm-1,2h-2v-2h2v2z"/>
-<path d="M21.86,28.94c-0.023,0.023-0.052,0.04-0.076,0.063h1.22c1.104,0,2-0.896,2-2v-1.197l-3.14,3.14z"/>
-</svg>
\ No newline at end of file
+<polygon points="17.277,26.467 19.396,28.59 13.74,30 15.156,24.346 "/>
+<polygon points="16.217,23.285 20.451,27.523 30,17.975 25.756,13.732 16.209,23.279 "/>
+<path d="M13.216,23.859c0.151-0.603,1.387-1.802,1.579-1.994l9.547-9.547c0.194-0.194,0.419-0.34,0.658-0.438V3c0-1.104-0.896-2-2-2 H5C3.896,1,3,1.896,3,3v24c0,1.104,0.896,2,2,2h6.929L13.216,23.859z M10,6h11v2H10V6z M9,8H7V6h2V8z"/>
+<path d="M21.865,28.938c-0.023,0.023-0.052,0.04-0.076,0.063H23c1.104,0,2-0.896,2-2v-1.197L21.865,28.938z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_message.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_create_message.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon points="8.268,16.73,0,9.818,0,23.55"/>
-<path d="M0.127,7.318l11.31,9.449c0.46,0.354,0.907,0.555,1.402,0.566h0.113c0.494-0.012,0.942-0.213,1.401-0.566l11.51-9.495c-0.29-0.747-1.01-1.275-1.86-1.275h-22c-0.863,0-1.593,0.551-1.873,1.318z"/>
-<polygon points="17.28,26.47,19.4,28.59,13.74,30,15.16,24.35"/>
-<polygon points="16.22,23.28,20.45,27.52,30,17.98,25.76,13.73,16.21,23.28"/>
-<path d="M24.34,12.32c0.375-0.375,0.885-0.586,1.415-0.586h0.001c0.082,0,0.162,0.014,0.242,0.023v-2.001l-8.271,6.824,1.288,1.076,5.32-5.33z"/>
-<path d="M13.18,24.01c0.061-0.341,0.208-0.668,0.445-0.945,0.037-0.045,0.076-0.088,0.117-0.129l4.566-4.572-1.363-1.14-1.321,1.09c-0.882,0.682-1.724,1.002-2.626,1.023l-0.023,0.001h-0.138c-0.948-0.022-1.791-0.343-2.621-0.98l-1.167-0.976-8.907,7.349c0.288,0.75,1.007,1.28,1.854,1.28h10.68l0.5-1.99z"/>
-</svg>
\ No newline at end of file
+</g>
+<polygon points="8.268,16.726 0,9.818 0,23.547 "/>
+<path d="M0.127,7.318l11.308,9.449c0.46,0.354,0.907,0.555,1.402,0.566c0.021,0,0.093,0,0.113,0 c0.494-0.012,0.942-0.213,1.401-0.566l11.508-9.495C25.568,6.528,24.848,6,24,6H2C1.137,6,0.407,6.551,0.127,7.318z"/>
+<polygon points="17.277,26.467 19.398,28.59 13.74,30 15.156,24.346 "/>
+<polygon points="16.217,23.285 20.453,27.523 30,17.975 25.758,13.732 16.21,23.279 "/>
+<path d="M24.342,12.318c0.375-0.375,0.885-0.586,1.415-0.586c0,0,0,0,0.001,0c0.082,0,0.162,0.014,0.242,0.023V9.749l-8.271,6.824 l1.288,1.076L24.342,12.318z"/>
+<path d="M13.18,24.006c0.061-0.341,0.208-0.668,0.445-0.945c0.037-0.045,0.076-0.088,0.117-0.129l4.566-4.572l-1.363-1.14 l-1.321,1.09c-0.882,0.682-1.724,1.002-2.626,1.023l-0.023,0.001h-0.138c-0.948-0.022-1.791-0.343-2.621-0.98l-1.167-0.976 l-8.907,7.349C0.434,25.471,1.153,26,2,26h10.681L13.18,24.006z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_day_light_saving_time.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_day_light_saving_time.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,1c-7.733,0-14,6.268-14,14,0,7.73,6.267,14,14,14,7.73,0,14-6.27,14-14,0-7.732-6.27-14-14-14zm0,25c-6.076,0-11-4.93-11-11,0-6.076,4.925-11,11-11,6.074,0,11,4.924,11,11,0,6.07-4.93,11-11,11z"/>
-<path d="M24.71,14.3h-2.526v1.5h1.017c-0.164,1.705-0.851,3.255-1.896,4.498l-0.725-0.725-1.061,1.061,1.768,1.768,0.007-0.007,0.021,0.02c2.097-1.79,3.432-4.445,3.432-7.411,0-0.25-0.02-0.48-0.04-0.71z"/>
-<path d="M20.94,14.01h-4.906v-8.002h-2v9h0.001c0,0.002-0.001,0.004-0.001,0.006,0,0.238,0.095,0.447,0.233,0.618l4.212,4.272,1.414-1.414-2.477-2.477h3.523v-2.006z"/>
-</svg>
\ No newline at end of file
+<path d="M15,1C7.267,1,1,7.268,1,15c0,7.73,6.267,14,14,14c7.73,0,14-6.27,14-14C29,7.268,22.73,1,15,1z M15,26 C8.924,26,3.999,21.074,3.999,15C3.999,8.924,8.924,4,15,4c6.074,0,11,4.924,11,11C26,21.074,21.074,26,15,26z"/>
+<path d="M24.714,14.297h-0.026h-2.5v1.5h1.017c-0.164,1.705-0.851,3.255-1.896,4.498l-0.725-0.725l-1.061,1.061l1.768,1.768 l0.007-0.007l0.021,0.02c2.097-1.79,3.432-4.445,3.432-7.411C24.75,14.763,24.731,14.53,24.714,14.297z"/>
+<path d="M20.938,14.014h-4.906V6.008h-2v9h0.001c0,0.002-0.001,0.004-0.001,0.006c0,0.238,0.095,0.447,0.233,0.618l4.212,4.272 l1.414-1.414l-2.477-2.477h3.523V14.014z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_delete.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_delete.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M5,9v18c-0.001,1.104,0.894,2,1.999,2h16c1.104,0,2-0.896,2-2v-18h-20zm6,16h-2v-13h2v13zm5,0h-2v-13h2v13zm5,0h-2v-13h2v13z"/>
-<path d="M27,5.5c0,0.828-0.672,1.5-1.5,1.5h-21c-0.83,0-1.5-0.672-1.5-1.5s0.67-1.5,1.5-1.5h21c0.83,0,1.5,0.672,1.5,1.5z"/>
-<path d="M18,1.995c0-0.55-0.45-0.995-1-0.995h-4.001c-0.552,0-1,0.448-1,1v1h6v-1.005z"/>
-</svg>
\ No newline at end of file
+<path d="M5,9v18c-0.001,1.104,0.894,2,1.999,2h16c1.104,0,2-0.896,2-2V9H5z M10.999,25h-2V12h2V25z M15.999,25h-2V12h2V25z M20.999,25h-2V12h2V25z"/>
+<path d="M26.999,5.5c0,0.828-0.672,1.5-1.5,1.5h-21c-0.83,0-1.5-0.672-1.5-1.5l0,0c0-0.828,0.67-1.5,1.5-1.5h21 C26.327,4,26.999,4.672,26.999,5.5L26.999,5.5z"/>
+<path d="M17.999,1.995C17.996,1.445,17.551,1,17,1h-4.001c-0.552,0-1,0.448-1,1v1h6V1.995z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_details.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_details.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M20.59,26.31c-1.112,0.479-2.319,0.736-3.567,0.736-2.41,0-4.675-0.939-6.379-2.644-0.43-0.44-0.813-0.91-1.144-1.41h-1.496v-2h0.512c-0.33-0.94-0.512-1.95-0.512-2.98,0,0,0.001-0.01,0.001-0.02h-0.001v-2h0.235c0.245-1.071,0.676-2.087,1.29-3h-1.525v-2h3.362c1.599-1.294,3.574-2,5.66-2,2.23,0,4.33,0.811,5.98,2.28v-8.28c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v24c0,1.105,0.896,2,2,2h18c0.381,0,0.734-0.112,1.037-0.297l-0.518-0.518c-0.51-0.51-0.83-1.16-0.93-1.87zm-12.59-20.31h11v2h-11v-2zm-1,17h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2z"/>
-<path d="M12.06,13.06c-2.742,2.742-2.742,7.188,0,9.93,2.742,2.743,7.188,2.743,9.93,0,2.744-2.742,2.744-7.188,0.002-9.931-2.75-2.75-7.19-2.75-9.93,0zm8.51,8.51c-1.957,1.959-5.135,1.959-7.093,0-1.959-1.958-1.959-5.133,0-7.093,1.96-1.959,5.136-1.959,7.095-0.001,1.95,1.95,1.95,5.13-0.01,7.09z"/>
-<path d="M28.61,26.77l-2.836,2.837c0.521,0.522,1.368,0.522,1.891,0l0.945-0.945c0.53-0.52,0.53-1.37,0.01-1.89z"/>
-<path d="M25.77,23.93c-0.439-0.438-1.097-0.485-1.607-0.188l-0.81-0.81c-0.204,0.262-0.42,0.518-0.661,0.759-0.238,0.239-0.494,0.455-0.757,0.66l0.809,0.81c-0.298,0.512-0.249,1.169,0.189,1.607l1.891,1.892,2.837-2.837-1.89-1.89z"/>
-<path d="M19.83,17.16h-1.672v-1.673c0-0.554-0.449-1.004-1.003-1.004s-1.003,0.45-1.003,1.004v1.673h-1.672c-0.555,0-1.004,0.449-1.004,1.003,0,0.553,0.449,1.003,1.004,1.003h1.672v1.672c0,0.554,0.449,1.003,1.003,1.003s1.003-0.449,1.003-1.003v-1.672h1.672c0.555,0,1.004-0.45,1.004-1.003,0.01-0.55-0.44-1-1-1z"/>
-</svg>
\ No newline at end of file
+<path d="M20.589,26.309c-1.112,0.479-2.319,0.736-3.567,0.736c-2.41,0-4.675-0.939-6.379-2.644C10.209,23.969,9.827,23.498,9.496,23 H8v-2h0.512C8.182,20.055,8,19.054,8,18.022C8,18.015,8.001,18.008,8.001,18H8v-2h0.235c0.245-1.071,0.676-2.087,1.29-3H8v-2h3.362 c1.599-1.294,3.574-2,5.66-2C19.25,9,21.349,9.811,23,11.277V3c0-1.104-0.896-2-2-2H3C1.896,1,1,1.896,1,3v24c0,1.105,0.896,2,2,2 h18c0.381,0,0.734-0.112,1.037-0.297l-0.518-0.518C21.006,27.672,20.691,27.017,20.589,26.309z M8,6h11v2H8V6z M7,23H5v-2h2V23z M7,18H5v-2h2V18z M7,13H5v-2h2V13z M7,8H5V6h2V8z"/>
+<path d="M12.057,13.058c-2.742,2.742-2.742,7.188,0,9.93c2.742,2.743,7.188,2.743,9.93,0c2.744-2.742,2.744-7.188,0.002-9.931 C19.245,10.314,14.799,10.314,12.057,13.058z M20.568,21.568c-1.957,1.959-5.135,1.959-7.093,0c-1.959-1.958-1.959-5.133,0-7.093 c1.96-1.959,5.136-1.959,7.095-0.001C22.527,16.434,22.527,19.61,20.568,21.568z"/>
+<path d="M28.607,26.771l-2.836,2.837c0.521,0.522,1.368,0.522,1.891,0l0.945-0.945C29.131,28.141,29.131,27.294,28.607,26.771z"/>
+<path d="M25.771,23.934c-0.439-0.438-1.097-0.485-1.607-0.188l-0.81-0.81c-0.204,0.262-0.42,0.518-0.661,0.759 c-0.238,0.239-0.494,0.455-0.757,0.66l0.809,0.81c-0.298,0.512-0.249,1.169,0.189,1.607l1.891,1.892l2.837-2.837L25.771,23.934z"/>
+<path d="M19.834,17.157h-1.672v-1.673c0-0.554-0.449-1.004-1.003-1.004s-1.003,0.45-1.003,1.004v1.673h-1.672 c-0.555,0-1.004,0.449-1.004,1.003c0,0.553,0.449,1.003,1.004,1.003h1.672v1.672c0,0.554,0.449,1.003,1.003,1.003 s1.003-0.449,1.003-1.003v-1.672h1.672c0.555,0,1.004-0.45,1.004-1.003C20.838,17.606,20.389,17.157,19.834,17.157z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_dialer.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_dialer.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M10,7h-6v-3c0-1.104,0.896-2,2-2h4v5z"/>
-<path d="M20,7h6v-3c0-1.104-0.896-2-2-2h-4v5z"/>
+</g>
+<path d="M10,7H4V4c0-1.104,0.896-2,2-2h4V7z"/>
+<path d="M20,7h6V4c0-1.104-0.896-2-2-2h-4V7z"/>
<rect height="5" width="6" x="12" y="2"/>
<rect height="5" width="6" x="12" y="9"/>
<rect height="5" width="6" x="4" y="9"/>
<rect height="5" width="6" x="20" y="9"/>
-<path d="M10,16h-6v3c0,1.104,0.896,2,2,2h4v-5z"/>
-<path d="M20,16h6v3c0,1.104-0.896,2-2,2h-4v-5z"/>
+<path d="M10,16H4v3c0,1.104,0.896,2,2,2h4V16z"/>
+<path d="M20,16h6v3c0,1.104-0.896,2-2,2h-4V16z"/>
<rect height="5" width="6" x="12" y="16"/>
-<path d="M18,26c0,1.104-0.896,2-2,2h-2c-1.104,0-2-0.896-2-2v-3h2,2,2v3z"/>
-</svg>
\ No newline at end of file
+<path d="M18,26c0,1.104-0.896,2-2,2h-2c-1.104,0-2-0.896-2-2v-3c0,0,0.896,0,2,0h2c1.104,0,2,0,2,0V26z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_disconnect.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_disconnect.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21.15,17l3.986,3.986c1.04-0.08,1.86-0.93,1.86-1.99,0-1.104-0.896-2-2-2h-3.85z"/>
-<path d="M12.85,17h-8.85c-0.132,0-0.263,0.014-0.393,0.039-0.057,0.012-0.108,0.033-0.163,0.049-0.07,0.021-0.142,0.037-0.21,0.064-0.064,0.03-0.123,0.07-0.183,0.1-0.053,0.029-0.109,0.053-0.16,0.088-0.219,0.146-0.408,0.334-0.554,0.553-0.032,0.049-0.056,0.102-0.083,0.152-0.035,0.064-0.073,0.125-0.102,0.191-0.026,0.066-0.042,0.135-0.063,0.203-0.017,0.057-0.039,0.111-0.051,0.172-0.051,0.258-0.051,0.523,0,0.783,0.012,0.059,0.034,0.113,0.051,0.17,0.021,0.068,0.036,0.137,0.063,0.203,0.028,0.066,0.066,0.127,0.102,0.191,0.027,0.051,0.051,0.104,0.083,0.152,0.073,0.109,0.157,0.213,0.251,0.307l5.654,5.656c0.781,0.779,2.048,0.779,2.828,0,0.781-0.781,0.781-2.049,0-2.83l-2.242-2.23h8.025l-4-4z"/>
-<path d="M17.15,13h8.85c0.132,0,0.263-0.014,0.393-0.04,0.057-0.011,0.108-0.032,0.163-0.048,0.07-0.021,0.142-0.037,0.21-0.065,0.064-0.027,0.123-0.064,0.184-0.097,0.053-0.029,0.109-0.053,0.16-0.087,0.219-0.146,0.408-0.335,0.554-0.554,0.032-0.049,0.056-0.102,0.083-0.152,0.035-0.063,0.073-0.125,0.102-0.191,0.026-0.066,0.042-0.135,0.063-0.202,0.017-0.058,0.039-0.112,0.051-0.171,0.051-0.258,0.051-0.525,0-0.783-0.012-0.059-0.034-0.114-0.051-0.171-0.021-0.067-0.036-0.136-0.063-0.202-0.028-0.067-0.066-0.128-0.102-0.191-0.027-0.051-0.051-0.104-0.083-0.152-0.073-0.11-0.157-0.213-0.251-0.307l-5.654-5.656c-0.781-0.781-2.048-0.781-2.828,0-0.781,0.781-0.781,2.047,0,2.829l2.25,2.236h-8.02l4,4z"/>
-<path d="M8.854,13l-3.987-3.987c-1.041,0.07-1.867,0.928-1.867,1.987,0,1.104,0.896,2,2,2h3.854z"/>
-<path d="M3.627,2.306c-0.389-0.389-1.004-0.41-1.367-0.048-0.364,0.363-0.342,0.978,0.047,1.367l24.07,24.07c0.389,0.389,1.004,0.408,1.366,0.045s0.341-0.979-0.048-1.367l-24.07-24.06z"/>
-</svg>
\ No newline at end of file
+<path d="M21.15,17l3.986,3.986C26.176,20.914,27,20.059,27,19c0-1.104-0.896-2-2-2H21.15z"/>
+<path d="M12.854,17H4l0,0c-0.132,0-0.263,0.014-0.393,0.039c-0.057,0.012-0.108,0.033-0.163,0.049 c-0.07,0.021-0.142,0.037-0.21,0.064C3.17,17.18,3.111,17.217,3.051,17.25c-0.053,0.029-0.109,0.053-0.16,0.088 c-0.219,0.146-0.408,0.334-0.554,0.553c-0.032,0.049-0.056,0.102-0.083,0.152c-0.035,0.064-0.073,0.125-0.102,0.191 c-0.026,0.066-0.042,0.135-0.063,0.203c-0.017,0.057-0.039,0.111-0.051,0.172c-0.051,0.258-0.051,0.523,0,0.783 c0.012,0.059,0.034,0.113,0.051,0.17c0.021,0.068,0.036,0.137,0.063,0.203c0.028,0.066,0.066,0.127,0.102,0.191 c0.027,0.051,0.051,0.104,0.083,0.152c0.073,0.109,0.157,0.213,0.251,0.307l5.654,5.656c0.781,0.779,2.048,0.779,2.828,0 c0.781-0.781,0.781-2.049,0-2.83L8.828,21h8.025L12.854,17z"/>
+<path d="M17.15,13H26l0,0c0.132,0,0.263-0.014,0.393-0.04c0.057-0.011,0.108-0.032,0.163-0.048c0.07-0.021,0.142-0.037,0.21-0.065 c0.064-0.027,0.123-0.064,0.184-0.097c0.053-0.029,0.109-0.053,0.16-0.087c0.219-0.146,0.408-0.335,0.554-0.554 c0.032-0.049,0.056-0.102,0.083-0.152c0.035-0.063,0.073-0.125,0.102-0.191c0.026-0.066,0.042-0.135,0.063-0.202 c0.017-0.058,0.039-0.112,0.051-0.171c0.051-0.258,0.051-0.525,0-0.783c-0.012-0.059-0.034-0.114-0.051-0.171 c-0.021-0.067-0.036-0.136-0.063-0.202c-0.028-0.067-0.066-0.128-0.102-0.191c-0.027-0.051-0.051-0.104-0.083-0.152 c-0.073-0.11-0.157-0.213-0.251-0.307l-5.654-5.656c-0.781-0.781-2.048-0.781-2.828,0c-0.781,0.781-0.781,2.047,0,2.829L21.172,9 H13.15L17.15,13z"/>
+<path d="M8.854,13L4.867,9.013C3.826,9.083,3,9.941,3,11c0,1.104,0.896,2,2,2H8.854z"/>
+<path d="M3.627,2.306C3.238,1.917,2.623,1.896,2.26,2.258C1.896,2.621,1.918,3.236,2.307,3.625l24.068,24.071 c0.389,0.389,1.004,0.408,1.366,0.045s0.341-0.979-0.048-1.367L3.627,2.306z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drm_rights_expired.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drm_rights_expired.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.363,0.979-0.341,1.367,0.048l24.06,24.06z"/>
-<path d="M17.15,13h0.85v0.85l1.768,1.767c0.14-0.17,0.23-0.38,0.23-0.62v-2.775c1.041-0.593,2.136-1.309,2.136-1.309,0.529-0.418,0.915-1.316,0.858-1.996,0,0-0.68-4.737-1.039-5.313,0,0-1.628-2.606-7.067-2.606-5.44,0-6.805,2.595-6.805,2.595-0.032,0.054-0.065,0.142-0.099,0.246l9.164,9.164zm-5.15-8h6c0.553,0,1,0.447,1,1s-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1s0.45-1,1-1z"/>
-<path d="M15.7,19.84l1.15,1.239-1.277,1.375,1.43,1.39v0.433l-2,2.413-2-2.412v-7.133l-3-3v0.85c0,0.549,0.442,0.992,0.99,0.998h0.01v9l3.315,4h1.368l3.31-4v-1.853l-3.3-3.31z"/>
-</svg>
\ No newline at end of file
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.363,0.979-0.341,1.367,0.048L27.693,26.372z"/>
+<path d="M17.15,13H18v0.85l1.768,1.767C19.906,15.446,20,15.237,20,15v-2.775c1.041-0.593,2.136-1.309,2.136-1.309 c0.529-0.418,0.915-1.316,0.858-1.996c0,0-0.68-4.737-1.039-5.313c0,0-1.628-2.606-7.067-2.606c-5.44,0-6.805,2.595-6.805,2.595 C8.053,3.644,8.02,3.732,7.986,3.836L17.15,13z M12,5h6c0.553,0,1,0.447,1,1s-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1S11.447,5,12,5z"/>
+<path d="M15.695,19.842l1.15,1.239l-1.277,1.375L17,23.846v0.433l-2,2.413l-2-2.412v-7.133l-3-3V15c0,0.549,0.442,0.992,0.99,0.998 H11V16v9l3.315,4h1.368L19,25v-1.853L15.695,19.842z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drop_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_drop_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M0,19.08c0.012-0.181,0.336-3.851,3.299-4.164,0.681-0.015,1.499-0.357,1.499-1.27v-0.23c0-0.101-0.045-0.196-0.122-0.258-1.002-0.77-1.676-2.07-1.676-3.66,0-2.275,1.345-3.417,3-3.417,1.653,0,3,1.142,3,3.417,0,1.594-0.675,2.889-1.679,3.661-0.075,0.062-0.122,0.157-0.122,0.258v0.23c0,1.005,0.981,1.27,1.5,1.27,2.965,0.313,3.286,3.983,3.301,4.164h-12z"/>
-<path d="M12.84,13.08l-1.519-1.519c-0.566-0.566-0.879-1.32-0.879-2.121s0.313-1.555,0.879-2.121c0.462-0.462,1.051-0.744,1.686-0.836,0.61-0.761,0.99-1.788,0.99-2.982,0-2.275-1.347-3.417-3-3.417-1.655,0-3,1.142-3,3.417,0,1.594,0.674,2.889,1.676,3.661,0.077,0.062,0.122,0.157,0.122,0.258v0.23c0,0.093-0.014,0.175-0.029,0.256,0.139,0.473,0.231,0.994,0.231,1.595,0,1.365-0.431,2.614-1.198,3.583h4.039z"/>
-<path d="M23.53,15.29c0.91-1.31,1.47-3.05,1.47-4.81,0-3.575-2.24-6.48-5-6.48-1.889,0-3.535,1.363-4.386,3.371l7.92,7.919z"/>
-<path d="M17.87,18.11c-0.349,0.942-1.434,1.322-2.374,1.343-4.94,0.5-5.48,6.27-5.5,6.55h15.76l-7.89-7.89z"/>
-<path d="M29.71,24.29c0.391,0.391,0.391,1.023,0,1.414s-1.023,0.391-1.414,0l-15.56-15.55c-0.391-0.391-0.391-1.023,0-1.414s1.024-0.391,1.415,0l15.55,15.55z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M0,19.083c0.012-0.181,0.336-3.851,3.299-4.164c0.681-0.015,1.499-0.357,1.499-1.27v-0.23c0-0.101-0.045-0.196-0.122-0.258 C3.674,12.389,3,11.094,3,9.5c0-2.275,1.345-3.417,3-3.417c1.653,0,3,1.142,3,3.417c0,1.594-0.675,2.889-1.679,3.661 c-0.075,0.062-0.122,0.157-0.122,0.258v0.23c0,1.005,0.981,1.27,1.5,1.27c2.965,0.313,3.286,3.983,3.301,4.164H0z"/>
+<path d="M12.841,13.083l-1.519-1.519c-0.566-0.566-0.879-1.32-0.879-2.121s0.313-1.555,0.879-2.121 c0.462-0.462,1.051-0.744,1.686-0.836C13.621,5.721,14,4.694,14,3.5c0-2.275-1.347-3.417-3-3.417c-1.655,0-3,1.142-3,3.417 c0,1.594,0.674,2.889,1.676,3.661c0.077,0.062,0.122,0.157,0.122,0.258v0.23c0,0.093-0.014,0.175-0.029,0.256 C9.908,8.378,10,8.899,10,9.5c0,1.365-0.431,2.614-1.198,3.583H12.841z"/>
+<path d="M23.531,15.289C24.439,13.98,25,12.238,25,10.481C25,6.905,22.757,4,20,4c-1.889,0-3.535,1.363-4.386,3.371L23.531,15.289z"/>
+<path d="M17.872,18.114c-0.349,0.942-1.434,1.322-2.374,1.343C10.561,19.949,10.02,25.716,10,26h15.758L17.872,18.114z"/>
+<path d="M29.707,24.293c0.391,0.391,0.391,1.023,0,1.414l0,0c-0.391,0.391-1.023,0.391-1.414,0L12.736,10.15 c-0.391-0.391-0.391-1.023,0-1.414l0,0c0.391-0.391,1.024-0.391,1.415,0L29.707,24.293z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_edit.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_edit.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M28.85,8.575l-7.072-7.071c-0.78-0.78-2.047-0.78-2.828,0l-12.73,12.73,9.899,9.899,12.73-12.73c0.78-0.78,0.78-2.044,0-2.825z"/>
-<path d="M4.986,15.82c-0.014,0.043-0.04,0.079-0.051,0.123l-1.824,7.902,3.393,3.391,7.902-1.823c0.044-0.011,0.08-0.037,0.123-0.05l-9.544-9.54z"/>
-<polygon points="2.686,24.84,0.564,26.96,4.101,29.08,5.516,27.67"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M28.85,8.575l-7.072-7.071c-0.78-0.78-2.047-0.78-2.828,0L6.222,14.232l9.899,9.899L28.85,11.403 C29.631,10.623,29.631,9.356,28.85,8.575z"/>
+<path d="M4.986,15.825c-0.014,0.043-0.04,0.079-0.051,0.123l-1.824,7.902l3.393,3.391l7.902-1.823 c0.044-0.011,0.08-0.037,0.123-0.05L4.986,15.825z"/>
+<polygon points="2.686,24.839 0.564,26.96 4.101,29.082 5.516,27.667 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="29,7.309,29,1.119,1,1.119,1,28.87,29,28.88,29,22.68,7.012,22.68,7.012,18.01,23.77,18.01,23.77,11.99,7.012,11.99,7.012,7.309"/>
+<polygon points="29,7.309 29,1.119 1,1.119 1,28.873 29,28.881 29,22.682 7.012,22.682 7.012,18.008 23.771,18.008 23.771,11.989 7.012,11.989 7.012,7.309 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="9.646,24.81,9.652,24.81,8.14,22.38,5.278,22.38,9.48,29.1,11.52,27.82,10.82,26.68"/>
-<polygon points="10.49,22.38,12.01,24.81,16.13,24.81,14.62,22.38"/>
-<polygon points="16.97,22.38,18.48,24.81,22.63,24.81,21.11,22.38"/>
-<polygon points="23.47,22.38,24.72,24.4,24.72,22.38"/>
-<polygon points="20.3,17.36,21.81,19.8,24.72,19.8,20.52,13.07,18.45,14.36,20.32,17.36"/>
-<polygon points="19.46,19.8,17.95,17.36,13.86,17.36,15.37,19.8"/>
-<polygon points="13.02,19.8,11.51,17.36,7.379,17.36,8.89,19.8"/>
-<polygon points="5.278,17.76,5.278,19.8,6.54,19.8"/>
-<polygon points="20.33,3.263,20.33,0.895,9.632,0.895,9.632,11.51,20.33,11.51,20.33,9.14,11.93,9.14,11.93,7.353,18.34,7.353,18.34,5.05,11.93,5.05,11.93,3.263"/>
-</svg>
\ No newline at end of file
+<polygon points="9.646,24.812 9.652,24.812 8.14,22.379 5.278,22.379 9.48,29.105 11.522,27.824 10.816,26.685 "/>
+<polygon points="10.491,22.377 12.007,24.812 16.132,24.812 14.617,22.377 "/>
+<polygon points="16.97,22.377 18.484,24.812 22.627,24.812 21.114,22.377 "/>
+<polygon points="23.466,22.377 24.721,24.395 24.721,22.377 "/>
+<polygon points="20.299,17.36 21.813,19.795 24.718,19.795 20.518,13.068 18.452,14.359 20.322,17.36 "/>
+<polygon points="19.461,19.795 17.949,17.36 13.859,17.363 15.372,19.795 "/>
+<polygon points="13.021,19.795 11.511,17.363 7.379,17.363 8.89,19.797 "/>
+<polygon points="5.278,17.764 5.278,19.797 6.54,19.797 "/>
+<polygon points="20.334,3.263 20.334,0.895 9.632,0.895 9.632,11.509 20.334,11.509 20.334,9.14 11.929,9.14 11.929,7.353 18.337,7.353 18.337,5.05 11.929,5.05 11.929,3.263 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_context.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_context.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="24.72,22.38,5.279,22.38,9.481,29.1,11.55,27.82,9.671,24.81,9.683,24.81,9.683,24.81,24.72,24.81"/>
-<polygon points="20.52,13.07,18.45,14.36,20.32,17.36,5.279,17.36,5.279,19.8,24.72,19.8"/>
-<polygon points="20.34,3.263,20.34,0.895,9.633,0.895,9.633,11.51,20.34,11.51,20.34,9.14,11.93,9.14,11.93,7.353,18.34,7.353,18.34,5.051,11.93,5.051,11.93,3.263"/>
-</svg>
\ No newline at end of file
+<polygon points="24.722,22.377 5.279,22.379 9.481,29.105 11.546,27.816 9.671,24.813 9.683,24.813 9.683,24.813 24.722,24.813 "/>
+<polygon points="20.519,13.068 18.453,14.359 20.323,17.361 5.279,17.362 5.279,19.797 24.719,19.795 "/>
+<polygon points="20.335,3.263 20.335,0.895 9.633,0.895 9.633,11.509 20.335,11.509 20.335,9.14 11.93,9.14 11.93,7.353 18.338,7.353 18.338,5.051 11.93,5.051 11.93,3.263 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_multipdp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_multipdp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="20.52,13.03,18.46,14.32,20.32,17.33,17.27,17.33,14.59,13.03,12.52,14.32,14.39,17.33,5.279,17.33,5.279,19.76,24.72,19.76"/>
-<polygon points="9.48,29.07,11.55,27.78,9.68,24.78,12.73,24.78,15.41,29.07,17.48,27.78,15.6,24.78,24.72,24.78,24.72,22.34,5.279,22.34"/>
-<polygon points="20.34,3.297,20.34,0.928,9.633,0.928,9.633,11.54,20.34,11.54,20.34,9.175,11.93,9.175,11.93,7.387,18.34,7.387,18.34,5.085,11.93,5.085,11.93,3.297"/>
-</svg>
\ No newline at end of file
+<polygon points="20.521,13.034 18.455,14.324 20.324,17.328 17.271,17.328 14.59,13.034 12.523,14.324 14.394,17.328 5.279,17.328 5.279,19.762 24.722,19.761 "/>
+<polygon points="9.48,29.072 11.547,27.783 9.68,24.779 12.729,24.779 15.409,29.072 17.475,27.783 15.604,24.779 24.722,24.779 24.722,22.344 5.279,22.345 "/>
+<polygon points="20.336,3.297 20.336,0.928 9.633,0.928 9.633,11.544 20.336,11.544 20.336,9.175 11.931,9.175 11.931,7.387 18.34,7.387 18.34,5.085 11.931,5.085 11.931,3.297 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_suspended.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_egprs_suspended.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="24.72,22.28,24.72,24.72,20.32,24.72,20.32,24.72,14.34,24.72,16.38,22.28"/>
-<polygon points="5.279,22.28,10.58,22.28,8.524,24.72,5.279,24.72"/>
-<polygon points="24.72,17.27,24.72,19.7,18.53,19.7,20.56,17.27"/>
-<polygon points="5.279,19.7,5.279,17.27,14.8,17.27,12.75,19.7"/>
-<polygon points="21.42,14.55,21.5,14.61,21.45,14.67,10.38,27.86,9.381,29.05,7.515,27.48,8.938,25.79,19.63,13.04"/>
-<polygon points="20.34,3.321,20.34,0.952,9.633,0.952,9.633,11.57,20.34,11.57,20.34,9.199,11.93,9.199,11.93,7.411,18.34,7.411,18.34,5.109,11.93,5.109,11.93,3.321"/>
-</svg>
\ No newline at end of file
+<polygon points="24.722,22.285 24.722,24.719 20.315,24.719 20.317,24.719 14.341,24.719 16.375,22.285 "/>
+<polygon points="5.279,22.283 10.576,22.283 8.524,24.719 5.279,24.719 "/>
+<polygon points="24.722,17.268 24.722,19.702 18.53,19.702 20.564,17.268 "/>
+<polygon points="5.279,19.699 5.279,17.268 14.804,17.268 12.753,19.702 "/>
+<polygon points="21.421,14.546 21.5,14.607 21.448,14.668 10.38,27.857 9.381,29.049 7.515,27.482 8.938,25.787 19.631,13.043 "/>
+<polygon points="20.336,3.321 20.336,0.952 9.633,0.952 9.633,11.567 20.336,11.567 20.336,9.199 11.931,9.199 11.931,7.411 18.34,7.411 18.34,5.109 11.931,5.109 11.931,3.321 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_end_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_end_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M28.91,18.24l-7.671-2.057c-0.341-0.139-0.547-0.473-0.461-0.799l0.571-2.26h-0.01c0.001,0,0.002-0.002,0.002-0.002-1.125-0.355-3.859-0.922-5.933-0.924-2.159,0.002-4.325,0.162-6.604,0.766,0,0-0.009,0.002-0.012,0.002,0.006,0.008,0.012,0.014,0.017,0.02l0.648,2.953c0.081,0.375-0.194,0.738-0.608,0.816l-7.822,1.486c-0.412,0.076-0.811-0.162-0.891-0.537,0,0-0.068-0.324-0.126-1.223l-0.001-0.002c-0.031-0.49,0.042-0.586,0.092-1.131,0.043-0.465,0.126-0.885,0.219-1.254,0,0-0.003-0.002-0.002-0.004,0.019-0.074,0.039-0.145,0.059-0.217,0.002-0.008,0.005-0.018,0.006-0.025,0.203-0.719,0.43-1.17,0.43-1.17,0.338-0.572,1.855-2.186,3.813-3.068,1.239-0.573,5.882-1.622,10.09-1.622,4.205-0.002,9.565,1.174,11.44,2.178s2.946,2.211,3.165,2.67,0.59,1.164,0.658,2.688c0.023,0.51,0.037,0.543-0.01,1.002l-0.003,0.004v-0.004c-0.094,0.908-0.161,1.244-0.161,1.244-0.1,0.36-0.5,0.56-0.9,0.46z"/>
-</svg>
\ No newline at end of file
+<path d="M28.908,18.236l-7.671-2.057c-0.341-0.139-0.547-0.473-0.461-0.799l0.571-2.26c-0.002,0-0.008,0-0.01,0 c0.001,0,0.002-0.002,0.002-0.002c-1.125-0.355-3.859-0.922-5.933-0.924c-2.159,0.002-4.325,0.162-6.604,0.766 c0,0-0.009,0.002-0.012,0.002c0.006,0.008,0.012,0.014,0.017,0.02l0.648,2.953c0.081,0.375-0.194,0.738-0.608,0.816l-7.822,1.486 c-0.412,0.076-0.811-0.162-0.891-0.537c0,0-0.068-0.324-0.126-1.223l-0.001-0.002c-0.031-0.49,0.042-0.586,0.092-1.131 c0.043-0.465,0.126-0.885,0.219-1.254c0,0-0.003-0.002-0.002-0.004c0.019-0.074,0.039-0.145,0.059-0.217 c0.002-0.008,0.005-0.018,0.006-0.025c0.203-0.719,0.43-1.17,0.43-1.17c0.338-0.572,1.855-2.186,3.813-3.068 C5.867,9.049,10.514,8,14.718,8c4.205-0.002,9.565,1.174,11.438,2.178s2.946,2.211,3.165,2.67c0,0,0.59,1.164,0.658,2.688 c0.023,0.51,0.037,0.543-0.01,1.002l-0.003,0.004v-0.004c-0.094,0.908-0.161,1.244-0.161,1.244 C29.71,18.139,29.308,18.344,28.908,18.236z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_enter.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_enter.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27,7c-1.104,0-2,0.896-2,2v6h-14v-3c0-0.375-0.209-0.718-0.542-0.889-0.15-0.07-0.3-0.11-0.46-0.11-0.205,0-0.408,0.063-0.581,0.186l-7,5.001c-0.263,0.18-0.419,0.49-0.419,0.81,0,0.323,0.156,0.626,0.419,0.814l7,5c0.173,0.13,0.376,0.19,0.581,0.19,0.156,0,0.313-0.037,0.457-0.111,0.33-0.17,0.54-0.51,0.54-0.89v-3h16c1.104,0,2-0.896,2-2v-8c0-1.104-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M27,7c-1.104,0-2,0.896-2,2v6H11v-3c0-0.375-0.209-0.718-0.542-0.889C10.313,11.037,10.156,11,10,11 c-0.205,0-0.408,0.063-0.581,0.186l-7,5.001C2.156,16.374,2,16.678,2,17c0,0.323,0.156,0.626,0.419,0.814l7,5 C9.592,22.938,9.795,23,10,23c0.156,0,0.313-0.037,0.457-0.111C10.791,22.718,11,22.375,11,22v-3h16c1.104,0,2-0.896,2-2V9 C29,7.896,28.104,7,27,7z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exit.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exit.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M17.83,15l7.072-7.072c0.781-0.779,0.781-2.047,0-2.828-0.78-0.779-2.047-0.779-2.828,0.002l-7.07,7.068-7.071-7.068c-0.781-0.782-2.047-0.782-2.828-0.002-0.781,0.781-0.781,2.048,0.001,2.828l7.068,7.072-7.072,7.072c-0.778,0.78-0.778,2.05,0.003,2.83,0.781,0.779,2.048,0.779,2.828-0.002l7.071-7.07,7.071,7.071c0.781,0.781,2.048,0.781,2.828,0.002,0.781-0.781,0.781-2.049,0-2.828l-7.07-7.07z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M17.827,15l7.072-7.072c0.781-0.779,0.781-2.047,0-2.828c-0.78-0.779-2.047-0.779-2.828,0.002L15,12.173L7.929,5.102 C7.148,4.32,5.882,4.32,5.101,5.1C4.32,5.881,4.32,7.148,5.102,7.928L12.174,15l-7.072,7.072C4.32,22.852,4.32,24.119,5.101,24.9 c0.781,0.779,2.048,0.779,2.828-0.002L15,17.827l7.071,7.071c0.781,0.781,2.048,0.781,2.828,0.002c0.781-0.781,0.781-2.049,0-2.828 L17.827,15z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_expand.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_expand.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M24,0h-22c-1.104,0-2,0.896-2,2v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-22c0-1.104-0.9-2-2-2zm-4,15h-5v5h-4v-5h-5v-4h5v-5h4v5h5v4z"/>
-</svg>
\ No newline at end of file
+<path d="M24,0H2C0.896,0,0,0.896,0,2v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V2C26,0.896,25.104,0,24,0z M20,15h-5v5h-4v-5H6 v-4h5V6h4v5h5V15z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exposure.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_exposure.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M26,2h-22c-1.104,0-2,0.896-2,2v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-22c0-1.104-0.9-2-2-2zm-1,19c0,0.553-0.447,1-1,1h-7c-0.553,0-1-0.447-1-1v-1c0-0.553,0.447-1,1-1h7c0.553,0,1,0.447,1,1v1zm-20,4v-20h20l-20,20z"/>
-<path d="M7,12h2v2c0,0.553,0.447,1,1,1h1c0.553,0,1-0.447,1-1v-2h2c0.553,0,1-0.448,1-1v-1c0-0.552-0.447-1-1-1h-2v-2c0-0.552-0.447-1-1-1h-1c-0.553,0-1,0.448-1,1v2h-2c-0.553,0-1,0.448-1,1v1c0,0.55,0.447,1,1,1z"/>
-</svg>
\ No newline at end of file
+<path d="M26,2H4C2.896,2,2,2.896,2,4v22c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V4C28,2.896,27.104,2,26,2z M25,21 c0,0.553-0.447,1-1,1h-7c-0.553,0-1-0.447-1-1v-1c0-0.553,0.447-1,1-1h7c0.553,0,1,0.447,1,1V21z M5,25V5h20L5,25z"/>
+<path d="M7,12h2v2c0,0.553,0.447,1,1,1h1c0.553,0,1-0.447,1-1v-2h2c0.553,0,1-0.448,1-1v-1c0-0.552-0.447-1-1-1h-2V7 c0-0.552-0.447-1-1-1h-1C9.447,6,9,6.448,9,7v2H7c-0.553,0-1,0.448-1,1v1C6,11.552,6.447,12,7,12z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="2,8,2,2.086,10,2.086,10,0,0,0,0,8"/>
-<polygon points="2,18,0,18,0,26,10,26,10,24.09,2,24.09"/>
-<polygon points="26,8,28,8,28,0,18,0,18,2.086,26,2.086"/>
-<polygon points="26,18,26,24.09,18,24.09,18,26,28,26,28,18"/>
-<path d="M6,22c0.016-0.232,0.448-4.951,4.398-5.354,0.908-0.02,1.999-0.459,1.999-1.633v-0.297c0-0.129-0.06-0.252-0.163-0.33-1.34-1-2.24-3.04-2.24-5.087,0-2.926,1.79-5.303,4-5.303s4,2.377,4,5.303c0,2.049-0.898,4.09-2.238,5.084-0.101,0.078-0.162,0.201-0.162,0.33v0.297c0,1.291,1.31,1.633,1.999,1.633,3.95,0.4,4.38,5.12,4.4,5.35h-16z"/>
-</svg>
\ No newline at end of file
+<polygon points="2,8 2,2.086 10,2.086 10,0 0,0 0,8 "/>
+<polygon points="2,18 0,18 0,26 10,26 10,24.086 2,24.086 "/>
+<polygon points="26,8 28,8 28,0 18,0 18,2.086 26,2.086 "/>
+<polygon points="26,18 26,24.086 18,24.086 18,26 28,26 28,18 "/>
+<path d="M6,22c0.016-0.232,0.448-4.951,4.398-5.354c0.908-0.02,1.999-0.459,1.999-1.633v-0.297c0-0.129-0.06-0.252-0.163-0.33 C10.898,13.393,10,11.352,10,9.303C10,6.377,11.794,4,14,4s4,2.377,4,5.303c0,2.049-0.898,4.09-2.238,5.084 c-0.101,0.078-0.162,0.201-0.162,0.33v0.297c0,1.291,1.31,1.633,1.999,1.633C21.553,17.049,21.982,21.768,22,22H6z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_face_tracking_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="2,18,0,18,0,26,10,26,10,24.09,2,24.09"/>
-<polygon points="26,8,28,8,28,0,18,0,18,2.086,26,2.086"/>
-<polygon points="28,22.85,28,18,26,18,26,20.85"/>
-<polygon points="20.94,24.09,18,24.09,18,26,22.85,26"/>
-<path d="M17.39,12.24c0.39-0.89,0.61-1.91,0.61-2.937,0-2.926-1.79-5.303-4-5.303-1.204,0-2.273,0.724-3.007,1.843l6.4,6.397z"/>
-<path d="M12.33,15.47c-0.247,0.828-1.152,1.156-1.929,1.173-3.952,0.41-4.384,5.13-4.4,5.36h12.85l-6.52-6.53z"/>
-<polygon points="7.235,2.086,10,2.086,10,0,5.149,0"/>
-<polygon points="0,3.146,0,8,2,8,2,5.146"/>
-<path d="M26.69,24.37c0.389,0.389,0.41,1.006,0.048,1.369s-0.978,0.342-1.366-0.047l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367s0.979-0.341,1.367,0.048l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<polygon points="2,18 0,18 0,26 10,26 10,24.086 2,24.086 "/>
+<polygon points="26,8 28,8 28,0 18,0 18,2.086 26,2.086 "/>
+<polygon points="28,22.85 28,18 26,18 26,20.85 "/>
+<polygon points="20.939,24.086 18,24.086 18,26 22.854,26 "/>
+<path d="M17.386,12.236C17.776,11.346,18,10.326,18,9.303C18,6.377,16.206,4,14,4c-1.204,0-2.273,0.724-3.007,1.843L17.386,12.236z"/>
+<path d="M12.327,15.474c-0.247,0.828-1.152,1.156-1.929,1.173C6.448,17.049,6.016,21.768,6,22h12.854L12.327,15.474z"/>
+<polygon points="7.235,2.086 10,2.086 10,0 5.149,0 "/>
+<polygon points="0,3.146 0,8 2,8 2,5.146 "/>
+<path d="M26.693,24.372c0.389,0.389,0.41,1.006,0.048,1.369s-0.978,0.342-1.366-0.047L1.307,1.625 C0.918,1.236,0.896,0.621,1.26,0.258s0.979-0.341,1.367,0.048L26.693,24.372z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_failed.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_failed.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13,0c-7.168,0-13,5.832-13,13s5.832,13,13,13,13-5.832,13-13-5.83-13-13-13zm0,4c1.758,0,3.395,0.515,4.782,1.39l-12.39,12.39c-0.876-1.38-1.39-3.02-1.39-4.78,0-4.963,4.037-9,9-9zm0,18c-1.758,0-3.395-0.515-4.782-1.39l12.39-12.39c0.88,1.387,1.39,3.022,1.39,4.782,0,4.96-4.04,9-9,9z"/>
-</svg>
\ No newline at end of file
+<path d="M13,0C5.832,0,0,5.832,0,13s5.832,13,13,13s13-5.832,13-13S20.168,0,13,0z M13,4c1.758,0,3.395,0.515,4.782,1.39 L5.39,17.782C4.514,16.395,4,14.758,4,13C4,8.037,8.037,4,13,4z M13,22c-1.758,0-3.395-0.515-4.782-1.39L20.611,8.218 C21.486,9.605,22,11.242,22,13C22,17.963,17.963,22,13,22z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -1 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M22.36,27c-0.208,0-0.416-0.064-0.592-0.193l-7.77-5.71-7.765,5.704c-0.176,0.14-0.383,0.2-0.592,0.2s-0.418-0.065-0.595-0.196c-0.353-0.261-0.493-0.721-0.349-1.135l3.174-9.044-7.471-5.563c-0.346-0.258-0.487-0.708-0.352-1.117,0.137-0.407,0.518-0.684,0.95-0.684h9.217l2.826-8.571c0.13-0.407,0.5-0.683,0.93-0.688h0.012c0.177,0,0.345,0.047,0.492,0.13,0.219,0.115,0.392,0.311,0.473,0.558l2.826,8.571h9.22c0.432,0,0.813,0.277,0.949,0.686s-0.006,0.859-0.352,1.116l-7.471,5.564,3.174,9.044c0.146,0.414,0.004,0.874-0.349,1.135-0.17,0.14-0.38,0.2-0.59,0.2z"/>
-</svg>
\ No newline at end of file
+<path d="M22.357,27c-0.208,0-0.416-0.064-0.592-0.193L14,21.103l-7.765,5.704C6.059,26.936,5.852,27,5.643,27 s-0.418-0.065-0.595-0.196c-0.353-0.261-0.493-0.721-0.349-1.135l3.174-9.044l-7.471-5.563c-0.346-0.258-0.487-0.708-0.352-1.117 C0.187,9.536,0.568,9.259,1,9.259h9.217l2.826-8.571C13.176,0.281,13.553,0.005,13.98,0c0.004,0,0.008,0,0.012,0 c0.177,0,0.345,0.047,0.492,0.13c0.219,0.115,0.392,0.311,0.473,0.558l2.826,8.571H27c0.432,0,0.813,0.277,0.949,0.686 c0.136,0.409-0.006,0.859-0.352,1.116l-7.471,5.564l3.174,9.044c0.146,0.414,0.004,0.874-0.349,1.135 C22.775,26.935,22.566,27,22.357,27L22.357,27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites_remove.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_favourites_remove.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M14.18,21.23c0.82-4.12,4.46-7.23,8.82-7.23,0.206,0,0.407,0.017,0.609,0.031l3.988-2.971c0.346-0.258,0.487-0.707,0.352-1.117-0.14-0.408-0.52-0.685-0.95-0.685h-9.217l-2.825-8.572c-0.082-0.246-0.255-0.441-0.474-0.557-0.15-0.083-0.32-0.129-0.5-0.129h-0.012c-0.428,0.004-0.804,0.281-0.938,0.686l-2.826,8.572h-9.21c-0.431,0-0.813,0.277-0.949,0.686-0.136,0.41,0.006,0.859,0.352,1.117l7.471,5.563-3.174,9.044c-0.145,0.414-0.004,0.875,0.35,1.135,0.175,0.13,0.384,0.2,0.594,0.2,0.208,0,0.415-0.064,0.592-0.194l7.764-5.71,0.18,0.13z"/>
-<path d="M23,16c-3.865,0-7,3.135-7,7,0,3.867,3.135,7,7,7s7-3.133,7-7c0-3.86-3.14-7-7-7zm-5,8v-2h10v2h-10z"/>
-</svg>
\ No newline at end of file
+<path d="M14.177,21.23C15.001,17.113,18.643,14,23,14c0.206,0,0.407,0.017,0.609,0.031l3.988-2.971 c0.346-0.258,0.487-0.707,0.352-1.117C27.813,9.535,27.432,9.258,27,9.258h-9.217l-2.825-8.572 c-0.082-0.246-0.255-0.441-0.474-0.557C14.338,0.046,14.169,0,13.992,0c-0.004,0-0.008,0-0.012,0 c-0.428,0.004-0.804,0.281-0.938,0.686l-2.826,8.572H1c-0.431,0-0.813,0.277-0.949,0.686c-0.136,0.41,0.006,0.859,0.352,1.117 l7.471,5.563l-3.174,9.044c-0.145,0.414-0.004,0.875,0.35,1.135C5.225,26.934,5.434,27,5.644,27c0.208,0,0.415-0.064,0.592-0.194 L14,21.102L14.177,21.23z"/>
+<path d="M23,16c-3.865,0-7,3.135-7,7c0,3.867,3.135,7,7,7s7-3.133,7-7C30,19.135,26.865,16,23,16z M18,24v-2h10v2H18z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_filter.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_filter.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M23.66,4.067l0.252-0.388c0.6-0.923,0.19-1.679-0.91-1.679h-18c-1.1,0-1.512,0.756-0.914,1.679l7.914,12.23v13.09l4-3v-10.09l2.53-3.909h4.47c2.209,0,4-1.791,4-4,0-1.982-1.44-3.616-3.34-3.933zm-14.4,3.933l-1.94-3h13.35l-1.94,3h-9.476zm13.74,2h-3.176l2.588-4h0.59c1.103,0,2,0.897,2,2s-0.9,2-2,2z"/>
-</svg>
\ No newline at end of file
+<path d="M23.662,4.067l0.252-0.388C24.512,2.756,24.1,2,23,2H5 C3.9,2,3.488,2.756,4.086,3.679L12,15.91V29l4-3V15.909L18.529,12H23c2.209,0,4-1.791,4-4C27,6.018,25.555,4.384,23.662,4.067z M9.264,8l-1.94-3h13.353l-1.94,3H9.264z M23,10h-3.176l2.588-4H23c1.103,0,2,0.897,2,2S24.103,10,23,10z" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21,21h-2.869l3.87-11h-8.639l3.179-9h-5.302l-4.24,12h8.639l-2.811,8h-2.83c-0.396,0-0.756,0.234-0.916,0.598-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6c0.19,0.2,0.46,0.32,0.74,0.32s0.548-0.117,0.737-0.324l5.5-6c0.268-0.293,0.338-0.715,0.179-1.078-0.16-0.37-0.52-0.6-0.92-0.6z"/>
-</svg>
\ No newline at end of file
+<path d="M21,21h-2.869L22,10h-8.639l3.179-9h-5.302L7,13h8.639l-2.811,8H10c-0.396,0-0.756,0.234-0.916,0.598 c-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6C14.952,28.883,15.22,29,15.5,29s0.548-0.117,0.737-0.324l5.5-6 c0.268-0.293,0.338-0.715,0.179-1.078C21.756,21.234,21.396,21,21,21z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_charging.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_charging.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M9,12c0-0.552-0.448-1-1-1h-3c-0.553,0-1,0.448-1,1v1h5v-1z"/>
-<path d="M10,14h-7c-1.104,0-2,0.896-2,2v11c0,1.104,0.896,2,2,2h7c1.104,0,2-0.896,2-2v-11c0-1.1-0.9-2-2-2zm-1,6h-5v-3h5v3z"/>
-<path d="M27,21h-2.869l3.87-11h-8.639l3.179-9h-5.302l-4.24,12h8.639l-2.811,8h-2.83c-0.396,0-0.756,0.234-0.916,0.598-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6c0.19,0.2,0.46,0.32,0.74,0.32s0.548-0.117,0.737-0.324l5.5-6c0.268-0.293,0.338-0.715,0.179-1.078-0.16-0.37-0.52-0.6-0.92-0.6z"/>
-</svg>
\ No newline at end of file
+<path d="M9,12c0-0.552-0.448-1-1-1H5c-0.553,0-1,0.448-1,1v1h5V12z"/>
+<path d="M10,14H9H4H3c-1.104,0-2,0.896-2,2v11c0,1.104,0.896,2,2,2h7c1.104,0,2-0.896,2-2V16C12,14.896,11.104,14,10,14z M9,20H4v-3 h5V20z"/>
+<path d="M27,21h-2.869L28,10h-8.639l3.179-9h-5.302L13,13h8.639l-2.811,8H16c-0.396,0-0.756,0.234-0.916,0.598 c-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6C20.952,28.883,21.22,29,21.5,29s0.548-0.117,0.737-0.324l5.5-6 c0.268-0.293,0.338-0.715,0.179-1.078C27.756,21.234,27.396,21,27,21z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_flash_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="19.96,15.81,22,10,14.15,10"/>
-<polygon points="13.57,9.417,16.54,1,11.24,1,9.648,5.5"/>
-<polygon points="7.484,11.63,7,13,8.854,13"/>
-<path d="M13.88,18.02l-1.05,2.98h-2.83c-0.396,0-0.756,0.234-0.916,0.598-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6c0.19,0.2,0.46,0.32,0.74,0.32s0.548-0.117,0.737-0.324l3.966-4.326-6.33-6.33z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.363,0.979-0.341,1.367,0.048l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<polygon points="19.957,15.808 22,10 14.15,10 "/>
+<polygon points="13.567,9.417 16.54,1 11.238,1 9.648,5.5 "/>
+<polygon points="7.484,11.63 7,13 8.854,13 "/>
+<path d="M13.875,18.021L12.828,21H10c-0.396,0-0.756,0.234-0.916,0.598c-0.159,0.363-0.089,0.785,0.179,1.078l5.5,6 C14.952,28.883,15.22,29,15.5,29s0.548-0.117,0.737-0.324l3.966-4.326L13.875,18.021z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.363,0.979-0.341,1.367,0.048L27.693,26.372z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_folder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_folder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M3,8h24c0.732,0,1.409,0.211,2,0.557v-1.557c0-1.105-0.896-2-2-2h-13.97c-0.505-0.031-0.757-0.32-0.873-0.535l-0.16-0.465c-0.416-1.146-1.125-2-2.459-2h-6.541c-1.104,0-2,0.895-2,2v4.557c0.591-0.346,1.268-0.557,2-0.557z"/>
-<path d="M29,24c0,1.104-0.896,2-2,2h-24c-1.104,0-2-0.896-2-2v-12c0-1.105,0.896-2,2-2h24c1.104,0,2,0.895,2,2v12z"/>
-</svg>
\ No newline at end of file
+<path d="M3,8h24c0.732,0,1.409,0.211,2,0.557V7c0-1.105-0.896-2-2-2H13.028c-0.505-0.031-0.757-0.32-0.873-0.535L12,4 c-0.416-1.146-1.125-2-2.459-2H3C1.896,2,1,2.895,1,4v4.557C1.591,8.211,2.268,8,3,8z"/>
+<path d="M29,24c0,1.104-0.896,2-2,2H3c-1.104,0-2-0.896-2-2V12c0-1.105,0.896-2,2-2h24c1.104,0,2,0.895,2,2V24z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M17,26c0.561,0,1.107-0.236,1.495-0.672l8-9c0.673-0.758,0.673-1.898,0-2.656l-8-9c-0.39-0.434-0.94-0.67-1.5-0.67-0.238,0-0.479,0.043-0.711,0.131-0.78,0.295-1.29,1.039-1.29,1.869v18c0,0.83,0.514,1.574,1.289,1.869,0.23,0.09,0.47,0.13,0.71,0.13z"/>
-<path d="M5,26c0.561,0,1.107-0.236,1.495-0.672l8-9c0.673-0.758,0.673-1.898,0-2.656l-8-9c-0.393-0.434-0.939-0.67-1.5-0.67-0.238,0-0.479,0.043-0.711,0.131-0.775,0.295-1.289,1.039-1.289,1.869v18c0,0.83,0.514,1.574,1.289,1.869,0.232,0.09,0.473,0.13,0.711,0.13z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M17,26c0.561,0,1.107-0.236,1.495-0.672l8-9c0.673-0.758,0.673-1.898,0-2.656l-8-9C18.107,4.236,17.561,4,17,4 c-0.238,0-0.479,0.043-0.711,0.131C15.514,4.426,15,5.17,15,6v18c0,0.83,0.514,1.574,1.289,1.869C16.521,25.957,16.762,26,17,26 L17,26z"/>
+<path d="M5,26c0.561,0,1.107-0.236,1.495-0.672l8-9c0.673-0.758,0.673-1.898,0-2.656l-8-9C6.107,4.236,5.561,4,5,4 C4.762,4,4.521,4.043,4.289,4.131C3.514,4.426,3,5.17,3,6v18c0,0.83,0.514,1.574,1.289,1.869C4.521,25.957,4.762,26,5,26L5,26z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M16.57,7.154c-2.215,0-3.98,0.693-5.298,2.078-1.317,1.386-1.976,3.295-1.976,5.729,0,1.577,0.373,2.816,1.121,3.719,0.747,0.902,1.668,1.354,2.762,1.354,0.811,0,1.511-0.189,2.099-0.567s1.142-1.06,1.661-2.044c0.181,0.64,0.466,1.164,0.854,1.578h2.21c0-0.41,0.089-0.808,0.245-1.173-0.102-0.035-0.204-0.069-0.274-0.125-0.191-0.15-0.335-0.415-0.431-0.793s-0.144-0.918-0.144-1.62c0-1.768,0.318-4.479,0.957-8.135h-3.794zm-0.28,6.156c-0.219,1.714-0.499,2.908-0.841,3.582-0.34,0.67-0.78,1.01-1.32,1.01-0.602,0-1.019-0.241-1.251-0.725-0.232-0.482-0.349-1.267-0.349-2.352,0-1.695,0.332-3.04,0.998-4.033,0.665-0.993,1.472-1.49,2.42-1.49h0.848l-0.51,4z"/>
-<path d="M14,22.68c-2.132-0.263-3.802-1.008-4.994-2.251-1.514-1.576-2.27-3.941-2.27-7.096,0-2.807,0.815-5.011,2.447-6.61,1.631-1.6,3.755-2.399,6.371-2.399,2.488,0,4.404,0.754,5.749,2.263s2.017,3.648,2.017,6.419c0,1.207-0.149,2.204-0.436,3.007,0.04,0,0.08-0.01,0.12-0.01,0.701,0,1.384,0.248,1.923,0.697l0.281,0.234c0.53-1.1,0.8-2.45,0.8-4.07,0-3.436-0.912-6.104-2.734-8.005-1.83-1.905-4.42-2.855-7.77-2.855-3.373,0-6.157,1.017-8.354,3.049-2.197,2.033-3.295,4.84-3.295,8.422,0,3.756,1.066,6.641,3.199,8.654,1.791,1.691,4.111,2.662,6.949,2.934v-2.369z"/>
-<path d="M23,30c0.229,0,0.457-0.079,0.641-0.231l6-5c0.23-0.19,0.36-0.47,0.36-0.77s-0.132-0.578-0.359-0.768l-6-5c-0.18-0.15-0.41-0.23-0.64-0.23-0.144,0-0.289,0.031-0.424,0.095-0.36,0.16-0.58,0.51-0.58,0.9v2h-5c-0.553,0-1,0.448-1,1v4c0,0.553,0.447,1,1,1h5v2c0,0.389,0.225,0.741,0.576,0.906,0.13,0.06,0.28,0.09,0.42,0.09z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M16.566,7.154c-2.215,0-3.98,0.693-5.298,2.078c-1.317,1.386-1.976,3.295-1.976,5.729c0,1.577,0.373,2.816,1.121,3.719 c0.747,0.902,1.668,1.354,2.762,1.354c0.811,0,1.511-0.189,2.099-0.567s1.142-1.06,1.661-2.044c0.181,0.64,0.466,1.164,0.854,1.578 H20c0-0.41,0.089-0.808,0.245-1.173c-0.102-0.035-0.204-0.069-0.274-0.125c-0.191-0.15-0.335-0.415-0.431-0.793 s-0.144-0.918-0.144-1.62c0-1.768,0.318-4.479,0.957-8.135H16.566z M16.293,13.307c-0.219,1.714-0.499,2.908-0.841,3.582 C15.11,17.563,14.67,17.9,14.133,17.9c-0.602,0-1.019-0.241-1.251-0.725c-0.232-0.482-0.349-1.267-0.349-2.352 c0-1.695,0.332-3.04,0.998-4.033c0.665-0.993,1.472-1.49,2.42-1.49h0.848L16.293,13.307z"/>
+<path d="M14,22.681c-2.132-0.263-3.802-1.008-4.994-2.251c-1.514-1.576-2.27-3.941-2.27-7.096c0-2.807,0.815-5.011,2.447-6.61 c1.631-1.6,3.755-2.399,6.371-2.399c2.488,0,4.404,0.754,5.749,2.263c1.345,1.509,2.017,3.648,2.017,6.419 c0,1.207-0.149,2.204-0.436,3.007C22.923,16.012,22.961,16,23,16c0.701,0,1.384,0.248,1.923,0.697l0.281,0.234 C25.727,15.829,26,14.479,26,12.855c0-3.436-0.912-6.104-2.734-8.005C21.442,2.95,18.854,2,15.5,2c-3.373,0-6.157,1.017-8.354,3.049 c-2.197,2.033-3.295,4.84-3.295,8.422c0,3.756,1.066,6.641,3.199,8.654c1.791,1.691,4.111,2.662,6.949,2.934V22.681z"/>
+<path d="M23,30c0.229,0,0.457-0.079,0.641-0.231l6-5C29.868,24.578,30,24.297,30,24s-0.132-0.578-0.359-0.768l-6-5 C23.457,18.079,23.229,18,23,18c-0.144,0-0.289,0.031-0.424,0.095C22.225,18.259,22,18.612,22,19v2h-5c-0.553,0-1,0.448-1,1v4 c0,0.553,0.447,1,1,1h5v2c0,0.389,0.225,0.741,0.576,0.906C22.711,29.969,22.856,30,23,30L23,30z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_msg.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_forward_msg.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon points="8.268,16.73,0,9.819,0,23.55"/>
-<path d="M0.127,7.319l11.31,9.449c0.461,0.354,0.908,0.555,1.402,0.566h0.113c0.494-0.012,0.943-0.213,1.402-0.566l11.51-9.495c-0.29-0.746-1.01-1.275-1.86-1.275h-22c-0.864,0-1.594,0.551-1.873,1.319z"/>
-<path d="M17,19h2.074l-2.129-1.779-1.321,1.09c-0.882,0.681-1.724,1.002-2.627,1.023h-0.161c-0.948-0.021-1.791-0.342-2.621-0.98l-1.167-0.975-8.907,7.348c0.297,0.74,1.016,1.27,1.864,1.27h12v-4c0-1.65,1.35-3,3-3z"/>
-<path d="M21.73,16.28c0.39-0.18,0.83-0.28,1.27-0.28,0.701,0,1.384,0.248,1.923,0.697l1.08,0.9v-7.85l-8.271,6.824,2.316,1.935c0.16-0.95,0.78-1.8,1.68-2.22z"/>
-<path d="M23,30c0.229,0,0.457-0.079,0.641-0.231l6-5c0.23-0.19,0.36-0.47,0.36-0.77s-0.132-0.578-0.359-0.768l-6-5c-0.18-0.15-0.41-0.23-0.64-0.23-0.144,0-0.289,0.031-0.424,0.095-0.36,0.16-0.58,0.51-0.58,0.9v2h-5c-0.553,0-1,0.448-1,1v4c0,0.553,0.447,1,1,1h5v2c0,0.389,0.225,0.741,0.576,0.906,0.13,0.06,0.28,0.09,0.42,0.09z"/>
-</svg>
\ No newline at end of file
+</g>
+<polygon points="8.268,16.727 0,9.819 0,23.547 "/>
+<path d="M0.127,7.319l11.307,9.449c0.461,0.354,0.908,0.555,1.402,0.566c0.021,0,0.093,0,0.113,0 c0.494-0.012,0.943-0.213,1.402-0.566l11.508-9.495C25.567,6.529,24.848,6,24,6H2C1.136,6,0.406,6.551,0.127,7.319z"/>
+<path d="M17,19h2.074l-2.129-1.779l-1.321,1.09c-0.882,0.681-1.724,1.002-2.627,1.023h-0.023h-0.138 c-0.948-0.021-1.791-0.342-2.621-0.98l-1.167-0.975l-8.907,7.348C0.433,25.472,1.152,26,2,26h12v-4C14,20.346,15.346,19,17,19z"/>
+<path d="M21.73,16.282C22.12,16.099,22.562,16,23,16c0.701,0,1.384,0.248,1.923,0.697L26,17.596V9.75l-8.271,6.824l2.316,1.935 C20.207,17.547,20.83,16.702,21.73,16.282z"/>
+<path d="M23,30c0.229,0,0.457-0.079,0.641-0.231l6-5C29.868,24.578,30,24.297,30,24s-0.132-0.578-0.359-0.768l-6-5 C23.457,18.079,23.229,18,23,18c-0.144,0-0.289,0.031-0.424,0.095C22.225,18.259,22,18.612,22,19v2h-5c-0.553,0-1,0.448-1,1v4 c0,0.553,0.447,1,1,1h5v2c0,0.389,0.225,0.741,0.576,0.906C22.711,29.969,22.856,30,23,30L23,30z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_genres.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_genres.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M27.77,1.428l-5.896,2.416s0.26,0.992-0.418,1.67l-4.406,4.404c-0.734-1.422-1.832-2.07-2.963-2.07-0.918,0-1.857,0.428-2.645,1.213-1.789,1.791-1.242,2.576-2.676,4.008-1.439,1.436-4.918,0.814-7.484,3.377-2.566,2.568,1.432,6.354,3.186,8.105,1.346,1.348,3.896,4.021,6.168,4.021,0.686,0.002,1.344-0.242,1.938-0.836,2.566-2.566,1.941-6.047,3.381-7.482,1.432-1.434,4.123-3.1,4.9-3.875,0.357-0.357,0.688-0.977,0.09-0.996-0.631-0.018-2.012-0.422-2.84-1.25-0.203-0.205-0.387-0.408-0.555-0.611l6.291-6.293c0.85-0.842,2.049-0.859,2.156-0.859h0.008l3.551-4.117-1.78-0.823zm-14.77,16.07c-1.105,0-2-0.896-2-2s0.895-2,2-2c1.104,0,2,0.896,2,2s-0.9,2-2,2z"/>
-</svg>
\ No newline at end of file
+<path d="M27.77,1.428l-5.896,2.416c0,0,0.26,0.992-0.418,1.67l-4.406,4.404c-0.734-1.422-1.832-2.07-2.963-2.07 c-0.918,0-1.857,0.428-2.645,1.213c-1.789,1.791-1.242,2.576-2.676,4.008c-1.439,1.436-4.918,0.814-7.484,3.377 c-2.566,2.568,1.432,6.354,3.186,8.105c1.346,1.348,3.896,4.021,6.168,4.021c0.686,0.002,1.344-0.242,1.938-0.836 c2.566-2.566,1.941-6.047,3.381-7.482c1.432-1.434,4.123-3.1,4.9-3.875c0.357-0.357,0.688-0.977,0.09-0.996 c-0.631-0.018-2.012-0.422-2.84-1.25c-0.203-0.205-0.387-0.408-0.555-0.611l6.291-6.293c0.85-0.842,2.049-0.859,2.156-0.859 c0.006,0,0.008,0,0.008,0l3.551-4.117L27.77,1.428z M13,17.502c-1.105,0-2-0.896-2-2s0.895-2,2-2c1.104,0,2,0.896,2,2 S14.104,17.502,13,17.502z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M19,2h-8c-1.104,0-2,0.896-2,2h12c0-1.104-0.9-2-2-2z"/>
-<path d="M18.87,12h0.13v-7h-8v7h0.13c-2.462,1.36-4.13,3.99-4.13,7,0,0.553,0.447,1,1,1h6v8c0,0.553,0.447,1,1,1s1-0.447,1-1v-8h6c0.553,0,1-0.447,1-1,0-3.01-1.67-5.64-4.13-7z"/>
-</svg>
\ No newline at end of file
+<path d="M19,2h-8C9.896,2,9,2.896,9,4h12C21,2.896,20.104,2,19,2z"/>
+<path d="M18.87,12H19V5h-8v7h0.13C8.668,13.364,7,15.986,7,19c0,0.553,0.447,1,1,1h6v8c0,0.553,0.447,1,1,1s1-0.447,1-1v-8h6 c0.553,0,1-0.447,1-1C23,15.986,21.332,13.364,18.87,12z"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag_no_location_lock.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<path d="M0,0v30h30V0H0z M28.235,26.986l-6.012-6.012l-0.454,2.042l5.218,5.219H2.626l5.535-5.534l-0.454-2.042 l-5.942,5.941V3.013l9.352,9.352h2.119v-0.377l-2.467-2.467c-0.202-0.056-0.401-0.12-0.594-0.202 C7.701,8.271,7.043,6.555,6.869,5.621L3.013,1.765h23.589l-3.413,3.413c-0.041,0.684-0.408,2.89-3.363,4.141 c-0.348,0.147-0.714,0.25-1.093,0.315l-1.968,1.968v0.763h1.732l9.738-9.738V26.986z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<g>
+<rect height="3.519" width="17.646" x="6.177" y="13.246"/>
+<polygon points="9.706,25.588 20.294,25.588 22.059,17.647 7.941,17.647 "/>
+<path d="M10.519,8.506c1.35,0.571,2.732,0.287,3.599-0.017v3.875h1.766V8.489c0.866,0.304,2.249,0.588,3.599,0.017 c2.926-1.238,2.831-3.499,2.831-3.499s-1.41-1.298-4.335-0.06c-2.645,1.12-2.94,2.791-2.973,3.101h-0.01 c-0.032-0.31-0.328-1.98-2.973-3.101c-2.925-1.238-4.335,0.06-4.335,0.06S7.593,7.268,10.519,8.506z"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_geotag_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M19,2h-8c-1.104,0-2,0.896-2,2h12c0-1.104-0.9-2-2-2z"/>
-<path d="M19,5h-8v1.85l11.99,11.99c-0.059-2.944-1.701-5.499-4.117-6.838h0.13v-7z"/>
-<path d="M7,19c0,0.553,0.448,1,1,1h6v8c0,0.553,0.447,1,1,1s1-0.447,1-1v-7.854l-6.719-6.719c-1.406,1.44-2.281,3.4-2.281,5.57z"/>
-<path d="M27.69,26.37l-24.06-24.06c-0.389-0.389-1.004-0.411-1.367-0.048-0.364,0.362-0.342,0.977,0.047,1.366l24.07,24.07c0.389,0.389,1.004,0.408,1.366,0.045s0.33-0.98-0.06-1.37z"/>
-</svg>
\ No newline at end of file
+<path d="M19,2h-8C9.896,2,9,2.896,9,4h12C21,2.896,20.105,2,19,2z"/>
+<path d="M19,5h-8v1.85l11.988,11.988c-0.059-2.944-1.701-5.499-4.117-6.838H19V5z"/>
+<path d="M7,19c0,0.553,0.448,1,1,1h6v8c0,0.553,0.447,1,1,1s1-0.447,1-1v-7.854l-6.719-6.719C7.875,14.868,7,16.828,7,19z"/>
+<path d="M27.694,26.373L3.628,2.307C3.239,1.918,2.624,1.896,2.261,2.259C1.897,2.621,1.919,3.236,2.308,3.625l24.068,24.07 c0.389,0.389,1.004,0.408,1.366,0.045S28.083,26.762,27.694,26.373z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_go.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_go.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M26.32,13.49l-8-6.999c-0.38-0.321-0.84-0.491-1.32-0.491-0.28,0-0.563,0.059-0.827,0.18-0.71,0.324-1.17,1.037-1.17,1.822v2.998h-9c-1.104,0-2,0.896-2,2v4c0,1.104,0.896,2,2,2h9.007l0.002,3.002c0.001,0.784,0.46,1.496,1.175,1.82,0.27,0.12,0.55,0.18,0.83,0.18,0.477,0,0.947-0.17,1.318-0.496l7.992-7c0.43-0.38,0.68-0.92,0.68-1.5s-0.25-1.12-0.68-1.51z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M26.316,13.494l-8-6.999C17.945,6.17,17.475,6,17,6c-0.28,0-0.563,0.059-0.827,0.18C15.459,6.504,15,7.217,15,8.002 L15.002,11H6c-1.104,0-2,0.896-2,2v4c0,1.104,0.896,2,2,2h9.007l0.002,3.002c0.001,0.784,0.46,1.496,1.175,1.82 C16.447,23.941,16.729,24,17.008,24c0.477,0,0.947-0.17,1.318-0.496l7.992-7C26.752,16.125,27,15.576,27,15 C27,14.423,26.751,13.875,26.316,13.494z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27.75,3.707l-2.121-2.122c-0.781-0.781-2.047-0.781-2.828,0l-6.36,6.365,4.949,4.95,6.363-6.364c0.78-0.782,0.78-2.048,0-2.829z"/>
-<path d="M1.586,22.8c-0.781,0.781-0.781,2.047,0,2.828l2.121,2.121c0.781,0.781,2.047,0.781,2.828,0l6.364-6.363-4.95-4.949-6.364,6.36z"/>
-<path d="M23.51,19.26c0.268-0.268,0.361-0.664,0.242-1.023-0.12-0.359-0.433-0.621-0.808-0.674l-2.97-0.424,0.707-0.707c0.391-0.391,0.391-1.024,0-1.415l-6.364-6.364c-0.236-0.236-0.575-0.339-0.903-0.273l-3.723-0.101-1.866-1.865c-0.391-0.39-1.024-0.39-1.415,0-0.39,0.391-0.39,1.024,0,1.415l1.866,1.865,0.101,3.714c-0.064,0.328,0.037,0.667,0.273,0.903l6.365,6.364c0.39,0.391,1.023,0.391,1.414,0l0.707-0.707,0.424,2.969c0.054,0.376,0.314,0.688,0.674,0.809,0.359,0.119,0.756,0.025,1.023-0.242l1.414-1.414,2.828,2.828,1.414-1.414-2.828-2.828,1.44-1.42z"/>
-</svg>
\ No newline at end of file
+<path d="M27.748,3.707l-2.121-2.122c-0.781-0.781-2.047-0.781-2.828,0L16.436,7.95l4.949,4.95l6.363-6.364 C28.529,5.754,28.529,4.488,27.748,3.707z"/>
+<path d="M1.586,22.799c-0.781,0.781-0.781,2.047,0,2.828l2.121,2.121c0.781,0.781,2.047,0.781,2.828,0l6.364-6.363l-4.95-4.949 L1.586,22.799z"/>
+<path d="M23.506,19.264c0.268-0.268,0.361-0.664,0.242-1.023c-0.12-0.359-0.433-0.621-0.808-0.674l-2.97-0.424l0.707-0.707 c0.391-0.391,0.391-1.024,0-1.415l-6.364-6.364c-0.236-0.236-0.575-0.339-0.903-0.273L9.697,8.282L7.831,6.417 c-0.391-0.39-1.024-0.39-1.415,0c-0.39,0.391-0.39,1.024,0,1.415l1.866,1.865l0.101,3.714c-0.064,0.328,0.037,0.667,0.273,0.903 l6.365,6.364c0.39,0.391,1.023,0.391,1.414,0l0.707-0.707l0.424,2.969c0.054,0.376,0.314,0.688,0.674,0.809 c0.359,0.119,0.756,0.025,1.023-0.242l1.414-1.414l2.828,2.828l1.414-1.414l-2.828-2.828L23.506,19.264z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_gps_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27.75,3.707l-2.121-2.122c-0.781-0.781-2.047-0.781-2.828,0l-6.36,6.365,4.949,4.95,6.363-6.364c0.78-0.782,0.78-2.048,0-2.829z"/>
-<path d="M1.586,22.8c-0.781,0.781-0.781,2.048,0,2.829l2.121,2.121c0.781,0.781,2.047,0.781,2.828,0l6.364-6.364-4.95-4.949-6.364,6.36z"/>
-<path d="M23.46,19.31l0.047-0.047c0.268-0.268,0.361-0.664,0.242-1.023-0.12-0.359-0.433-0.62-0.808-0.674l-1.428-0.203,1.95,1.94z"/>
-<path d="M20.63,16.48l0.047-0.047c0.391-0.391,0.391-1.023,0-1.414l-6.364-6.364c-0.236-0.236-0.575-0.339-0.903-0.273l-0.902-0.024,8.11,8.121z"/>
-<path d="M17.36,21.51l0.205,1.431c0.054,0.376,0.314,0.688,0.674,0.808,0.359,0.12,0.756,0.026,1.023-0.242l0.047-0.047-1.94-1.95z"/>
-<path d="M8.359,12.5l0.023,0.905c-0.064,0.328,0.037,0.667,0.273,0.903l6.365,6.364c0.39,0.391,1.023,0.391,1.414,0l0.047-0.047-8.121-8.11z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.004,0.048,1.367s-0.978,0.344-1.366-0.045l-24.06-24.08c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.363,0.979-0.341,1.367,0.048l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<path d="M27.748,3.707l-2.121-2.122c-0.781-0.781-2.047-0.781-2.828,0L16.436,7.95l4.949,4.95l6.363-6.364 C28.529,5.754,28.529,4.488,27.748,3.707z"/>
+<path d="M1.586,22.798c-0.781,0.781-0.781,2.048,0,2.829l2.121,2.121c0.781,0.781,2.047,0.781,2.828,0l6.364-6.364l-4.95-4.949 L1.586,22.798z"/>
+<path d="M23.459,19.31l0.047-0.047c0.268-0.268,0.361-0.664,0.242-1.023c-0.12-0.359-0.433-0.62-0.808-0.674l-1.428-0.203 L23.459,19.31z"/>
+<path d="M20.631,16.482l0.047-0.047c0.391-0.391,0.391-1.023,0-1.414l-6.364-6.364c-0.236-0.236-0.575-0.339-0.903-0.273 l-0.902-0.024L20.631,16.482z"/>
+<path d="M17.361,21.509l0.205,1.431c0.054,0.376,0.314,0.688,0.674,0.808c0.359,0.12,0.756,0.026,1.023-0.242l0.047-0.047 L17.361,21.509z"/>
+<path d="M8.359,12.505l0.023,0.905c-0.064,0.328,0.037,0.667,0.273,0.903l6.365,6.364c0.39,0.391,1.023,0.391,1.414,0l0.047-0.047 L8.359,12.505z"/>
+<path d="M27.693,26.373c0.389,0.389,0.41,1.004,0.048,1.367s-0.978,0.344-1.366-0.045L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.363,0.979-0.341,1.367,0.048L27.693,26.373z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_group.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_group.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M10.3,17.47c0.053-0.006,0.277-0.016,0.332-0.021-1.624-1.71-2.63-4.31-2.63-6.97,0-3.686,1.954-6.82,4.67-7.988-0.82-1.506-2.15-2.492-3.67-2.492-2.481,0-4.5,2.641-4.5,5.892,0,2.276,1.011,4.544,2.514,5.648,0.117,0.087,0.184,0.224,0.184,0.367v0.329c0,1.305-1.227,1.793-2.249,1.814-4.445,0.45-4.931,5.69-4.949,5.95h5.387c1.127-1.3,2.713-2.31,4.913-2.53z"/>
-<path d="M22,10.48c0,2.66-1.008,5.26-2.638,6.968,0.046,0.005,0.091,0.009,0.137,0.009,0.066,0,0.132,0.003,0.198,0.01,2.21,0.221,3.803,1.229,4.932,2.533h5.37c-0.021-0.259-0.504-5.501-4.951-5.949-0.776,0-2.25-0.378-2.25-1.814v-0.329c0-0.144,0.07-0.28,0.184-0.367,1.507-1.104,2.518-3.372,2.518-5.648,0-3.251-2.02-5.892-4.5-5.892-1.515,0-2.854,0.986-3.67,2.492,2.72,1.168,4.67,4.303,4.67,7.988z"/>
-<path d="M5,26c0.02-0.285,0.561-6.051,5.498-6.543,1.136-0.025,2.5-0.563,2.5-1.996v-0.363c0-0.158-0.074-0.309-0.205-0.404-1.68-1.22-2.8-3.72-2.8-6.22,0-3.576,2.24-6.48,5-6.48s5,2.904,5,6.48c0,2.504-1.123,4.998-2.797,6.213-0.127,0.096-0.205,0.246-0.205,0.404v0.363c0,1.58,1.639,1.996,2.501,1.996,4.94,0.5,5.48,6.27,5.5,6.55h-20z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M10.299,17.467c0.053-0.006,0.277-0.016,0.332-0.021C9.006,15.738,8,13.139,8,10.48c0-3.686,1.954-6.82,4.67-7.988 C11.854,0.986,10.515,0,9,0C6.519,0,4.5,2.641,4.5,5.892c0,2.276,1.011,4.544,2.514,5.648c0.117,0.087,0.184,0.224,0.184,0.367 v0.329c0,1.305-1.227,1.793-2.249,1.814C0.504,14.499,0.018,19.741,0,20h5.387C6.514,18.701,8.1,17.686,10.299,17.467z"/>
+<path d="M22,10.48c0,2.66-1.008,5.26-2.638,6.968c0.046,0.005,0.091,0.009,0.137,0.009c0.066,0,0.132,0.003,0.198,0.01 c2.21,0.221,3.803,1.229,4.932,2.533H30c-0.021-0.259-0.504-5.501-4.951-5.949c-0.776,0-2.25-0.378-2.25-1.814v-0.329 c0-0.144,0.07-0.28,0.184-0.367c1.507-1.104,2.518-3.372,2.518-5.648C25.5,2.641,23.481,0,21,0c-1.515,0-2.854,0.986-3.67,2.492 C20.046,3.66,22,6.795,22,10.48z"/>
+<path d="M5,26c0.02-0.285,0.561-6.051,5.498-6.543c1.136-0.025,2.5-0.563,2.5-1.996v-0.363c0-0.158-0.074-0.309-0.205-0.404 C11.123,15.479,10,12.984,10,10.48C10,6.904,12.242,4,15,4s5,2.904,5,6.48c0,2.504-1.123,4.998-2.797,6.213 c-0.127,0.096-0.205,0.246-0.205,0.404v0.363c0,1.58,1.639,1.996,2.501,1.996C24.439,19.949,24.977,25.715,25,26H5z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hard_disk.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hard_disk.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M15,9c-1.654,0-3,1.346-3,3s1.346,3,3,3,3-1.346,3-3-1.35-3-3-3zm0,4c-0.551,0-1-0.448-1-1s0.449-1,1-1,1,0.448,1,1-0.45,1-1,1z"/>
-<path d="M24,1h-18c-1.1,0-2,0.9-2,2v24c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-24c0-1.1-0.9-2-2-2zm-10,26h-8v-8.695c0.811,1.152,1.844,2.131,3.025,2.901l2.975-5.2v6.563c0.646,0.184,1.311,0.324,2,0.387v4.05zm10,0h-8v-3h8v3zm-9-6c-0.688,0-1.355-0.084-2-0.23v-4.77c0-0.453-0.305-0.851-0.743-0.967-0.09-0.02-0.18-0.03-0.26-0.03-0.353,0-0.688,0.187-0.868,0.504l-1.929,3.375c-1.955-1.65-3.201-4.12-3.201-6.88,0-4.971,4.029-9,9-9s9,4.029,9,9-4.03,9-9,9z"/>
-</svg>
\ No newline at end of file
+<path d="M15,9c-1.654,0-3,1.346-3,3s1.346,3,3,3s3-1.346,3-3S16.654,9,15,9z M15,13c-0.551,0-1-0.448-1-1s0.449-1,1-1s1,0.448,1,1 S15.551,13,15,13z"/>
+<path d="M24,1H6C4.9,1,4,1.9,4,3v24c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2V3C26,1.9,25.1,1,24,1z M14,27H6v-8.695 c0.811,1.152,1.844,2.131,3.025,2.901L12,16v6.563c0.646,0.184,1.311,0.324,2,0.387V27z M24,27h-8v-3h8V27z M15,21 c-0.688,0-1.355-0.084-2-0.23V16c0-0.453-0.305-0.851-0.743-0.967C12.172,15.011,12.085,15,12,15c-0.353,0-0.688,0.187-0.868,0.504 l-1.929,3.375C7.246,17.229,6,14.761,6,12c0-4.971,4.029-9,9-9s9,4.029,9,9S19.971,21,15,21z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hd.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hd.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M18.64,11.46h-0.509v6.332h0.532c0.542,0,0.942-0.21,1.224-0.644,0.296-0.455,0.445-1.33,0.445-2.602,0-1.125-0.147-1.938-0.439-2.416-0.27-0.45-0.68-0.67-1.24-0.67z"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-12.21,15.2h-2.018v-4.248h-2.096v4.25h-2.009v-9.137h2.012v3.492h2.096v-3.492h2.018v9.14zm6.67-1.14c-0.629,0.755-1.584,1.139-2.84,1.139h-2.509v-9.137h2.685c1.197,0,2.108,0.366,2.708,1.086,0.591,0.709,0.891,1.829,0.891,3.327,0,1.63-0.32,2.84-0.94,3.58z"/>
-</svg>
\ No newline at end of file
+<path d="M18.635,11.46h-0.509v6.332h0.532c0.542,0,0.942-0.21,1.224-0.644c0.296-0.455,0.445-1.33,0.445-2.602 c0-1.125-0.147-1.938-0.439-2.416C19.612,11.68,19.202,11.46,18.635,11.46z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M14.786,19.2h-2.018 v-4.248h-2.096V19.2H8.661v-9.137h2.012v3.492h2.096v-3.492h2.018V19.2z M21.463,18.062c-0.629,0.755-1.584,1.139-2.84,1.139h-2.509 v-9.137h2.685c1.197,0,2.108,0.366,2.708,1.086c0.591,0.709,0.891,1.829,0.891,3.327C22.397,16.111,22.083,17.316,21.463,18.062z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_help_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_help_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M17.48,20.01c-0.683,0-1.26,0.239-1.735,0.726-0.478,0.483-0.714,1.071-0.714,1.764s0.236,1.286,0.714,1.771c0.48,0.49,1.06,0.73,1.74,0.73,0.674,0,1.249-0.243,1.729-0.733,0.483-0.485,0.721-1.078,0.721-1.771,0-0.692-0.235-1.28-0.711-1.764-0.48-0.5-1.06-0.73-1.74-0.73z"/>
-<path d="M23.15,2.437c-1.23-0.958-3.02-1.437-5.36-1.437-1.41,0-3,0.248-4.79,0.741v1.599c0.692,0.158,1.332,0.37,1.915,0.641,0.793-0.152,1.524-0.238,2.178-0.238,1.179,0,2.063,0.265,2.65,0.788,0.591,0.524,0.884,1.313,0.884,2.364,0,0.504-0.12,1.02-0.363,1.545-0.189,0.409-0.627,0.974-1.295,1.682,0,0.19,0.02,0.36,0.02,0.55,0,1.055-0.233,2.135-0.694,3.209-0.457,1.045-1.35,2.23-2.795,3.724v0.114h3.938v-1.433c0-0.643,0.168-1.205,0.498-1.696,0.329-0.487,0.987-1.226,1.97-2.213,1.343-1.368,2.191-2.461,2.552-3.284,0.34-0.818,0.52-1.626,0.52-2.412,0-1.87-0.62-3.281-1.85-4.237z"/>
-<path d="M5,8.452v-2.711c1.788-0.493,3.385-0.741,4.791-0.741,2.337,0,4.124,0.479,5.355,1.437,1.23,0.956,1.85,2.367,1.85,4.233,0,0.786-0.178,1.594-0.532,2.421-0.36,0.823-1.209,1.916-2.552,3.284-0.982,0.987-1.641,1.726-1.97,2.213-0.33,0.491-0.498,1.054-0.498,1.696v1.433h-3.939v-1.653c0-1.062,0.233-1.982,0.698-2.76,0.464-0.776,1.183-1.634,2.155-2.567,1.024-1.01,1.657-1.778,1.899-2.301,0.243-0.525,0.363-1.041,0.363-1.545,0-1.052-0.293-1.84-0.884-2.364-0.588-0.523-1.472-0.788-2.65-0.788-1.146,0.014-2.508,0.251-4.09,0.724zm4.479,20.55c-0.683,0-1.26-0.243-1.735-0.733-0.478-0.485-0.714-1.078-0.714-1.771,0-0.692,0.236-1.28,0.714-1.764,0.476-0.486,1.053-0.726,1.735-0.726,0.684,0,1.261,0.239,1.738,0.726,0.476,0.483,0.711,1.071,0.711,1.764s-0.237,1.286-0.721,1.771c-0.48,0.49-1.06,0.73-1.731,0.73z"/>
-</svg>
\ No newline at end of file
+<path d="M17.479,20.006c-0.683,0-1.26,0.239-1.735,0.726c-0.478,0.483-0.714,1.071-0.714,1.764c0,0.693,0.236,1.286,0.714,1.771 C16.22,24.757,16.797,25,17.479,25c0.674,0,1.249-0.243,1.729-0.733c0.483-0.485,0.721-1.078,0.721-1.771 c0-0.692-0.235-1.28-0.711-1.764C18.74,20.245,18.163,20.006,17.479,20.006z"/>
+<path d="M23.146,2.437C21.915,1.479,20.128,1,17.791,1C16.385,1,14.788,1.248,13,1.741V3.34c0.692,0.158,1.332,0.37,1.915,0.641 c0.793-0.152,1.524-0.238,2.178-0.238c1.179,0,2.063,0.265,2.65,0.788c0.591,0.524,0.884,1.313,0.884,2.364 c0,0.504-0.12,1.02-0.363,1.545c-0.189,0.409-0.627,0.974-1.295,1.682C18.979,10.306,19,10.479,19,10.674 c0,1.055-0.233,2.135-0.694,3.209c-0.457,1.045-1.35,2.23-2.795,3.724v0.114h3.938v-1.433c0-0.643,0.168-1.205,0.498-1.696 c0.329-0.487,0.987-1.226,1.97-2.213c1.343-1.368,2.191-2.461,2.552-3.284C24.822,8.268,25,7.46,25,6.674 C25,4.804,24.382,3.393,23.146,2.437z"/>
+<path d="M5,8.452V5.741C6.788,5.248,8.385,5,9.791,5c2.337,0,4.124,0.479,5.355,1.437C16.382,7.393,17,8.804,17,10.674 c0,0.786-0.178,1.594-0.532,2.421c-0.36,0.823-1.209,1.916-2.552,3.284c-0.982,0.987-1.641,1.726-1.97,2.213 c-0.33,0.491-0.498,1.054-0.498,1.696v1.433H7.511v-1.653c0-1.062,0.233-1.982,0.698-2.76c0.464-0.776,1.183-1.634,2.155-2.567 c1.024-1.01,1.657-1.778,1.899-2.301c0.243-0.525,0.363-1.041,0.363-1.545c0-1.052-0.293-1.84-0.884-2.364 c-0.588-0.523-1.472-0.788-2.65-0.788C7.944,7.742,6.582,7.979,5,8.452z M9.479,29c-0.683,0-1.26-0.243-1.735-0.733 c-0.478-0.485-0.714-1.078-0.714-1.771c0-0.692,0.236-1.28,0.714-1.764c0.476-0.486,1.053-0.726,1.735-0.726 c0.684,0,1.261,0.239,1.738,0.726c0.476,0.483,0.711,1.071,0.711,1.764c0,0.693-0.237,1.286-0.721,1.771 C10.729,28.757,10.153,29,9.479,29z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_history.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_history.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M14,23h-5v-2h5.232c0.247-1.087,0.687-2.102,1.289-3h-6.52v-2h8.355c1.545-1.248,3.508-2,5.645-2,0.338,0,0.672,0.022,1,0.059v-11.06c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h12.31c-1.43-1.59-2.31-3.69-2.31-6zm-5-17h11v2h-11v-2zm0,5h11v2h-11v-2zm-1,12h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2z"/>
-<path d="M23,16c-3.865,0-7,3.135-7,7,0,3.867,3.135,7,7,7s7-3.133,7-7c0-3.86-3.14-7-7-7zm-1,7.99v-6h2v4.004h4v1.996h-6z"/>
-</svg>
\ No newline at end of file
+<path d="M14,23H9v-2h5.232c0.247-1.087,0.687-2.102,1.289-3H9v-2h8.355c1.545-1.248,3.508-2,5.645-2c0.338,0,0.672,0.022,1,0.059V3 c0-1.104-0.896-2-2-2H4C2.896,1,2,1.896,2,3v24c0,1.104,0.896,2,2,2h12.311C14.879,27.406,14,25.307,14,23z M9,6h11v2H9V6z M9,11h11 v2H9V11z M8,23H6v-2h2V23z M8,18H6v-2h2V18z M8,13H6v-2h2V13z M8,8H6V6h2V8z"/>
+<path d="M23,16c-3.865,0-7,3.135-7,7c0,3.867,3.135,7,7,7s7-3.133,7-7C30,19.135,26.865,16,23,16z M22,23.992v-0.016v-1.98v-4.004h2 v4.004h4v1.996H22z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hold_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hold_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M28.91,10.03l-7.672,2.057c-0.34,0.139-0.546,0.473-0.46,0.799l0.571,2.26h-0.01c0.001,0,0.002,0.002,0.002,0.002-1.125,0.355-3.859,0.922-5.933,0.924-2.159-0.002-4.325-0.162-6.604-0.766,0,0-0.009-0.002-0.012-0.002,0.006-0.008,0.012-0.014,0.017-0.02l0.648-2.953c0.081-0.375-0.194-0.738-0.608-0.816l-7.822-1.486c-0.412-0.076-0.811,0.162-0.891,0.537,0,0-0.068,0.324-0.126,1.223h-0.004c-0.032,0.492,0.042,0.588,0.092,1.133,0.043,0.465,0.125,0.885,0.219,1.254,0,0-0.003,0.002-0.002,0.004,0.019,0.074,0.039,0.145,0.059,0.217,0.001,0.02,0.004,0.03,0.005,0.04,0.203,0.719,0.429,1.17,0.429,1.17,0.339,0.572,1.856,2.186,3.813,3.068,1.244,0.559,5.891,1.607,10.1,1.607,4.205,0.002,9.565-1.174,11.44-2.178,1.873-1.004,2.946-2.211,3.166-2.67,0,0,0.59-1.164,0.657-2.688,0.024-0.51,0.038-0.543-0.009-1.002l-0.003-0.008v0.008c-0.094-0.908-0.161-1.244-0.161-1.244-0.11-0.37-0.51-0.57-0.91-0.46z"/>
-</svg>
\ No newline at end of file
+<path d="M28.908,10.027l-7.672,2.057c-0.34,0.139-0.546,0.473-0.46,0.799l0.571,2.26c-0.002,0-0.008,0-0.01,0 c0.001,0,0.002,0.002,0.002,0.002c-1.125,0.355-3.859,0.922-5.933,0.924c-2.159-0.002-4.325-0.162-6.604-0.766 c0,0-0.009-0.002-0.012-0.002c0.006-0.008,0.012-0.014,0.017-0.02l0.648-2.953c0.081-0.375-0.194-0.738-0.608-0.816l-7.822-1.486 c-0.412-0.076-0.811,0.162-0.891,0.537c0,0-0.068,0.324-0.126,1.223H0.008c-0.032,0.492,0.042,0.588,0.092,1.133 c0.043,0.465,0.125,0.885,0.219,1.254c0,0-0.003,0.002-0.002,0.004c0.019,0.074,0.039,0.145,0.059,0.217 C0.377,14.4,0.38,14.41,0.381,14.418c0.203,0.719,0.429,1.17,0.429,1.17c0.339,0.572,1.856,2.186,3.813,3.068 c1.244,0.559,5.891,1.607,10.095,1.607c4.205,0.002,9.565-1.174,11.437-2.178c1.873-1.004,2.946-2.211,3.166-2.67 c0,0,0.59-1.164,0.657-2.688c0.024-0.51,0.038-0.543-0.009-1.002l-0.003-0.008v0.008c-0.094-0.908-0.161-1.244-0.161-1.244 C29.71,10.125,29.308,9.92,28.908,10.027z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M4,17.75v8.25c0,1.104,0.896,2,2,2h18c1.104,0,2-0.896,2-2v-8.271l-11-9.73-11,9.75zm14,1.25v7h-6v-7c0-1.104,0.896-2,2-2h2c1.1,0,2,0.9,2,2z"/>
-<path d="M27.35,11.52l-11-10c-0.39-0.347-0.87-0.52-1.35-0.52s-0.964,0.173-1.346,0.52l-11,10c-0.412,0.38-0.65,0.92-0.65,1.48s0.238,1.102,0.654,1.48l1.346,1.22v0.047l11-9.75,11,9.729v-0.026l1.346-1.223c0.41-0.38,0.65-0.92,0.65-1.48s-0.24-1.1-0.65-1.48z"/>
-</svg>
\ No newline at end of file
+<path d="M4,17.75V26c0,1.104,0.896,2,2,2h18c1.104,0,2-0.896,2-2v-8.271L15,8L4,17.75z M18,19v7h-6v-7c0-1.104,0.896-2,2-2h2 C17.104,17,18,17.896,18,19z"/>
+<path d="M27.346,11.52l-11-10C15.964,1.173,15.482,1,15,1s-0.964,0.173-1.346,0.52l-11,10C2.238,11.899,2,12.437,2,13 s0.238,1.102,0.654,1.48L4,15.703v0.047L15,6l11,9.729v-0.026l1.346-1.223C27.762,14.102,28,13.563,28,13 S27.762,11.899,27.346,11.52z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M25.34,17.21v2.331h1.691v2.277c-0.228,0.082-0.528,0.149-1.005,0.149-1.754,0-2.802-1.454-2.802-3.889,0-1.19,0.382-5.022,4.613-3.446l0.46,0.288,0.536-2.296s-0.991-0.788-2.648-0.788c-2.989,0-5.13,2.537-5.005,6.311,0.188,5.581,3.314,6.182,4.773,6.182,1.977,0,3.043-0.788,3.043-0.788v-6.331h-3.647z"/>
-<path d="M12.68,5.949h6.298v3.392h-3.878v2.937s4.93-0.916,4.631,6.4c0,0,0.152,5.113-3.726,5.585-1.121,0.138-3.352-0.306-3.352-0.306l0.026-3.436s4.743,1.521,4.743-2.199c0-3.982-4.743-2.626-4.743-2.626v-9.731z"/>
-<rect height="2.625" width="2.144" x="8.896" y="21.54"/>
-<path d="M6.864,14.16c0.727-0.923,1.144-2.202,1.144-3.721,0-1.288-0.417-4.766-3.377-4.766-2.039,0-3.266,1.814-3.266,1.814l0.755,3.327s1.138-1.578,2.245-1.578c0.545,0,1.199,0.266,1.199,1.552,0,1.524-1.21,1.86-1.67,1.86h-1.291v3.436h1.295c0.33,0,2.188,0.399,2.015,2.368-0.331,3.823-3.281,1.695-3.613,1.373l-0.562-0.558-0.738,3.36s1.095,1.631,3.228,1.631c2.848,0,4.159-2.992,4.159-5.771,0-1.85-0.58-3.43-1.523-4.33z"/>
-</svg>
\ No newline at end of file
+<path d="M25.343,17.212v2.331h1.691v2.277c-0.228,0.082-0.528,0.149-1.005,0.149c-1.754,0-2.802-1.454-2.802-3.889 c0-1.19,0.382-5.022,4.613-3.446l0.46,0.288l0.536-2.296c0,0-0.991-0.788-2.648-0.788c-2.989,0-5.13,2.537-5.005,6.311 c0.188,5.581,3.314,6.182,4.773,6.182c1.977,0,3.043-0.788,3.043-0.788v-6.331H25.343z"/>
+<path d="M12.681,5.949h6.298v3.392h-3.878v2.937c0,0,4.93-0.916,4.631,6.4c0,0,0.152,5.113-3.726,5.585 c-1.121,0.138-3.352-0.306-3.352-0.306l0.026-3.436c0,0,4.743,1.521,4.743-2.199c0-3.982-4.743-2.626-4.743-2.626V5.949z"/>
+<rect height="2.625" width="2.144" x="8.896" y="21.537"/>
+<path d="M6.864,14.156c0.727-0.923,1.144-2.202,1.144-3.721c0-1.288-0.417-4.766-3.377-4.766c-2.039,0-3.266,1.814-3.266,1.814 l0.755,3.327c0,0,1.138-1.578,2.245-1.578c0.545,0,1.199,0.266,1.199,1.552c0,1.524-1.21,1.86-1.67,1.86H2.603v3.436h1.295 c0.33,0,2.188,0.399,2.015,2.368c-0.331,3.823-3.281,1.695-3.613,1.373l-0.562-0.558L1,22.627c0,0,1.095,1.631,3.228,1.631 c2.848,0,4.159-2.992,4.159-5.771C8.387,16.635,7.807,15.061,6.864,14.156z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="8.182,22.26,5.341,22.26,9.513,28.94,11.54,27.67"/>
-<polygon points="10.52,22.26,12.02,24.68,16.12,24.68,14.61,22.26"/>
-<polygon points="16.95,22.26,18.45,24.68,22.56,24.68,21.06,22.26"/>
-<polygon points="23.4,22.26,24.64,24.26,24.64,22.26"/>
-<polygon points="21.76,19.7,24.64,19.7,20.47,13.02,18.42,14.3"/>
-<polygon points="19.42,19.7,17.92,17.28,13.86,17.28,15.36,19.7"/>
-<polygon points="13.03,19.7,11.53,17.28,7.427,17.28,8.927,19.7"/>
-<polygon points="5.341,17.68,5.341,19.7,6.594,19.7"/>
-<path d="M22.18,7.594v1.319h1.179v1.291c-0.159,0.045-0.368,0.083-0.699,0.083-1.218,0-1.942-0.823-1.942-2.201,0-0.674,0.261-2.843,3.199-1.952l0.32,0.164,0.374-1.299s-0.691-0.447-1.841-0.447c-2.076,0-3.559,1.437-3.474,3.575,0.13,3.16,2.3,3.499,3.311,3.499,1.373,0,2.112-0.448,2.112-0.448v-3.576h-2.538z"/>
-<path d="M13.39,1.219h4.371v1.917h-2.691v1.663s3.421-0.518,3.215,3.622c0,0,0.107,2.896-2.588,3.165-0.778,0.079-2.327-0.174-2.327-0.174l0.021-1.946s3.291,0.862,3.291-1.245c0-2.252-3.291-1.487-3.291-1.487v-5.523z"/>
-<rect height="1.487" width="1.486" x="10.76" y="10.04"/>
-<path d="M9.353,5.866c0.506-0.523,0.79-1.249,0.79-2.107,0-0.728-0.288-2.7-2.343-2.7-1.415,0-2.266,1.029-2.266,1.029l0.527,1.883s0.788-0.896,1.557-0.896c0.379,0,0.828,0.152,0.828,0.879,0,0.866-0.836,1.051-1.158,1.051h-0.891v1.946h0.897c0.232,0,1.52,0.223,1.402,1.342-0.231,2.167-2.279,0.961-2.51,0.777l-0.393-0.315-0.512,1.903s0.761,0.925,2.245,0.925c1.977,0,2.885-1.693,2.885-3.266,0-1.045-0.4-1.936-1.057-2.448z"/>
-</svg>
\ No newline at end of file
+<polygon points="8.182,22.262 5.341,22.262 9.513,28.939 11.54,27.668 "/>
+<polygon points="10.517,22.26 12.021,24.679 16.116,24.679 14.613,22.26 "/>
+<polygon points="16.948,22.26 18.453,24.679 22.565,24.679 21.063,22.26 "/>
+<polygon points="23.398,22.26 24.644,24.264 24.644,22.26 "/>
+<polygon points="21.757,19.697 24.642,19.697 20.471,13.018 18.42,14.301 "/>
+<polygon points="19.422,19.697 17.921,17.281 13.86,17.281 15.362,19.697 "/>
+<polygon points="13.027,19.697 11.529,17.281 7.427,17.281 8.927,19.698 "/>
+<polygon points="5.341,17.682 5.341,19.698 6.594,19.698 "/>
+<path d="M22.182,7.594v1.319h1.179v1.291c-0.159,0.045-0.368,0.083-0.699,0.083c-1.218,0-1.942-0.823-1.942-2.201 c0-0.674,0.261-2.843,3.199-1.952l0.32,0.164l0.374-1.299c0,0-0.691-0.447-1.841-0.447c-2.076,0-3.559,1.437-3.474,3.575 c0.13,3.16,2.3,3.499,3.311,3.499c1.373,0,2.112-0.448,2.112-0.448V7.594H22.182z"/>
+<path d="M13.393,1.219h4.371v1.917h-2.691v1.663c0,0,3.421-0.518,3.215,3.622c0,0,0.107,2.896-2.588,3.165 c-0.778,0.079-2.327-0.174-2.327-0.174l0.021-1.946c0,0,3.291,0.862,3.291-1.245c0-2.252-3.291-1.487-3.291-1.487V1.219z"/>
+<rect height="1.487" width="1.486" x="10.765" y="10.043"/>
+<path d="M9.353,5.866c0.506-0.523,0.79-1.249,0.79-2.107c0-0.728-0.288-2.7-2.343-2.7c-1.415,0-2.266,1.029-2.266,1.029l0.527,1.883 c0,0,0.788-0.896,1.557-0.896c0.379,0,0.828,0.152,0.828,0.879c0,0.866-0.836,1.051-1.158,1.051H6.394v1.946h0.897 c0.232,0,1.52,0.223,1.402,1.342c-0.231,2.167-2.279,0.961-2.51,0.777L5.79,8.755l-0.512,1.903c0,0,0.761,0.925,2.245,0.925 c1.977,0,2.885-1.693,2.885-3.266C10.408,7.269,10.006,6.378,9.353,5.866z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_context.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_context.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M22.12,7.638v1.314h1.176v1.287c-0.156,0.045-0.365,0.083-0.697,0.083-1.211,0-1.936-0.821-1.936-2.193,0-0.672,0.261-2.834,3.19-1.947l0.32,0.164,0.37-1.295s-0.688-0.447-1.833-0.447c-2.073,0-3.55,1.433-3.463,3.563,0.128,3.151,2.293,3.489,3.301,3.489,1.366,0,2.104-0.447,2.104-0.447v-3.562h-2.525z"/>
-<polygon points="24.72,22.22,5.481,22.22,9.64,28.88,11.68,27.6,9.827,24.63,9.839,24.63,9.839,24.63,24.72,24.63"/>
-<polygon points="20.56,13,18.52,14.28,20.37,17.25,5.481,17.26,5.481,19.66,24.72,19.66"/>
-<path d="M13.37,1.285h4.357v1.911h-2.687v1.656s3.413-0.515,3.208,3.611c0,0,0.106,2.887-2.58,3.154-0.775,0.079-2.318-0.175-2.318-0.175l0.02-1.938s3.28,0.86,3.28-1.241c0-2.244-3.28-1.482-3.28-1.482v-5.494z"/>
-<rect height="1.482" width="1.482" x="10.74" y="10.08"/>
-<path d="M9.341,5.917c0.501-0.521,0.79-1.245,0.79-2.101,0-0.726-0.289-2.691-2.339-2.691-1.407,0-2.258,1.026-2.258,1.026l0.527,1.876s0.785-0.893,1.552-0.893c0.378,0,0.826,0.152,0.826,0.877,0,0.861-0.834,1.048-1.154,1.048h-0.892v1.938h0.892c0.231,0,1.517,0.223,1.397,1.337-0.229,2.161-2.27,0.958-2.499,0.775l-0.393-0.313-0.51,1.897s0.761,0.921,2.24,0.921c1.968,0,2.873-1.688,2.873-3.255,0-1.042-0.398-1.928-1.049-2.438z"/>
-</svg>
\ No newline at end of file
+<path d="M22.125,7.638v1.314h1.176v1.287c-0.156,0.045-0.365,0.083-0.697,0.083c-1.211,0-1.936-0.821-1.936-2.193 c0-0.672,0.261-2.834,3.19-1.947l0.32,0.164l0.37-1.295c0,0-0.688-0.447-1.833-0.447c-2.073,0-3.55,1.433-3.463,3.563 c0.128,3.151,2.293,3.489,3.301,3.489c1.366,0,2.104-0.447,2.104-0.447V7.638H22.125z"/>
+<polygon points="24.722,22.217 5.481,22.22 9.64,28.876 11.683,27.601 9.827,24.629 9.839,24.629 9.839,24.629 24.722,24.629 "/>
+<polygon points="20.562,13.005 18.518,14.283 20.368,17.254 5.481,17.256 5.481,19.664 24.719,19.662 "/>
+<path d="M13.367,1.285h4.357v1.911h-2.687v1.656c0,0,3.413-0.515,3.208,3.611c0,0,0.106,2.887-2.58,3.154 c-0.775,0.079-2.318-0.175-2.318-0.175l0.02-1.938c0,0,3.28,0.86,3.28-1.241c0-2.244-3.28-1.482-3.28-1.482V1.285z"/>
+<rect height="1.482" width="1.482" x="10.745" y="10.079"/>
+<path d="M9.341,5.917c0.501-0.521,0.79-1.245,0.79-2.101c0-0.726-0.289-2.691-2.339-2.691c-1.407,0-2.258,1.026-2.258,1.026 L6.06,4.027c0,0,0.785-0.893,1.552-0.893c0.378,0,0.826,0.152,0.826,0.877c0,0.861-0.834,1.048-1.154,1.048H6.392v1.938h0.892 c0.231,0,1.517,0.223,1.397,1.337c-0.229,2.161-2.27,0.958-2.499,0.775L5.789,8.796l-0.51,1.897c0,0,0.761,0.921,2.24,0.921 c1.968,0,2.873-1.688,2.873-3.255C10.393,7.313,9.992,6.427,9.341,5.917z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_multipdp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_multipdp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="20.47,13.06,18.42,14.34,20.28,17.32,17.24,17.32,14.58,13.06,12.53,14.34,14.39,17.32,5.341,17.32,5.341,19.74,24.64,19.74"/>
-<polygon points="9.512,28.89,11.56,27.61,9.71,24.63,12.74,24.63,15.4,28.89,17.45,27.61,15.59,24.63,24.64,24.63,24.64,22.21,5.341,22.21"/>
-<path d="M22.18,7.645v1.318h1.179v1.291c-0.159,0.044-0.368,0.083-0.699,0.083-1.218,0-1.943-0.822-1.943-2.201,0-0.674,0.262-2.843,3.2-1.953l0.32,0.164,0.374-1.299s-0.691-0.447-1.841-0.447c-2.076,0-3.559,1.437-3.474,3.574,0.13,3.161,2.3,3.5,3.311,3.5,1.373,0,2.112-0.449,2.112-0.449v-3.575h-2.538z"/>
-<path d="M13.39,1.271h4.371v1.917h-2.691v1.662s3.421-0.518,3.215,3.622c0,0,0.107,2.898-2.588,3.166-0.778,0.077-2.327-0.174-2.327-0.174l0.021-1.945s3.291,0.862,3.291-1.246c0-2.251-3.291-1.487-3.291-1.487v-5.521z"/>
-<rect height="1.487" width="1.486" x="10.76" y="10.09"/>
-<path d="M9.353,5.917c0.506-0.523,0.79-1.248,0.79-2.108,0-0.729-0.288-2.7-2.343-2.7-1.413,0-2.264,1.029-2.264,1.029l0.529,1.884s0.786-0.897,1.554-0.897c0.38,0,0.83,0.153,0.83,0.88,0,0.865-0.837,1.052-1.158,1.052h-0.894v1.945h0.897c0.232,0,1.52,0.224,1.402,1.342-0.231,2.167-2.28,0.964-2.51,0.777l-0.393-0.313-0.512,1.902s0.761,0.924,2.245,0.924c1.977,0,2.884-1.693,2.884-3.265,0-1.047-0.4-1.937-1.057-2.448z"/>
-</svg>
\ No newline at end of file
+<polygon points="20.471,13.062 18.42,14.344 20.276,17.324 17.245,17.324 14.584,13.062 12.532,14.344 14.389,17.324 5.341,17.325 5.341,19.742 24.642,19.74 "/>
+<polygon points="9.512,28.893 11.563,27.611 9.71,24.629 12.737,24.629 15.397,28.893 17.448,27.611 15.592,24.629 24.642,24.629 24.642,22.213 5.341,22.213 "/>
+<path d="M22.182,7.645v1.318h1.179v1.291c-0.159,0.044-0.368,0.083-0.699,0.083c-1.218,0-1.943-0.822-1.943-2.201 c0-0.674,0.262-2.843,3.2-1.953l0.32,0.164l0.374-1.299c0,0-0.691-0.447-1.841-0.447c-2.076,0-3.559,1.437-3.474,3.574 c0.13,3.161,2.3,3.5,3.311,3.5c1.373,0,2.112-0.449,2.112-0.449V7.645H22.182z"/>
+<path d="M13.393,1.271h4.371v1.917h-2.691V4.85c0,0,3.421-0.518,3.215,3.622c0,0,0.107,2.898-2.588,3.166 c-0.778,0.077-2.327-0.174-2.327-0.174l0.021-1.945c0,0,3.291,0.862,3.291-1.246c0-2.251-3.291-1.487-3.291-1.487V1.271z"/>
+<rect height="1.487" width="1.486" x="10.765" y="10.092"/>
+<path d="M9.353,5.917c0.506-0.523,0.79-1.248,0.79-2.108c0-0.729-0.288-2.7-2.343-2.7c-1.413,0-2.264,1.029-2.264,1.029l0.529,1.884 c0,0,0.786-0.897,1.554-0.897c0.38,0,0.83,0.153,0.83,0.88c0,0.865-0.837,1.052-1.158,1.052H6.394v1.945h0.897 c0.232,0,1.52,0.224,1.402,1.342c-0.231,2.167-2.28,0.964-2.51,0.777L5.79,8.808L5.278,10.71c0,0,0.761,0.924,2.245,0.924 c1.977,0,2.884-1.693,2.884-3.265C10.407,7.318,10.006,6.428,9.353,5.917z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_suspended.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_hsdpa_suspended.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="24.64,22.19,24.64,24.61,14.34,24.6,16.36,22.19"/>
-<polygon points="5.342,22.19,10.6,22.19,8.563,24.6,5.342,24.6"/>
-<polygon points="24.64,17.21,24.64,19.63,18.5,19.62,20.52,17.21"/>
-<polygon points="5.342,19.62,5.342,17.21,14.8,17.21,12.76,19.62"/>
-<polygon points="21.39,14.63,9.415,28.9,7.564,27.35,19.59,13.01"/>
-<path d="M22.18,7.633v1.318h1.179v1.29c-0.159,0.044-0.368,0.082-0.699,0.082-1.218,0-1.943-0.823-1.943-2.2,0-0.675,0.262-2.843,3.2-1.953l0.32,0.165,0.374-1.299s-0.691-0.448-1.841-0.448c-2.076-0.002-3.559,1.436-3.474,3.573,0.13,3.16,2.3,3.499,3.311,3.499,1.373,0,2.112-0.447,2.112-0.447v-3.577h-2.537z"/>
-<path d="M13.39,1.257h4.371v1.917h-2.691v1.661s3.421-0.517,3.215,3.623c0,0,0.107,2.897-2.588,3.165-0.778,0.08-2.327-0.175-2.327-0.175l0.021-1.945s3.291,0.863,3.291-1.245c0-2.252-3.291-1.487-3.291-1.487v-5.506z"/>
-<rect height="1.487" width="1.486" x="10.77" y="10.08"/>
-<path d="M9.354,5.904c0.506-0.524,0.79-1.247,0.79-2.107,0-0.73-0.288-2.7-2.343-2.7-1.415,0-2.266,1.029-2.266,1.029l0.527,1.883s0.788-0.896,1.557-0.896c0.379,0,0.828,0.152,0.828,0.88,0,0.864-0.836,1.05-1.158,1.05h-0.89v1.945h0.897c0.232,0,1.52,0.225,1.402,1.342-0.231,2.167-2.28,0.962-2.51,0.778l-0.393-0.315-0.512,1.903s0.761,0.925,2.245,0.925c1.977,0,2.884-1.695,2.884-3.267,0-1.047-0.4-1.936-1.056-2.449z"/>
-</svg>
\ No newline at end of file
+<polygon points="24.645,22.191 24.645,24.607 14.341,24.605 16.359,22.188 "/>
+<polygon points="5.342,22.188 10.605,22.188 8.563,24.605 5.342,24.605 "/>
+<polygon points="24.645,17.211 24.645,19.627 18.497,19.623 20.519,17.211 "/>
+<polygon points="5.342,19.623 5.342,17.211 14.799,17.211 12.761,19.623 "/>
+<polygon points="21.393,14.627 9.415,28.904 7.564,27.35 19.593,13.014 "/>
+<path d="M22.183,7.633v1.318h1.179v1.29c-0.159,0.044-0.368,0.082-0.699,0.082c-1.218,0-1.943-0.823-1.943-2.2 c0-0.675,0.262-2.843,3.2-1.953l0.32,0.165l0.374-1.299c0,0-0.691-0.448-1.841-0.448c-2.076-0.002-3.559,1.436-3.474,3.573 c0.13,3.16,2.3,3.499,3.311,3.499c1.373,0,2.112-0.447,2.112-0.447V7.633H22.183z"/>
+<path d="M13.394,1.257h4.371v1.917h-2.691v1.661c0,0,3.421-0.517,3.215,3.623c0,0,0.107,2.897-2.588,3.165 c-0.778,0.08-2.327-0.175-2.327-0.175l0.021-1.945c0,0,3.291,0.863,3.291-1.245c0-2.252-3.291-1.487-3.291-1.487V1.257z"/>
+<rect height="1.487" width="1.486" x="10.766" y="10.08"/>
+<path d="M9.354,5.904c0.506-0.524,0.79-1.247,0.79-2.107c0-0.73-0.288-2.7-2.343-2.7c-1.415,0-2.266,1.029-2.266,1.029l0.527,1.883 c0,0,0.788-0.896,1.557-0.896c0.379,0,0.828,0.152,0.828,0.88c0,0.864-0.836,1.05-1.158,1.05H6.395v1.945h0.897 c0.232,0,1.52,0.225,1.402,1.342c-0.231,2.167-2.28,0.962-2.51,0.778L5.791,8.793l-0.512,1.903c0,0,0.761,0.925,2.245,0.925 c1.977,0,2.884-1.695,2.884-3.267C10.408,7.306,10.007,6.417,9.354,5.904z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_img_quality.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_img_quality.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="15,3,1,15.5,15,28,15,27,18,27,18,24,15,24,15,22,18,22,18,19,15,19,15,17,18,17,18,14,15,14,15,12,18,12,18,9,15,9,15,7,18,7,18,4,15,4"/>
+<polygon points="15,3 1,15.5 15,28 15,27 18,27 18,24 15,24 15,22 18,22 18,19 15,19 15,17 18,17 18,14 15,14 15,12 18,12 18,9 15,9 15,7 18,7 18,4 15,4 "/>
<rect height="3" width="3" x="20" y="9"/>
<rect height="3" width="3" x="20" y="14"/>
<rect height="3" width="3" x="25" y="14"/>
<rect height="3" width="3" x="20" y="19"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_import.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_import.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M19.7,14.92l-5.002-6.003c-0.45-0.537-0.7-1.218-0.7-1.917,0-0.434,0.097-0.871,0.279-1.266,0.5-1.056,1.56-1.734,2.72-1.734h-9v16h12v-4.785l-0.3-0.3z"/>
-<path d="M22,16c-0.348,0-0.681-0.076-1-0.189v5.19h-14v-18h10v-2h-10c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2v-11.19c-0.32,0.109-0.65,0.189-1,0.189zm-12,10h-3v-2h3v2zm4,1c-1.104,0-2-0.896-2-2s0.896-2,2-2,2,0.896,2,2-0.9,2-2,2zm7-1h-3v-2h3v2z"/>
-<path d="M16,7c0,0.229,0.079,0.457,0.231,0.641l5,6c0.19,0.23,0.47,0.36,0.77,0.36s0.578-0.132,0.768-0.359l5-6c0.15-0.183,0.23-0.411,0.23-0.64,0-0.144-0.031-0.289-0.095-0.424-0.16-0.351-0.51-0.576-0.9-0.576h-2v-5c0-0.553-0.448-1-1-1h-4c-0.553,0-1,0.447-1,1v5h-2c-0.389,0-0.741,0.225-0.906,0.576-0.06,0.135-0.09,0.28-0.09,0.424z"/>
-</svg>
\ No newline at end of file
+<path d="M19.697,14.924l-5.002-6.003C14.246,8.38,14,7.699,14,7c0-0.434,0.097-0.871,0.279-1.266C14.775,4.678,15.842,4,17,4H8v16 h12v-4.785C19.896,15.121,19.788,15.033,19.697,14.924z"/>
+<path d="M22,16c-0.348,0-0.681-0.076-1-0.189V21H7V3h10V1H7C5.896,1,5,1.896,5,3v24c0,1.104,0.896,2,2,2h14c1.104,0,2-0.896,2-2 V15.811C22.682,15.924,22.348,16,22,16z M10,26H7v-2h3V26z M14,27c-1.104,0-2-0.896-2-2s0.896-2,2-2s2,0.896,2,2S15.104,27,14,27z M21,26h-3v-2h3V26z"/>
+<path d="M16,7c0,0.229,0.079,0.457,0.231,0.641l5,6C21.422,13.868,21.703,14,22,14s0.578-0.132,0.768-0.359l5-6 C27.921,7.457,28,7.229,28,7c0-0.144-0.031-0.289-0.095-0.424C27.741,6.225,27.388,6,27,6h-2V1c0-0.553-0.448-1-1-1h-4 c-0.553,0-1,0.447-1,1v5h-2c-0.389,0-0.741,0.225-0.906,0.576C16.031,6.711,16,6.856,16,7L16,7z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_info.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_info.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2.002 -1.701 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13,0c-7.182,0-13,5.818-13,13s5.818,13,13,13,13-5.818,13-13-5.82-13-13-13zm0,3.672c1.576,0,2.854,1.205,2.854,2.689s-1.27,2.688-2.85,2.688-2.854-1.203-2.854-2.688,1.27-2.689,2.85-2.689zm4.11,18.03h-8.225v-1.443h1.123v-7.613h-1.125v-1.443h7.107v9.057h1.121v1.435z"/>
-</svg>
\ No newline at end of file
+<path d="M13,0C5.818,0,0,5.818,0,13s5.818,13,13,13s13-5.818,13-13S20.182,0,13,0z M13,3.672c1.576,0,2.854,1.205,2.854,2.689 S14.576,9.049,13,9.049s-2.854-1.203-2.854-2.688S11.424,3.672,13,3.672z M17.113,21.705H8.885v-1.443h1.123v-7.613H8.885v-1.443 h7.107v9.057h1.121V21.705z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_iso.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_iso.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M2.854,21.55v-1.512h1.08v-10.08h-1.08v-1.512h4.588v1.512h-1.083v10.08h1.082v1.512h-4.587z"/>
-<path d="M11.58,21.69c-0.955,0-1.895-0.121-2.82-0.361v-1.564c1.014,0.275,1.912,0.414,2.697,0.414,0.744,0,1.326-0.168,1.746-0.502,0.418-0.334,0.627-0.809,0.627-1.424,0-0.58-0.172-1.035-0.518-1.365-0.346-0.332-0.988-0.764-1.926-1.297-1.025-0.574-1.717-1.152-2.074-1.736-0.357-0.582-0.535-1.246-0.535-1.99,0-1.184,0.396-2.072,1.191-2.668,0.793-0.594,1.828-0.893,3.105-0.893,0.926,0,1.779,0.088,2.559,0.264v1.527c-0.826-0.188-1.594-0.281-2.303-0.281-0.645,0-1.16,0.152-1.547,0.457s-0.58,0.727-0.58,1.266c0,0.521,0.168,0.939,0.506,1.254,0.336,0.313,0.912,0.695,1.727,1.146,1.125,0.627,1.877,1.232,2.258,1.818s0.572,1.246,0.572,1.979c0,1.318-0.391,2.307-1.174,2.967-0.8,0.64-1.97,0.97-3.53,0.97z"/>
-<path d="M22.36,21.69c-1.582,0-2.771-0.555-3.572-1.662-0.799-1.107-1.199-2.844-1.199-5.211,0-2.227,0.4-3.869,1.199-4.926,0.801-1.059,1.99-1.588,3.572-1.588,1.594,0,2.791,0.545,3.591,1.631,0.8,1.088,1.2,2.715,1.2,4.883,0,2.361-0.402,4.098-1.205,5.207-0.8,1.11-2,1.66-3.58,1.66zm0-1.51c0.732,0,1.291-0.383,1.675-1.146,0.384-0.766,0.575-2.17,0.575-4.215,0-1.852-0.189-3.148-0.57-3.889-0.382-0.742-0.941-1.113-1.68-1.113-0.732,0-1.291,0.354-1.674,1.061-0.385,0.705-0.576,2.02-0.576,3.941,0,1.893,0.191,3.26,0.572,4.1,0.37,0.84,0.93,1.26,1.67,1.26z"/>
-</svg>
\ No newline at end of file
+<path d="M2.854,21.553v-1.512h1.08V9.959h-1.08V8.447h4.588v1.512H6.359v10.082h1.082v1.512H2.854z"/>
+<path d="M11.58,21.693c-0.955,0-1.895-0.121-2.82-0.361v-1.564c1.014,0.275,1.912,0.414,2.697,0.414 c0.744,0,1.326-0.168,1.746-0.502c0.418-0.334,0.627-0.809,0.627-1.424c0-0.58-0.172-1.035-0.518-1.365 c-0.346-0.332-0.988-0.764-1.926-1.297c-1.025-0.574-1.717-1.152-2.074-1.736c-0.357-0.582-0.535-1.246-0.535-1.99 c0-1.184,0.396-2.072,1.191-2.668c0.793-0.594,1.828-0.893,3.105-0.893c0.926,0,1.779,0.088,2.559,0.264V10.1 c-0.826-0.188-1.594-0.281-2.303-0.281c-0.645,0-1.16,0.152-1.547,0.457s-0.58,0.727-0.58,1.266c0,0.521,0.168,0.939,0.506,1.254 c0.336,0.313,0.912,0.695,1.727,1.146c1.125,0.627,1.877,1.232,2.258,1.818s0.572,1.246,0.572,1.979 c0,1.318-0.391,2.307-1.174,2.967C14.311,21.363,13.139,21.693,11.58,21.693z"/>
+<path d="M22.355,21.693c-1.582,0-2.771-0.555-3.572-1.662c-0.799-1.107-1.199-2.844-1.199-5.211c0-2.227,0.4-3.869,1.199-4.926 c0.801-1.059,1.99-1.588,3.572-1.588c1.594,0,2.791,0.545,3.591,1.631c0.8,1.088,1.2,2.715,1.2,4.883 c0,2.361-0.402,4.098-1.205,5.207C25.139,21.139,23.943,21.693,22.355,21.693z M22.355,20.182c0.732,0,1.291-0.383,1.675-1.146 c0.384-0.766,0.575-2.17,0.575-4.215c0-1.852-0.189-3.148-0.57-3.889c-0.382-0.742-0.941-1.113-1.68-1.113 c-0.732,0-1.291,0.354-1.674,1.061c-0.385,0.705-0.576,2.02-0.576,3.941c0,1.893,0.191,3.26,0.572,4.1 C21.059,19.762,21.617,20.182,22.355,20.182z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_italic.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_italic.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M23.5,3h-12c-0.83,0-1.5,0.672-1.5,1.5s0.67,1.5,1.5,1.5h2.5l-4,18h-2.5c-0.828,0-1.5,0.67-1.5,1.5s0.672,1.5,1.5,1.5h12c0.828,0,1.5-0.672,1.5-1.5s-0.67-1.5-1.5-1.5h-2.5l4-18h2.5c0.83,0,1.5-0.672,1.5-1.5s-0.67-1.5-1.5-1.5z"/>
-</svg>
\ No newline at end of file
+<path d="M23.5,3h-12C10.672,3,10,3.672,10,4.5S10.672,6,11.5,6H14l-4,18H7.5C6.672,24,6,24.672,6,25.5S6.672,27,7.5,27h12 c0.828,0,1.5-0.672,1.5-1.5S20.328,24,19.5,24H17l4-18h2.5C24.328,6,25,5.328,25,4.5S24.328,3,23.5,3z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_join_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_join_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M13.14,8.827c-0.463-0.143-0.937-0.479-0.937-1.177v-0.231c0-0.1,0.047-0.196,0.122-0.257,1-0.773,1.68-2.068,1.68-3.662,0-2.276-1.346-3.417-3-3.417-1.655,0-3,1.141-3,3.417,0,1.593,0.674,2.889,1.676,3.661,0.078,0.062,0.122,0.157,0.122,0.257v0.232c0,0.083-0.014,0.157-0.026,0.231,0.142,0.476,0.228,1.012,0.228,1.619,0,1.365-0.431,2.615-1.198,3.583h4.528c-0.21-0.84-0.33-1.71-0.33-2.6,0-0.565,0.05-1.118,0.14-1.653z"/>
-<path d="M30,26c-0.023-0.284-0.561-6.051-5.501-6.543-0.862,0-2.501-0.416-2.501-1.996v-0.362c0-0.158,0.078-0.309,0.205-0.404,1.68-1.22,2.8-3.72,2.8-6.22,0-3.575-2.24-6.48-5-6.48s-5,2.905-5,6.481c0,2.504,1.123,4.998,2.793,6.213,0.131,0.096,0.205,0.246,0.205,0.404v0.362c0,1.435-1.364,1.972-2.5,1.996-0.26,0.025-0.5,0.074-0.735,0.127,0.75,0.55,1.24,1.43,1.24,2.42v4h14z"/>
-<path d="M5.079,16.7c0.539-0.45,1.221-0.7,1.921-0.7,0.436,0,0.875,0.098,1.271,0.282,1.051,0.49,1.729,1.56,1.729,2.72h1.992c-0.063-0.576-0.526-3.788-3.293-4.08-0.519,0-1.5-0.266-1.5-1.27v-0.231c0-0.101,0.047-0.196,0.122-0.257,1.006-0.77,1.681-2.07,1.681-3.66,0-2.276-1.346-3.417-3-3.417-1.655,0-3,1.141-3,3.417,0,1.593,0.674,2.888,1.676,3.662,0.078,0.061,0.122,0.156,0.122,0.257v0.231c0,0.912-0.817,1.254-1.499,1.27-2.963,0.31-3.287,3.98-3.299,4.16h2.213l2.866-2.38z"/>
-<path d="M7,30c-0.229,0-0.457-0.079-0.641-0.231l-6-5c-0.227-0.19-0.359-0.47-0.359-0.77s0.132-0.578,0.359-0.768l6-5c0.184-0.15,0.412-0.23,0.641-0.23,0.144,0,0.289,0.031,0.424,0.094,0.351,0.17,0.576,0.52,0.576,0.91v2h5c0.553,0,1,0.448,1,1v4c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.741-0.576,0.906-0.135,0.06-0.28,0.09-0.424,0.09z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M13.136,8.827c-0.463-0.143-0.937-0.479-0.937-1.177V7.419c0-0.1,0.047-0.196,0.122-0.257C13.325,6.389,14,5.094,14,3.5 c0-2.276-1.346-3.417-3-3.417c-1.655,0-3,1.141-3,3.417c0,1.593,0.674,2.889,1.676,3.661c0.078,0.062,0.122,0.157,0.122,0.257V7.65 c0,0.083-0.014,0.157-0.026,0.231C9.914,8.357,10,8.893,10,9.5c0,1.365-0.431,2.615-1.198,3.583h4.528 C13.121,12.242,13,11.367,13,10.481C13,9.915,13.048,9.362,13.136,8.827z"/>
+<path d="M30,26c-0.023-0.284-0.561-6.051-5.501-6.543c-0.862,0-2.501-0.416-2.501-1.996v-0.362c0-0.158,0.078-0.309,0.205-0.404 C23.877,15.479,25,12.985,25,10.481C25,6.905,22.758,4,20,4s-5,2.905-5,6.481c0,2.504,1.123,4.998,2.793,6.213 c0.131,0.096,0.205,0.246,0.205,0.404v0.362c0,1.435-1.364,1.972-2.5,1.996c-0.26,0.025-0.5,0.074-0.735,0.127 C15.509,20.131,16,21.006,16,22v4H30z"/>
+<path d="M5.079,16.695C5.618,16.246,6.3,16,7,16c0.436,0,0.875,0.098,1.271,0.282C9.322,16.774,10,17.841,10,19h1.992 c-0.063-0.576-0.526-3.788-3.293-4.08c-0.519,0-1.5-0.266-1.5-1.27v-0.231c0-0.101,0.047-0.196,0.122-0.257 C8.325,12.389,9,11.094,9,9.5c0-2.276-1.346-3.417-3-3.417c-1.655,0-3,1.141-3,3.417c0,1.593,0.674,2.888,1.676,3.662 c0.078,0.061,0.122,0.156,0.122,0.257v0.231c0,0.912-0.817,1.254-1.499,1.27C0.336,15.232,0.012,18.902,0,19.084h2.213L5.079,16.695 z"/>
+<path d="M7,30c-0.229,0-0.457-0.079-0.641-0.231l-6-5C0.132,24.578,0,24.297,0,24s0.132-0.578,0.359-0.768l6-5 C6.543,18.079,6.771,18,7,18c0.144,0,0.289,0.031,0.424,0.094C7.775,18.259,8,18.611,8,19v2h5c0.553,0,1,0.448,1,1v4 c0,0.553-0.447,1-1,1H8v2c0,0.389-0.225,0.741-0.576,0.906C7.289,29.969,7.144,30,7,30L7,30z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_landscape.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_landscape.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M23.59,15.62c-1.65,0-3.125,1.667-4.117,4.286-1.56-7.03-4.89-11.91-8.77-11.91-5.233,0-9.488,8.881-9.703,20h27.99c0.002-0.07,0.006-0.141,0.006-0.211,0-6.72-2.42-12.17-5.41-12.17z"/>
-<path d="M20.5,8.938h1.011c0.457,0.604,1.174,1,1.989,1s1.532-0.396,1.989-1h1.011c1.381,0,2.5-1.119,2.5-2.5s-1.119-2.5-2.5-2.5h-0.283c-0.4-1.126-1.46-1.938-2.72-1.938s-2.321,0.812-2.717,1.938h-0.283c-1.381,0-2.5,1.119-2.5,2.5s1.12,2.5,2.5,2.5z"/>
-</svg>
\ No newline at end of file
+<path d="M23.591,15.625c-1.65,0-3.125,1.667-4.117,4.286C17.911,12.875,14.577,8,10.704,8c-5.233,0-9.488,8.881-9.703,20h27.994 c0.002-0.07,0.006-0.141,0.006-0.211C29.001,21.07,26.579,15.625,23.591,15.625z"/>
+<path d="M20.501,8.938h1.011c0.457,0.604,1.174,1,1.989,1s1.532-0.396,1.989-1h1.011c1.381,0,2.5-1.119,2.5-2.5s-1.119-2.5-2.5-2.5 h-0.283C25.822,2.812,24.762,2,23.501,2s-2.321,0.812-2.717,1.938h-0.283c-1.381,0-2.5,1.119-2.5,2.5S19.12,8.938,20.501,8.938z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_last_result.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_last_result.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7,20c0-1.104,0.896-2,2-2h16c1.104,0,2,0.896,2,2s-0.896,2-2,2h-16c-1.104,0-2-0.9-2-2z"/>
-<path d="M25,10h-8.23c-0.344,1.516-1.072,2.882-2.074,4h10.3c1.104,0,2-0.896,2-2s-0.9-2-2-2z"/>
-<path d="M15,8c0,1.101-0.26,2.138-0.713,3.063-1.889-3.864-4.746-4.169-5.953-4.103v-2.957l-5.337,4,5.334,4v-3.043c0.533-0.074,3.057-0.172,4.59,4.017-1.26,1.26-2.999,2.03-4.92,2.03-3.865,0-7-3.134-7-7s3.135-7,7-7c3.87,0,7,3.134,7,7z"/>
-</svg>
\ No newline at end of file
+<path d="M7,20c0-1.104,0.896-2,2-2h16c1.104,0,2,0.896,2,2l0,0c0,1.104-0.896,2-2,2H9C7.896,22,7,21.104,7,20L7,20z"/>
+<path d="M25,10h-8.23c-0.344,1.516-1.072,2.882-2.074,4H25c1.104,0,2-0.896,2-2S26.104,10,25,10z"/>
+<path d="M15,8c0,1.101-0.26,2.138-0.713,3.063c-1.889-3.864-4.746-4.169-5.953-4.103V6V4L3,8l5.334,4v-2V8.957 c0.533-0.074,3.057-0.172,4.59,4.017C11.66,14.226,9.921,15,8,15c-3.865,0-7-3.134-7-7s3.135-7,7-7C11.867,1,15,4.134,15,8z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M5.045,12.99c0.055-0.67,0.165-1.31,0.317-1.92-0.113-0.04-0.233-0.07-0.362-0.07h-3c-0.552,0-1,0.448-1,1s0.448,1,1,1h3c0.016,0,0.029-0.01,0.045-0.01z"/>
-<path d="M7.539,6.955c0.455-0.49,0.963-0.928,1.525-1.303l-2.446-2.448c-0.342-0.342-0.934-0.302-1.325,0.089s-0.431,0.984-0.089,1.325l2.335,2.337z"/>
-<path d="M15,4c0.341,0,0.673,0.017,1,0.042v-3.209c0-0.46-0.45-0.833-1-0.833s-1,0.373-1,0.833v3.208c0.33-0.024,0.66-0.041,1-0.041z"/>
-<path d="M22.38,6.863l2.238-2.24c0.345-0.344,0.308-0.94-0.083-1.331s-0.986-0.428-1.331-0.083l-2.368,2.37c0.56,0.368,1.08,0.801,1.54,1.284z"/>
-<path d="M28,11h-3.172c-0.07,0-0.131,0.026-0.197,0.04,0.157,0.621,0.27,1.273,0.324,1.96h3.05c0.552,0,1-0.448,1-1s-0.45-1-1-1z"/>
-<path d="M23,14.1c0-5.523-3.58-8.1-8-8.1s-8,2.577-8,8.1c0,3.092,1.393,5.822,3.243,7.629l0.76,2.27h8l0.757-2.271c1.85-1.81,3.24-4.54,3.24-7.63zm-8-5.1c2.281,0,5,0.885,5,5.1,0,3.986-3.288,6.9-5,6.9s-5-2.914-5-6.9c0-4.215,2.72-5.1,5-5.1z"/>
-<path d="M11,27c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-2h-8v2z"/>
-</svg>
\ No newline at end of file
+<path d="M5.045,12.991C5.1,12.32,5.21,11.682,5.362,11.073C5.249,11.029,5.129,11,5,11l-3,0c-0.552,0-1,0.448-1,1s0.448,1,1,1h3 C5.016,13,5.029,12.992,5.045,12.991z"/>
+<path d="M7.539,6.955c0.455-0.49,0.963-0.928,1.525-1.303L6.618,3.204C6.276,2.862,5.684,2.902,5.293,3.293S4.862,4.277,5.204,4.618 L7.539,6.955z"/>
+<path d="M15,4c0.341,0,0.673,0.017,1,0.042V0.833C16,0.373,15.553,0,15,0s-1,0.373-1,0.833v3.208C14.327,4.017,14.659,4,15,4z"/>
+<path d="M22.38,6.863l2.238-2.24c0.345-0.344,0.308-0.94-0.083-1.331s-0.986-0.428-1.331-0.083l-2.368,2.37 C21.404,5.947,21.918,6.38,22.38,6.863z"/>
+<path d="M28,11l-3.172,0c-0.07,0-0.131,0.026-0.197,0.04c0.157,0.621,0.27,1.273,0.324,1.96H28c0.552,0,1-0.448,1-1S28.552,11,28,11 z"/>
+<path d="M23,14.1C23,8.577,19.419,6,15,6s-8,2.577-8,8.1c0,3.092,1.393,5.822,3.243,7.629L11,24l0,0h8l0,0l0.757-2.271 C21.607,19.922,23,17.191,23,14.1z M15,9c2.281,0,5,0.885,5,5.1c0,3.986-3.288,6.9-5,6.9s-5-2.914-5-6.9C10,9.885,12.719,9,15,9z"/>
+<path d="M11,27c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-2h-8V27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_light_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11,26c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-2h-8v2z"/>
-<path d="M15,8c2.281,0,5,0.885,5,5.1,0,0.839-0.152,1.626-0.397,2.354l2.293,2.292c0.68-1.38,1.11-2.95,1.11-4.64,0-5.523-3.58-8.1-8-8.1-1.73,0-3.328,0.401-4.637,1.214l2.221,2.22c0.77-0.321,1.62-0.434,2.42-0.434z"/>
-<path d="M18.85,23l-3.137-3.137c-0.25,0.09-0.49,0.14-0.71,0.14-1.543,0-4.356-2.369-4.9-5.753l-2.953-2.954c-0.094,0.56-0.147,1.16-0.147,1.8,0,3.092,1.393,5.822,3.243,7.629l0.76,2.27h7.853z"/>
-<path d="M27.69,26.37l-24.06-24.06c-0.389-0.389-1.004-0.41-1.367-0.048s-0.342,0.977,0.047,1.366l24.07,24.07c0.389,0.389,1.004,0.408,1.366,0.045s0.33-0.98-0.06-1.37z"/>
-</svg>
\ No newline at end of file
+<path d="M11,26c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-2h-8V26z"/>
+<path d="M15,8c2.281,0,5,0.885,5,5.1c0,0.839-0.152,1.626-0.397,2.354l2.293,2.292C22.574,16.363,23,14.789,23,13.1 C23,7.577,19.419,5,15,5c-1.73,0-3.328,0.401-4.637,1.214l2.221,2.22C13.354,8.113,14.203,8,15,8z"/>
+<path d="M18.853,23l-3.137-3.137C15.459,19.953,15.217,20,15,20c-1.543,0-4.356-2.369-4.9-5.753l-2.953-2.954 C7.053,11.857,7,12.456,7,13.1c0,3.092,1.393,5.822,3.243,7.629L11,23H18.853z"/>
+<path d="M27.694,26.373L3.628,2.307c-0.389-0.389-1.004-0.41-1.367-0.048S1.919,3.236,2.308,3.625l24.068,24.07 c0.389,0.389,1.004,0.408,1.366,0.045S28.083,26.762,27.694,26.373z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M8.74,6.406c-0.389-1.033-1.543-1.556-2.577-1.167l-1.872,0.704c-1.033,0.39-1.556,1.543-1.166,2.577,0.389,1.034,1.543,1.556,2.576,1.167l6.695,17.78c0.389,1.033,1.543,1.557,2.576,1.168,1.033-0.391,1.557-1.543,1.166-2.577l-7.41-19.65z"/>
-<path d="M25.94,1s-3.622,4.569-5.846,4.338c-3.146-0.326-3.652-4.104-9.832-0.572l4.932,13.1s2.104-2.928,3.975-3.633c1.88-0.71,7.49-2.82,6.78-13.24z"/>
-</svg>
\ No newline at end of file
+<path d="M8.74,6.406C8.351,5.373,7.197,4.85,6.163,5.239L4.291,5.943c-1.033,0.39-1.556,1.543-1.166,2.577 c0.389,1.034,1.543,1.556,2.576,1.167l0,0l6.695,17.781c0.389,1.033,1.543,1.557,2.576,1.168c1.033-0.391,1.557-1.543,1.166-2.577 L8.74,6.406z"/>
+<path d="M25.938,1c0,0-3.622,4.569-5.846,4.338c-3.146-0.326-3.652-4.104-9.832-0.572l4.932,13.102c0,0,2.104-2.928,3.975-3.633 C21.039,13.529,26.654,11.416,25.938,1z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location_collection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_location_collection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,1h-19c-1.104,0-2,0.896-2,2v1h20v20h1c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2z"/>
-<path d="M22,6h-19c-1.104,0-2,0.896-2,2v19c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2zm-9.8,21.54c-0.73,0.274-1.547-0.095-1.822-0.826l-4.735-12.57c-0.73,0.275-1.547-0.094-1.821-0.824-0.275-0.731,0.095-1.547,0.825-1.822l1.323-0.498c0.731-0.275,1.547,0.094,1.822,0.824l5.232,13.9c0.27,0.73-0.1,1.55-0.83,1.82zm2.97-10.18c-1.323,0.499-2.811,2.569-2.811,2.569l-3.488-9.265c4.37-2.498,4.729,0.173,6.952,0.404,1.58,0.17,4.14-3.06,4.14-3.06,0.5,7.36-3.47,8.86-4.79,9.36z"/>
-</svg>
\ No newline at end of file
+<path d="M27,1H8C6.896,1,6,1.896,6,3v1h20v17v3h1c1.104,0,2-0.896,2-2V3C29,1.896,28.104,1,27,1z"/>
+<path d="M22,6H3C1.896,6,1,6.896,1,8v19c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2V8C24,6.896,23.104,6,22,6z M12.201,27.543 c-0.73,0.274-1.547-0.095-1.822-0.826L5.645,14.143c-0.73,0.275-1.547-0.094-1.821-0.824c-0.275-0.731,0.095-1.547,0.825-1.822 l1.323-0.498c0.731-0.275,1.547,0.094,1.822,0.824l5.232,13.898C13.302,26.451,12.932,27.268,12.201,27.543z M15.167,17.358 c-1.323,0.499-2.811,2.569-2.811,2.569l-3.488-9.265c4.37-2.498,4.729,0.173,6.952,0.404C17.395,11.23,19.955,8,19.955,8 C20.462,15.365,16.49,16.86,15.167,17.358z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_low_light.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_low_light.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7.539,6.955c0.455-0.49,0.963-0.929,1.525-1.304l-2.446-2.447c-0.342-0.342-0.934-0.302-1.325,0.089s-0.431,0.984-0.089,1.325l2.335,2.337z"/>
-<path d="M15,4c0.341,0,0.673,0.017,1,0.041v-3.208c0-0.46-0.45-0.833-1-0.833s-1,0.373-1,0.833v3.208c0.33-0.024,0.66-0.041,1-0.041z"/>
-<path d="M22.38,6.863l2.239-2.24c0.345-0.344,0.308-0.939-0.083-1.33s-0.986-0.428-1.331-0.084l-2.368,2.37c0.56,0.368,1.08,0.801,1.54,1.284z"/>
-<path d="M23,14.1c0-5.523-3.58-8.1-8-8.1s-8,2.577-8,8.1c0,3.091,1.393,5.822,3.243,7.629l0.76,2.27h8l0.757-2.271c1.85-1.81,3.24-4.54,3.24-7.63zm-8-5.1c2.281,0,5,0.885,5,5.1,0,3.986-3.288,6.9-5,6.9s-5-2.914-5-6.9c0-4.215,2.72-5.1,5-5.1z"/>
-<path d="M11,27c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-2h-8v2z"/>
-</svg>
\ No newline at end of file
+<path d="M7.539,6.955c0.455-0.49,0.963-0.929,1.525-1.304L6.618,3.204C6.276,2.862,5.684,2.902,5.293,3.293S4.862,4.277,5.204,4.618 L7.539,6.955z"/>
+<path d="M15,4c0.341,0,0.673,0.017,1,0.041V0.833C16,0.373,15.553,0,15,0s-1,0.373-1,0.833v3.208C14.327,4.017,14.659,4,15,4z"/>
+<path d="M22.379,6.863l2.239-2.24c0.345-0.344,0.308-0.939-0.083-1.33s-0.986-0.428-1.331-0.084l-2.368,2.37 C21.404,5.947,21.918,6.38,22.379,6.863z"/>
+<path d="M23,14.1C23,8.577,19.419,6,15,6s-8,2.577-8,8.1c0,3.091,1.393,5.822,3.243,7.629L11,24h8l0.757-2.271 C21.607,19.922,23,17.19,23,14.1z M15,9c2.281,0,5,0.885,5,5.1c0,3.986-3.288,6.9-5,6.9s-5-2.914-5-6.9C10,9.885,12.719,9,15,9z"/>
+<path d="M11,27c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-2h-8V27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_horizontal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_horizontal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M19,10h-16c-1.104,0-2,0.896-2,2s0.896,2,2,2h16c3.309,0,6,2.691,6,6,0,1.104,0.896,2,2,2s2-0.896,2-2c0-5.51-4.49-10-10-10z"/>
-</svg>
\ No newline at end of file
+<path d="M19,10H3c-1.104,0-2,0.896-2,2s0.896,2,2,2h16c3.309,0,6,2.691,6,6c0,1.104,0.896,2,2,2s2-0.896,2-2 C29,14.486,24.514,10,19,10z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_vertical.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_lsk_vertical.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M20,1c-5.514,0-10,4.486-10,10v16c0,1.104,0.896,2,2,2s2-0.896,2-2v-16c0-3.309,2.691-6,6-6,1.104,0,2-0.896,2-2s-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M20,1c-5.514,0-10,4.486-10,10v16c0,1.104,0.896,2,2,2s2-0.896,2-2V11c0-3.309,2.691-6,6-6c1.104,0,2-0.896,2-2 S21.104,1,20,1z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_memory_in_use.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_memory_in_use.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24,1h-12c-1.1,0-2.637,0.637-3.414,1.414l-3.172,3.172c-0.777,0.777-1.414,2.314-1.414,3.414v4h1v3h-1v11c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2v-24c0-1.1-0.9-2-2-2zm-6,2h2v5h-2v-5zm-4,0h2v5h-2v-5zm-4,0h2v5h-2v-5zm-4,4h2v5h-2v-5zm17,19h-16v-4h16v4zm1-18h-2v-5h2v5z"/>
-</svg>
\ No newline at end of file
+<path d="M24,1H12c-1.1,0-2.637,0.637-3.414,1.414L5.414,5.586C4.637,6.363,4,7.9,4,9v4h1v3H4v11c0,1.1,0.9,2,2,2h18c1.1,0,2-0.9,2-2 V3C26,1.9,25.1,1,24,1z M18,3h2v5h-2V3z M14,3h2v5h-2V3z M10,3h2v5h-2V3z M6,7h2v5H6V7z M23,26H7v-4h16V26z M24,8h-2V3h2V8z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_mute.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_mute.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
-<path d="M25.8,6.65l-4.95-4.949c-1.172-1.172-3.071-1.172-4.243,0l-5.35,5.348,3.545,3.545c0.514,0.075,1.009,0.302,1.404,0.697,0.395,0.396,0.623,0.891,0.697,1.404l3.545,3.546,5.348-5.348c1.18-1.168,1.18-3.068,0.01-4.24z"/>
-<path d="M7.08,11.23l-3.201,3.201c-1.172,1.172-1.172,3.071,0,4.243l4.949,4.949c1.172,1.172,3.071,1.172,4.243,0l3.201-3.201-9.19-9.19z"/>
-<path d="M19,27h-4v-3.894l-1.222,1.222c-0.5,0.5-1.114,0.835-1.778,1.016v1.65h-4.019c-1.033,0-1.874,0.78-1.981,1.79v1.21h15v-1c0-1.1-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
+<path d="M25.799,6.65L20.85,1.701c-1.172-1.172-3.071-1.172-4.243,0L11.26,7.049l3.545,3.545c0.514,0.075,1.009,0.302,1.404,0.697 c0.395,0.396,0.623,0.891,0.697,1.404l3.545,3.546l5.348-5.348C26.971,9.722,26.971,7.822,25.799,6.65z"/>
+<path d="M7.08,11.228l-3.201,3.201c-1.172,1.172-1.172,3.071,0,4.243l4.949,4.949c1.172,1.172,3.071,1.172,4.243,0l3.201-3.201 L7.08,11.228z"/>
+<path d="M18.997,27H15v-3.894l-1.222,1.222c-0.5,0.5-1.114,0.835-1.778,1.016V27H7.981C6.948,27,6.107,27.784,6,28.787V30h15v-1 C21,27.896,20.104,27,18.997,27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_unmute.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mic_unmute.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M25.8,6.65l-4.95-4.949c-1.172-1.172-3.071-1.172-4.243,0l-5.35,5.348,3.545,3.545c0.514,0.076,1.009,0.303,1.404,0.697,0.395,0.396,0.623,0.891,0.697,1.404l3.545,3.547,5.348-5.348c1.18-1.167,1.18-3.068,0.01-4.24z"/>
-<path d="M16.77,13.97c-0.122,0.313-0.306,0.604-0.558,0.855-0.977,0.977-2.559,0.977-3.535,0-0.977-0.975-0.977-2.559,0-3.535,0.252-0.252,0.544-0.436,0.855-0.557l-4.402-4.378-2.12,2.121,1.414,1.414-4.553,4.553c-1.172,1.172-1.172,3.07,0,4.242l4.949,4.949c1.172,1.172,3.071,1.172,4.243,0l4.552-4.551,1.414,1.414,2.121-2.121-4.38-4.39z"/>
-<path d="M19,27h-4v-3.893l-1.222,1.221c-0.5,0.5-1.114,0.836-1.778,1.016v1.65h-4.019c-1.033,0-1.874,0.78-1.981,1.79v1.21h15v-1c0-1.1-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M25.799,6.65L20.85,1.701c-1.172-1.172-3.071-1.172-4.243,0L11.26,7.049l3.545,3.545c0.514,0.076,1.009,0.303,1.404,0.697 c0.395,0.396,0.623,0.891,0.697,1.404l3.545,3.547l5.348-5.348C26.971,9.723,26.971,7.822,25.799,6.65z"/>
+<path d="M16.767,13.971c-0.122,0.313-0.306,0.604-0.558,0.855c-0.977,0.977-2.559,0.977-3.535,0c-0.977-0.975-0.977-2.559,0-3.535 c0.252-0.252,0.544-0.436,0.855-0.557L9.138,6.342l-2.12,2.121l1.414,1.414L3.879,14.43c-1.172,1.172-1.172,3.07,0,4.242 l4.949,4.949c1.172,1.172,3.071,1.172,4.243,0l4.552-4.551l1.414,1.414l2.121-2.121L16.767,13.971z"/>
+<path d="M18.997,27H15v-3.893l-1.222,1.221c-0.5,0.5-1.114,0.836-1.778,1.016V27H7.981C6.948,27,6.107,27.785,6,28.787V30h15v-1 C21,27.896,20.104,27,18.997,27z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_minus.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_minus.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M24,13c1.104,0,2,0.896,2,2,0,1.105-0.896,2-2,2h-18c-1.104,0-2-0.895-2-2,0-1.104,0.896-2,2-2h18z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M24,13c1.104,0,2,0.896,2,2l0,0c0,1.105-0.896,2-2,2H6c-1.104,0-2-0.895-2-2l0,0c0-1.104,0.896-2,2-2H24z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_missed_call_unseen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_missed_call_unseen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-3 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M18,23.05v-0.05h-3c-1.103,0-2-0.898-2-2v-7.007l3.002-0.002c0.784-0.001,1.496-0.46,1.82-1.175,0.12-0.27,0.18-0.55,0.18-0.83,0-0.477-0.17-0.947-0.496-1.318l-7-7.992c-0.38-0.43-0.924-0.678-1.5-0.678-0.577,0-1.125,0.249-1.506,0.684l-6.999,8c-0.325,0.38-0.495,0.84-0.495,1.32,0,0.28,0.059,0.563,0.18,0.827,0.324,0.71,1.037,1.17,1.822,1.17h2.998v6c0,4.418,3.582,8,8,8h5v-0.051c1.141-0.231,2-1.24,2-2.449s-0.86-2.22-2-2.45z"/>
-<rect height="3.615" transform="matrix(0.903 -0.4296 0.4296 0.903 -1.1617 10.8206)" width="6.283" x="20.24" y="6.176"/>
+<path d="M18,23.051V23h-3c-1.103,0-2-0.898-2-2v-7.007l3.002-0.002c0.784-0.001,1.496-0.46,1.82-1.175 C17.941,12.553,18,12.271,18,11.992c0-0.477-0.17-0.947-0.496-1.318l-7-7.992C10.125,2.248,9.576,2,9,2 C8.423,2,7.875,2.249,7.494,2.684l-6.999,8C0.17,11.055,0,11.525,0,12c0,0.28,0.059,0.563,0.18,0.827 C0.504,13.541,1.217,14,2.002,14L5,13.998V20c0,4.418,3.582,8,8,8h5v-0.051c1.141-0.231,2-1.24,2-2.449S19.141,23.282,18,23.051z"/>
+<rect height="3.615" transform="matrix(0.903 -0.4296 0.4296 0.903 -1.1617 10.8206)" width="6.283" x="20.244" y="6.176"/>
<rect height="3.615" transform="matrix(0.3908 -0.9205 0.9205 0.3908 7.7888 18.9653)" width="6.283" x="15.08" y="1.791"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mobile.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_mobile.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
<rect height="16" width="12" x="9" y="4"/>
-<path d="M22,1h-14c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h14c1.105,0,2-0.896,2-2v-24c0-1.104-0.9-2-2-2zm-11,25h-3v-2h3v2zm4,1c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.105,0,2,0.896,2,2s-0.9,2-2,2zm7-1h-3v-2h3v2zm0-5h-14v-18h14v18z"/>
-</svg>
\ No newline at end of file
+<path d="M22,1H8C6.896,1,6,1.896,6,3v24c0,1.104,0.896,2,2,2h14c1.105,0,2-0.896,2-2V3C24,1.896,23.105,1,22,1z M11,26H8v-2h3V26z M15,27c-1.104,0-2-0.896-2-2s0.896-2,2-2c1.105,0,2,0.896,2,2S16.105,27,15,27z M22,26h-3v-2h3V26z M22,21H8V3h14V21z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_more.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_more.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -11 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="3.5" cy="3.5" r="3.5"/>
<circle cx="14.5" cy="3.5" r="3.5"/>
<circle cx="24.5" cy="3.5" r="3.5"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_music_albums.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_music_albums.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M24,6v-1c0-1.104-0.896-2-2-2h-19c-1.104,0-2,0.896-2,2v20c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2v-1h-2v-18h2zm-6,5.62c0,0.176-0.08,0.341-0.217,0.45-0.104,0.083-0.362,0.127-0.362,0.127-0.042,0-0.083-0.005-0.126-0.014l-3.348-0.741v7.966c0,1.434-1.779,2.597-3.618,2.597s-3.32-1.18-3.32-2.62c0-1.433,1.49-2.596,3.329-2.596,0.462,0,0.903,0.074,1.303,0.206v-9.435c0-0.175,0.079-0.341,0.216-0.451,0.1-0.082,0.23-0.126,0.36-0.126,0.041,0,0.084,0.005,0.125,0.014l5.211,1.153c0.26,0.06,0.45,0.293,0.45,0.563v2.885z"/>
-<path d="M25.8,6.859c-0.32,0.673-1,1.141-1.8,1.141v14c0.795,0,1.477,0.468,1.799,1.141,1.98-2.14,3.2-4.99,3.2-8.14s-1.22-6-3.2-8.141z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M24,6V5c0-1.104-0.896-2-2-2H3C1.896,3,1,3.896,1,5v20c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2v-1h-2V6H24z M18,11.615 c0,0.176-0.08,0.341-0.217,0.45c-0.104,0.083-0.362,0.127-0.362,0.127c-0.042,0-0.083-0.005-0.126-0.014l-3.348-0.741 c0,2.301,0,7.889,0,7.966c0,1.434-1.779,2.597-3.618,2.597S7,20.837,7,19.403c0-1.433,1.49-2.596,3.329-2.596 c0.462,0,0.903,0.074,1.303,0.206v-6.552V8.153V7.577c0-0.175,0.079-0.341,0.216-0.451C11.952,7.044,12.08,7,12.211,7 c0.041,0,0.084,0.005,0.125,0.014l5.211,1.153C17.812,8.227,18,8.46,18,8.73V11.615z"/>
+<path d="M25.799,6.859C25.477,7.532,24.795,8,24,8v14c0.795,0,1.477,0.468,1.799,1.141C27.779,21,29,18.146,29,15 S27.779,9,25.799,6.859z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_new_event.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_new_event.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M11.96,17.67c0.902-0.425,1.907-0.67,2.97-0.67,1.103,0,2.142,0.264,3.071,0.719,0.54-0.34,0.9-0.94,1-1.72l2-13c0-1.104-0.896-2-2-2h-8c-1.104,0-2,0.896-2,2l2,13c0.14,0.69,0.46,1.31,0.96,1.67z"/>
-<circle cx="14.94" cy="24" r="5"/>
-</svg>
\ No newline at end of file
+<path d="M11.965,17.67c0.902-0.425,1.907-0.67,2.97-0.67c1.103,0,2.142,0.264,3.071,0.719C18.544,17.385,18.898,16.775,19,16l2-13 c0-1.104-0.896-2-2-2h-8C9.896,1,9,1.896,9,3l2,13C11.139,16.694,11.464,17.312,11.965,17.67z"/>
+<circle cx="14.935" cy="24" r="5"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_next.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_next.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M20,24c0,1.104,0.896,2,2,2s2-0.896,2-2v-18c0-1.104-0.896-2-2-2s-2,0.896-2,2v18z"/>
-<path d="M8,26c0.484,0,0.963-0.176,1.338-0.514l10-9c0.42-0.38,0.66-0.92,0.66-1.49s-0.24-1.107-0.662-1.486l-10-9c-0.377-0.334-0.856-0.51-1.34-0.51-0.275,0-0.553,0.057-0.813,0.173-0.722,0.321-1.187,1.037-1.187,1.827v18c0,0.79,0.465,1.506,1.187,1.827,0.26,0.11,0.538,0.17,0.813,0.17z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M20,24c0,1.104,0.896,2,2,2l0,0c1.104,0,2-0.896,2-2V6c0-1.104-0.896-2-2-2l0,0c-1.104,0-2,0.896-2,2V24z"/>
+<path d="M8,26c0.484,0,0.963-0.176,1.338-0.514l10-9C19.76,16.107,20,15.566,20,15s-0.24-1.107-0.662-1.486l-10-9 C8.963,4.176,8.484,4,8,4C7.725,4,7.447,4.057,7.187,4.173C6.465,4.494,6,5.21,6,6v18c0,0.79,0.465,1.506,1.187,1.827 C7.447,25.943,7.725,26,8,26L8,26z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-6 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M9.257,13c0-5.596,3.642-10.35,8.743-12.18-1.44-0.519-3-0.82-4.63-0.82-7.386,0-13.37,5.819-13.37,13,0,7.18,5.984,13,13.37,13,1.632,0,3.185-0.295,4.63-0.816-5.1-1.83-8.743-6.58-8.743-12.18z"/>
-</svg>
\ No newline at end of file
+<path d="M9.257,13c0-5.596,3.642-10.35,8.743-12.185C16.555,0.301,15.002,0,13.37,0C5.984,0,0,5.819,0,13c0,7.18,5.984,13,13.37,13 c1.632,0,3.185-0.295,4.63-0.816C12.898,23.353,9.257,18.596,9.257,13z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night_portrait.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_night_portrait.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -1 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M5.143,7.5c0-3.229,2.023-5.971,4.857-7.029-0.803-0.297-1.666-0.471-2.572-0.471-4.104,0-7.428,3.357-7.428,7.5s3.324,7.5,7.428,7.5c0.906,0,1.77-0.17,2.572-0.471-2.834-1.06-4.857-3.8-4.857-7.03z"/>
-<path d="M8,27c0.02-0.284,0.561-6.051,5.498-6.543,1.136-0.024,2.5-0.562,2.5-1.996v-0.362c0-0.158-0.074-0.309-0.205-0.404-1.68-1.22-2.8-3.72-2.8-6.22,0-3.575,2.24-6.48,5-6.48s5,2.905,5,6.481c0,2.504-1.123,4.998-2.797,6.213-0.127,0.096-0.205,0.246-0.205,0.404v0.362c0,1.58,1.639,1.996,2.501,1.996,4.94,0.5,5.48,6.27,5.5,6.55h-20z"/>
-</svg>
\ No newline at end of file
+<path d="M5.143,7.5c0-3.229,2.023-5.971,4.857-7.029C9.197,0.174,8.334,0,7.428,0C3.324,0,0,3.357,0,7.5S3.324,15,7.428,15 c0.906,0,1.77-0.17,2.572-0.471C7.166,13.473,5.143,10.729,5.143,7.5z"/>
+<path d="M8,27c0.02-0.284,0.561-6.051,5.498-6.543c1.136-0.024,2.5-0.562,2.5-1.996v-0.362c0-0.158-0.074-0.309-0.205-0.404 C14.123,16.479,13,13.985,13,11.481C13,7.905,15.242,5,18,5s5,2.905,5,6.481c0,2.504-1.123,4.998-2.797,6.213 c-0.127,0.096-0.205,0.246-0.205,0.404v0.362c0,1.58,1.639,1.996,2.501,1.996C27.439,20.949,27.977,26.716,28,27H8z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M24,3h-3v2c0,1.104-0.896,2-2,2h-8c-1.104,0-2-0.896-2-2v-2h-3c-1.104,0-2,0.896-2,2v17l7,7h13c1.104,0,2-0.896,2-2v-22c0-1.104-0.9-2-2-2zm-16,8h2v2h-2v-2zm0,5h2v2h-2v-2zm3,10.88l-4.879-4.88h2.879c1.104,0,2,0.896,2,2v2.879zm11-8.88h-11v-2h11v2zm0-5h-11v-2h11v2z"/>
-<path d="M11,6h8c0.552,0,1-0.447,1-1v-3c0-0.553-0.448-1-1-1h-8c-0.552,0-1,0.447-1,1v3c0,0.553,0.45,1,1,1z"/>
-</svg>
\ No newline at end of file
+<path d="M24,3h-3v2c0,1.104-0.896,2-2,2h-8C9.896,7,9,6.104,9,5V3H6C4.896,3,4,3.896,4,5v17l7,7h13c1.104,0,2-0.896,2-2V5 C26,3.896,25.104,3,24,3z M8,11h2v2H8V11z M8,16h2v2H8V16z M11,26.879L6.121,22H9c1.104,0,2,0.896,2,2V26.879z M22,18H11v-2h11V18z M22,13H11v-2h11V13z"/>
+<path d="M11,6h8c0.552,0,1-0.447,1-1V2c0-0.553-0.448-1-1-1h-8c-0.552,0-1,0.447-1,1v3C10,5.553,10.448,6,11,6z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_collections.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_notes_collections.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,1h-19c-1.104,0-2,0.896-2,2v1h20v20h1c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2z"/>
-<path d="M22,6h-19c-1.104,0-2,0.896-2,2v14l7,7h14c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2zm-17,5h2v2h-2v-2zm0,5h2v2h-2v-2zm3,10.88l-4.879-4.88h2.879c1.104,0,2,0.896,2,2v2.879zm12-8.88h-12v-2h12v2zm0-5h-12v-2h12v2z"/>
-</svg>
\ No newline at end of file
+<path d="M27,1H8C6.896,1,6,1.896,6,3v1h20v17v3h1c1.104,0,2-0.896,2-2V3C29,1.896,28.104,1,27,1z"/>
+<path d="M22,6H3C1.896,6,1,6.896,1,8v14l7,7h14c1.104,0,2-0.896,2-2V8C24,6.896,23.104,6,22,6z M5,11h2v2H5V11z M5,16h2v2H5V16z M8,26.879L3.121,22H6c1.104,0,2,0.896,2,2V26.879z M20,18H8v-2h12V18z M20,13H8v-2h12V13z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M1.001,2.061v6.457l9.591,8.098v10.94h3.182v-10.94l9.744-8.049v-6.515h-22.51zm3.179,4.98v-1.799h6.412v7.213l-6.41-5.419zm9.59-1.799h6.561v1.836l-6.561,5.424v-7.258z"/>
-<polygon points="29,17.9,26.87,15.77,22.92,19.72,18.97,15.77,16.84,17.9,20.79,21.85,16.84,25.81,18.97,27.94,22.92,23.99,26.87,27.94,29,25.81,25.05,21.85"/>
-</svg>
\ No newline at end of file
+<path d="M1.001,2.061v6.457l9.591,8.098v10.943h3.182V16.625l9.744-8.049V2.061H1.001z M4.18,7.041V5.242h6.412v7.213L4.18,7.041z M13.773,5.242h6.561v1.836l-6.561,5.424V5.242z"/>
+<polygon points="29,17.903 26.87,15.773 22.919,19.725 18.968,15.773 16.835,17.901 20.787,21.854 16.835,25.806 18.968,27.938 22.919,23.986 26.87,27.938 29,25.806 25.049,21.854 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_one.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_one.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M22,22.81v2.19h-11.99v-2.188h3.99v-15.81l-4,1v-2l6-2h2v18.81h4z"/>
-</svg>
\ No newline at end of file
+<path d="M22,22.813V25H10.01v-2.188H14V7l-4,1V6l6-2h2v18.813H22z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_online_support.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_online_support.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,0c-6.888,0-12.51,5.361-12.96,12.14l3.571-1.765c0.054-1.057,0.374-2.246,0.589-2.511,0.211-0.256,1.328-1.063,2.109-1.613l7.998,2.551,1.4-2.807-5.601-1.4-3.121,1.175c0.058-0.039,0.1-0.068,0.1-0.068l-0.33-0.475c-0.219-0.472,1.205-1.13,1.205-1.13,0.548,0.365,0.912,0,0.912,0l0.146-0.365-0.146-0.547,0.677-0.842c1.08-0.352,2.24-0.549,3.44-0.549,1.26,0,2.465,0.219,3.596,0.605l-0.797,0.795,1.4,1.4,1.326-1.326c2.934,1.678,5.043,4.641,5.546,8.119-0.585-1.176-1.067-2.545-1.067-2.545l-1.79-0.325-1.61-0.62,0.913,1.238,0.656-0.291s0.802,0.768,0.766,1.021c-0.036,0.258-1.239,1.424-1.239,1.424l-1.055,0.377-1.393-1.145-1.058-0.873,0.657,1.566,0.876,0.914s1.533-0.219,1.752-0.037c0.22,0.182-0.291,1.572-0.291,1.572l-2.557,2.627-0.255,2.627c-1.424,0.732-1.57,1.859-1.57,1.859s-0.365-0.068-1.314,0.99c-0.948,1.059-1.972,0.781-1.972,0.781-1.204,0-1.423-0.781-1.423-1.039,0-0.254-1.205-2.225-1.205-2.885,0-0.656,0.365-1.459,0.365-1.459,0.072-0.949-0.949-3.502-0.949-3.502h-0.787l0.395,6.139c0.07,1.106-0.469,2.156-1.409,2.74-0.497,0.3-1.044,0.46-1.603,0.46-0.477,0-0.947-0.114-1.371-0.332l-0.078,0.135c2.283,1.99,5.261,3.2,8.521,3.2,7.18,0,13-5.82,13-13s-5.82-13-13-13zm7.12,21.64l-0.703-0.635,1.4-2.799,1.884,0.371c-0.68,1.18-1.55,2.22-2.58,3.07z"/>
-<path d="M8.463,12.74c-0.021-0.333-0.209-0.634-0.498-0.802-0.154-0.089-0.328-0.134-0.5-0.134-0.152,0-0.304,0.034-0.443,0.104l-6.465,3.196c-0.33,0.16-0.545,0.49-0.557,0.86s0.181,0.714,0.5,0.898l1.859,1.073-1.494,2.586s-1.938,5.475,4.063,6.475c0,0-1.197-1.949-0.598-4.475l1.492-2.586,1.605,0.927c0.156,0.1,0.329,0.14,0.501,0.14,0.184,0,0.367-0.051,0.528-0.15,0.313-0.195,0.493-0.546,0.47-0.914l-0.463-7.2z"/>
-</svg>
\ No newline at end of file
+<path d="M15,0C8.112,0,2.491,5.361,2.043,12.137l3.571-1.765c0.054-1.057,0.374-2.246,0.589-2.511 c0.211-0.256,1.328-1.063,2.109-1.613l7.998,2.551L17.711,6l-5.601-1.4L8.989,5.775c0.058-0.039,0.1-0.068,0.1-0.068L8.759,5.232 C8.54,4.76,9.964,4.102,9.964,4.102c0.548,0.365,0.912,0,0.912,0l0.146-0.365l-0.146-0.547l0.677-0.842 C12.641,1.996,13.797,1.799,15,1.799c1.26,0,2.465,0.219,3.596,0.605l-0.797,0.795l1.4,1.4l1.326-1.326 c2.934,1.678,5.043,4.641,5.546,8.119c-0.585-1.176-1.067-2.545-1.067-2.545L23.215,8.52L21.61,7.9l0.913,1.238l0.656-0.291 c0,0,0.802,0.768,0.766,1.021c-0.036,0.258-1.239,1.424-1.239,1.424l-1.055,0.377l-1.393-1.145l-1.058-0.873l0.657,1.566 l0.876,0.914c0,0,1.533-0.219,1.752-0.037c0.22,0.182-0.291,1.572-0.291,1.572l-2.557,2.627l-0.255,2.627 c-1.424,0.732-1.57,1.859-1.57,1.859s-0.365-0.068-1.314,0.99c-0.948,1.059-1.972,0.781-1.972,0.781 c-1.204,0-1.423-0.781-1.423-1.039c0-0.254-1.205-2.225-1.205-2.885c0-0.656,0.365-1.459,0.365-1.459 c0.072-0.949-0.949-3.502-0.949-3.502h-0.787l0.395,6.139c0.07,1.106-0.469,2.156-1.409,2.74C9.034,22.844,8.487,23,7.928,23 c-0.477,0-0.947-0.114-1.371-0.332l-0.078,0.135C8.762,24.789,11.737,26,15,26c7.18,0,13-5.82,13-13S22.18,0,15,0z M22.116,21.643 l-0.703-0.635l1.4-2.799l1.884,0.371C24.022,19.748,23.152,20.789,22.116,21.643z"/>
+<path d="M8.463,12.739c-0.021-0.333-0.209-0.634-0.498-0.802c-0.154-0.089-0.328-0.134-0.5-0.134c-0.152,0-0.304,0.034-0.443,0.104 l-6.465,3.196C0.227,15.268,0.012,15.6,0,15.968s0.181,0.714,0.5,0.898l1.859,1.073l-1.494,2.586c0,0-1.938,5.475,4.063,6.475 c0,0-1.197-1.949-0.598-4.475l1.492-2.586l1.605,0.927C7.583,20.955,7.756,21,7.928,21c0.184,0,0.367-0.051,0.528-0.15 c0.313-0.195,0.493-0.546,0.47-0.914L8.463,12.739z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_options_menu.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_options_menu.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27,7c0-0.334-0.084-0.668-0.25-0.97-0.35-0.635-1.02-1.03-1.75-1.03h-20c-0.727,0-1.396,0.395-1.75,1.03-0.166,0.302-0.25,0.636-0.25,0.97,0,0.369,0.102,0.736,0.305,1.061l9.999,16c0.37,0.58,1.01,0.94,1.7,0.94s1.33-0.355,1.696-0.939l9.999-16c0.2-0.324,0.3-0.691,0.3-1.06z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M27,7c0-0.334-0.084-0.668-0.25-0.97C26.396,5.395,25.727,5,25,5H5C4.273,5,3.604,5.395,3.25,6.03C3.084,6.332,3,6.666,3,7 c0,0.369,0.102,0.736,0.305,1.061l9.999,16C13.67,24.645,14.311,25,15,25s1.33-0.355,1.696-0.939l9.999-16 C26.898,7.736,27,7.369,27,7L27,7z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_organize.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_organize.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M19.78,6.375l-4-5c-0.19-0.236-0.48-0.375-0.78-0.375-0.305,0-0.592,0.139-0.781,0.375l-4,5c-0.24,0.301-0.287,0.712-0.121,1.059,0.17,0.345,0.52,0.566,0.9,0.566h2v4h4v-4h2c0.385,0,0.734-0.221,0.9-0.566,0.17-0.347,0.12-0.758-0.12-1.059z"/>
-<path d="M23.62,19.78l5-4c0.24-0.19,0.38-0.48,0.38-0.78s-0.139-0.592-0.375-0.781l-5-4c-0.301-0.24-0.713-0.287-1.059-0.12s-0.56,0.52-0.56,0.9v2h-4v4h4v2c0,0.385,0.221,0.734,0.566,0.901s0.75,0.12,1.05-0.12z"/>
-<path d="M6.375,19.78l-5-4c-0.236-0.19-0.375-0.48-0.375-0.78s0.139-0.592,0.375-0.781l5-4c0.301-0.24,0.711-0.287,1.059-0.12,0.345,0.17,0.566,0.52,0.566,0.9v2h4v4h-4v2c0,0.385-0.221,0.734-0.566,0.901-0.348,0.17-0.758,0.12-1.059-0.12z"/>
-<path d="M10.22,23.62l4,5c0.19,0.24,0.48,0.38,0.78,0.38,0.303,0,0.592-0.139,0.781-0.375l4-5c0.24-0.301,0.287-0.712,0.119-1.059-0.17-0.34-0.52-0.56-0.9-0.56h-2v-4h-4v4h-2c-0.385,0-0.734,0.221-0.902,0.566-0.168,0.34-0.121,0.75,0.12,1.05z"/>
-</svg>
\ No newline at end of file
+<path d="M19,4.5C19,5.328,18.328,6,17.5,6h-10C6.672,6,6,5.328,6,4.5l0,0C6,3.672,6.672,3,7.5,3h10C18.328,3,19,3.672,19,4.5L19,4.5 z"/>
+<circle cx="2.5" cy="4.5" r="1.5"/>
+<path d="M19,9.5c0,0.828-0.672,1.5-1.5,1.5h-10C6.672,11,6,10.328,6,9.5l0,0C6,8.672,6.672,8,7.5,8h10C18.328,8,19,8.672,19,9.5 L19,9.5z"/>
+<circle cx="2.5" cy="9.5" r="1.5"/>
+<path d="M19,14.5c0,0.828-0.672,1.5-1.5,1.5h-10C6.672,16,6,15.328,6,14.5l0,0C6,13.672,6.672,13,7.5,13h10 C18.328,13,19,13.672,19,14.5L19,14.5z"/>
+<circle cx="2.5" cy="14.5" r="1.5"/>
+<path d="M19,24.5c0,0.828-0.672,1.5-1.5,1.5h-10C6.672,26,6,25.328,6,24.5l0,0C6,23.672,6.672,23,7.5,23h10 C18.328,23,19,23.672,19,24.5L19,24.5z"/>
+<circle cx="2.5" cy="24.5" r="1.5"/>
+<path d="M27.5,3h-5C21.673,3,21,3.674,21,4.5S21.673,6,22.5,6H26v12h-3.238v-2.25c0-0.281-0.156-0.539-0.407-0.666 C22.247,15.029,22.128,15,22.012,15c-0.154,0-0.307,0.047-0.437,0.141l-5.25,3.75c-0.197,0.141-0.313,0.369-0.313,0.609 c0,0.242,0.116,0.471,0.313,0.611l5.25,3.75C21.705,23.953,21.857,24,22.012,24c0.116,0,0.235-0.029,0.343-0.084 c0.251-0.127,0.407-0.385,0.407-0.666V21H27.5c0.826,0,1.5-0.672,1.5-1.5v-15C29,3.674,28.328,3,27.5,3z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_outbox.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_outbox.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M21.8,9.4l-6-8c-0.19-0.252-0.49-0.4-0.8-0.4s-0.611,0.148-0.801,0.4l-6,8c-0.227,0.303-0.264,0.708-0.094,1.047s0.515,0.55,0.894,0.55h3v6c0,0.553,0.447,1,1,1h4c0.553,0,1-0.447,1-1v-6h3c0.379,0,0.725-0.214,0.895-0.553s0.13-0.747-0.1-1.05z"/>
-<path d="M25.5,17c-0.828,0-1.5,0.672-1.5,1.5v2.5h-18v-2.5c0-0.83-0.672-1.5-1.5-1.5s-1.5,0.67-1.5,1.5v7.5h24v-7.5c0-0.83-0.67-1.5-1.5-1.5z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M21.799,9.4l-6-8C15.611,1.148,15.314,1,15,1s-0.611,0.148-0.801,0.4l-6,8c-0.227,0.303-0.264,0.708-0.094,1.047 S8.621,11,9,11h3v6c0,0.553,0.447,1,1,1h4c0.553,0,1-0.447,1-1v-6h3c0.379,0,0.725-0.214,0.895-0.553S22.027,9.703,21.799,9.4z"/>
+<path d="M25.5,17c-0.828,0-1.5,0.672-1.5,1.5V21H6v-2.5C6,17.672,5.328,17,4.5,17S3,17.672,3,18.5V21v3.5V26h24v-1.5V21v-2.5 C27,17.672,26.328,17,25.5,17z"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pan.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
+<rect fill="none" height="30" width="30"/>
+</g>
+<path d="M19.781,6.375l-4-5C15.592,1.139,15.303,1,15,1c-0.305,0-0.592,0.139-0.781,0.375l-4,5c-0.24,0.301-0.287,0.712-0.121,1.059 C10.266,7.779,10.615,8,11,8h2v4h4V8h2c0.385,0,0.734-0.221,0.9-0.566C20.068,7.087,20.021,6.676,19.781,6.375z"/>
+<path d="M23.625,19.781l5-4C28.861,15.592,29,15.304,29,15s-0.139-0.592-0.375-0.781l-5-4c-0.301-0.24-0.713-0.287-1.059-0.12 S22,10.615,22,11v2h-4v4h4v2c0,0.385,0.221,0.734,0.566,0.901S23.324,20.021,23.625,19.781z"/>
+<path d="M6.375,19.781l-5-4C1.139,15.592,1,15.304,1,15s0.139-0.592,0.375-0.781l5-4c0.301-0.24,0.711-0.287,1.059-0.12 C7.779,10.266,8,10.615,8,11v2h4v4H8v2c0,0.385-0.221,0.734-0.566,0.901C7.086,20.068,6.676,20.021,6.375,19.781z"/>
+<path d="M10.219,23.625l4,5C14.408,28.861,14.695,29,15,29c0.303,0,0.592-0.139,0.781-0.375l4-5c0.24-0.301,0.287-0.712,0.119-1.059 C19.734,22.221,19.385,22,19,22h-2v-4h-4v4h-2c-0.385,0-0.734,0.221-0.902,0.566C9.932,22.913,9.979,23.324,10.219,23.625z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pause.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pause.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M12,23.5c0,1.381-1.119,2.5-2.5,2.5s-2.5-1.12-2.5-2.5v-17c0-1.381,1.119-2.5,2.5-2.5,1.38,0,2.5,1.119,2.5,2.5v17z"/>
-<path d="M23,23.5c0,1.381-1.119,2.5-2.5,2.5s-2.5-1.119-2.5-2.5v-17c0-1.381,1.12-2.5,2.5-2.5s2.5,1.119,2.5,2.5v17z"/>
+<path d="M12,23.5c0,1.381-1.119,2.5-2.5,2.5l0,0C8.119,26,7,24.881,7,23.5v-17C7,5.119,8.119,4,9.5,4l0,0C10.881,4,12,5.119,12,6.5 V23.5z"/>
+<path d="M23,23.5c0,1.381-1.119,2.5-2.5,2.5l0,0c-1.381,0-2.5-1.119-2.5-2.5v-17C18,5.119,19.119,4,20.5,4l0,0 C21.881,4,23,5.119,23,6.5V23.5z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="none" points="10.97,3.738,13.87,6.188,13.87,3.154,10.97,3.154"/>
-<polygon fill="none" points="16.05,3.154,16.05,6.222,19.03,3.758,19.03,3.154"/>
-<path d="M8.787,0.971v3.785l5.08,4.291v5.93h2.186v-5.924l5.16-4.267v-3.818h-12.43zm7.263,5.251v-3.068h2.975v0.604l-2.97,2.464zm-2.18-0.034l-2.901-2.449v-0.585h2.899v3.033h-0.003z"/>
-<polygon points="16.97,22.3,18.48,24.74,22.63,24.74,21.12,22.3"/>
-<polygon points="10.49,22.3,12,24.74,16.13,24.74,14.62,22.3"/>
-<polygon points="23.47,22.3,24.72,24.32,24.72,22.3"/>
-<polygon points="9.648,24.74,9.655,24.74,8.139,22.3,5.279,22.3,9.479,29.03,11.53,27.75,10.82,26.61"/>
-<polygon points="20.3,17.28,21.81,19.72,24.72,19.72,20.52,12.99,18.45,14.28,20.32,17.28"/>
-<polygon points="19.46,19.72,17.95,17.28,13.86,17.29,15.37,19.72"/>
-<polygon points="5.279,17.69,5.279,19.72,6.543,19.72"/>
-<polygon points="13.02,19.72,11.51,17.29,7.378,17.29,8.893,19.72"/>
+<polygon fill="none" points="10.966,3.738 13.867,6.188 13.867,3.154 10.966,3.154 "/>
+<polygon fill="none" points="16.053,3.154 16.053,6.222 19.027,3.758 19.027,3.154 "/>
+<path d="M8.787,0.971v3.785l5.08,4.291v5.93h2.186V9.056l5.16-4.267V0.971H8.787z M16.053,6.222V3.154h2.975v0.604L16.053,6.222z M13.867,6.188l-2.901-2.449V3.154h2.899v3.033H13.867z"/>
+<polygon points="16.967,22.301 18.484,24.736 22.629,24.736 21.115,22.301 "/>
+<polygon points="10.493,22.302 12.005,24.736 16.129,24.736 14.616,22.301 "/>
+<polygon points="23.467,22.301 24.721,24.319 24.721,22.301 "/>
+<polygon points="9.648,24.736 9.655,24.736 8.139,22.302 5.279,22.302 9.479,29.029 11.527,27.748 10.818,26.607 "/>
+<polygon points="20.301,17.285 21.813,19.719 24.719,19.719 20.518,12.992 18.451,14.283 20.32,17.285 "/>
+<polygon points="19.459,19.719 17.947,17.285 13.86,17.287 15.374,19.719 "/>
+<polygon points="5.279,17.688 5.279,19.721 6.543,19.721 "/>
+<polygon points="13.022,19.719 11.511,17.287 7.378,17.287 8.893,19.721 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_context.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_context.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="24.72,22.3,5.279,22.3,9.48,29.03,11.54,27.74,9.673,24.74,9.685,24.74,9.682,24.74,24.72,24.74"/>
-<polygon points="20.52,12.99,18.45,14.28,20.32,17.28,5.279,17.29,5.279,19.72,24.72,19.72"/>
-<polygon fill="none" points="10.97,3.74,13.87,6.188,13.87,3.154,10.97,3.154"/>
-<polygon fill="none" points="16.05,3.154,16.05,6.223,19.03,3.76,19.03,3.154"/>
-<path d="M8.787,0.971v3.785l5.081,4.293v5.93h2.185v-5.924l5.16-4.267v-3.818h-12.43zm7.263,5.252v-3.069h2.976v0.606l-2.98,2.463zm-2.18-0.035l-2.9-2.448v-0.586h2.898v3.033h-0.002z"/>
+<polygon points="24.721,22.301 5.279,22.303 9.48,29.029 11.545,27.74 9.673,24.736 9.685,24.736 9.682,24.736 24.721,24.736 "/>
+<polygon points="20.52,12.992 18.452,14.285 20.321,17.285 5.279,17.287 5.279,19.721 24.72,19.72 "/>
+<polygon fill="none" points="10.967,3.74 13.868,6.188 13.868,3.154 10.967,3.154 "/>
+<polygon fill="none" points="16.053,3.154 16.053,6.223 19.028,3.76 19.028,3.154 "/>
+<path d="M8.787,0.971v3.785l5.081,4.293v5.93h2.185V9.056l5.16-4.267V0.971H8.787z M16.053,6.223V3.154h2.976V3.76L16.053,6.223z M13.868,6.188L10.967,3.74V3.154h2.898v3.033H13.868z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_multipdp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_multipdp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="none" points="10.97,3.739,13.87,6.188,13.87,3.154,10.97,3.154"/>
-<polygon fill="none" points="16.05,3.154,16.05,6.223,19.03,3.76,19.03,3.154"/>
-<path d="M8.786,0.969v3.786l5.082,4.294v5.93h2.186v-5.925l5.16-4.266v-3.82h-12.43zm7.264,5.254v-3.069h2.976v0.606l-2.98,2.463zm-2.18-0.035l-2.901-2.448v-0.586h2.898v3.033h-0.002z"/>
-<polygon points="20.52,13.08,18.45,14.38,20.32,17.38,5.278,17.38,5.278,19.81,24.72,19.81"/>
-<polygon points="9.48,29.03,11.54,27.74,9.676,24.74,12.73,24.74,15.41,29.03,17.48,27.74,15.6,24.74,24.72,24.74,24.72,22.3,5.278,22.3"/>
+<polygon fill="none" points="10.967,3.739 13.868,6.188 13.868,3.154 10.967,3.154 "/>
+<polygon fill="none" points="16.054,3.154 16.054,6.223 19.029,3.76 19.029,3.154 "/>
+<path d="M8.786,0.969v3.786l5.082,4.294v5.93h2.186V9.055l5.16-4.266v-3.82H8.786z M16.054,6.223V3.154h2.976V3.76L16.054,6.223z M13.868,6.188l-2.901-2.448V3.154h2.898v3.033H13.868z"/>
+<polygon points="20.52,13.085 18.452,14.375 20.322,17.379 5.278,17.379 5.278,19.813 24.721,19.811 "/>
+<polygon points="9.48,29.029 11.545,27.741 9.676,24.737 12.727,24.737 15.409,29.029 17.475,27.741 15.605,24.737 24.721,24.737 24.721,22.301 5.278,22.304 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_suspended.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_pd_suspended.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon fill="none" points="19.03,3.709,16.13,6.157,16.13,3.124,19.03,3.124"/>
-<polygon fill="none" points="13.95,3.124,13.95,6.192,10.97,3.729,10.97,3.124"/>
-<path d="M21.21,0.939v3.785l-5.082,4.294v5.931h-2.185v-5.925l-5.154-4.267v-3.819h12.43zm-7.26,5.253v-3.068h-2.977v0.604l2.98,2.464zm2.18-0.035l2.897-2.448v-0.585h-2.897v3.033z"/>
-<polygon points="24.72,22.3,24.72,24.73,20.32,24.73,20.32,24.73,14.34,24.73,16.37,22.3"/>
-<polygon points="5.279,22.3,10.58,22.3,8.525,24.73,5.279,24.73"/>
-<polygon points="24.72,17.28,24.72,19.72,18.53,19.72,20.56,17.28"/>
-<polygon points="5.279,19.72,5.279,17.28,14.8,17.28,12.75,19.72"/>
-<polygon points="21.42,14.56,21.5,14.62,21.45,14.68,10.38,27.87,9.38,29.06,7.514,27.49,8.936,25.8,19.63,13.06"/>
+<polygon fill="none" points="19.034,3.709 16.132,6.157 16.132,3.124 19.034,3.124 "/>
+<polygon fill="none" points="13.947,3.124 13.947,6.192 10.971,3.729 10.971,3.124 "/>
+<path d="M21.214,0.939v3.785l-5.082,4.294v5.931h-2.185V9.025L8.786,4.758V0.939H21.214z M13.947,6.192V3.124h-2.977v0.604 L13.947,6.192z M16.132,6.157l2.897-2.448V3.124h-2.897V6.157z"/>
+<polygon points="24.721,22.299 24.721,24.732 20.316,24.732 20.318,24.732 14.341,24.732 16.373,22.299 "/>
+<polygon points="5.279,22.299 10.579,22.299 8.525,24.732 5.279,24.732 "/>
+<polygon points="24.721,17.28 24.721,19.715 18.53,19.715 20.564,17.28 "/>
+<polygon points="5.279,19.715 5.279,17.28 14.801,17.28 12.753,19.715 "/>
+<polygon points="21.421,14.559 21.497,14.619 21.448,14.68 10.378,27.869 9.38,29.059 7.514,27.494 8.936,25.801 19.631,13.056 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_person_activitystream.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_person_activitystream.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,19c0-0.49,0.102-0.955,0.264-1.39-0.496-0.364-0.865-0.9-0.865-1.702v-0.429c0-0.187,0.093-0.364,0.245-0.478,2.01-1.43,3.36-4.38,3.36-7.341,0-4.225-2.69-7.659-6-7.659s-6,3.434-6,7.659c0,2.96,1.348,5.907,3.352,7.343,0.157,0.113,0.245,0.291,0.245,0.478v0.429c0,1.695-1.636,2.33-2.999,2.359-5.925,0.58-6.574,7.39-6.598,7.73h15v-7z"/>
-<path d="M28,17h-9c-1.104,0-2,0.896-2,2v9c0,1.104,0.896,2,2,2h9c1.104,0,2-0.896,2-2v-9c0-1.1-0.9-2-2-2zm-8.19,11.56c-0.752,0-1.361-0.608-1.361-1.359,0-0.75,0.609-1.36,1.361-1.36s1.363,0.61,1.363,1.36c0,0.75-0.61,1.36-1.36,1.36zm5.29,0h-1.93c0.003-0.08,0.013-0.159,0.013-0.241,0-2.48-2.022-4.5-4.507-4.5-0.078,0-0.154,0.008-0.23,0.012v-1.928c0.076-0.002,0.152-0.011,0.23-0.011,3.549,0,6.438,2.883,6.438,6.427,0,0.08-0.01,0.16-0.01,0.24zm3.44,0h-1.93c0.003-0.082,0.013-0.164,0.013-0.245,0-4.377-3.564-7.936-7.947-7.936-0.078,0-0.154,0.009-0.23,0.011v-1.928c0.078-0.002,0.152-0.012,0.23-0.012,5.448,0,9.88,4.425,9.88,9.864,0.01,0.08-0.01,0.16-0.01,0.25z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M15,19c0-0.49,0.102-0.955,0.264-1.39c-0.496-0.364-0.865-0.9-0.865-1.702v-0.429c0-0.187,0.093-0.364,0.245-0.478 C16.652,13.566,18,10.619,18,7.659C18,3.434,15.309,0,12,0S6,3.434,6,7.659c0,2.96,1.348,5.907,3.352,7.343 c0.157,0.113,0.245,0.291,0.245,0.478v0.429c0,1.695-1.636,2.33-2.999,2.359C0.673,18.85,0.024,25.664,0,26h15V19z"/>
+<path d="M28,17h-9c-1.104,0-2,0.896-2,2v9c0,1.104,0.896,2,2,2h9c1.104,0,2-0.896,2-2v-9C30,17.896,29.104,17,28,17z M19.807,28.555 c-0.752,0-1.361-0.608-1.361-1.359c0-0.75,0.609-1.36,1.361-1.36s1.363,0.61,1.363,1.36C21.17,27.946,20.559,28.555,19.807,28.555z M25.102,28.555H23.17c0.003-0.08,0.013-0.159,0.013-0.241c0-2.48-2.022-4.5-4.507-4.5c-0.078,0-0.154,0.008-0.23,0.012v-1.928 c0.076-0.002,0.152-0.011,0.23-0.011c3.549,0,6.438,2.883,6.438,6.427C25.113,28.396,25.105,28.475,25.102,28.555z M28.543,28.555 H26.61c0.003-0.082,0.013-0.164,0.013-0.245c0-4.377-3.564-7.936-7.947-7.936c-0.078,0-0.154,0.009-0.23,0.011v-1.928 c0.078-0.002,0.152-0.012,0.23-0.012c5.448,0,9.88,4.425,9.88,9.864C28.556,28.391,28.544,28.473,28.543,28.555z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photo_albums.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photo_albums.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27,4h-22c-1.104,0-2,0.896-2,2h-1c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2h-1c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2h-1c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2h-1c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2h-1c-0.553,0-1,0.447-1,1s0.447,1,1,1h1c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-1,19h-20v-16h20v16z"/>
-<path d="M25,8h-18v14h18v-14zm-17,5.14l2.47-2.14,3.467,3,1.732-2,2.376,2.192c0.079,1.077,0.339,2.032,0.738,2.808h-10.79v-3.865zm16,7.36c0,0.199-0.82,0.37-2,0.45v0.05h-1v-0.007c-0.16,0.01-0.33,0.01-0.5,0.01-1.934,0-3.5-0.224-3.5-0.5s1.566-0.5,3.5-0.5c0.172,0,0.336,0.004,0.5,0.007v-2.098c-1.141-0.417-2-2.232-2-4.409,0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5c0,2.177-0.859,3.992-2,4.409v2.141c1.18,0.08,2,0.25,2,0.45z"/>
+<path d="M27,4H5C3.896,4,3,4.896,3,6H2C1.447,6,1,6.447,1,7s0.447,1,1,1h1v2H2c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2H2 c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2H2c-0.553,0-1,0.447-1,1s0.447,1,1,1h1v2H2c-0.553,0-1,0.447-1,1s0.447,1,1,1h1 c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M26,23H6V7h20V23z"/>
+<path d="M25,8H7v14h18V8z M8,13.135L10.467,11l3.467,3l1.732-2l2.376,2.192c0.079,1.077,0.339,2.032,0.738,2.808H8V13.135z M24,20.5 c0,0.199-0.82,0.37-2,0.45V21h-1v-0.007C20.836,20.996,20.672,21,20.5,21c-1.934,0-3.5-0.224-3.5-0.5s1.566-0.5,3.5-0.5 c0.172,0,0.336,0.004,0.5,0.007v-2.098c-1.141-0.417-2-2.232-2-4.409c0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5 c0,2.177-0.859,3.992-2,4.409v2.141C23.18,20.13,24,20.301,24,20.5z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photos.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_photos.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm0,20h-24v-18h24v18z"/>
-<path d="M4,7v16h22v-16h-22zm1,9v-2l4-3,4,3,2-2,3.057,2.445c0.1,0.977,0.355,1.84,0.724,2.555h-13.78v-1zm19,4.5c0,0.199-0.82,0.37-2,0.45v0.05h-1v-0.007c-0.16,0.01-0.33,0.01-0.5,0.01-1.934,0-3.5-0.224-3.5-0.5s1.566-0.5,3.5-0.5c0.172,0,0.336,0.004,0.5,0.007v-2.098c-1.141-0.417-2-2.232-2-4.409,0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5c0,2.177-0.859,3.992-2,4.409v2.141c1.18,0.08,2,0.25,2,0.45zm1-3.5h-0.78c0.158-0.307,0.294-0.639,0.407-1h0.37v1z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M27,24H3V6h24V24z"/>
+<path d="M4,7v16h22V7H4z M5,16v-2l4-3l4,3l2-2l3.057,2.445c0.1,0.977,0.355,1.84,0.724,2.555H5V16z M24,20.5 c0,0.199-0.82,0.37-2,0.45V21h-1v-0.007C20.836,20.996,20.672,21,20.5,21c-1.934,0-3.5-0.224-3.5-0.5s1.566-0.5,3.5-0.5 c0.172,0,0.336,0.004,0.5,0.007v-2.098c-1.141-0.417-2-2.232-2-4.409c0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5 c0,2.177-0.859,3.992-2,4.409v2.141C23.18,20.13,24,20.301,24,20.5z M25,17h-0.78c0.158-0.307,0.294-0.639,0.407-1H25V17z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M7,27c-0.334,0-0.668-0.084-0.97-0.25-0.635-0.35-1.03-1.02-1.03-1.75v-20c0-0.727,0.395-1.396,1.03-1.75,0.302-0.166,0.636-0.25,0.97-0.25,0.369,0,0.736,0.102,1.061,0.305l16,9.999c0.58,0.37,0.94,1.01,0.94,1.7s-0.355,1.33-0.939,1.696l-16,9.999c-0.324,0.2-0.691,0.3-1.06,0.3z"/>
+<path d="M7,27c-0.334,0-0.668-0.084-0.97-0.25C5.395,26.396,5,25.727,5,25V5c0-0.727,0.395-1.396,1.03-1.75C6.332,3.084,6.666,3,7,3 c0.369,0,0.736,0.102,1.061,0.305l16,9.999C24.645,13.67,25,14.311,25,15s-0.355,1.33-0.939,1.696l-16,9.999 C7.736,26.898,7.369,27,7,27L7,27z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play_history.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_play_history.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M23,14c0.552,0,1.09,0.058,1.615,0.153,0.23-0.33,0.38-0.73,0.38-1.15,0-0.689-0.355-1.33-0.939-1.696l-16-9.999c-0.324-0.199-0.691-0.301-1.06-0.301-0.334,0-0.668,0.084-0.97,0.25-0.635,0.354-1.03,1.023-1.03,1.75v20c0,0.727,0.395,1.396,1.03,1.75,0.302,0.17,0.636,0.25,0.97,0.25,0.369,0,0.736-0.102,1.061-0.305l6.221-3.888c0.98-3.91,4.52-6.81,8.72-6.81z"/>
-<path d="M23,16c-3.865,0-7,3.135-7,7,0,3.867,3.135,7,7,7s7-3.133,7-7c0-3.86-3.14-7-7-7zm-1,7.99v-6h2v4.004h4v1.996h-6z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M23,14c0.552,0,1.09,0.058,1.615,0.153C24.854,13.818,25,13.423,25,13c0-0.689-0.355-1.33-0.939-1.696l-16-9.999 C7.736,1.102,7.369,1,7,1C6.666,1,6.332,1.084,6.03,1.25C5.395,1.604,5,2.273,5,3v20c0,0.727,0.395,1.396,1.03,1.75 C6.332,24.916,6.666,25,7,25c0.369,0,0.736-0.102,1.061-0.305l6.221-3.888C15.264,16.903,18.795,14,23,14z"/>
+<path d="M23,16c-3.865,0-7,3.135-7,7c0,3.867,3.135,7,7,7s7-3.133,7-7C30,19.135,26.865,16,23,16z M22,23.992v-0.016v-1.98v-4.004h2 v4.004h4v1.996H22z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_playlist.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_playlist.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M17,27.4c0-2.089,1.629-3.847,3.847-4.403h-9.85v-2h10.63v-3h-10.63v-2h10.63v-0.423c0-0.783,0.35-1.516,0.96-2.008,0.48-0.37,1.05-0.57,1.62-0.57,0.182,0,0.364,0.02,0.544,0.058l1.25,0.27v-10.33c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h11.35c-0.21-0.5-0.35-1.03-0.35-1.6zm-6-21.4h11v2h-11v-2zm0,5h11v2h-11v-2zm-1,12h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2z"/>
-<path d="M29.55,16.17l-5.211-1.153c-0.04-0.02-0.09-0.02-0.13-0.02-0.131,0-0.259,0.044-0.363,0.126-0.137,0.11-0.216,0.276-0.216,0.451v9.437c-0.399-0.132-0.841-0.206-1.303-0.206-1.839,0-3.329,1.163-3.329,2.596,0,1.43,1.49,2.59,3.33,2.59s3.618-1.163,3.618-2.597v-7.966l3.348,0.741c0.043,0.009,0.084,0.014,0.126,0.014,0,0,0.259-0.044,0.362-0.127,0.13-0.09,0.21-0.26,0.21-0.43v-2.89c0-0.27-0.19-0.5-0.45-0.56z"/>
+<path d="M17,27.403c0-2.089,1.629-3.847,3.847-4.403H11v-2h10.632v-3H11v-2h10.632v-0.423c0-0.783,0.35-1.516,0.96-2.008 C23.066,13.196,23.635,13,24.211,13c0.182,0,0.364,0.02,0.544,0.058L26,13.333V3c0-1.104-0.896-2-2-2H6C4.896,1,4,1.896,4,3v24 c0,1.104,0.896,2,2,2h11.351C17.135,28.501,17,27.967,17,27.403z M11,6h11v2H11V6z M11,11h11v2H11V11z M10,23H8v-2h2V23z M10,18H8 v-2h2V18z M10,13H8v-2h2V13z M10,8H8V6h2V8z"/>
+<path d="M29.547,16.167l-5.211-1.153C24.295,15.005,24.252,15,24.211,15c-0.131,0-0.259,0.044-0.363,0.126 c-0.137,0.11-0.216,0.276-0.216,0.451v0.576v2.309v6.552c-0.399-0.132-0.841-0.206-1.303-0.206c-1.839,0-3.329,1.163-3.329,2.596 C19,28.837,20.49,30,22.329,30s3.618-1.163,3.618-2.597c0-0.077,0-5.665,0-7.966l3.348,0.741c0.043,0.009,0.084,0.014,0.126,0.014 c0,0,0.259-0.044,0.362-0.127C29.92,19.956,30,19.791,30,19.615V16.73C30,16.46,29.812,16.227,29.547,16.167z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_plus.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_plus.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M24,13h-7v-7c0-1.104-0.896-2-2-2s-2,0.896-2,2v7h-7c-1.104,0-2,0.896-2,2s0.896,2,2,2h7v7c0,1.104,0.896,2,2,2s2-0.896,2-2v-7h7c1.104,0,2-0.896,2-2s-0.9-2-2-2z"/>
+<path d="M24,13h-7V6c0-1.104-0.896-2-2-2s-2,0.896-2,2v7H6c-1.104,0-2,0.896-2,2s0.896,2,2,2h7v7c0,1.104,0.896,2,2,2s2-0.896,2-2 v-7h7c1.104,0,2-0.896,2-2S25.104,13,24,13z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_podcast.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_podcast.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M21.18,8.305l-4.6-4.598c-1.088-1.09-2.853-1.09-3.941,0l-4.966,4.969,3.293,3.293c0.478,0.07,0.938,0.279,1.305,0.648,0.367,0.367,0.579,0.828,0.648,1.305l3.294,3.294,4.969-4.968c1.08-1.08,1.08-2.845-0.01-3.935z"/>
-<path d="M12.79,15.11c-0.113,0.291-0.284,0.563-0.518,0.795-0.907,0.908-2.378,0.908-3.285,0-0.907-0.906-0.907-2.377,0-3.283,0.234-0.234,0.506-0.406,0.796-0.52l-4.081-4.08-1.968,1.969,1.314,1.313-4.23,4.23c-1.088,1.089-1.088,2.855,0,3.943l4.599,4.598c1.088,1.09,2.854,1.09,3.942,0l4.229-4.229,1.314,1.314,1.971-1.971-4.08-4.07z"/>
-<path d="M14.86,27.21h-3.71v-3.518l-1.085,1.084c-0.478,0.479-1.066,0.799-1.702,0.967v1.467h-3.73c-0.96,0-1.741,0.729-1.841,1.66v1.13h13.94v-0.93c0-1.03-0.83-1.86-1.86-1.86z"/>
-<path d="M23.4,16c-0.177,0-0.356-0.046-0.519-0.144-0.472-0.287-0.622-0.902-0.335-1.375,0.92-1.5,1.46-3.55,1.46-5.48s-0.545-3.979-1.458-5.48c-0.287-0.473-0.137-1.086,0.335-1.373,0.473-0.287,1.088-0.137,1.374,0.334,1.1,1.803,1.75,4.238,1.75,6.519s-0.654,4.719-1.749,6.52c-0.19,0.31-0.52,0.48-0.85,0.48z"/>
-<path d="M26.58,18c-0.187,0-0.375-0.051-0.543-0.16-0.464-0.301-0.596-0.92-0.295-1.383,1.5-2.31,2.26-4.82,2.26-7.46s-0.758-5.15-2.253-7.455c-0.301-0.465-0.169-1.084,0.295-1.383,0.462-0.303,1.082-0.17,1.383,0.295,1.71,2.635,2.58,5.508,2.58,8.543s-0.866,5.91-2.575,8.544c-0.19,0.3-0.51,0.46-0.84,0.46z"/>
+<path d="M21.184,8.305l-4.6-4.598c-1.088-1.09-2.853-1.09-3.941,0L7.674,8.676l3.293,3.293c0.478,0.07,0.938,0.279,1.305,0.648 c0.367,0.367,0.579,0.828,0.648,1.305l3.294,3.294l4.969-4.968C22.271,11.159,22.271,9.395,21.184,8.305z"/>
+<path d="M12.791,15.106c-0.113,0.291-0.284,0.563-0.518,0.795c-0.907,0.908-2.378,0.908-3.285,0c-0.907-0.906-0.907-2.377,0-3.283 c0.234-0.234,0.506-0.406,0.796-0.52l-4.081-4.08L3.732,9.989l1.314,1.313l-4.23,4.23c-1.088,1.089-1.088,2.855,0,3.943l4.599,4.598 c1.088,1.09,2.854,1.09,3.942,0l4.229-4.229l1.314,1.314l1.971-1.971L12.791,15.106z"/>
+<path d="M14.863,27.213H11.15v-3.518l-1.085,1.084c-0.478,0.479-1.066,0.799-1.702,0.967v1.467H4.628 c-0.96,0-1.741,0.729-1.841,1.66V30h13.937v-0.93C16.725,28.045,15.892,27.213,14.863,27.213z"/>
+<path d="M23.396,16c-0.177,0-0.356-0.046-0.519-0.144c-0.472-0.287-0.622-0.902-0.335-1.375C23.455,12.979,24,10.93,24,9 s-0.545-3.979-1.458-5.48c-0.287-0.473-0.137-1.086,0.335-1.373c0.473-0.287,1.088-0.137,1.374,0.334C25.346,4.284,26,6.719,26,9 s-0.654,4.719-1.749,6.52C24.063,15.831,23.733,16,23.396,16L23.396,16z"/>
+<path d="M26.585,18c-0.187,0-0.375-0.051-0.543-0.16c-0.464-0.301-0.596-0.92-0.295-1.383C27.242,14.151,28,11.643,28,9 s-0.758-5.15-2.253-7.455c-0.301-0.465-0.169-1.084,0.295-1.383c0.462-0.303,1.082-0.17,1.383,0.295C29.134,3.092,30,5.965,30,9 s-0.866,5.91-2.575,8.544C27.233,17.84,26.912,18,26.585,18L26.585,18z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" y="0"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_portrait.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_portrait.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M3,28c0.024-0.336,0.673-7.15,6.598-7.732,1.363-0.029,2.999-0.664,2.999-2.359v-0.429c0-0.187-0.088-0.364-0.245-0.478-2.01-1.43-3.36-4.38-3.36-7.341,0-4.225,2.69-7.659,6-7.659s6,3.434,6,7.659c0,2.96-1.348,5.907-3.356,7.343-0.152,0.113-0.246,0.291-0.246,0.478v0.429c0,1.867,1.966,2.359,3.001,2.359,5.94,0.58,6.58,7.39,6.61,7.73h-24z"/>
+<path d="M3,28c0.024-0.336,0.673-7.15,6.598-7.732c1.363-0.029,2.999-0.664,2.999-2.359v-0.429c0-0.187-0.088-0.364-0.245-0.478 C10.348,15.566,9,12.619,9,9.659C9,5.434,11.691,2,15,2s6,3.434,6,7.659c0,2.96-1.348,5.907-3.356,7.343 c-0.152,0.113-0.246,0.291-0.246,0.478v0.429c0,1.867,1.966,2.359,3.001,2.359C26.327,20.85,26.973,27.664,27,28H3z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_power.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_power.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28,14.99c0-5.68-3.64-10.5-8.72-12.27,0.135,0.399,0.224,0.82,0.224,1.266v2.077c3.262,1.648,5.504,5.021,5.503,8.924,0,5.523-4.479,10-10,10-5.526,0-10-4.478-10-10,0-3.902,2.24-7.275,5.502-8.923v-2.079c0-0.445,0.09-0.866,0.225-1.267-5.075,1.771-8.725,6.588-8.725,12.27,0,7.181,5.821,13,13,13,7.18,0,13-5.82,13-13z"/>
-<path d="M17.5,12.99c0,1.105-0.895,2.001-2,2h-1c-1.105,0-2.001-0.896-2-2v-9.002c0-1.104,0.896-2,2-2h1c1.104,0.001,2,0.896,2,2v9.001z"/>
+<path d="M28.005,14.99C28.004,9.31,24.355,4.493,19.277,2.723c0.135,0.399,0.224,0.82,0.224,1.266L19.5,6.066 c3.262,1.648,5.504,5.021,5.503,8.924c0,5.523-4.479,10.001-10.003,10.001c-5.526,0-10.004-4.478-10.004-10.002 c0-3.902,2.24-7.275,5.502-8.923V3.988c0-0.445,0.09-0.866,0.225-1.267C5.645,4.492,1.995,9.309,1.995,14.989 c0,7.181,5.821,13.002,13.005,13.003C22.182,27.992,28.004,22.171,28.005,14.99z"/>
+<path d="M17.5,12.989c0,1.105-0.895,2.001-2,2h-1c-1.105,0-2.001-0.896-2-2l0-9.002c0-1.104,0.896-2,2-2H15.5 c1.104,0.001,2,0.896,2,2V12.989z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28.85,8.575l-7.072-7.071c-0.78-0.78-2.047-0.78-2.828,0l-12.73,12.73,9.899,9.899,12.73-12.73c0.78-0.78,0.78-2.044,0-2.825z"/>
-<path d="M4.986,15.82c-0.013,0.043-0.04,0.079-0.05,0.123l-1.824,7.902,3.392,3.391,7.902-1.823c0.044-0.011,0.081-0.037,0.124-0.05l-9.544-9.54z"/>
-<polygon points="2.686,24.84,0.565,26.96,4.101,29.08,5.515,27.67"/>
+<path d="M28.85,8.575l-7.072-7.071c-0.78-0.78-2.047-0.78-2.828,0L6.222,14.232l9.899,9.899L28.85,11.403 C29.631,10.623,29.631,9.356,28.85,8.575z"/>
+<path d="M4.986,15.825c-0.013,0.043-0.04,0.079-0.05,0.123l-1.824,7.902l3.392,3.391l7.902-1.823 c0.044-0.011,0.081-0.037,0.124-0.05L4.986,15.825z"/>
+<polygon points="2.686,24.839 0.565,26.96 4.101,29.082 5.515,27.667 "/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_on.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_predictive_text_on.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28.85,8.575l-7.072-7.071c-0.78-0.78-2.047-0.78-2.828,0l-12.73,12.73,9.899,9.899,12.73-12.73c0.78-0.78,0.78-2.044,0-2.825z"/>
-<path d="M4.986,15.82c-0.014,0.043-0.04,0.079-0.051,0.123l-1.824,7.902,3.393,3.391,7.902-1.823c0.044-0.011,0.08-0.037,0.123-0.05l-9.544-9.54z"/>
-<polygon points="2.686,24.84,0.564,26.96,4.101,29.08,5.516,27.67"/>
+<path d="M28.85,8.575l-7.072-7.071c-0.78-0.78-2.047-0.78-2.828,0L6.222,14.232l9.899,9.899L28.85,11.403 C29.631,10.623,29.631,9.356,28.85,8.575z"/>
+<path d="M4.986,15.825c-0.014,0.043-0.04,0.079-0.051,0.123l-1.824,7.902l3.393,3.391l7.902-1.823 c0.044-0.011,0.08-0.037,0.123-0.05L4.986,15.825z"/>
+<polygon points="2.686,24.839 0.564,26.96 4.101,29.082 5.516,27.667 "/>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<rect height="2" width="9" x="20" y="24"/>
<rect height="2" width="13" x="16" y="28"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_presentation.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_presentation.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M3,7v16h24v-16h-24zm21,3.5v10.5h-18v-7h3v6h2v-4h3v4h2v-8h3v8h2v-11h3v1.5z"/>
-<path d="M29,6v-1c0-1.104-0.896-2-2-2h-24c-1.104,0-2,0.896-2,2v1h28z"/>
-<path d="M1,24v1c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-1h-28z"/>
+<path d="M3,7v16h24V7H3z M24,10.5V18v2v1h-5h-3H6v-1v-6h3v6h2v-4h3v4h2v-8h3v8h2v-2v-7.5V9h3V10.5z"/>
+<path d="M29,6V5c0-1.104-0.896-2-2-2H3C1.896,3,1,3.896,1,5v1H29z"/>
+<path d="M1,24v1c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-1H1z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_previous.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_previous.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10,24c0,1.104-0.896,2-2,2s-2-0.896-2-2v-18c0-1.104,0.896-2,2-2s2,0.896,2,2v18z"/>
-<path d="M22,26c-0.484,0-0.963-0.176-1.338-0.514l-10-9c-0.42-0.38-0.66-0.92-0.66-1.49s0.24-1.107,0.662-1.486l10-9c0.38-0.334,0.86-0.51,1.34-0.51,0.275,0,0.553,0.057,0.813,0.173,0.73,0.321,1.19,1.037,1.19,1.827v18c0,0.79-0.465,1.506-1.187,1.827-0.26,0.11-0.53,0.17-0.81,0.17z"/>
+<path d="M10,24c0,1.104-0.896,2-2,2l0,0c-1.104,0-2-0.896-2-2V6c0-1.104,0.896-2,2-2l0,0c1.104,0,2,0.896,2,2V24z"/>
+<path d="M22,26c-0.484,0-0.963-0.176-1.338-0.514l-10-9C10.24,16.107,10,15.566,10,15s0.24-1.107,0.662-1.486l10-9 C21.037,4.176,21.516,4,22,4c0.275,0,0.553,0.057,0.813,0.173C23.535,4.494,24,5.21,24,6v18c0,0.79-0.465,1.506-1.187,1.827 C22.553,25.943,22.275,26,22,26L22,26z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_private_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_private_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M13.14,8.828c-0.463-0.144-0.938-0.479-0.938-1.178v-0.23c0-0.101,0.047-0.196,0.123-0.258,1.01-0.772,1.68-2.068,1.68-3.661,0-2.276-1.346-3.417-3-3.417s-2.999,1.141-2.999,3.417c0,1.593,0.673,2.889,1.675,3.661,0.078,0.062,0.123,0.157,0.123,0.258v0.23c0,0.092-0.014,0.175-0.029,0.256,0.139,0.473,0.23,0.994,0.23,1.595,0,1.364-0.43,2.614-1.197,3.583h4.527c-0.21-0.84-0.33-1.71-0.33-2.6,0-0.564,0.05-1.117,0.14-1.652z"/>
-<path d="M0,19.08c0.012-0.181,0.336-3.851,3.3-4.164,0.681-0.016,1.499-0.357,1.499-1.27v-0.23c0-0.101-0.045-0.196-0.123-0.258-1.002-0.772-1.675-2.068-1.675-3.661,0-2.276,1.345-3.417,2.999-3.417s3,1.141,3,3.417c0,1.593-0.674,2.889-1.678,3.661-0.076,0.062-0.123,0.157-0.123,0.258v0.23c0,1.005,0.982,1.27,1.5,1.27,2.965,0.313,3.287,3.983,3.301,4.164h-12z"/>
-<path d="M23.89,6.42c-0.572-0.92-1.335-1.627-2.208-2.034l-6.652,6.651c0.078,1.186,0.396,2.342,0.899,3.344l7.96-7.96z"/>
-<path d="M25,10.48c0-0.727-0.096-1.424-0.267-2.076l-7.649,7.649c0.225,0.237,0.458,0.456,0.709,0.64,0.131,0.096,0.205,0.246,0.205,0.404v0.361c0,1.436-1.363,1.973-2.5,1.996-4.94,0.5-5.48,6.27-5.5,6.55h1.382l13.32-13.32c0.19-0.71,0.3-1.45,0.3-2.2z"/>
-<path d="M15.46,7.779l3.675-3.676c-1.64,0.373-3,1.776-3.68,3.676z"/>
-<path d="M28.35,26h1.65c-0.006-0.082-0.061-0.641-0.254-1.394l-1.4,1.39z"/>
-<path d="M24.92,19.53c-0.142-0.025-0.274-0.059-0.423-0.074-0.732,0-2.01-0.307-2.386-1.359l-7.9,7.9h4.242l6.47-6.47z"/>
-<path d="M28.96,22.56c-0.447-0.838-1.085-1.656-1.991-2.25l-5.69,5.69h4.242l3.44-3.44z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M13.137,8.828c-0.463-0.144-0.938-0.479-0.938-1.178V7.42c0-0.101,0.047-0.196,0.123-0.258C13.326,6.39,14,5.094,14,3.501 c0-2.276-1.346-3.417-3-3.417S8.001,1.225,8.001,3.501c0,1.593,0.673,2.889,1.675,3.661C9.754,7.224,9.799,7.319,9.799,7.42v0.23 c0,0.092-0.014,0.175-0.029,0.256C9.909,8.379,10,8.9,10,9.501c0,1.364-0.43,2.614-1.197,3.583h4.527 C13.121,12.242,13,11.367,13,10.482C13,9.916,13.049,9.363,13.137,8.828z"/>
+<path d="M0,19.084c0.012-0.181,0.336-3.851,3.3-4.164c0.681-0.016,1.499-0.357,1.499-1.27v-0.23c0-0.101-0.045-0.196-0.123-0.258 c-1.002-0.772-1.675-2.068-1.675-3.661c0-2.276,1.345-3.417,2.999-3.417s3,1.141,3,3.417c0,1.593-0.674,2.889-1.678,3.661 c-0.076,0.062-0.123,0.157-0.123,0.258v0.23c0,1.005,0.982,1.27,1.5,1.27c2.965,0.313,3.287,3.983,3.301,4.164H0z"/>
+<path d="M23.892,6.42c-0.572-0.92-1.335-1.627-2.208-2.034l-6.652,6.651c0.078,1.186,0.396,2.342,0.899,3.344L23.892,6.42z"/>
+<path d="M25,10.482c0-0.727-0.096-1.424-0.267-2.076l-7.649,7.649c0.225,0.237,0.458,0.456,0.709,0.64 c0.131,0.096,0.205,0.246,0.205,0.404v0.361c0,1.436-1.363,1.973-2.5,1.996C10.561,19.95,10.021,25.717,10,26h1.382l13.325-13.324 C24.891,11.966,25,11.227,25,10.482z"/>
+<path d="M15.462,7.779l3.675-3.676C17.5,4.476,16.138,5.879,15.462,7.779z"/>
+<path d="M28.353,26H30c-0.006-0.082-0.061-0.641-0.254-1.394L28.353,26z"/>
+<path d="M24.923,19.531c-0.142-0.025-0.274-0.059-0.423-0.074c-0.732,0-2.01-0.307-2.386-1.359L14.211,26h4.242L24.923,19.531z"/>
+<path d="M28.961,22.563c-0.447-0.838-1.085-1.656-1.991-2.25L21.281,26h4.242L28.961,22.563z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_qcif.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_qcif.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M7.744,11.38c-0.412,0-0.72,0.2-0.939,0.612-0.239,0.446-0.36,1.295-0.36,2.521,0,1.159,0.121,2.035,0.359,2.604,0.218,0.519,0.525,0.771,0.94,0.771,0.41,0,0.717-0.214,0.938-0.654,0.24-0.479,0.362-1.394,0.362-2.72,0-1.196-0.12-2.038-0.358-2.502-0.219-0.43-0.527-0.63-0.942-0.63z"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-16.5,13.79c-0.41,0.74-1.01,1.21-1.789,1.4,0.06,0.196,0.139,0.349,0.236,0.456,0.063,0.07,0.251,0.187,0.801,0.187h0.2v1.326h-0.587c-0.765,0-1.36-0.161-1.77-0.479-0.389-0.302-0.683-0.812-0.873-1.517-0.763-0.225-1.35-0.707-1.746-1.435-0.405-0.743-0.61-1.825-0.61-3.216,0-1.521,0.283-2.668,0.841-3.404,0.57-0.755,1.425-1.138,2.541-1.138,1.12,0,1.978,0.384,2.55,1.14,0.56,0.74,0.844,1.885,0.844,3.402,0.01,1.39-0.21,2.49-0.63,3.27zm6.53-6.14l-0.257-0.076c-0.44-0.131-0.837-0.196-1.18-0.196-0.548,0-0.947,0.237-1.22,0.727-0.29,0.521-0.438,1.321-0.438,2.384,0,1.24,0.151,2.135,0.451,2.66,0.282,0.496,0.694,0.737,1.259,0.737,0.352,0,0.731-0.057,1.13-0.168l0.254-0.071v1.413l-0.148,0.04c-0.479,0.129-0.976,0.194-1.476,0.194-1.172,0-2.07-0.384-2.668-1.14-0.586-0.742-0.884-1.959-0.884-3.619,0-1.492,0.299-2.634,0.889-3.395,0.602-0.777,1.51-1.171,2.698-1.171,0.477,0,0.961,0.065,1.44,0.194l0.148,0.04v1.47zm3.76-0.18h-0.721v6.32h0.721v1.41h-3.459v-1.408h0.721v-6.32h-0.721v-1.408h3.459v1.412zm5.77,0h-2.877v2.359h2.244v1.42h-2.244v3.95h-2.012v-9.137h4.889v1.412z"/>
+<path d="M7.744,11.378c-0.412,0-0.72,0.2-0.939,0.612c-0.239,0.446-0.36,1.295-0.36,2.521c0,1.159,0.121,2.035,0.359,2.604 c0.218,0.519,0.525,0.771,0.94,0.771c0.41,0,0.717-0.214,0.938-0.654c0.24-0.479,0.362-1.394,0.362-2.72 c0-1.196-0.12-2.038-0.358-2.502C8.467,11.584,8.159,11.378,7.744,11.378z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M10.495,17.789 C10.09,18.53,9.49,19,8.711,19.188c0.06,0.196,0.139,0.349,0.236,0.456c0.063,0.07,0.251,0.187,0.801,0.187h0.2v1.326H9.361 c-0.765,0-1.36-0.161-1.77-0.479c-0.389-0.302-0.683-0.812-0.873-1.517c-0.763-0.225-1.35-0.707-1.746-1.435 c-0.405-0.743-0.61-1.825-0.61-3.216c0-1.521,0.283-2.668,0.841-3.404c0.57-0.755,1.425-1.138,2.541-1.138 c1.12,0,1.978,0.384,2.55,1.14c0.56,0.74,0.844,1.885,0.844,3.402C11.138,15.906,10.921,17.01,10.495,17.789z M17.026,11.65 l-0.257-0.076c-0.44-0.131-0.837-0.196-1.18-0.196c-0.548,0-0.947,0.237-1.22,0.727c-0.29,0.521-0.438,1.321-0.438,2.384 c0,1.24,0.151,2.135,0.451,2.66c0.282,0.496,0.694,0.737,1.259,0.737c0.352,0,0.731-0.057,1.13-0.168l0.254-0.071v1.413l-0.148,0.04 c-0.479,0.129-0.976,0.194-1.476,0.194c-1.172,0-2.07-0.384-2.668-1.14c-0.586-0.742-0.884-1.959-0.884-3.619 c0-1.492,0.299-2.634,0.889-3.395c0.602-0.777,1.51-1.171,2.698-1.171c0.477,0,0.961,0.065,1.44,0.194l0.148,0.04V11.65z M20.788,11.472h-0.721v6.32h0.721V19.2h-3.459v-1.408h0.721v-6.32h-0.721v-1.408h3.459V11.472z M26.56,11.472h-2.877v2.359h2.244 v1.42h-2.244V19.2h-2.012v-9.137h4.889V11.472z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_collections.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_collections.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -1 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M21,5h-19c-1.105,0-2,0.895-2,2v19c0,1.104,0.895,2,2,2h19c1.104,0,2-0.896,2-2v-19c0-1.105-0.9-2-2-2zm-8.25,11.26l-3-0.554v6.949c0,1.25-1.537,2.265-3.125,2.265s-2.875-1.02-2.875-2.27,1.287-2.265,2.875-2.265c0.399,0,0.779,0.064,1.125,0.18v-8.65l5,0.923v3.426zm1.19,0.7c1.515-1.627,1.454-4.08-0.22-5.623-0.027-0.023-0.055-0.045-0.083-0.068l1.505-1.127c2.319,2.195,2.424,5.646,0.309,7.949l-1.51-1.13zm3.87,2.89l-1.499-1.123c2.397-2.723,2.344-6.672-0.146-9.352l1.494-1.121c3.07,3.333,3.13,8.223,0.16,11.59z"/>
-<path d="M26,0h-19c-1.105,0-2,0.895-2,2v1h20v20h1c1.104,0,2-0.896,2-2v-19c0-1.105-0.9-2-2-2z"/>
-</svg>
\ No newline at end of file
+<path d="M21,5H2C0.895,5,0,5.895,0,7v19c0,1.104,0.895,2,2,2h19c1.104,0,2-0.896,2-2V7C23,5.895,22.104,5,21,5z M12.75,16.256 l-3-0.554c0,2.007,0,6.882,0,6.949c0,1.25-1.537,2.265-3.125,2.265S3.75,23.901,3.75,22.651s1.287-2.265,2.875-2.265 c0.399,0,0.779,0.064,1.125,0.18v-8.65l0,0l5,0.923V16.256z M13.944,16.959c1.515-1.627,1.454-4.08-0.22-5.623 c-0.027-0.023-0.055-0.045-0.083-0.068l1.505-1.127c2.319,2.195,2.424,5.646,0.309,7.949L13.944,16.959z M17.806,19.854 l-1.499-1.123c2.397-2.723,2.344-6.672-0.146-9.352l1.494-1.121C20.724,11.59,20.777,16.48,17.806,19.854z"/>
+<path d="M26,0H7C5.895,0,5,0.895,5,2v1h20v17v3h1c1.104,0,2-0.896,2-2V2C28,0.895,27.104,0,26,0z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_stations.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_radio_stations.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M11.75,27.74c0-2.09,1.728-3.834,4-4.196v-0.54h-6.25v-2h6.254v-3h-6.25v-2h6.535c0.116-0.2,0.258-0.386,0.439-0.537,0.36-0.3,0.81-0.46,1.27-0.46,0.121,0,0.242,0.011,0.363,0.033l3.637,0.671c0.128-0.376,0.367-0.71,0.693-0.953l1.504-1.127c0.171-0.128,0.356-0.222,0.549-0.287v-10.33c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h7.498c-0.14-0.4-0.24-0.82-0.24-1.26zm-2.25-21.74h11v2h-11v-2zm0,5h11v2h-11v-2zm-1,12h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2z"/>
-<path d="M24.26,24.78l-1.51-1.131c-0.131-0.099-0.249-0.212-0.351-0.336-0.003-0.001-0.646-0.119-0.646-0.119v4.546c0,0.44-0.108,0.861-0.266,1.265h1.02c1.104,0,2-0.896,2-2v-2.091c-0.08-0.05-0.16-0.08-0.24-0.13z"/>
-<path d="M22.75,21.34l-3-0.554v6.949c0,1.25-1.537,2.265-3.125,2.265s-2.875-1.015-2.875-2.265,1.287-2.265,2.875-2.265c0.399,0,0.779,0.064,1.125,0.18v-8.66l5,0.923v3.42zm1.2,0.7c1.515-1.627,1.454-4.08-0.22-5.623-0.027-0.023-0.055-0.045-0.083-0.068l1.505-1.127c2.319,2.195,2.424,5.646,0.309,7.949l-1.52-1.13zm3.86,2.9l-1.499-1.123c2.397-2.723,2.344-6.672-0.146-9.352l1.494-1.121c3.08,3.32,3.13,8.21,0.16,11.59z"/>
-</svg>
\ No newline at end of file
+<path d="M11.754,27.735c0-2.09,1.728-3.834,4-4.196V23H9.5v-2h6.254v-3H9.5v-2h6.535c0.116-0.2,0.258-0.386,0.439-0.537 C16.836,15.161,17.29,15,17.754,15c0.121,0,0.242,0.011,0.363,0.033l3.637,0.671c0.128-0.376,0.367-0.71,0.693-0.953l1.504-1.127 c0.171-0.128,0.356-0.222,0.549-0.287V3c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v24c0,1.104,0.896,2,2,2h7.498 C11.854,28.598,11.754,28.179,11.754,27.735z M9.5,6h11v2h-11V6z M9.5,11h11v2h-11V11z M8.5,23h-2v-2h2V23z M8.5,18h-2v-2h2V18z M8.5,13h-2v-2h2V13z M8.5,8h-2V6h2V8z"/>
+<path d="M24.26,24.775l-1.51-1.131c-0.131-0.099-0.249-0.212-0.351-0.336c-0.003-0.001-0.646-0.119-0.646-0.119v4.546 c0,0.44-0.108,0.861-0.266,1.265H22.5c1.104,0,2-0.896,2-2v-2.091C24.42,24.865,24.336,24.832,24.26,24.775z"/>
+<path d="M22.754,21.34l-3-0.554c0,2.007,0,6.882,0,6.949c0,1.25-1.537,2.265-3.125,2.265s-2.875-1.015-2.875-2.265 s1.287-2.265,2.875-2.265c0.399,0,0.779,0.064,1.125,0.18V17l0,0l5,0.923V21.34z M23.948,22.043c1.515-1.627,1.454-4.08-0.22-5.623 c-0.027-0.023-0.055-0.045-0.083-0.068l1.505-1.127c2.319,2.195,2.424,5.646,0.309,7.949L23.948,22.043z M27.81,24.938l-1.499-1.123 c2.397-2.723,2.344-6.672-0.146-9.352l1.494-1.121C30.728,16.674,30.781,21.564,27.81,24.938z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_recognize_song.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_recognize_song.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M23.22,4.023l-9-2c-0.08-0.015-0.15-0.023-0.22-0.023-0.226,0-0.446,0.076-0.626,0.22-0.23,0.19-0.37,0.476-0.37,0.78v16.36c-0.69-0.23-1.45-0.36-2.25-0.36-3.176,0-5.75,2.02-5.75,4.5s2.574,4.5,5.75,4.5,6.25-2.02,6.25-4.5v-13.81l5.783,1.285c0.08,0.01,0.15,0.02,0.22,0.02,0,0,0.446-0.076,0.626-0.22,0.23-0.19,0.37-0.48,0.37-0.78v-5c0-0.469-0.32-0.874-0.78-0.977z"/>
+<path d="M23.217,4.023l-9-2C14.145,2.008,14.072,2,14,2c-0.226,0-0.446,0.076-0.626,0.22C13.138,2.41,13,2.696,13,3v1v15.357 C12.31,19.129,11.549,19,10.75,19C7.574,19,5,21.016,5,23.5S7.574,28,10.75,28S17,25.984,17,23.5c0-0.134,0-9.82,0-13.809 l5.783,1.285C22.855,10.992,22.928,11,23,11c0,0,0.446-0.076,0.626-0.22C23.862,10.59,24,10.304,24,10V5 C24,4.531,23.675,4.126,23.217,4.023z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M20,17.01v-1.582c1.04-0.29,1.98-0.43,2.8-0.43,1.363,0,2.405,0.279,3.124,0.838,0.72,0.56,1.08,1.38,1.08,2.47,0,0.459-0.104,0.93-0.311,1.412-0.21,0.48-0.705,1.119-1.488,1.916-0.573,0.576-0.957,1.008-1.149,1.291-0.192,0.287-0.29,0.615-0.29,0.99v0.836h-2.297v-0.965c0-0.619,0.136-1.156,0.407-1.609s0.689-0.953,1.257-1.498c0.598-0.59,0.967-1.037,1.108-1.342,0.142-0.307,0.212-0.607,0.212-0.902,0-0.613-0.171-1.072-0.516-1.379-0.343-0.305-0.858-0.459-1.546-0.459-0.66-0.01-1.46,0.13-2.38,0.4zm2.61,11.99c-0.398,0-0.735-0.143-1.013-0.428-0.278-0.283-0.416-0.629-0.416-1.033s0.138-0.748,0.416-1.029c0.277-0.283,0.614-0.424,1.013-0.424s0.735,0.141,1.014,0.424c0.277,0.281,0.415,0.625,0.415,1.029s-0.139,0.75-0.421,1.033c-0.28,0.29-0.61,0.43-1.01,0.43z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M20,17.014v-1.582C21.043,15.145,21.975,15,22.795,15c1.363,0,2.405,0.279,3.124,0.838C26.64,16.395,27,17.219,27,18.309 c0,0.459-0.104,0.93-0.311,1.412c-0.21,0.48-0.705,1.119-1.488,1.916c-0.573,0.576-0.957,1.008-1.149,1.291 c-0.192,0.287-0.29,0.615-0.29,0.99v0.836h-2.297v-0.965c0-0.619,0.136-1.156,0.407-1.609c0.271-0.453,0.689-0.953,1.257-1.498 c0.598-0.59,0.967-1.037,1.108-1.342c0.142-0.307,0.212-0.607,0.212-0.902c0-0.613-0.171-1.072-0.516-1.379 c-0.343-0.305-0.858-0.459-1.546-0.459C21.718,16.6,20.923,16.736,20,17.014z M22.613,29c-0.398,0-0.735-0.143-1.013-0.428 c-0.278-0.283-0.416-0.629-0.416-1.033s0.138-0.748,0.416-1.029c0.277-0.283,0.614-0.424,1.013-0.424s0.735,0.141,1.014,0.424 c0.277,0.281,0.415,0.625,0.415,1.029s-0.139,0.75-0.421,1.033C23.342,28.857,23.006,29,22.613,29z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_redeye.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_redeye.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27,21h-2.869l3.87-11h-8.639l3.179-9h-5.302l-3.247,9.192c2.081,0.37,4.071,1.317,5.885,2.808h1.762l-0.426,1.212c1.5,1.545,1.498,4.048-0.01,5.588-1.629,1.661-3.438,2.841-5.35,3.521l4.909,5.355c0.19,0.2,0.46,0.32,0.74,0.32s0.548-0.117,0.737-0.324l5.5-6c0.268-0.293,0.338-0.715,0.179-1.078-0.16-0.37-0.52-0.6-0.92-0.6z"/>
-<path d="M19.77,15.6c-2.3-2.36-4.99-3.6-7.77-3.6-2.775,0-5.463,1.244-7.773,3.6-0.763,0.777-0.763,2.023,0,2.801,2.31,2.36,4.998,3.6,7.773,3.6,2.777,0,5.467-1.245,7.773-3.6,0.77-0.78,0.77-2.02,0-2.8zm-7.77,4.4c-2.68,0-4.816-1.441-6.346-3,0.695-0.709,1.522-1.385,2.463-1.921-0.07,0.3-0.117,0.6-0.117,0.92,0,2.21,1.793,4,4,4,2.209,0,4-1.79,4-4,0-0.318-0.047-0.625-0.117-0.922,0.941,0.536,1.769,1.213,2.463,1.922-1.52,1.56-3.66,3-6.34,3z"/>
+<path d="M27,21h-2.869L28,10h-8.639l3.179-9h-5.302l-3.247,9.192c2.081,0.37,4.071,1.317,5.885,2.808h1.762l-0.426,1.212 c1.5,1.545,1.498,4.048-0.01,5.588c-1.629,1.661-3.438,2.841-5.35,3.521l4.909,5.355C20.952,28.883,21.22,29,21.5,29 s0.548-0.117,0.737-0.324l5.5-6c0.268-0.293,0.338-0.715,0.179-1.078C27.756,21.234,27.396,21,27,21z"/>
+<path d="M19.773,15.6C17.467,13.245,14.777,12,12,12c-2.775,0-5.463,1.244-7.773,3.6 c-0.763,0.777-0.763,2.023,0,2.801C6.537,20.756,9.225,22,12,22c2.777,0,5.467-1.245,7.773-3.6 C20.536,17.622,20.536,16.378,19.773,15.6z M12,20c-2.68,0-4.816-1.441-6.346-3c0.695-0.709,1.522-1.385,2.463-1.921 C8.047,15.376,8,15.682,8,16C8,18.21,9.793,20,12,20c2.209,0,4-1.79,4-4c0-0.318-0.047-0.625-0.117-0.922 c0.941,0.536,1.769,1.213,2.463,1.922C16.818,18.559,14.68,20,12,20z" fill-rule="evenodd"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reject_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reject_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15.69,11.54c1.257-0.961,2.563-1.786,3.289-2.164,0.001,0.002,0,0.004,0.001,0.004s0.005-0.006,0.007-0.008l1.277,2.143c0.183,0.313,0.589,0.408,0.953,0.256l7.359-4.248c0.383-0.221,0.533-0.68,0.334-1.023,0,0-0.203-0.305-0.818-1.061,0.002,0,0.002,0.002,0.004,0.004-0.002-0.002,0-0.004-0.002-0.008-0.312-0.383-0.35-0.396-0.751-0.764-1.204-1.104-2.53-1.537-2.53-1.537-0.514-0.182-2.241-0.281-4.417,0.375-1.677,0.506-4.996,2.504-7.887,4.85l3.19,3.172z"/>
-<path d="M9.396,18.76c-0.01,0-0.019,0-0.027-0.002,0.002-0.002,0.008-0.01,0.008-0.01,0.654-1.126,1.376-2.136,2.144-3.077l-3.206-3.206c-2.368,2.795-4.218,5.808-4.637,6.908-0.814,2.148-0.74,4.516-0.563,5.205,0,0,0.169,0.512,0.56,1.211,0.005,0.006,0.01,0.016,0.015,0.023,0.038,0.068,0.076,0.137,0.119,0.207,0.001,0.002,0.005,0.002,0.005,0.002,0.21,0.35,0.464,0.73,0.783,1.115,0.374,0.449,0.392,0.578,0.785,0.924h0.003c0.723,0.637,1.021,0.83,1.021,0.83,0.344,0.225,0.827,0.104,1.081-0.268l4.793-7.041c0.254-0.373,0.186-0.857-0.158-1.078l-2.724-1.74z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
+<path d="M15.691,11.542c1.257-0.961,2.563-1.786,3.289-2.164c0.001,0.002,0,0.004,0.001,0.004s0.005-0.006,0.007-0.008l1.277,2.143 c0.183,0.313,0.589,0.408,0.953,0.256l7.359-4.248c0.383-0.221,0.533-0.68,0.334-1.023c0,0-0.203-0.305-0.818-1.061 c0.002,0,0.002,0.002,0.004,0.004c-0.002-0.002,0-0.004-0.002-0.008c-0.312-0.383-0.35-0.396-0.751-0.764 c-1.204-1.104-2.53-1.537-2.53-1.537c-0.514-0.182-2.241-0.281-4.417,0.375c-1.677,0.506-4.996,2.504-7.887,4.85L15.691,11.542z"/>
+<path d="M9.396,18.757c-0.01,0-0.019,0-0.027-0.002c0.002-0.002,0.008-0.01,0.008-0.01c0.654-1.126,1.376-2.136,2.144-3.077 l-3.206-3.206c-2.368,2.795-4.218,5.808-4.637,6.908c-0.814,2.148-0.74,4.516-0.563,5.205c0,0,0.169,0.512,0.56,1.211 c0.005,0.006,0.01,0.016,0.015,0.023c0.038,0.068,0.076,0.137,0.119,0.207c0.001,0.002,0.005,0.002,0.005,0.002 c0.21,0.35,0.464,0.73,0.783,1.115c0.374,0.449,0.392,0.578,0.785,0.924c0.001,0,0.002,0,0.003,0c0.723,0.637,1.021,0.83,1.021,0.83 c0.344,0.225,0.827,0.104,1.081-0.268l4.793-7.041c0.254-0.373,0.186-0.857-0.158-1.078L9.396,18.757z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_remove_from_video_collection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_remove_from_video_collection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M26,14.52c1.119,0.396,2.134,1.008,3,1.785v-13.3c0-1.104-0.896-2-2-2h-19c-1.104,0-2,0.896-2,2v1h20v10.52z"/>
+<path d="M26,14.525c1.119,0.396,2.134,1.008,3,1.785V3c0-1.104-0.896-2-2-2H8C6.896,1,6,1.896,6,3v1h20V14.525z"/>
<rect height="2" width="2" x="7" y="11"/>
<rect height="2" width="2" x="7" y="22"/>
-<path d="M16,17.36v-2.36h-7v5h5.525c0.35-0.97,0.85-1.86,1.48-2.64z"/>
+<path d="M16,17.355V15H9v5h5.525C14.869,19.033,15.367,18.139,16,17.355z"/>
<rect height="2" width="2" x="10" y="11"/>
<rect height="2" width="2" x="10" y="22"/>
<rect height="2" width="2" x="16" y="11"/>
-<path d="M14,23c0-0.338,0.022-0.671,0.059-1h-1.06v2h1.062c-0.04-0.33-0.06-0.66-0.06-1z"/>
-<path d="M22,6h-19c-1.104,0-2,0.896-2,2v19c0,1.104,0.896,2,2,2h13.31c-0.777-0.865-1.384-1.884-1.783-3h-9.53c-0.552,0-1-0.447-1-1s0.448-1,1-1h1v-2h-1c-0.552,0-1-0.447-1-1s0.448-1,1-1h2v-5h-2c-0.552,0-1-0.447-1-1s0.448-1,1-1h1v-2h-1c-0.552,0-1-0.447-1-1s0.448-1,1-1h15c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.447,1,1,0,0.087-0.029,0.164-0.049,0.244,0.66-0.15,1.34-0.24,2.05-0.24,0.338,0,0.672,0.022,1,0.059v-6.06c0-1.104-0.9-2-2-2z"/>
+<path d="M14,23c0-0.338,0.022-0.671,0.059-1H13v2h1.062C14.024,23.671,14,23.339,14,23z"/>
+<path d="M22,6H3C1.896,6,1,6.896,1,8v19c0,1.104,0.896,2,2,2h13.311c-0.777-0.865-1.384-1.884-1.783-3H5c-0.552,0-1-0.447-1-1 s0.448-1,1-1h1v-2H5c-0.552,0-1-0.447-1-1s0.448-1,1-1h2v-5H5c-0.552,0-1-0.447-1-1s0.448-1,1-1h1v-2H5c-0.552,0-1-0.447-1-1 s0.448-1,1-1h15c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.447,1,1c0,0.087-0.029,0.164-0.049,0.244 C21.61,14.09,22.294,14,23,14c0.338,0,0.672,0.022,1,0.059V8C24,6.896,23.104,6,22,6z"/>
<rect height="2" width="2" x="13" y="11"/>
-<path d="M18,15.52c0.287-0.191,0.588-0.362,0.896-0.521h-0.9v0.521z"/>
-<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.13-7-7-7zm-5,8v-2h10v2h-10z"/>
+<path d="M18,15.521c0.287-0.191,0.588-0.362,0.896-0.521H18V15.521z"/>
+<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7s7-3.134,7-7S26.866,16,23,16z M18,24v-2h10v2H18z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,2c-6.525,0-11.91,4.814-12.84,11.08-0.039,0.133-0.066,0.271-0.066,0.418,0,0.828,0.671,1.5,1.5,1.5,0.803,0,1.454-0.633,1.493-1.427l0.027,0.004c0.694-4.834,4.857-8.57,9.886-8.57,5.514,0,10,4.486,10,10,0,5.515-4.486,10-10,10-2.759,0-5.244-1.136-7.048-2.951l3.634-3.635c0.77-0.78,0.51-1.42-0.59-1.42h-7c-1.1,0-2,0.9-2,2v7c0,1.1,0.636,1.363,1.414,0.586l2.408-2.408c2.348,2.35,5.588,3.82,9.178,3.82,7.18,0,13-5.82,13-13s-5.82-13-13-13z"/>
+<path d="M15,2C8.475,2,3.09,6.814,2.16,13.082c-0.039,0.133-0.066,0.271-0.066,0.418c0,0.828,0.671,1.5,1.5,1.5 c0.803,0,1.454-0.633,1.493-1.427l0.027,0.004C5.808,8.736,9.971,5,15,5c5.514,0,10,4.486,10,10c0,5.515-4.486,10-10,10 c-2.759,0-5.244-1.136-7.048-2.951l3.634-3.635C12.364,17.637,12.1,17,11,17H4c-1.1,0-2,0.9-2,2v7c0,1.1,0.636,1.363,1.414,0.586 l2.408-2.408C8.17,26.534,11.409,28,15,28c7.18,0,13-5.82,13-13S22.18,2,15,2z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat_exception.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_repeat_exception.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M5.086,13.57l0.027,0.004c0.166-1.16,0.537-2.255,1.066-3.251l-2.189-2.183c-0.921,1.479-1.563,3.148-1.83,4.945-0.039,0.133-0.066,0.271-0.066,0.418,0,0.828,0.672,1.5,1.5,1.5,0.802,0,1.453-0.63,1.492-1.43z"/>
-<path d="M15,5c5.514,0,10,4.486,10,10,0,1.691-0.425,3.283-1.169,4.681l2.19,2.19c1.25-1.99,1.98-4.35,1.98-6.87,0-7.18-5.82-13-13-13-2.527,0-4.879,0.729-6.872,1.979l2.197,2.196c1.4-0.745,2.99-1.175,4.68-1.175z"/>
-<path d="M15,25c-2.759,0-5.244-1.136-7.049-2.951l3.635-3.635c0.77-0.78,0.51-1.42-0.59-1.42h-7c-1.1,0-2,0.9-2,2v7c0,1.1,0.637,1.363,1.414,0.586l2.408-2.408c2.348,2.35,5.588,3.82,9.178,3.82,2.527,0,4.877-0.732,6.873-1.98l-2.19-2.189c-1.4,0.74-2.99,1.17-4.68,1.17z"/>
-<path d="M3.628,2.307c-0.389-0.389-1.004-0.41-1.367-0.048s-0.342,0.977,0.047,1.366l24.07,24.07c0.389,0.389,1.004,0.408,1.366,0.045s0.341-0.979-0.048-1.367l-24.07-24.06z"/>
+<path d="M5.086,13.573l0.027,0.004c0.166-1.16,0.537-2.255,1.066-3.251L3.99,8.137c-0.921,1.479-1.563,3.148-1.83,4.945 c-0.039,0.133-0.066,0.271-0.066,0.418c0,0.828,0.672,1.5,1.5,1.5C4.396,15,5.047,14.367,5.086,13.573z"/>
+<path d="M15,5c5.514,0,10,4.486,10,10c0,1.691-0.425,3.283-1.169,4.681l2.19,2.19C27.268,19.875,28,17.525,28,15 c0-7.18-5.82-13-13-13c-2.527,0-4.879,0.729-6.872,1.979l2.197,2.196C11.721,5.43,13.31,5,15,5z"/>
+<path d="M15,25c-2.759,0-5.244-1.136-7.049-2.951l3.635-3.635C12.363,17.637,12.1,17,11,17H4c-1.1,0-2,0.9-2,2v7 c0,1.1,0.637,1.363,1.414,0.586l2.408-2.408C8.17,26.534,11.408,28,15,28c2.527,0,4.877-0.732,6.873-1.98l-2.19-2.189 C18.284,24.574,16.691,25,15,25z"/>
+<path d="M3.628,2.307c-0.389-0.389-1.004-0.41-1.367-0.048S1.919,3.236,2.308,3.625l24.068,24.07 c0.389,0.389,1.004,0.408,1.366,0.045s0.341-0.979-0.048-1.367L3.628,2.307z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_replace_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_replace_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27.58,6.523l-7.36,4.248c-0.363,0.152-0.77,0.057-0.952-0.256l-1.278-2.143c-0.001,0.002-0.004,0.008-0.006,0.008v0.002c-1.121,0.582-3.618,2.223-5.188,3.791-1.632,1.635-3.15,3.393-4.417,5.576,0,0-0.006,0.008-0.008,0.01,0.009,0.002,0.018,0.002,0.027,0.002l2.725,1.744c0.344,0.221,0.412,0.705,0.158,1.078l-4.794,7.041c-0.253,0.371-0.735,0.492-1.08,0.268,0,0-0.298-0.193-1.021-0.83h-0.003c-0.394-0.346-0.411-0.475-0.785-0.924-0.319-0.385-0.573-0.766-0.783-1.115l-0.005-0.002c-0.043-0.07-0.081-0.139-0.119-0.207-0.005-0.008-0.01-0.018-0.015-0.023-0.391-0.699-0.56-1.211-0.56-1.211-0.178-0.689-0.252-3.057,0.563-5.205,0.52-1.365,3.24-5.672,6.42-8.855,3.18-3.182,8.124-6.348,10.3-7.004s3.903-0.557,4.416-0.375,1.326,0.434,2.531,1.537c0.401,0.367,0.439,0.381,0.75,0.764,0.002,0.004,0.002,0.006,0.002,0.006s-0.002-0.002-0.004-0.002c0.61,0.744,0.81,1.049,0.81,1.049,0.2,0.344,0.05,0.803-0.33,1.023z"/>
-<path d="M28.83,17.44l-4-6c-0.18-0.27-0.5-0.44-0.83-0.44s-0.646,0.167-0.832,0.445l-4,6c-0.205,0.307-0.224,0.701-0.05,1.026,0.17,0.33,0.51,0.53,0.88,0.53h2v6h-2v-2c0-1.104-0.896-2-2-2s-2,0.896-2,2v2c0,3,2.775,5,5.5,5s5.5-2,5.5-5v-6h1c0.369,0,0.707-0.203,0.882-0.528,0.18-0.32,0.16-0.72-0.05-1.03z"/>
+<path d="M27.578,6.523l-7.36,4.248c-0.363,0.152-0.77,0.057-0.952-0.256l-1.278-2.143c-0.001,0.002-0.004,0.008-0.006,0.008V8.377 c-1.121,0.582-3.618,2.223-5.188,3.791c-1.632,1.635-3.15,3.393-4.417,5.576c0,0-0.006,0.008-0.008,0.01 c0.009,0.002,0.018,0.002,0.027,0.002l2.725,1.744c0.344,0.221,0.412,0.705,0.158,1.078l-4.794,7.041 c-0.253,0.371-0.735,0.492-1.08,0.268c0,0-0.298-0.193-1.021-0.83c0,0-0.002,0-0.003,0c-0.394-0.346-0.411-0.475-0.785-0.924 c-0.319-0.385-0.573-0.766-0.783-1.115c0,0-0.004,0-0.005-0.002c-0.043-0.07-0.081-0.139-0.119-0.207 c-0.005-0.008-0.01-0.018-0.015-0.023c-0.391-0.699-0.56-1.211-0.56-1.211c-0.178-0.689-0.252-3.057,0.563-5.205 c0.52-1.365,3.24-5.672,6.42-8.855c3.18-3.182,8.124-6.348,10.3-7.004s3.903-0.557,4.416-0.375c0,0,1.326,0.434,2.531,1.537 c0.401,0.367,0.439,0.381,0.75,0.764c0.002,0.004,0.002,0.006,0.002,0.006s-0.002-0.002-0.004-0.002 C27.709,5.195,27.911,5.5,27.911,5.5C28.11,5.844,27.962,6.303,27.578,6.523z"/>
+<path d="M28.832,17.445l-4-6C24.646,11.167,24.334,11,24,11s-0.646,0.167-0.832,0.445l-4,6c-0.205,0.307-0.224,0.701-0.05,1.026 C19.293,18.797,19.631,19,20,19h2v6h-2v-2c0-1.104-0.896-2-2-2s-2,0.896-2,2v1v1c0,3,2.775,5,5.5,5s5.5-2,5.5-5v-6h1 c0.369,0,0.707-0.203,0.882-0.528C29.056,18.146,29.037,17.752,28.832,17.445z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="8.268,16.73,0,9.819,0,23.55"/>
-<path d="M0.127,7.319l11.31,9.448c0.46,0.354,0.908,0.555,1.402,0.566h0.113c0.494-0.012,0.943-0.213,1.402-0.566l11.51-9.494c-0.29-0.747-1.01-1.276-1.86-1.276h-22c-0.864,0-1.594,0.552-1.873,1.319z"/>
-<path d="M14,24c0-0.893,0.394-1.732,1.08-2.305l3.615-3.013-1.75-1.462-1.321,1.09c-0.882,0.681-1.724,1.002-2.627,1.023h-0.161c-0.948-0.021-1.791-0.342-2.621-0.98l-1.167-0.975-8.907,7.349c0.287,0.74,1.006,1.27,1.854,1.27h12.79c-0.5-0.55-0.79-1.25-0.79-2z"/>
-<path d="M21.08,16.7c0.54-0.45,1.22-0.7,1.92-0.7,0.435,0,0.873,0.098,1.269,0.281,1.05,0.49,1.73,1.56,1.73,2.72v-9.25l-8.271,6.823,1.747,1.459,1.6-1.33z"/>
-<path d="M23,30c-0.229,0-0.457-0.079-0.641-0.231l-6-5c-0.23-0.19-0.36-0.47-0.36-0.77s0.132-0.578,0.359-0.768l6-5c0.18-0.15,0.41-0.23,0.64-0.23,0.144,0,0.289,0.031,0.424,0.095,0.36,0.16,0.58,0.51,0.58,0.9v2h5c0.553,0,1,0.448,1,1v4c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.741-0.576,0.906-0.13,0.06-0.28,0.09-0.42,0.09z"/>
+<polygon points="8.268,16.727 0,9.819 0,23.547 "/>
+<path d="M0.127,7.319l11.307,9.448c0.46,0.354,0.908,0.555,1.402,0.566c0.021,0,0.094,0,0.113,0 c0.494-0.012,0.943-0.213,1.402-0.566l11.508-9.494C25.567,6.529,24.848,6,24,6H2C1.136,6,0.406,6.552,0.127,7.319z"/>
+<path d="M14,24c0-0.893,0.394-1.732,1.08-2.305l3.615-3.013l-1.75-1.462l-1.321,1.09c-0.882,0.681-1.724,1.002-2.627,1.023h-0.023 h-0.138c-0.948-0.021-1.791-0.342-2.621-0.98l-1.167-0.975l-8.907,7.349C0.433,25.472,1.152,26,2,26h12.786 C14.291,25.452,14,24.75,14,24z"/>
+<path d="M21.08,16.695C21.616,16.248,22.299,16,23,16c0.435,0,0.873,0.098,1.269,0.281C25.322,16.774,26,17.841,26,19V9.75 l-8.271,6.823l1.747,1.459L21.08,16.695z"/>
+<path d="M23,30c-0.229,0-0.457-0.079-0.641-0.231l-6-5C16.132,24.578,16,24.297,16,24s0.132-0.578,0.359-0.768l6-5 C22.543,18.079,22.771,18,23,18c0.144,0,0.289,0.031,0.424,0.095C23.775,18.259,24,18.612,24,19v2h5c0.553,0,1,0.448,1,1v4 c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.741-0.576,0.906C23.289,29.969,23.144,30,23,30L23,30z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="7.45,17.72,0,11.5,0,23.87"/>
-<path d="M22,8h-20c-0.772,0-1.434,0.442-1.768,1.083l10.32,8.626c0.424,0.327,0.837,0.512,1.294,0.522h0.105c0.456-0.011,0.87-0.195,1.293-0.522l10.5-8.663c-0.32-0.621-0.97-1.047-1.73-1.047z"/>
-<path d="M14,24c0-0.892,0.393-1.731,1.078-2.303l2.421-2.019-1.737-1.451-1.242,1.024c-0.845,0.652-1.652,0.959-2.519,0.979h-0.152c-0.913-0.021-1.72-0.327-2.513-0.937l-1.104-0.922-7.979,6.582c0.339,0.62,0.989,1.05,1.746,1.05h12.79c-0.5-0.55-0.79-1.25-0.79-2z"/>
-<path d="M21.08,16.7c0.54-0.45,1.22-0.7,1.92-0.7,0.341,0,0.678,0.076,1,0.19v-4.76l-7.454,6.15,1.733,1.448,2.8-2.33z"/>
-<path d="M23,30c-0.229,0-0.457-0.079-0.641-0.231l-6-5c-0.23-0.19-0.36-0.47-0.36-0.77s0.132-0.578,0.359-0.768l6-5c0.18-0.15,0.41-0.23,0.64-0.23,0.144,0,0.289,0.031,0.424,0.095,0.36,0.16,0.58,0.51,0.58,0.9v2h5c0.553,0,1,0.448,1,1v4c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.741-0.576,0.906-0.13,0.06-0.28,0.09-0.42,0.09z"/>
+<polygon points="7.45,17.72 0,11.495 0,23.867 "/>
+<path d="M22,8H2C1.228,8,0.566,8.442,0.232,9.083l10.322,8.626c0.424,0.327,0.837,0.512,1.294,0.522c0.02,0,0.086,0,0.105,0 c0.456-0.011,0.87-0.195,1.293-0.522l10.5-8.663C23.407,8.426,22.757,8,22,8z"/>
+<path d="M14,24c0-0.892,0.393-1.731,1.078-2.303l2.421-2.019l-1.737-1.451l-1.242,1.024c-0.845,0.652-1.652,0.959-2.519,0.979 h-0.024h-0.128c-0.913-0.021-1.72-0.327-2.513-0.937l-1.104-0.922l-7.979,6.582C0.593,25.574,1.243,26,2,26h12.786 C14.291,25.452,14,24.75,14,24z"/>
+<path d="M21.079,16.695C21.618,16.247,22.3,16,23,16c0.341,0,0.678,0.076,1,0.19V11.43l-7.454,6.15l1.733,1.448L21.079,16.695z"/>
+<path d="M23,30c-0.229,0-0.457-0.079-0.641-0.231l-6-5C16.132,24.578,16,24.297,16,24s0.132-0.578,0.359-0.768l6-5 C22.543,18.079,22.771,18,23,18c0.144,0,0.289,0.031,0.424,0.095C23.775,18.259,24,18.612,24,19v2h5c0.553,0,1,0.448,1,1v4 c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.741-0.576,0.906C23.289,29.969,23.144,30,23,30L23,30z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M23,4h-17c-1.104,0-2,0.896-2,2h19c1.654,0,3,1.346,3,3v10h2v-10c0-2.756-2.24-5-5-5z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M23,4H6C4.896,4,4,4.896,4,6h19c1.654,0,3,1.346,3,3v10h2V9C28,6.244,25.757,4,23,4z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_all_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M23,30c-0.229,0-0.457-0.08-0.641-0.232l-6-5c-0.23-0.19-0.36-0.47-0.36-0.77s0.132-0.578,0.359-0.768l6-5c0.18-0.15,0.41-0.23,0.64-0.23,0.144,0,0.289,0.031,0.424,0.094,0.36,0.17,0.58,0.52,0.58,0.91v2h5c0.553,0,1,0.447,1,1v4c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.74-0.576,0.906-0.13,0.06-0.28,0.09-0.42,0.09z"/>
+<path d="M23,30c-0.229,0-0.457-0.08-0.641-0.232l-6-5C16.132,24.578,16,24.297,16,24s0.132-0.578,0.359-0.768l6-5 C22.543,18.078,22.771,18,23,18c0.144,0,0.289,0.031,0.424,0.094C23.775,18.258,24,18.611,24,19v2h5c0.553,0,1,0.447,1,1v4 c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.74-0.576,0.906C23.289,29.969,23.144,30,23,30L23,30z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25.12,3.85c-1.83-1.901-4.42-2.85-7.77-2.85-2.008,0-3.802,0.369-5.393,1.088,0.55-0.053,1.11-0.088,1.69-0.088,3.088,0,5.662,0.74,7.699,2.183,0.686,0.356,1.29,0.823,1.808,1.403,0.439,0.494,0.8,1.061,1.095,1.689,1.26,2.045,1.898,4.583,1.898,7.58,0,0.99-0.091,1.908-0.266,2.756,0.147-0.143,0.289-0.295,0.424-0.459,1.029-1.252,1.545-3.019,1.545-5.297-0.01-3.441-0.92-6.11-2.74-8.01z"/>
-<path d="M15.08,26.3c-0.479-0.4-0.803-0.934-0.962-1.52-0.049,0.002-0.107,0.01-0.154,0.01-3.026,0-5.296-0.789-6.809-2.365-1.514-1.577-2.27-3.942-2.27-7.096,0-2.808,0.815-5.012,2.447-6.611,1.631-1.6,3.755-2.398,6.371-2.398,2.488,0,4.404,0.754,5.749,2.262,1.345,1.51,2.017,3.648,2.017,6.42,0,0.541-0.039,1.025-0.097,1.486,0.48-0.3,1.04-0.48,1.62-0.48,0.365,0,0.726,0.083,1.067,0.213,0.046-0.434,0.081-0.879,0.081-1.357,0-3.437-0.912-6.105-2.734-8.006-1.83-1.895-4.42-2.844-7.77-2.844-3.373,0-6.157,1.016-8.354,3.049-2.198,2.032-3.296,4.841-3.296,8.421,0,3.755,1.066,6.64,3.199,8.654s5.008,3.021,8.627,3.021c0.612,0,1.312-0.071,2.052-0.176l-0.8-0.66z"/>
-<path d="M14.72,9.154c-2.215,0-3.98,0.692-5.298,2.078-1.317,1.385-1.976,3.295-1.976,5.729,0,1.576,0.373,2.816,1.121,3.719,0.747,0.902,1.668,1.354,2.762,1.354,0.811,0,1.511-0.189,2.099-0.568,0.588-0.377,1.142-1.059,1.661-2.043,0.179,0.633,0.46,1.155,0.842,1.568l1.937-1.614c-0.069-0.13-0.128-0.284-0.174-0.468-0.096-0.377-0.144-0.918-0.144-1.619,0-1.769,0.318-4.48,0.957-8.135h-3.805zm-0.28,6.156c-0.219,1.713-0.499,2.907-0.841,3.582-0.342,0.674-0.782,1.012-1.319,1.012-0.602,0-1.019-0.242-1.251-0.725s-0.349-1.268-0.349-2.352c0-1.695,0.332-3.04,0.998-4.033,0.665-0.994,1.472-1.49,2.42-1.49h0.848l-0.51,4z"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M25.117,3.85C23.294,1.949,20.705,1,17.352,1c-2.008,0-3.802,0.369-5.393,1.088C12.51,2.035,13.07,2,13.648,2 c3.088,0,5.662,0.74,7.699,2.183c0.686,0.356,1.29,0.823,1.808,1.403c0.439,0.494,0.8,1.061,1.095,1.689 c1.26,2.045,1.898,4.583,1.898,7.58c0,0.99-0.091,1.908-0.266,2.756c0.147-0.143,0.289-0.295,0.424-0.459 c1.029-1.252,1.545-3.019,1.545-5.297C27.852,8.419,26.939,5.75,25.117,3.85z"/>
+<path d="M15.079,26.305c-0.479-0.4-0.803-0.934-0.962-1.52c-0.049,0.002-0.107,0.01-0.154,0.01c-3.026,0-5.296-0.789-6.809-2.365 c-1.514-1.577-2.27-3.942-2.27-7.096c0-2.808,0.815-5.012,2.447-6.611c1.631-1.6,3.755-2.398,6.371-2.398 c2.488,0,4.404,0.754,5.749,2.262c1.345,1.51,2.017,3.648,2.017,6.42c0,0.541-0.039,1.025-0.097,1.486 C21.855,16.178,22.418,16,23,16c0.365,0,0.726,0.083,1.067,0.213c0.046-0.434,0.081-0.879,0.081-1.357 c0-3.437-0.912-6.105-2.734-8.006C19.591,4.949,17.002,4,13.648,4c-3.373,0-6.157,1.016-8.354,3.049C3.098,9.081,2,11.889,2,15.471 c0,3.755,1.066,6.64,3.199,8.654c2.133,2.014,5.008,3.021,8.627,3.021c0.612,0,1.312-0.071,2.052-0.176L15.079,26.305z"/>
+<path d="M14.715,9.154c-2.215,0-3.98,0.692-5.298,2.078c-1.317,1.385-1.976,3.295-1.976,5.729c0,1.576,0.373,2.816,1.121,3.719 c0.747,0.902,1.668,1.354,2.762,1.354c0.811,0,1.511-0.189,2.099-0.568c0.588-0.377,1.142-1.059,1.661-2.043 c0.179,0.633,0.46,1.155,0.842,1.568l1.937-1.614c-0.069-0.13-0.128-0.284-0.174-0.468c-0.096-0.377-0.144-0.918-0.144-1.619 c0-1.769,0.318-4.48,0.957-8.135H14.715z M14.441,15.307c-0.219,1.713-0.499,2.907-0.841,3.582 c-0.342,0.674-0.782,1.012-1.319,1.012c-0.602,0-1.019-0.242-1.251-0.725c-0.232-0.483-0.349-1.268-0.349-2.352 c0-1.695,0.332-3.04,0.998-4.033c0.665-0.994,1.472-1.49,2.42-1.49h0.848L14.441,15.307z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_reply_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M14,24c0-0.453,0.103-0.891,0.291-1.288-2.271-0.229-4.039-0.983-5.285-2.282-1.514-1.577-2.27-3.942-2.27-7.096,0-2.808,0.815-5.012,2.447-6.611,1.631-1.6,3.755-2.398,6.371-2.398,2.488,0,4.404,0.754,5.749,2.262,1.345,1.51,2.017,3.648,2.017,6.42,0,1.205-0.149,2.201-0.436,3.004,0.04,0.01,0.08,0,0.12,0,0.438,0,0.88,0.098,1.276,0.285,0.353,0.164,0.658,0.398,0.915,0.676,0.52-1.11,0.8-2.47,0.8-4.1,0-3.437-0.912-6.105-2.734-8.006-1.83-1.905-4.42-2.854-7.77-2.854-3.373,0-6.157,1.016-8.354,3.049-2.197,2.032-3.295,4.84-3.295,8.422,0,3.755,1.066,6.64,3.199,8.654,1.837,1.734,4.229,2.717,7.167,2.959-0.14-0.34-0.22-0.7-0.22-1.08z"/>
-<path d="M16.57,7.154c-2.215,0-3.98,0.692-5.298,2.078-1.317,1.385-1.976,3.295-1.976,5.729,0,1.576,0.373,2.816,1.121,3.719,0.747,0.902,1.668,1.354,2.762,1.354,0.811,0,1.511-0.189,2.099-0.568,0.588-0.377,1.142-1.059,1.661-2.043,0.217,0.768,0.59,1.363,1.104,1.807l1.892-1.576c-0.169-0.155-0.303-0.395-0.391-0.744-0.096-0.377-0.144-0.918-0.144-1.619,0-1.769,0.318-4.48,0.957-8.135h-3.794zm-0.28,6.156c-0.219,1.713-0.499,2.907-0.841,3.582-0.34,0.67-0.78,1.01-1.32,1.01-0.602,0-1.019-0.242-1.251-0.725s-0.349-1.268-0.349-2.352c0-1.695,0.332-3.04,0.998-4.033,0.665-0.994,1.472-1.49,2.42-1.49h0.848l-0.51,4z"/>
-<path d="M23,30c-0.229,0-0.457-0.08-0.641-0.232l-6-5c-0.23-0.19-0.36-0.47-0.36-0.77s0.132-0.578,0.359-0.768l6-5c0.18-0.15,0.41-0.23,0.64-0.23,0.144,0,0.289,0.031,0.424,0.094,0.36,0.17,0.58,0.52,0.58,0.91v2h5c0.553,0,1,0.447,1,1v4c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.74-0.576,0.906-0.13,0.06-0.28,0.09-0.42,0.09z"/>
+<path d="M14,24c0-0.453,0.103-0.891,0.291-1.288c-2.271-0.229-4.039-0.983-5.285-2.282c-1.514-1.577-2.27-3.942-2.27-7.096 c0-2.808,0.815-5.012,2.447-6.611c1.631-1.6,3.755-2.398,6.371-2.398c2.488,0,4.404,0.754,5.749,2.262 c1.345,1.51,2.017,3.648,2.017,6.42c0,1.205-0.149,2.201-0.436,3.004C22.924,16.008,22.961,16,23,16c0.438,0,0.88,0.098,1.276,0.285 c0.353,0.164,0.658,0.398,0.915,0.676C25.724,15.854,26,14.492,26,12.855c0-3.437-0.912-6.105-2.734-8.006 C21.442,2.949,18.854,2,15.5,2c-3.373,0-6.157,1.016-8.354,3.049c-2.197,2.032-3.295,4.84-3.295,8.422 c0,3.755,1.066,6.64,3.199,8.654c1.837,1.734,4.229,2.717,7.167,2.959C14.084,24.74,14,24.377,14,24z"/>
+<path d="M16.566,7.154c-2.215,0-3.98,0.692-5.298,2.078c-1.317,1.385-1.976,3.295-1.976,5.729c0,1.576,0.373,2.816,1.121,3.719 c0.747,0.902,1.668,1.354,2.762,1.354c0.811,0,1.511-0.189,2.099-0.568c0.588-0.377,1.142-1.059,1.661-2.043 c0.217,0.768,0.59,1.363,1.104,1.807l1.892-1.576c-0.169-0.155-0.303-0.395-0.391-0.744c-0.096-0.377-0.144-0.918-0.144-1.619 c0-1.769,0.318-4.48,0.957-8.135H16.566z M16.293,13.307c-0.219,1.713-0.499,2.907-0.841,3.582C15.11,17.563,14.67,17.9,14.133,17.9 c-0.602,0-1.019-0.242-1.251-0.725c-0.232-0.483-0.349-1.268-0.349-2.352c0-1.695,0.332-3.04,0.998-4.033 c0.665-0.994,1.472-1.49,2.42-1.49h0.848L16.293,13.307z"/>
+<path d="M23,30c-0.229,0-0.457-0.08-0.641-0.232l-6-5C16.132,24.578,16,24.297,16,24s0.132-0.578,0.359-0.768l6-5 C22.543,18.078,22.771,18,23,18c0.144,0,0.289,0.031,0.424,0.094C23.775,18.258,24,18.611,24,19v2h5c0.553,0,1,0.447,1,1v4 c0,0.553-0.447,1-1,1h-5v2c0,0.389-0.225,0.74-0.576,0.906C23.289,29.969,23.144,30,23,30L23,30z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_restore_settings.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_restore_settings.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M18,2.024v-1.024c0-0.348-0.18-0.669-0.475-0.852-0.16-0.098-0.34-0.148-0.52-0.148-0.152,0-0.307,0.035-0.447,0.105l-4,2c-0.34,0.17-0.55,0.516-0.55,0.895s0.214,0.725,0.553,0.895l4,2c0.14,0.07,0.3,0.105,0.45,0.105,0.183,0,0.365-0.051,0.525-0.15,0.3-0.182,0.48-0.504,0.48-0.85v-0.976c4.838,0.254,8.722,4.137,9,8.976,0,0.553,0.447,1,1,1s1-0.447,1-1c-0.28-5.951-5.05-10.72-11-10.98z"/>
-<path d="M6.15,12.98l-2.74-2.741v0.001l-0.002-0.003-0.076-0.08c-0.255-0.238-1.103-0.872-1.838,0.4-0.541,2.157-0.045,4.519,1.492,6.291l3.568-3.567c-0.143-0.08-0.281-0.18-0.404-0.3z"/>
-<path d="M14.86,14.62c0.874-2.466,0.333-5.324-1.637-7.294-1.8-1.805-4.347-2.41-6.656-1.832-1.144,0.653-0.77,1.399-0.503,1.738l2.918,2.918c0.781,0.781,0.781,2.048,0,2.829l-4.896,4.897c1.902,1.424,4.369,1.748,6.534,0.982l8.263,8.262c1.172,1.172,3.07,1.172,4.242,0s1.172-3.07,0-4.242l-8.26-8.26zm6.14,10.38c-0.391,0.391-1.023,0.391-1.414,0l-0.707-0.707c-0.391-0.391-0.391-1.023,0-1.414s1.023-0.391,1.414,0l0.71,0.71c0.39,0.39,0.39,1.02,0,1.41z"/>
-</svg>
\ No newline at end of file
+<path d="M18,2.024V1c0-0.348-0.18-0.669-0.475-0.852C17.365,0.05,17.183,0,17,0c-0.152,0-0.307,0.035-0.447,0.105l-4,2 C12.214,2.275,12,2.621,12,3s0.214,0.725,0.553,0.895l4,2C16.693,5.965,16.848,6,17,6c0.183,0,0.365-0.051,0.525-0.15 C17.82,5.668,18,5.346,18,5V4.024c4.838,0.254,8.722,4.137,9,8.976c0,0.553,0.447,1,1,1s1-0.447,1-1 C28.719,7.049,23.949,2.281,18,2.024z"/>
+<path d="M6.15,12.979l-2.74-2.741v0.001l-0.002-0.003L3.332,10.16C3.077,9.922,2.229,9.288,1.494,10.56 c-0.541,2.157-0.045,4.519,1.492,6.291l3.568-3.567C6.411,13.199,6.273,13.103,6.15,12.979z"/>
+<path d="M14.858,14.616c0.874-2.466,0.333-5.324-1.637-7.294C11.42,5.521,8.873,4.916,6.564,5.494 C5.42,6.147,5.794,6.893,6.061,7.232l2.918,2.918c0.781,0.781,0.781,2.048,0,2.829l-4.896,4.897 c1.902,1.424,4.369,1.748,6.534,0.982l8.263,8.262c1.172,1.172,3.07,1.172,4.242,0s1.172-3.07,0-4.242L14.858,14.616z M21,25 c-0.391,0.391-1.023,0.391-1.414,0l-0.707-0.707c-0.391-0.391-0.391-1.023,0-1.414s1.023-0.391,1.414,0L21,23.586 C21.391,23.977,21.391,24.609,21,25z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rewind.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rewind.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13,26c-0.561,0-1.108-0.236-1.496-0.672l-8-9c-0.673-0.758-0.673-1.898,0-2.656l8-9c0.39-0.434,0.94-0.67,1.5-0.67,0.238,0,0.479,0.043,0.71,0.131,0.78,0.295,1.29,1.039,1.29,1.869v18c0,0.83-0.513,1.574-1.289,1.869-0.23,0.09-0.47,0.13-0.71,0.13z"/>
-<path d="M25,26c-0.561,0-1.107-0.236-1.495-0.672l-8-9c-0.673-0.758-0.673-1.898,0-2.656l8-9c0.39-0.434,0.94-0.67,1.5-0.67,0.238,0,0.479,0.043,0.711,0.131,0.78,0.295,1.29,1.039,1.29,1.869v18c0,0.83-0.514,1.574-1.289,1.869-0.23,0.09-0.47,0.13-0.71,0.13z"/>
+<path d="M13,26c-0.561,0-1.108-0.236-1.496-0.672l-8-9c-0.673-0.758-0.673-1.898,0-2.656l8-9C11.893,4.236,12.44,4,13,4 c0.238,0,0.479,0.043,0.71,0.131C14.487,4.426,15,5.17,15,6v18c0,0.83-0.513,1.574-1.289,1.869C13.479,25.957,13.239,26,13,26L13,26 z"/>
+<path d="M25,26c-0.561,0-1.107-0.236-1.495-0.672l-8-9c-0.673-0.758-0.673-1.898,0-2.656l8-9C23.893,4.236,24.439,4,25,4 c0.238,0,0.479,0.043,0.711,0.131C26.486,4.426,27,5.17,27,6v18c0,0.83-0.514,1.574-1.289,1.869C25.479,25.957,25.238,26,25,26 L25,26z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_horizontal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_horizontal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27,10h-16c-5.514,0-10,4.49-10,10,0,1.104,0.896,2,2,2s2-0.896,2-2c0-3.309,2.691-6,6-6h16c1.104,0,2-0.896,2-2s-0.9-2-2-2z"/>
+<path d="M27,10H11C5.486,10,1,14.486,1,20c0,1.104,0.896,2,2,2s2-0.896,2-2c0-3.309,2.691-6,6-6h16c1.104,0,2-0.896,2-2 S28.104,10,27,10z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_vertical.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_rsk_vertical.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M20,25c-3.309,0-6-2.691-6-6v-16c0-1.104-0.896-2-2-2s-2,0.896-2,2v16c0,5.514,4.486,10,10,10,1.104,0,2-0.896,2-2s-0.9-2-2-2z"/>
+<path d="M20,25c-3.309,0-6-2.691-6-6V3c0-1.104-0.896-2-2-2s-2,0.896-2,2v16c0,5.514,4.486,10,10,10c1.104,0,2-0.896,2-2 S21.104,25,20,25z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.57,19.43c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828,4.242,4.242,2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542c-0.39-0.29-0.78-0.61-1.14-0.97z"/>
-<path d="M26.13,3.871c-4.1-4.102-10.75-4.102-14.85-0.002-4.1,4.102-4.1,10.75,0.002,14.85,4.1,4.102,10.75,4.102,14.85,0,4.1-4.1,4.1-10.75,0-14.85zm-2.12,12.73c-2.928,2.93-7.678,2.93-10.6,0-2.94-2.93-2.94-7.68-0.01-10.61,2.93-2.928,7.678-2.928,10.61,0.002s2.93,7.678,0,10.61z"/>
-<path d="M1.381,27.2l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242c-0.781,0.79-0.781,2.05,0,2.83z"/>
+<path d="M10.572,19.428c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828 l4.242,4.242l2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542C11.318,20.107,10.934,19.787,10.572,19.428z"/>
+<path d="M26.129,3.871c-4.1-4.102-10.748-4.102-14.85-0.002c-4.1,4.102-4.1,10.75,0.002,14.85c4.1,4.102,10.748,4.102,14.848,0 C30.23,14.619,30.23,7.971,26.129,3.871z M24.008,16.598c-2.928,2.93-7.678,2.93-10.605,0C10.473,13.67,10.473,8.92,13.4,5.99 c2.93-2.928,7.678-2.928,10.607,0.002S26.938,13.67,24.008,16.598z"/>
+<path d="M1.381,27.205l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242C0.6,25.158,0.6,26.424,1.381,27.205z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search_stop.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_search_stop.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.57,19.43c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828,4.242,4.242,2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542c-0.39-0.29-0.78-0.61-1.14-0.97z"/>
-<path d="M12.03,7.879c0.348-0.68,0.803-1.319,1.372-1.889,2.93-2.928,7.678-2.928,10.61,0.002s2.93,7.678,0,10.6c-0.568,0.569-1.207,1.024-1.888,1.373l2.194,2.193c0.643-0.408,1.254-0.885,1.814-1.445,4.102-4.1,4.102-10.75,0-14.85-4.1-4.102-10.75-4.102-14.85-0.002-0.561,0.561-1.037,1.173-1.445,1.816l2.205,2.215z"/>
-<path d="M8.27,12.42c0.246,2.303,1.247,4.539,3.012,6.303,1.764,1.765,4,2.766,6.302,3.012l-9.31-9.31z"/>
-<path d="M1.381,27.2l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242c-0.781,0.79-0.781,2.05,0,2.83z"/>
+<path d="M10.572,19.428c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828 l4.242,4.242l2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542C11.318,20.107,10.934,19.787,10.572,19.428z"/>
+<path d="M12.028,7.879c0.348-0.68,0.803-1.319,1.372-1.889c2.93-2.928,7.678-2.928,10.607,0.002s2.93,7.678,0,10.605 c-0.568,0.569-1.207,1.024-1.888,1.373l2.194,2.193c0.643-0.408,1.254-0.885,1.814-1.445c4.102-4.1,4.102-10.748,0-14.848 c-4.1-4.102-10.748-4.102-14.85-0.002c-0.561,0.561-1.037,1.173-1.445,1.816L12.028,7.879z"/>
+<path d="M8.27,12.416c0.246,2.303,1.247,4.539,3.012,6.303c1.764,1.765,4,2.766,6.302,3.012L8.27,12.416z"/>
+<path d="M1.381,27.205l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242C0.6,25.158,0.6,26.424,1.381,27.205z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_next.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_next.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,25c0.617,0,1.215-0.287,1.6-0.8l6-8c0.533-0.712,0.533-1.688,0-2.4l-6-8c-0.38-0.513-0.98-0.8-1.6-0.8-0.211,0-0.425,0.033-0.633,0.103-0.82,0.272-1.37,1.036-1.37,1.897v16c0,0.861,0.551,1.625,1.367,1.897,0.21,0.07,0.42,0.1,0.63,0.1z"/>
-<path d="M23,23c0,1.104,0.896,2,2,2s2-0.896,2-2v-16c0-1.104-0.896-2-2-2s-2,0.896-2,2v16z"/>
-<path d="M5,25c0.617,0,1.215-0.287,1.6-0.8l6-8c0.533-0.712,0.533-1.688,0-2.4l-6-8c-0.385-0.513-0.983-0.8-1.6-0.8-0.211,0-0.425,0.033-0.633,0.103-0.816,0.272-1.367,1.036-1.367,1.897v16c0,0.861,0.551,1.625,1.367,1.897,0.208,0.07,0.422,0.1,0.633,0.1z"/>
+<path d="M15,25c0.617,0,1.215-0.287,1.6-0.8l6-8c0.533-0.712,0.533-1.688,0-2.4l-6-8C16.215,5.287,15.617,5,15,5 c-0.211,0-0.425,0.033-0.633,0.103C13.551,5.375,13,6.139,13,7v16c0,0.861,0.551,1.625,1.367,1.897C14.575,24.967,14.789,25,15,25 L15,25z"/>
+<path d="M23,23c0,1.104,0.896,2,2,2l0,0c1.104,0,2-0.896,2-2V7c0-1.104-0.896-2-2-2l0,0c-1.104,0-2,0.896-2,2V23z"/>
+<path d="M5,25c0.617,0,1.215-0.287,1.6-0.8l6-8c0.533-0.712,0.533-1.688,0-2.4l-6-8C6.215,5.287,5.617,5,5,5 C4.789,5,4.575,5.033,4.367,5.103C3.551,5.375,3,6.139,3,7v16c0,0.861,0.551,1.625,1.367,1.897C4.575,24.967,4.789,25,5,25L5,25z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_previous.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_seek_previous.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,25c-0.617,0-1.215-0.287-1.6-0.8l-6-8c-0.533-0.712-0.533-1.688,0-2.4l6-8c0.38-0.513,0.98-0.8,1.6-0.8,0.211,0,0.425,0.033,0.633,0.103,0.82,0.272,1.37,1.036,1.37,1.897v16c0,0.861-0.551,1.625-1.367,1.897-0.21,0.07-0.42,0.1-0.63,0.1z"/>
-<path d="M7,23c0,1.104-0.896,2-2,2s-2-0.896-2-2v-16c0-1.104,0.896-2,2-2s2,0.896,2,2v16z"/>
-<path d="M25,25c-0.617,0-1.215-0.287-1.6-0.8l-6-8c-0.533-0.712-0.533-1.688,0-2.4l6-8c0.38-0.513,0.98-0.8,1.6-0.8,0.211,0,0.425,0.033,0.633,0.103,0.82,0.272,1.37,1.036,1.37,1.897v16c0,0.861-0.551,1.625-1.367,1.897-0.21,0.07-0.42,0.1-0.63,0.1z"/>
+<path d="M15,25c-0.617,0-1.215-0.287-1.6-0.8l-6-8c-0.533-0.712-0.533-1.688,0-2.4l6-8C13.785,5.287,14.383,5,15,5 c0.211,0,0.425,0.033,0.633,0.103C16.449,5.375,17,6.139,17,7v16c0,0.861-0.551,1.625-1.367,1.897C15.425,24.967,15.211,25,15,25 L15,25z"/>
+<path d="M7,23c0,1.104-0.896,2-2,2l0,0c-1.104,0-2-0.896-2-2V7c0-1.104,0.896-2,2-2l0,0c1.104,0,2,0.896,2,2V23z"/>
+<path d="M25,25c-0.617,0-1.215-0.287-1.6-0.8l-6-8c-0.533-0.712-0.533-1.688,0-2.4l6-8C23.785,5.287,24.383,5,25,5 c0.211,0,0.425,0.033,0.633,0.103C26.449,5.375,27,6.139,27,7v16c0,0.861-0.551,1.625-1.367,1.897C25.425,24.967,25.211,25,25,25 L25,25z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="1.538,20,2,23,5,23,5,20"/>
-<polygon points="0.77,15,1.23,18,5,18,5,15"/>
-<polygon points="0,10,0.462,13,5,13,5,10"/>
-<polygon points="13.45,17.72,6,11.49,6,23.87"/>
-<polygon points="30,23.81,30,11.43,22.55,17.58"/>
-<path d="M20.52,19.25c-0.845,0.652-1.651,0.959-2.519,0.979l-0.024,0.001h-0.128c-0.913-0.021-1.72-0.327-2.513-0.937l-1.104-0.923-7.979,6.583c0.332,0.62,0.982,1.05,1.739,1.05h20c0.771,0,1.434-0.442,1.768-1.083l-8.006-6.69-1.24,1.02z"/>
-<path d="M28,8h-20c-0.772,0-1.434,0.442-1.768,1.083l10.32,8.626c0.424,0.326,0.837,0.512,1.294,0.522h0.104c0.457-0.011,0.87-0.196,1.294-0.522l10.5-8.664c-0.32-0.62-0.97-1.046-1.73-1.046z"/>
+<polygon points="1.538,20 2,23 5,23 5,20 "/>
+<polygon points="0.77,15 1.23,18 5,18 5,15 "/>
+<polygon points="0,10 0.462,13 5,13 5,10 "/>
+<polygon points="13.45,17.72 6,11.494 6,23.867 "/>
+<polygon points="30,23.809 30,11.43 22.546,17.58 "/>
+<path d="M20.52,19.252c-0.845,0.652-1.651,0.959-2.519,0.979l-0.024,0.001h-0.128c-0.913-0.021-1.72-0.327-2.513-0.937l-1.104-0.923 l-7.979,6.583C6.593,25.574,7.243,26,8,26h20c0.771,0,1.434-0.442,1.768-1.083l-8.006-6.69L20.52,19.252z"/>
+<path d="M28,8H8C7.228,8,6.566,8.442,6.232,9.083l10.322,8.626c0.424,0.326,0.837,0.512,1.294,0.522c0.02,0,0.086,0,0.104,0 c0.457-0.011,0.87-0.196,1.294-0.522l10.5-8.664C29.407,8.426,28.757,8,28,8z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send_mycard.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_send_mycard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28,8h-20c-1.104,0-2,0.896-2,2v14c0,1.104,0.896,2,2,2h20c1.104,0,2-0.896,2-2v-14c0-1.104-0.9-2-2-2zm-20,14c0.502-0.589,1.209-1.061,2.217-1.164,0.701-0.016,1.544-0.357,1.544-1.27v-0.23c0-0.101-0.046-0.196-0.126-0.258-1.032-0.773-1.727-2.36-1.727-3.953,0.005-2.28,1.387-4.13,3.097-4.13,1.705,0,3.092,1.849,3.092,4.125,0,1.593-0.695,3.18-1.73,3.953-0.077,0.062-0.125,0.157-0.125,0.258v0.23c0,1.005,1.012,1.27,1.545,1.27,1.01,0.11,1.72,0.58,2.22,1.17h-10zm19-2h-8v-2h8v2zm0-4h-8v-2h8v2z"/>
-<polygon points="1.538,20,2,23,5,23,5,20"/>
-<polygon points="0.77,15,1.23,18,5,18,5,15"/>
-<polygon points="0,10,0.462,13,5,13,5,10"/>
+<path d="M28,8H8c-1.104,0-2,0.896-2,2v14c0,1.104,0.896,2,2,2h20c1.104,0,2-0.896,2-2V10C30,8.896,29.104,8,28,8z M8,22 c0.502-0.589,1.209-1.061,2.217-1.164c0.701-0.016,1.544-0.357,1.544-1.27v-0.23c0-0.101-0.046-0.196-0.126-0.258 c-1.032-0.773-1.727-2.36-1.727-3.953C9.908,12.849,11.294,11,13,11c1.705,0,3.092,1.849,3.092,4.125c0,1.593-0.695,3.18-1.73,3.953 c-0.077,0.062-0.125,0.157-0.125,0.258v0.23c0,1.005,1.012,1.27,1.545,1.27C16.791,20.939,17.498,21.411,18,22H8z M27,20h-8v-2h8V20 z M27,16h-8v-2h8V16z"/>
+<polygon points="1.538,20 2,23 5,23 5,20 "/>
+<polygon points="0.77,15 1.23,18 5,18 5,15 "/>
+<polygon points="0,10 0.462,13 5,13 5,10 "/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_settings.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_settings.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M8.282,11.01c-0.144-0.085-0.28-0.181-0.403-0.304l-3.54-3.539c-0.964-0.96-1.597-0.279-1.903,0.25-0.9,2.646-0.377,5.661,1.572,7.867l4.274-4.28z"/>
-<path d="M27.13,22.89l-9.769-9.769c1.232-2.911,0.667-6.403-1.707-8.777-2.024-2.024-4.863-2.729-7.462-2.129-0.388,0.13-1.167,0.571,0.113,1.851h0.006l3.107,3.107c0.781,0.78,0.781,2.047,0,2.828l-0.707,0.707-5.596,5.6c2.321,1.804,5.399,2.161,8.016,1.054l9.769,9.768c1.172,1.172,3.072,1.172,4.243,0,1.17-1.17,1.17-3.07,0-4.24zm-2.12,2.12c-0.39,0.391-1.023,0.391-1.414,0l-0.707-0.707c-0.391-0.391-0.391-1.023,0-1.414s1.023-0.391,1.414,0l0.707,0.707c0.39,0.39,0.39,1.02,0,1.41z"/>
+<path d="M8.282,11.011c-0.144-0.085-0.28-0.181-0.403-0.304l-3.54-3.539c-0.964-0.96-1.597-0.279-1.903,0.25 c-0.9,2.646-0.377,5.661,1.572,7.867L8.282,11.011z"/>
+<path d="M27.132,22.889l-9.769-9.769c1.232-2.911,0.667-6.403-1.707-8.777c-2.024-2.024-4.863-2.729-7.462-2.129 c-0.388,0.13-1.167,0.571,0.113,1.851H8.307l3.107,3.107c0.781,0.78,0.781,2.047,0,2.828l-0.707,0.707L5.104,16.31 c2.321,1.804,5.399,2.161,8.016,1.054l9.769,9.768c1.172,1.172,3.072,1.172,4.243,0C28.303,25.96,28.303,24.061,27.132,22.889z M25.01,25.01c-0.39,0.391-1.023,0.391-1.414,0l-0.707-0.707c-0.391-0.391-0.391-1.023,0-1.414s1.023-0.391,1.414,0l0.707,0.707 C25.4,23.986,25.4,24.619,25.01,25.01z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shake_warning.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shake_warning.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M3,20h-2c0,4.971,4.029,9,9,9h2v-2h-2c-3.859,0-7-3.14-7-7z"/>
-<path d="M27,20c0,3.859-3.141,7-7,7h-2v2h2c4.971,0,9-4.029,9-9h-2z"/>
-<path d="M7,20h-2c0,2.757,2.243,5,5,5h2v-2h-2c-1.654,0-3-1.35-3-3z"/>
-<path d="M18,23v2h2c2.757,0,5-2.243,5-5h-2c0,1.654-1.346,3-3,3h-2z"/>
-<path d="M11,21h9l2-7v-9c0-0.553-0.447-1-1-1s-1,0.447-1,1v5h-1v-7c0-0.553-0.447-1-1-1s-1,0.447-1,1v7h-1v-8c0-0.553-0.447-1-1-1s-1,0.447-1,1v8h-1v-7c0-0.553-0.447-1-1-1s-1,0.447-1,1v11s-2-5-3-5c-2,0-1,2-1,2l4,10z"/>
+<path d="M3,20H1c0,4.971,4.029,9,9,9h2v-2h-2C6.141,27,3,23.859,3,20z"/>
+<path d="M27,20c0,3.859-3.141,7-7,7h-2v2h2c4.971,0,9-4.029,9-9H27z"/>
+<path d="M7,20H5c0,2.757,2.243,5,5,5h2v-2h-2C8.346,23,7,21.654,7,20z"/>
+<path d="M18,23v2h2c2.757,0,5-2.243,5-5h-2c0,1.654-1.346,3-3,3H18z"/>
+<path d="M11,21h9l2-7v-2v-2V5c0-0.553-0.447-1-1-1s-1,0.447-1,1v5h-1V3c0-0.553-0.447-1-1-1s-1,0.447-1,1v7h-1V2 c0-0.553-0.447-1-1-1s-1,0.447-1,1v8h-1V3c0-0.553-0.447-1-1-1s-1,0.447-1,1v7v2v2c0,0-2-5-3-5c-2,0-1,2-1,2L11,21z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
<circle cx="22.5" cy="6" r="4.5"/>
<circle cx="22.5" cy="24" r="4.5"/>
-<path d="M12.76,13.28l4.997-2.852c-0.685-0.73-1.203-1.617-1.493-2.604l-4.947,2.824c0.67,0.75,1.17,1.64,1.44,2.63z"/>
-<path d="M17.76,19.57l-4.996-2.852c-0.272,0.992-0.772,1.887-1.443,2.631l4.946,2.824c0.29-0.99,0.81-1.87,1.49-2.6z"/>
+<path d="M12.763,13.285l4.997-2.852c-0.685-0.73-1.203-1.617-1.493-2.604l-4.947,2.824C11.99,11.398,12.491,12.293,12.763,13.285z"/>
+<path d="M17.76,19.566l-4.996-2.852c-0.272,0.992-0.772,1.887-1.443,2.631l4.946,2.824C16.557,21.184,17.075,20.299,17.76,19.566z"/>
<circle cx="6.5" cy="15" r="4.5"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M16.28,24.27c-0.041-0.088-0.061-0.183-0.093-0.273h-13.19v-18h24v9.914l2,2.4v-12.31c0-1.104-0.896-2-2-2h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h16c-1.16,0-2.22-0.68-2.72-1.73z"/>
-<path d="M20.01,17.1c-0.61-0.82-1.01-2.12-1.01-3.6,0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5c0,0.172-0.018,0.336-0.028,0.503h0.03c0.75,0,1.453,0.291,2,0.786v-7.79h-22v16h12c0-0.699,0.246-1.38,0.692-1.918l3.32-3.98zm-15.01-0.1v-3l4-3,4,3,2-2,3.057,2.445c0.1,0.977,0.355,1.84,0.724,2.555h-13.78z"/>
+<path d="M16.283,24.273c-0.041-0.088-0.061-0.183-0.093-0.273H3V6h24v9.914l2,2.4V6c0-1.104-0.896-2-2-2H3C1.896,4,1,4.896,1,6v18 c0,1.104,0.896,2,2,2h16C17.842,26,16.775,25.322,16.283,24.273z"/>
+<path d="M20.013,17.099C19.401,16.277,19,14.979,19,13.5c0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5 c0,0.172-0.018,0.336-0.028,0.503C23.981,14.003,23.99,14,24,14c0.75,0,1.453,0.291,2,0.786V7H4v16h12 c0-0.699,0.246-1.38,0.692-1.918L20.013,17.099z M5,17v-1v-2l4-3l4,3l2-2l3.057,2.445c0.1,0.977,0.355,1.84,0.724,2.555H5z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M18,23c0-0.229,0.079-0.457,0.231-0.641l5-6c0.19-0.23,0.47-0.36,0.77-0.36s0.578,0.132,0.768,0.359l5,6c0.15,0.18,0.23,0.41,0.23,0.64,0,0.144-0.031,0.289-0.095,0.424-0.16,0.36-0.51,0.58-0.9,0.58h-2v5c0,0.553-0.448,1-1,1h-4c-0.553,0-1-0.447-1-1v-5h-2c-0.389,0-0.741-0.225-0.906-0.576-0.06-0.13-0.09-0.28-0.09-0.42z"/>
-</svg>
\ No newline at end of file
+<path d="M18,23c0-0.229,0.079-0.457,0.231-0.641l5-6C23.422,16.132,23.703,16,24,16s0.578,0.132,0.768,0.359l5,6 C29.921,22.543,30,22.771,30,23c0,0.144-0.031,0.289-0.095,0.424C29.741,23.775,29.388,24,29,24h-2v5c0,0.553-0.448,1-1,1h-4 c-0.553,0-1-0.447-1-1v-5h-2c-0.389,0-0.741-0.225-0.906-0.576C18.031,23.289,18,23.144,18,23L18,23z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_share_photo_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.15,6h16.85v9.914l2,2.4v-12.31c0-1.104-0.896-2-2-2h-18.85l2.001,2z"/>
-<path d="M16.28,24.27c-0.041-0.088-0.061-0.183-0.093-0.273h-13.19v-16.85l-1.862-1.861c-0.086,0.223-0.138,0.462-0.138,0.715v18c0,1.104,0.896,2,2,2h16c-1.16,0-2.22-0.68-2.72-1.73z"/>
-<path d="M19.17,15.02c-0.1-0.48-0.17-0.98-0.17-1.52,0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5c0,0.172-0.018,0.336-0.028,0.503h0.03c0.75,0,1.453,0.291,2,0.786v-7.79h-14.85l8.021,8.02z"/>
-<path d="M12.85,17h-7.85v-3l2.773-2.08-3.773-3.774v14.85h12c0-0.699,0.246-1.38,0.692-1.918l0.11-0.132-3.95-3.95z"/>
+<path d="M10.149,6H27v9.914l2,2.4V6c0-1.104-0.896-2-2-2H8.149L10.149,6z"/>
+<path d="M16.283,24.273c-0.041-0.088-0.061-0.183-0.093-0.273H3V7.146L1.138,5.285C1.052,5.508,1,5.747,1,6v18c0,1.104,0.896,2,2,2 h16C17.842,26,16.775,25.322,16.283,24.273z"/>
+<path d="M19.166,15.017C19.068,14.54,19,14.039,19,13.5c0-2.485,1.119-4.5,2.5-4.5s2.5,2.015,2.5,4.5 c0,0.172-0.018,0.336-0.028,0.503C23.981,14.003,23.99,14,24,14c0.75,0,1.453,0.291,2,0.786V7H11.149L19.166,15.017z"/>
+<path d="M12.853,17H5v-1v-2l2.773-2.08L4,8.146V23h12c0-0.699,0.246-1.38,0.692-1.918l0.11-0.132L12.853,17z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M28.15,24h0.85c0.388,0,0.741-0.225,0.905-0.576,0.07-0.13,0.1-0.28,0.1-0.42,0-0.229-0.079-0.457-0.232-0.641l-5-6c-0.19-0.23-0.47-0.36-0.77-0.36s-0.578,0.132-0.769,0.359l-1.237,1.484,6.16,6.16z"/>
-<path d="M18.22,22.37c-0.14,0.18-0.22,0.41-0.22,0.63,0,0.144,0.031,0.289,0.094,0.424,0.17,0.36,0.52,0.58,0.91,0.58h0.852l-1.63-1.63z"/>
-<path d="M24.96,29.11l-3.96-3.96v3.85c0,0.553,0.447,1,1,1h4c0.146,0,0.283-0.035,0.408-0.092-0.54-0.13-1.05-0.4-1.45-0.8z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.004,0.049,1.367-0.363,0.363-0.979,0.344-1.367-0.045l-24.06-24.08c-0.389-0.389-0.41-1.004-0.047-1.366s0.979-0.341,1.367,0.048l24.06,24.06z"/>
-</svg>
\ No newline at end of file
+<path d="M28.15,24H29c0.388,0,0.741-0.225,0.905-0.576C29.969,23.289,30,23.144,30,23c0-0.229-0.079-0.457-0.232-0.641l-5-6 C24.578,16.132,24.297,16,24,16s-0.578,0.132-0.769,0.359l-1.237,1.484L28.15,24z"/>
+<path d="M18.225,22.372C18.078,22.554,18,22.775,18,23c0,0.144,0.031,0.289,0.094,0.424C18.259,23.775,18.611,24,19,24h0.852 L18.225,22.372z"/>
+<path d="M24.961,29.109L21,25.147V29c0,0.553,0.447,1,1,1h4c0.146,0,0.283-0.035,0.408-0.092 C25.867,29.779,25.36,29.508,24.961,29.109z"/>
+<path d="M27.693,26.373c0.389,0.389,0.41,1.004,0.049,1.367c-0.363,0.363-0.979,0.344-1.367-0.045L2.307,3.625 C1.918,3.236,1.897,2.621,2.26,2.259s0.979-0.341,1.367,0.048L27.693,26.373z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sharpness.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sharpness.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -1 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polyline points="0,28,8,6,16,28,0,28"/>
-<polygon points="21.36,6.977,22,5.391,22.63,6.977,24.68,6.977,22,0,19.31,6.977"/>
-<polygon points="19.36,11.98,20.56,8.977,18.54,8.977,17.39,11.98"/>
-<polygon points="26.61,11.98,25.45,8.977,23.43,8.977,24.63,11.98"/>
-<path d="M26,15.4l-0.002,0.008h-0.002c-0.002,0.758-0.227,1.461-0.596,2.066l1.447,1.445c0.682-0.934,1.102-2.072,1.146-3.303v-0.02l-0.621-1.615h-1.95l0.566,1.416z"/>
-<path d="M18.59,17.47c-0.369-0.605-0.594-1.307-0.596-2.064h-0.002l0.002-0.002-0.002-0.008h0.01l0.566-1.416h-1.945l-0.62,1.61c0.041,1.24,0.461,2.385,1.146,3.324l1.44-1.44z"/>
-<path d="M22,19.4c-0.719,0-1.383-0.205-1.967-0.537l-1.455,1.457c0.973,0.68,2.15,1.082,3.422,1.082s2.449-0.402,3.42-1.082l-1.455-1.455c-0.58,0.34-1.24,0.54-1.96,0.54z"/>
-</svg>
\ No newline at end of file
+<polyline points="0,28 8,6 16,28 0,28 "/>
+<polygon points="21.365,6.977 21.998,5.391 22.631,6.977 24.684,6.977 21.998,0 19.314,6.977 "/>
+<polygon points="19.365,11.979 20.564,8.977 18.545,8.977 17.391,11.979 "/>
+<polygon points="26.609,11.979 25.453,8.977 23.432,8.977 24.631,11.979 "/>
+<path d="M26,15.396l-0.002,0.008L26,15.406h-0.002c-0.002,0.758-0.227,1.461-0.596,2.066l1.447,1.445 c0.682-0.934,1.102-2.072,1.146-3.303L28,15.596l-0.621-1.615H25.43l0.566,1.416H26z"/>
+<path d="M18.594,17.471c-0.369-0.605-0.594-1.307-0.596-2.064h-0.002l0.002-0.002l-0.002-0.008H18l0.566-1.416h-1.945L16,15.592 c0.041,1.24,0.461,2.385,1.146,3.324L18.594,17.471z"/>
+<path d="M21.998,19.398c-0.719,0-1.383-0.205-1.967-0.537l-1.455,1.457c0.973,0.68,2.15,1.082,3.422,1.082s2.449-0.402,3.42-1.082 l-1.455-1.455C23.381,19.195,22.717,19.398,21.998,19.398z"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sharpness_hard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M27.133,2.866v24.267H2.867V2.866H27.133 M29,1h-1.867H2.867H1v1.866v24.267v1.865h1.867h24.266H29v-1.865V2.866V1L29,1z"/>
+<polygon points="28.064,1.935 21.064,1.935 21.064,8.935 15,8.935 15,14.999 8.934,14.999 8.934,21.065 1.934,21.065 1.934,28.065 28.066,28.065 "/>
+<rect fill="none" height="30" width="30"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sharpness_soft.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M27.134,2.866v24.27H2.866V2.866H27.134 M29.001,1h-1.867H2.866H1v1.866v24.27v1.865h1.866h24.268h1.867v-1.865V2.866V1 L29.001,1z"/>
+<path d="M29.001,29.001H4.733c0-14.655,10.31-24.268,24.268-24.268V29.001z"/>
+<rect fill="none" height="30.001" width="30.001"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shift.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shift.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13.49,3.684l-6.999,8c-0.321,0.38-0.491,0.84-0.491,1.32,0,0.28,0.059,0.563,0.18,0.827,0.324,0.71,1.037,1.17,1.822,1.17h2.998v9c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-9.007l3.002-0.002c0.784-0.001,1.496-0.46,1.82-1.175,0.12-0.27,0.18-0.55,0.18-0.83,0-0.477-0.17-0.947-0.496-1.318l-7-7.992c-0.38-0.43-0.92-0.678-1.5-0.678s-1.12,0.249-1.51,0.684z"/>
+<path d="M13.494,3.684l-6.999,8C6.17,12.055,6,12.525,6,13c0,0.28,0.059,0.563,0.18,0.827C6.504,14.541,7.217,15,8.002,15L11,14.998 V24c0,1.104,0.896,2,2,2h4c1.104,0,2-0.896,2-2v-9.007l3.002-0.002c0.784-0.001,1.496-0.46,1.82-1.175 C23.941,13.553,24,13.271,24,12.992c0-0.477-0.17-0.947-0.496-1.318l-7-7.992C16.125,3.248,15.576,3,15,3 C14.423,3,13.875,3.249,13.494,3.684z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_show_view.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_show_view.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M25,20.75c1.023,0.381,2.02,0.894,2.969,1.558,0.01-0.11,0.03-0.21,0.03-0.31v-20c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v1h19v17.75z"/>
-<path d="M10.43,28.24c-0.57-0.725-0.57-1.746,0-2.471,0.839-1.068,1.753-1.981,2.714-2.765h-5.14v-2h8.381c1.487-0.647,3.04-1,4.619-1,0.673,0,1.339,0.083,2,0.203v-13.2c0-1.104-0.896-2-2-2h-18c-1.104,0-2,0.896-2,2v20c0,1.104,0.896,2,2,2h8.086c-0.22-0.25-0.45-0.49-0.66-0.76zm-2.43-17.24h11v2h-11v-2zm0,5h11v2h-11v-2zm-1,7h-2v-2h2v2zm0-5h-2v-2h2v2zm0-5h-2v-2h2v2z"/>
-<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654c0.695-0.709,1.521-1.386,2.463-1.922-0.06,0.3-0.11,0.6-0.11,0.92,0,2.21,1.792,4,4,4s4-1.79,4-4c0-0.318-0.047-0.624-0.117-0.922,0.941,0.536,1.768,1.213,2.463,1.922h2.66zm-9,1c-1.104,0-2-0.447-2-1s0.896-1,2-1,2,0.447,2,1-0.9,1-2,1z"/>
+<path d="M25,20.748c1.023,0.381,2.02,0.894,2.969,1.558C27.984,22.205,28,22.104,28,22V2c0-1.104-0.896-2-2-2H8C6.896,0,6,0.896,6,2 v1h19V20.748z"/>
+<path d="M10.428,28.235c-0.57-0.725-0.57-1.746,0-2.471c0.839-1.068,1.753-1.981,2.714-2.765H8v-2h8.381c1.487-0.647,3.04-1,4.619-1 c0.673,0,1.339,0.083,2,0.203V7c0-1.104-0.896-2-2-2H3C1.896,5,1,5.896,1,7v20c0,1.104,0.896,2,2,2h8.086 C10.866,28.748,10.64,28.506,10.428,28.235z M8,11h11v2H8V11z M8,16h11v2H8V16z M7,23H5v-2h2V23z M7,18H5v-2h2V18z M7,13H5v-2h2V13z "/>
+<path d="M30,27c-2.454-3.123-5.586-5-9-5s-6.546,1.877-9,5h2.654 c0.695-0.709,1.521-1.386,2.463-1.922C17.047,25.376,17,25.682,17,26c0,2.21,1.792,4,4,4s4-1.79,4-4 c0-0.318-0.047-0.624-0.117-0.922c0.941,0.536,1.768,1.213,2.463,1.922H30z M21,28c-1.104,0-2-0.447-2-1s0.896-1,2-1s2,0.447,2,1 S22.104,28,21,28z" fill-rule="evenodd"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28.5,4.637l-6-3.5c-0.15-0.092-0.33-0.137-0.5-0.137-0.172,0-0.344,0.045-0.498,0.133-0.31,0.178-0.5,0.51-0.5,0.867v2.027h-6.521c-5.228,0-9.48,4.252-9.48,9.483,0,0.188,0.005,0.902,0.016,1.088,0.048,0.79,0.707,1.4,1.493,1.4,0.03,0,0.061,0,0.091-0.002,0.825-0.049,1.454-0.758,1.405-1.584-0.008-0.125-0.011-0.781-0.011-0.908,0-3.576,2.909-6.484,6.486-6.484h6.52v1.974c0,0.357,0.191,0.689,0.502,0.867,0.16,0.088,0.33,0.133,0.5,0.133,0.174,0,0.348-0.045,0.504-0.137l6-3.5c0.31-0.177,0.5-0.508,0.5-0.863s-0.19-0.684-0.5-0.863z"/>
-<path d="M1.496,25.36l6,3.5c0.156,0.1,0.33,0.14,0.504,0.14,0.172,0,0.344-0.045,0.498-0.133,0.311-0.18,0.502-0.51,0.502-0.87v-2.027h6.521c5.228,0,9.479-4.252,9.479-9.479,0-0.188-0.006-0.902-0.016-1.088-0.04-0.79-0.7-1.4-1.49-1.4-0.03,0-0.061,0-0.091,0.002-0.825,0.049-1.453,0.76-1.405,1.584,0.008,0.125,0.011,0.781,0.011,0.908,0,3.576-2.908,6.486-6.485,6.486h-6.52v-1.98c0-0.357-0.191-0.689-0.502-0.867-0.154-0.09-0.326-0.13-0.498-0.13-0.174,0-0.348,0.045-0.504,0.137l-6,3.5c-0.307,0.18-0.496,0.5-0.496,0.86s0.189,0.69,0.496,0.86z"/>
+<path d="M28.504,4.637l-6-3.5C22.348,1.045,22.174,1,22,1c-0.172,0-0.344,0.045-0.498,0.133C21.191,1.311,21,1.643,21,2v2v0.027 h-6.521C9.252,4.027,5,8.279,5,13.506c0,0.188,0.005,0.902,0.016,1.088C5.064,15.389,5.723,16,6.509,16c0.03,0,0.061,0,0.091-0.002 c0.825-0.049,1.454-0.758,1.405-1.584c-0.008-0.125-0.011-0.781-0.011-0.908c0-3.576,2.909-6.484,6.486-6.484H21V9 c0,0.357,0.191,0.689,0.502,0.867C21.656,9.955,21.828,10,22,10c0.174,0,0.348-0.045,0.504-0.137l6-3.5 C28.811,6.186,29,5.855,29,5.5S28.811,4.816,28.504,4.637z"/>
+<path d="M1.496,25.363l6,3.5C7.652,28.955,7.826,29,8,29c0.172,0,0.344-0.045,0.498-0.133C8.809,28.689,9,28.357,9,28v-2v-0.027 h6.521c5.228,0,9.479-4.252,9.479-9.479c0-0.188-0.006-0.902-0.016-1.088C24.936,14.613,24.277,14,23.491,14 c-0.03,0-0.061,0-0.091,0.002c-0.825,0.049-1.453,0.76-1.405,1.584c0.008,0.125,0.011,0.781,0.011,0.908 c0,3.576-2.908,6.486-6.485,6.486H9V21c0-0.357-0.191-0.689-0.502-0.867C8.344,20.045,8.172,20,8,20 c-0.174,0-0.348,0.045-0.504,0.137l-6,3.5C1.189,23.816,1,24.145,1,24.5S1.189,25.186,1.496,25.363z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_shuffle_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M21.88,17.74l2.39,2.39c0.47-1.12,0.73-2.35,0.73-3.64,0-0.188-0.006-0.902-0.016-1.088-0.04-0.79-0.7-1.4-1.49-1.4-0.03,0-0.061,0-0.091,0.002-0.825,0.049-1.453,0.76-1.405,1.584,0.008,0.125,0.011,0.781,0.011,0.908,0,0.43-0.05,0.84-0.13,1.25z"/>
-<path d="M18.23,22.38c-0.826,0.382-1.742,0.602-2.711,0.602h-6.52v-1.98c0-0.357-0.191-0.689-0.502-0.867-0.154-0.09-0.326-0.13-0.498-0.13-0.174,0-0.348,0.045-0.504,0.137l-6,3.5c-0.307,0.18-0.496,0.5-0.496,0.86s0.189,0.686,0.496,0.863l6,3.5c0.156,0.1,0.33,0.14,0.504,0.14,0.172,0,0.344-0.045,0.498-0.133,0.311-0.18,0.502-0.51,0.502-0.87v-2.027h6.521c1.801,0,3.479-0.514,4.915-1.39l-2.21-2.2z"/>
-<path d="M11.77,7.622c0.826-0.382,1.741-0.601,2.709-0.601h6.52v1.979c0,0.357,0.191,0.689,0.502,0.867,0.16,0.088,0.33,0.133,0.5,0.133,0.174,0,0.348-0.045,0.504-0.137l6-3.5c0.31-0.177,0.5-0.508,0.5-0.863s-0.189-0.684-0.496-0.863l-6-3.5c-0.15-0.092-0.33-0.137-0.5-0.137-0.172,0-0.344,0.045-0.498,0.133-0.31,0.178-0.5,0.51-0.5,0.867v2.027h-6.521c-1.801,0-3.479,0.514-4.915,1.389l2.205,2.206z"/>
-<path d="M8.116,12.26l-2.39-2.39c-0.466,1.12-0.726,2.35-0.726,3.64,0,0.188,0.005,0.902,0.016,1.088,0.048,0.79,0.707,1.4,1.493,1.4,0.03,0,0.061,0,0.091-0.002,0.825-0.049,1.454-0.758,1.405-1.584-0.008-0.125-0.011-0.781-0.011-0.908,0-0.43,0.044-0.84,0.122-1.25z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
+<path d="M21.885,17.735l2.39,2.39C24.74,19.006,25,17.78,25,16.494c0-0.188-0.006-0.902-0.016-1.088 C24.936,14.613,24.277,14,23.491,14c-0.03,0-0.061,0-0.091,0.002c-0.825,0.049-1.453,0.76-1.405,1.584 c0.008,0.125,0.011,0.781,0.011,0.908C22.006,16.919,21.963,17.333,21.885,17.735z"/>
+<path d="M18.231,22.379c-0.826,0.382-1.742,0.602-2.711,0.602H9V21c0-0.357-0.191-0.689-0.502-0.867C8.344,20.045,8.172,20,8,20 c-0.174,0-0.348,0.045-0.504,0.137l-6,3.5C1.189,23.816,1,24.145,1,24.5s0.189,0.686,0.496,0.863l6,3.5C7.652,28.955,7.826,29,8,29 c0.172,0,0.344-0.045,0.498-0.133C8.809,28.689,9,28.357,9,28v-2v-0.027h6.521c1.801,0,3.479-0.514,4.915-1.39L18.231,22.379z"/>
+<path d="M11.771,7.622c0.826-0.382,1.741-0.601,2.709-0.601H21V9c0,0.357,0.191,0.689,0.502,0.867C21.656,9.955,21.828,10,22,10 c0.174,0,0.348-0.045,0.504-0.137l6-3.5C28.811,6.186,29,5.855,29,5.5s-0.189-0.684-0.496-0.863l-6-3.5C22.348,1.045,22.174,1,22,1 c-0.172,0-0.344,0.045-0.498,0.133C21.191,1.311,21,1.643,21,2v2v0.027h-6.521c-1.801,0-3.479,0.514-4.915,1.389L11.771,7.622z"/>
+<path d="M8.116,12.263l-2.39-2.39C5.26,10.993,5,12.219,5,13.506c0,0.188,0.005,0.902,0.016,1.088C5.064,15.389,5.723,16,6.509,16 c0.03,0,0.061,0,0.091-0.002c0.825-0.049,1.454-0.758,1.405-1.584c-0.008-0.125-0.011-0.781-0.011-0.908 C7.994,13.08,8.038,12.666,8.116,12.263z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_smiley.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_smiley.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13,0c-7.18,0-13,5.82-13,13s5.82,13,13,13,13-5.82,13-13-5.82-13-13-13zm0,23c-5.514,0-10-4.49-10-10s4.486-10,10-10,10,4.486,10,10-4.49,10-10,10z"/>
+<path d="M13,0C5.82,0,0,5.82,0,13s5.82,13,13,13s13-5.82,13-13S20.18,0,13,0z M13,23C7.486,23,3,18.514,3,13S7.486,3,13,3 s10,4.486,10,10S18.514,23,13,23z"/>
<ellipse cx="7.5" cy="9" rx="1.5" ry="2"/>
<ellipse cx="18.5" cy="9" rx="1.5" ry="2"/>
-<path d="M5,13.06c0,4.411,3.589,8,8,8s8-3.589,8-8h-16zm12.5,3.94h-9.001c-0.496-0.566-0.899-1.215-1.156-1.938h11.31c-0.26,0.72-0.66,1.37-1.16,1.94z"/>
-</svg>
\ No newline at end of file
+<path d="M5,13.063c0,4.411,3.589,8,8,8s8-3.589,8-8H5z M17.501,17H8.499c-0.496-0.566-0.899-1.215-1.156-1.938h11.314 C18.4,15.785,17.997,16.434,17.501,17z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_songs_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_songs_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M23.22,4.023l-9-2c-0.08-0.015-0.15-0.023-0.22-0.023-0.226,0-0.446,0.076-0.626,0.22-0.23,0.19-0.37,0.476-0.37,0.78v16.36c-0.69-0.23-1.45-0.36-2.25-0.36-3.176,0-5.75,2.02-5.75,4.5s2.574,4.5,5.75,4.5,6.25-2.02,6.25-4.5v-13.81l5.783,1.285c0.08,0.01,0.15,0.02,0.22,0.02,0,0,0.446-0.076,0.626-0.22,0.23-0.19,0.37-0.48,0.37-0.78v-5c0-0.469-0.32-0.874-0.78-0.977z"/>
+<path d="M23.217,4.023l-9-2C14.145,2.008,14.072,2,14,2c-0.226,0-0.446,0.076-0.626,0.22C13.138,2.41,13,2.696,13,3v1v4v11.357 C12.31,19.129,11.549,19,10.75,19C7.574,19,5,21.016,5,23.5S7.574,28,10.75,28S17,25.984,17,23.5c0-0.134,0-9.82,0-13.809 l5.783,1.285C22.855,10.992,22.928,11,23,11c0,0,0.446-0.076,0.626-0.22C23.862,10.59,24,10.304,24,10V5 C24,4.531,23.675,4.126,23.217,4.023z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sort.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sort.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28,4c0,1.104-0.896,2-2,2h-22c-1.104,0-2-0.896-2-2s0.896-2,2-2h22c1.1,0,2,0.896,2,2z"/>
-<path d="M23,11c0,1.104-0.896,2-2,2h-17c-1.104,0-2-0.896-2-2s0.896-2,2-2h17c1.1,0,2,0.896,2,2z"/>
-<path d="M18,18c0,1.104-0.896,2-2,2h-12c-1.104,0-2-0.896-2-2s0.896-2,2-2h12c1.1,0,2,0.9,2,2z"/>
-<path d="M13,25c0,1.104-0.896,2-2,2h-7c-1.104,0-2-0.896-2-2s0.896-2,2-2h7c1.1,0,2,0.9,2,2z"/>
-<path d="M29,23c0,0.229-0.079,0.457-0.231,0.641l-5,6c-0.19,0.23-0.47,0.36-0.77,0.36s-0.578-0.132-0.768-0.359l-5-6c-0.15-0.18-0.23-0.41-0.23-0.64,0-0.144,0.031-0.289,0.095-0.424,0.16-0.36,0.51-0.58,0.9-0.58h2v-5c0-0.553,0.448-1,1-1h4c0.553,0,1,0.447,1,1v5h2c0.389,0,0.741,0.225,0.906,0.576,0.06,0.13,0.09,0.28,0.09,0.42z"/>
+<path d="M27.998,4c0,1.104-0.896,2-2,2H4C2.896,6,2,5.104,2,4l0,0c0-1.104,0.896-2,2-2h21.998C27.103,2,27.998,2.896,27.998,4 L27.998,4z"/>
+<path d="M23,11c0,1.104-0.896,2-2,2H4.002c-1.104,0-2-0.896-2-2l0,0c0-1.104,0.896-2,2-2H21C22.104,9,23,9.896,23,11L23,11z"/>
+<path d="M18,18c0,1.104-0.896,2-2,2H4c-1.104,0-2-0.896-2-2l0,0c0-1.104,0.896-2,2-2h12C17.104,16,18,16.896,18,18L18,18z"/>
+<path d="M13,25c0,1.104-0.896,2-2,2H4c-1.104,0-2-0.896-2-2l0,0c0-1.104,0.896-2,2-2h7C12.104,23,13,23.896,13,25L13,25z"/>
+<path d="M29,23c0,0.229-0.079,0.457-0.231,0.641l-5,6C23.578,29.868,23.297,30,23,30s-0.578-0.132-0.768-0.359l-5-6 C17.079,23.457,17,23.229,17,23c0-0.144,0.031-0.289,0.095-0.424C17.259,22.225,17.612,22,18,22h2v-5c0-0.553,0.448-1,1-1h4 c0.553,0,1,0.447,1,1v5h2c0.389,0,0.741,0.225,0.906,0.576C28.969,22.711,29,22.856,29,23L29,23z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_space_itut.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_space_itut.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<path d="M28.5,18.47h-27v-6.945h3.301v3.563h20.4v-3.563h3.3v6.943,0.01z"/>
-</svg>
\ No newline at end of file
+<path d="M28.5,18.471h-27v-6.945h3.301v3.563h20.4v-3.563h3.3v6.943L28.5,18.471z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_space_vkb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_space_vkb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 86 30" width="86px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="86"/>
-<rect fill="none" height="27" width="83.01" x="1.496" y="1.5"/>
-<polygon points="80.97,8.537,80.97,17.92,5.029,17.92,5.029,8.537,1.496,8.537,1.496,21.46,84.5,21.46,84.5,8.537"/>
-</svg>
\ No newline at end of file
+<rect fill="none" height="27.001" width="83.008" x="1.496" y="1.5"/>
+<polygon points="80.974,8.537 80.974,17.923 5.029,17.925 5.029,8.537 1.496,8.537 1.496,21.464 84.504,21.464 84.504,8.537 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M8,9h-5c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5v-12z"/>
-<path d="M20,27c-0.167,0-0.334-0.042-0.486-0.126l-9-5c-0.31-0.17-0.51-0.51-0.51-0.87v-12c0-0.363,0.197-0.697,0.514-0.874l9-5c0.16-0.084,0.32-0.126,0.49-0.126,0.176,0,0.351,0.046,0.508,0.139,0.3,0.179,0.49,0.507,0.49,0.861v22c0,0.354-0.188,0.682-0.492,0.861-0.16,0.09-0.33,0.14-0.51,0.14z"/>
-<path d="M23.4,22c-0.177,0-0.356-0.047-0.519-0.146-0.472-0.287-0.622-0.901-0.335-1.374,0.92-1.5,1.46-3.55,1.46-5.48s-0.545-3.979-1.458-5.48c-0.287-0.473-0.137-1.087,0.335-1.374,0.473-0.286,1.088-0.136,1.374,0.335,1.1,1.799,1.75,4.239,1.75,6.519s-0.654,4.718-1.749,6.52c-0.19,0.31-0.52,0.48-0.85,0.48z"/>
-<path d="M26.58,24c-0.187,0-0.375-0.052-0.543-0.161-0.464-0.3-0.596-0.919-0.295-1.383,1.5-2.31,2.26-4.82,2.26-7.46s-0.758-5.15-2.253-7.456c-0.301-0.464-0.169-1.083,0.295-1.383,0.462-0.302,1.082-0.169,1.383,0.295,1.71,2.635,2.58,5.504,2.58,8.544s-0.866,5.909-2.575,8.544c-0.19,0.3-0.51,0.46-0.84,0.46z"/>
+<path d="M8,9H3c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5V9z"/>
+<path d="M20,27c-0.167,0-0.334-0.042-0.486-0.126l-9-5C10.197,21.697,10,21.363,10,21V9c0-0.363,0.197-0.697,0.514-0.874l9-5 C19.666,3.042,19.833,3,20,3c0.176,0,0.351,0.046,0.508,0.139C20.813,3.318,21,3.646,21,4v22c0,0.354-0.188,0.682-0.492,0.861 C20.351,26.954,20.176,27,20,27L20,27z"/>
+<path d="M23.396,22c-0.177,0-0.356-0.047-0.519-0.146c-0.472-0.287-0.622-0.901-0.335-1.374C23.455,18.979,24,16.93,24,15 s-0.545-3.979-1.458-5.48c-0.287-0.473-0.137-1.087,0.335-1.374c0.473-0.286,1.088-0.136,1.374,0.335C25.346,10.282,26,12.719,26,15 s-0.654,4.718-1.749,6.52C24.063,21.829,23.733,22,23.396,22L23.396,22z"/>
+<path d="M26.585,24c-0.187,0-0.375-0.052-0.543-0.161c-0.464-0.3-0.596-0.919-0.295-1.383C27.242,20.15,28,17.643,28,15 s-0.758-5.15-2.253-7.456c-0.301-0.464-0.169-1.083,0.295-1.383c0.462-0.302,1.082-0.169,1.383,0.295C29.134,9.091,30,11.965,30,15 s-0.866,5.909-2.575,8.544C27.233,23.84,26.912,24,26.585,24L26.585,24z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_speaker_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M4.854,9h-1.854c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5v-8.854l-3.146-3.15z"/>
-<path d="M21,16.85v-12.85c0-0.354-0.188-0.682-0.492-0.861-0.16-0.093-0.33-0.139-0.51-0.139-0.167,0-0.334,0.042-0.486,0.126l-7.867,4.371,9.36,9.353z"/>
-<path d="M10,14.15v6.85c0,0.363,0.197,0.697,0.514,0.874l9,5c0.16,0.09,0.32,0.13,0.49,0.13,0.176,0,0.351-0.046,0.508-0.139,0.3-0.18,0.49-0.51,0.49-0.86v-0.853l-11-11z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
+<path d="M4.854,9H3c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5v-8.854L4.854,9z"/>
+<path d="M21,16.85V4c0-0.354-0.188-0.682-0.492-0.861C20.351,3.046,20.176,3,20,3c-0.167,0-0.334,0.042-0.486,0.126l-7.867,4.371 L21,16.85z"/>
+<path d="M10,14.146V21c0,0.363,0.197,0.697,0.514,0.874l9,5C19.666,26.958,19.833,27,20,27c0.176,0,0.351-0.046,0.508-0.139 C20.813,26.682,21,26.354,21,26v-0.853L10,14.146z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_itut.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_itut.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
@@ -7,8 +7,8 @@
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="8.05,11.37,5.545,12.97,5.708,10.01,4.124,10.01,4.279,12.97,1.773,11.37,1,12.73,3.625,14.08,1,15.44,1.773,16.8,4.279,15.18,4.124,18.16,5.708,18.16,5.545,15.18,8.05,16.8,8.824,15.44,6.199,14.08,8.824,12.73"/>
-<path d="M21.88,14.41l-1.713-0.388c-0.247,1.096-0.565,1.96-0.955,2.591l-2.574-3.332c0.97-0.654,1.642-1.246,2.015-1.777,0.372-0.53,0.56-1.115,0.56-1.751,0-0.78-0.283-1.397-0.849-1.851-0.565-0.454-1.35-0.681-2.354-0.681-1.079,0-1.92,0.247-2.522,0.741-0.603,0.493-0.904,1.202-0.904,2.125,0,0.838,0.459,1.856,1.377,3.056-0.924,0.529-1.586,1.09-1.988,1.684-0.401,0.595-0.603,1.296-0.603,2.104,0,1.091,0.351,1.937,1.051,2.535,0.699,0.6,1.707,0.899,3.021,0.899,1.28,0,2.368-0.358,3.264-1.075l0.723,0.938h2.574l-1.765-2.272c0.75-0.88,1.3-2.06,1.64-3.54zm-6.82-5.474c0.216-0.218,0.539-0.327,0.969-0.327,0.362,0,0.651,0.106,0.869,0.319,0.218,0.212,0.327,0.482,0.327,0.809,0,0.879-0.505,1.655-1.515,2.333-0.373-0.488-0.628-0.882-0.766-1.184-0.138-0.301-0.207-0.624-0.207-0.969,0-0.441,0.1-0.768,0.32-0.985zm0.77,9.954c-0.567,0-1.063-0.188-1.484-0.563-0.422-0.376-0.633-0.917-0.633-1.623,0-0.94,0.396-1.728,1.188-2.358l2.927,3.822c-0.59,0.48-1.26,0.72-2.01,0.72z"/>
-<polygon points="28.63,16.39,28.88,7.395,26.39,7.395,26.65,16.39"/>
-<path d="M28.6,18.03c-0.264-0.264-0.586-0.395-0.965-0.395s-0.699,0.131-0.964,0.395c-0.264,0.265-0.395,0.585-0.395,0.964s0.132,0.702,0.399,0.97c0.267,0.266,0.587,0.399,0.959,0.399,0.379,0,0.701-0.134,0.965-0.399,0.27-0.27,0.4-0.59,0.4-0.97s-0.13-0.7-0.4-0.97z"/>
-</svg>
\ No newline at end of file
+<polygon points="8.05,11.372 5.545,12.974 5.708,10.013 4.124,10.013 4.279,12.974 1.773,11.372 1,12.732 3.625,14.084 1,15.444 1.773,16.804 4.279,15.178 4.124,18.155 5.708,18.155 5.545,15.178 8.05,16.804 8.824,15.444 6.199,14.084 8.824,12.732 "/>
+<path d="M21.881,14.411l-1.713-0.388c-0.247,1.096-0.565,1.96-0.955,2.591l-2.574-3.332c0.97-0.654,1.642-1.246,2.015-1.777 c0.372-0.53,0.56-1.115,0.56-1.751c0-0.78-0.283-1.397-0.849-1.851c-0.565-0.454-1.35-0.681-2.354-0.681 c-1.079,0-1.92,0.247-2.522,0.741c-0.603,0.493-0.904,1.202-0.904,2.125c0,0.838,0.459,1.856,1.377,3.056 c-0.924,0.529-1.586,1.09-1.988,1.684c-0.401,0.595-0.603,1.296-0.603,2.104c0,1.091,0.351,1.937,1.051,2.535 c0.699,0.6,1.707,0.899,3.021,0.899c1.28,0,2.368-0.358,3.264-1.075l0.723,0.938h2.574l-1.765-2.272 C20.994,17.073,21.542,15.892,21.881,14.411z M15.059,8.936c0.216-0.218,0.539-0.327,0.969-0.327c0.362,0,0.651,0.106,0.869,0.319 c0.218,0.212,0.327,0.482,0.327,0.809c0,0.879-0.505,1.655-1.515,2.333c-0.373-0.488-0.628-0.882-0.766-1.184 c-0.138-0.301-0.207-0.624-0.207-0.969C14.736,9.48,14.844,9.153,15.059,8.936z M15.829,18.887c-0.567,0-1.063-0.188-1.484-0.563 c-0.422-0.376-0.633-0.917-0.633-1.623c0-0.94,0.396-1.728,1.188-2.358l2.927,3.822C17.247,18.646,16.581,18.887,15.829,18.887z"/>
+<polygon points="28.629,16.391 28.879,7.395 26.392,7.395 26.649,16.391 "/>
+<path d="M28.604,18.034c-0.264-0.264-0.586-0.395-0.965-0.395s-0.699,0.131-0.964,0.395c-0.264,0.265-0.395,0.585-0.395,0.964 s0.132,0.702,0.399,0.97c0.267,0.266,0.587,0.399,0.959,0.399c0.379,0,0.701-0.134,0.965-0.399C28.867,19.7,29,19.377,29,18.998 S28.867,18.299,28.604,18.034z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_qwerty.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_special_characters_qwerty.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
@@ -7,11 +7,11 @@
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<polygon points="8.012,17.73,7.02,17.73,4.006,18.68,4.006,19.77,6.152,19.28,6.152,26.91,4.006,26.91,4.006,28,10.04,28,10.04,26.91,8.012,26.91"/>
-<path d="M13.65,25.69c0.193-0.34,0.432-0.651,0.715-0.934,0.281-0.282,0.674-0.636,1.176-1.06,0.896-0.752,1.467-1.368,1.709-1.849,0.24-0.481,0.361-0.97,0.361-1.467,0-0.884-0.268-1.553-0.807-2.006-0.537-0.454-1.324-0.681-2.357-0.681-0.84,0-1.701,0.139-2.584,0.417v1.217h0.014c0.842-0.306,1.56-0.458,2.152-0.458,0.561,0,0.98,0.134,1.262,0.399,0.279,0.268,0.42,0.665,0.42,1.193,0,0.301-0.086,0.604-0.26,0.909-0.172,0.306-0.59,0.736-1.25,1.292-0.553,0.465-1.008,0.893-1.367,1.281-0.361,0.391-0.664,0.86-0.91,1.412s-0.369,1.183-0.369,1.894v0.76h6.098v-1.189h-4.32c0.04-0.41,0.14-0.78,0.33-1.12z"/>
-<path d="M23.37,22.59c0.588-0.173,1.039-0.468,1.354-0.886,0.314-0.416,0.473-0.914,0.473-1.493,0-0.839-0.262-1.468-0.787-1.887-0.523-0.419-1.307-0.629-2.352-0.629-0.691,0-1.467,0.107-2.324,0.321v1.203h0.014c0.844-0.232,1.498-0.349,1.963-0.349,0.527,0,0.926,0.125,1.191,0.376,0.268,0.251,0.4,0.624,0.4,1.121,0,0.565-0.166,0.984-0.498,1.258-0.334,0.273-1.17,0.41-2.51,0.41v1.142c1.354,0,2.217,0.146,2.592,0.438,0.373,0.292,0.561,0.772,0.561,1.442,0,0.624-0.156,1.093-0.469,1.404-0.313,0.313-0.777,0.469-1.398,0.469-0.515,0-1.219-0.111-2.111-0.335h-0.014v1.189c0.766,0.214,1.512,0.321,2.242,0.321,1.217,0,2.129-0.261,2.736-0.783,0.609-0.521,0.914-1.304,0.914-2.348,0-0.634-0.17-1.161-0.51-1.582-0.32-0.4-0.81-0.67-1.45-0.79z"/>
-<polygon points="4.014,13.54,5.541,13.54,5.383,10.67,7.799,12.24,8.545,10.93,6.014,9.616,8.545,8.313,7.799,7.002,5.383,8.546,5.541,5.69,4.014,5.69,4.162,8.546,1.746,7.002,1,8.313,3.531,9.616,1,10.93,1.746,12.24,4.162,10.67"/>
-<path d="M19.55,13.35c0.73-0.853,1.258-1.992,1.584-3.42l-1.65-0.373c-0.238,1.057-0.545,1.89-0.922,2.498l-2.48-3.216c0.936-0.631,1.584-1.202,1.942-1.714,0.36-0.512,0.54-1.075,0.54-1.688,0-0.753-0.273-1.348-0.818-1.785s-1.3-0.657-2.26-0.657c-1.041,0-1.852,0.238-2.432,0.715-0.582,0.476-0.873,1.159-0.873,2.05,0,0.808,0.443,1.79,1.328,2.946-0.891,0.51-1.529,1.051-1.916,1.623-0.4,0.58-0.59,1.25-0.59,2.03,0,1.052,0.338,1.867,1.014,2.445,0.674,0.578,1.646,0.867,2.912,0.867,1.234,0,2.283-0.346,3.146-1.037l0.697,0.904h2.482l-1.7-2.18zm-4.99-8.698c0.209-0.21,0.52-0.315,0.934-0.315,0.35,0,0.629,0.103,0.84,0.308,0.209,0.204,0.314,0.465,0.314,0.779,0,0.848-0.486,1.597-1.461,2.25-0.359-0.471-0.605-0.851-0.738-1.142-0.133-0.29-0.199-0.602-0.199-0.934,0.01-0.42,0.11-0.736,0.32-0.946zm0.74,9.598c-0.549,0-1.025-0.182-1.432-0.544-0.408-0.362-0.611-0.884-0.611-1.564,0-0.907,0.383-1.666,1.146-2.274l2.822,3.686c-0.56,0.46-1.21,0.69-1.93,0.69z"/>
-<polygon points="26.64,11.84,26.88,3.166,24.48,3.166,24.73,11.84"/>
-<path d="M26.62,13.43c-0.254-0.254-0.564-0.381-0.93-0.381s-0.674,0.127-0.93,0.381c-0.254,0.255-0.381,0.564-0.381,0.93s0.129,0.677,0.387,0.935c0.256,0.257,0.564,0.386,0.924,0.386,0.365,0,0.676-0.129,0.93-0.386,0.25-0.27,0.38-0.58,0.38-0.94s-0.13-0.68-0.38-0.93z"/>
-</svg>
\ No newline at end of file
+<polygon points="8.012,17.726 7.02,17.726 4.006,18.676 4.006,19.77 6.152,19.277 6.152,26.906 4.006,26.906 4.006,28 10.041,28 10.041,26.906 8.012,26.906 "/>
+<path d="M13.654,25.693c0.193-0.34,0.432-0.651,0.715-0.934c0.281-0.282,0.674-0.636,1.176-1.06 c0.896-0.752,1.467-1.368,1.709-1.849c0.24-0.481,0.361-0.97,0.361-1.467c0-0.884-0.268-1.553-0.807-2.006 c-0.537-0.454-1.324-0.681-2.357-0.681c-0.84,0-1.701,0.139-2.584,0.417v1.217h0.014c0.842-0.306,1.56-0.458,2.152-0.458 c0.561,0,0.98,0.134,1.262,0.399c0.279,0.268,0.42,0.665,0.42,1.193c0,0.301-0.086,0.604-0.26,0.909 c-0.172,0.306-0.59,0.736-1.25,1.292c-0.553,0.465-1.008,0.893-1.367,1.281c-0.361,0.391-0.664,0.86-0.91,1.412 s-0.369,1.183-0.369,1.894V28h6.098v-1.189h-4.32C13.355,26.405,13.461,26.032,13.654,25.693z"/>
+<path d="M23.371,22.593c0.588-0.173,1.039-0.468,1.354-0.886c0.314-0.416,0.473-0.914,0.473-1.493c0-0.839-0.262-1.468-0.787-1.887 c-0.523-0.419-1.307-0.629-2.352-0.629c-0.691,0-1.467,0.107-2.324,0.321v1.203h0.014c0.844-0.232,1.498-0.349,1.963-0.349 c0.527,0,0.926,0.125,1.191,0.376c0.268,0.251,0.4,0.624,0.4,1.121c0,0.565-0.166,0.984-0.498,1.258 c-0.334,0.273-1.17,0.41-2.51,0.41v1.142c1.354,0,2.217,0.146,2.592,0.438c0.373,0.292,0.561,0.772,0.561,1.442 c0,0.624-0.156,1.093-0.469,1.404c-0.313,0.313-0.777,0.469-1.398,0.469c-0.515,0-1.219-0.111-2.111-0.335h-0.014v1.189 c0.766,0.214,1.512,0.321,2.242,0.321c1.217,0,2.129-0.261,2.736-0.783c0.609-0.521,0.914-1.304,0.914-2.348 c0-0.634-0.17-1.161-0.51-1.582C24.498,22.975,24.01,22.707,23.371,22.593z"/>
+<polygon points="4.014,13.543 5.541,13.543 5.383,10.671 7.799,12.239 8.545,10.929 6.014,9.616 8.545,8.313 7.799,7.002 5.383,8.546 5.541,5.69 4.014,5.69 4.162,8.546 1.746,7.002 1,8.313 3.531,9.616 1,10.929 1.746,12.239 4.162,10.671 "/>
+<path d="M19.551,13.352c0.73-0.853,1.258-1.992,1.584-3.42l-1.65-0.373c-0.238,1.057-0.545,1.89-0.922,2.498L16.08,8.844 c0.936-0.631,1.584-1.202,1.942-1.714c0.36-0.512,0.54-1.075,0.54-1.688c0-0.753-0.273-1.348-0.818-1.785S16.443,3,15.475,3 c-1.041,0-1.852,0.238-2.432,0.715c-0.582,0.476-0.873,1.159-0.873,2.05c0,0.808,0.443,1.79,1.328,2.946 c-0.891,0.51-1.529,1.051-1.916,1.623C11.193,10.907,11,11.584,11,12.363c0,1.052,0.338,1.867,1.014,2.445 c0.674,0.578,1.646,0.867,2.912,0.867c1.234,0,2.283-0.346,3.146-1.037l0.697,0.904h2.482L19.551,13.352z M14.557,4.652 c0.209-0.21,0.52-0.315,0.934-0.315c0.35,0,0.629,0.103,0.84,0.308c0.209,0.204,0.314,0.465,0.314,0.779 c0,0.848-0.486,1.597-1.461,2.25c-0.359-0.471-0.605-0.851-0.738-1.142c-0.133-0.29-0.199-0.602-0.199-0.934 C14.246,5.178,14.35,4.862,14.557,4.652z M15.301,14.248c-0.549,0-1.025-0.182-1.432-0.544c-0.408-0.362-0.611-0.884-0.611-1.564 c0-0.907,0.383-1.666,1.146-2.274l2.822,3.686C16.668,14.016,16.025,14.248,15.301,14.248z"/>
+<polygon points="26.643,11.841 26.883,3.166 24.484,3.166 24.734,11.841 "/>
+<path d="M26.617,13.426c-0.254-0.254-0.564-0.381-0.93-0.381s-0.674,0.127-0.93,0.381c-0.254,0.255-0.381,0.564-0.381,0.93 s0.129,0.677,0.387,0.935c0.256,0.257,0.564,0.386,0.924,0.386c0.365,0,0.676-0.129,0.93-0.386C26.873,15.032,27,14.721,27,14.355 S26.873,13.681,26.617,13.426z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sport.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sport.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-1 -1 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M26.58,14.24h-2.566l-1.287-4.637-5.859-5.121-5.59,0.156c-0.391,0.014-0.736,0.18-0.984,0.438-0.082,0.068-0.159,0.145-0.227,0.233l-2.27,3.019c-0.484,0.646-0.351,1.554,0.301,2.032,0.264,0.195,0.574,0.289,0.881,0.289,0.449,0,0.893-0.201,1.182-0.58l1.992-2.652,2.905-0.076-0.026,0.026c-1.021,1.027-2.887,2.859-3.533,3.408-1.171,0.995-1.966,1.974-2.407,2.93-0.018,0.027-0.039,0.05-0.055,0.078l-0.053,0.163c-0.067,0.168-0.119,0.335-0.163,0.5l-1.082,3.36-6.988,5.725c-0.854,0.699-0.979,1.959-0.279,2.814,0.396,0.482,0.971,0.732,1.549,0.732,0.445,0,0.895-0.148,1.266-0.453,0,0,7.646-6.326,7.77-6.549l0.882-2.573,2.349,2.819-4.965,4.135c-0.848,0.707-0.963,1.969-0.256,2.818,0.394,0.48,0.961,0.72,1.531,0.72,0.451,0,0.906-0.152,1.279-0.463l6.5-5.416c0.85-0.707,0.963-1.969,0.256-2.818l-2.9-3.481c0.041-0.035,0.069-0.063,0.115-0.103,1.066-0.906,3.646-3.488,3.938-3.777l0.507-0.508,1.558,5.609h4.74c0.785,0,1.424-0.627,1.424-1.4s-0.65-1.4-1.43-1.4z"/>
+<path d="M26.576,14.242h-2.566l-1.287-4.637l-5.859-5.121l-5.59,0.156c-0.391,0.014-0.736,0.18-0.984,0.438 c-0.082,0.068-0.159,0.145-0.227,0.233l-2.27,3.019C7.306,8.974,7.439,9.882,8.091,10.36c0.264,0.195,0.574,0.289,0.881,0.289 c0.449,0,0.893-0.201,1.182-0.58l1.992-2.652l2.905-0.076l-0.026,0.026c-1.021,1.027-2.887,2.859-3.533,3.408 c-1.171,0.995-1.966,1.974-2.407,2.93c-0.018,0.027-0.039,0.05-0.055,0.078l-0.053,0.163c-0.067,0.168-0.119,0.335-0.163,0.5 L7.72,17.813l-6.988,5.725c-0.854,0.699-0.979,1.959-0.279,2.814c0.396,0.482,0.971,0.732,1.549,0.732 c0.445,0,0.895-0.148,1.266-0.453c0,0,7.646-6.326,7.77-6.549l0.882-2.573l2.349,2.819l-4.965,4.135 c-0.848,0.707-0.963,1.969-0.256,2.818C9.443,27.756,10.011,28,10.583,28c0.451,0,0.906-0.152,1.279-0.463l6.5-5.416 c0.85-0.707,0.963-1.969,0.256-2.818l-2.9-3.481c0.041-0.035,0.069-0.063,0.115-0.103c1.066-0.906,3.646-3.488,3.938-3.777 l0.507-0.508l1.558,5.609h4.74c0.785,0,1.424-0.627,1.424-1.4S27.361,14.242,26.576,14.242z"/>
<circle cx="24" cy="4" r="4"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M15,7c-2.757,0-5,2.243-5,5s2.243,5,5,5,5-2.243,5-5-2.24-5-5-5zm0,8c-1.654,0-3-1.346-3-3s1.346-3,3-3,3,1.346,3,3-1.35,3-3,3z"/>
-<path d="M25,3h-20c-1.104,0-2,0.896-2,2v14c0,1.104,0.896,2,2,2h20c1.104,0,2-0.896,2-2v-14c0-1.104-0.9-2-2-2zm-10,16c-3.866,0-7-3.135-7-7s3.134-7,7-7,7,3.135,7,7-3.13,7-7,7zm10-12h-3v-2h3v2z"/>
-<path d="M11,1c0-0.553-0.448-1-1-1h-3c-0.552,0-1,0.447-1,1v1h5v-1z"/>
-<polygon points="3,22,1,22,1,29,11,29,11,27.09,3,27.09"/>
-<polygon points="27,22,27,27.09,19,27.09,19,29,29,29,29,22"/>
+<path d="M15,7c-2.757,0-5,2.243-5,5s2.243,5,5,5s5-2.243,5-5S17.757,7,15,7z M15,15c-1.654,0-3-1.346-3-3s1.346-3,3-3s3,1.346,3,3 S16.654,15,15,15z"/>
+<path d="M25,3H11H6H5C3.896,3,3,3.896,3,5v14c0,1.104,0.896,2,2,2h20c1.104,0,2-0.896,2-2V5C27,3.896,26.104,3,25,3z M15,19 c-3.866,0-7-3.135-7-7s3.134-7,7-7s7,3.135,7,7S18.866,19,15,19z M25,7h-3V5h3V7z"/>
+<path d="M11,1c0-0.553-0.448-1-1-1H7C6.448,0,6,0.447,6,1v1h5V1z"/>
+<polygon points="3,22 1,22 1,29 11,29 11,27.086 3,27.086 "/>
+<polygon points="27,22 27,27.086 19,27.086 19,29 29,29 29,22 "/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stabilization_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13.54,9.395c0.44-0.245,0.93-0.395,1.46-0.395,1.654,0,3,1.346,3,3,0,0.531-0.15,1.023-0.395,1.457l1.447,1.447c0.59-0.83,0.95-1.82,0.95-2.91,0-2.757-2.242-5-5-5-1.085,0-2.084,0.357-2.905,0.947l1.44,1.448z"/>
-<path d="M10.66,6.514c1.2-0.946,2.7-1.514,4.34-1.514,3.867,0,7,3.135,7,7,0,1.64-0.568,3.145-1.514,4.338l4.648,4.648c1.04-0.07,1.86-0.93,1.86-1.99v-14c0-1.104-0.895-2-2-2h-17.85l3.512,3.514zm11.34-1.514h3v2h-3v-2z"/>
-<path d="M14.84,18.99c-3.741-0.082-6.754-3.096-6.836-6.837l-5.004-5.003v11.85c0,1.104,0.896,2,2,2h11.85l-2.01-2.01z"/>
-<path d="M11,1c0-0.553-0.448-1-1-1h-3c-0.552,0-1,0.447-1,1v1h5v-1z"/>
-<polygon points="3,22,1,22,1,29,11,29,11,27.09,3,27.09"/>
-<polygon points="29,24.85,29,22,27,22,27,22.85"/>
-<polygon points="22.94,27.09,19,27.09,19,29,24.85,29"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.004,0.049,1.367-0.363,0.363-0.979,0.344-1.367-0.045l-24.06-24.08c-0.389-0.389-0.41-1.004-0.047-1.366s0.979-0.341,1.367,0.048l24.06,24.06z"/>
+<path d="M13.542,9.395C13.976,9.15,14.468,9,15,9c1.654,0,3,1.346,3,3c0,0.531-0.15,1.023-0.395,1.457l1.447,1.447 C19.643,14.084,20,13.086,20,12c0-2.757-2.242-5-5-5c-1.085,0-2.084,0.357-2.905,0.947L13.542,9.395z"/>
+<path d="M10.662,6.514C11.855,5.568,13.36,5,15,5c3.867,0,7,3.135,7,7c0,1.64-0.568,3.145-1.514,4.338l4.648,4.648 C26.176,20.915,27,20.059,27,19V5c0-1.104-0.895-2-2-2H11H7.148L10.662,6.514z M22,5h3v2h-3V5z"/>
+<path d="M14.844,18.992c-3.741-0.082-6.754-3.096-6.836-6.837L3,7.147V19c0,1.104,0.896,2,2,2h11.852L14.844,18.992z"/>
+<path d="M11,1c0-0.553-0.448-1-1-1H7C6.448,0,6,0.447,6,1v1h5V1z"/>
+<polygon points="3,22 1,22 1,29 11,29 11,27.086 3,27.086 "/>
+<polygon points="29,24.851 29,22 27,22 27,22.851 "/>
+<polygon points="22.938,27.086 19,27.086 19,29 24.852,29 "/>
+<path d="M27.693,26.373c0.389,0.389,0.41,1.004,0.049,1.367c-0.363,0.363-0.979,0.344-1.367-0.045L2.306,3.625 c-0.389-0.389-0.41-1.004-0.047-1.366s0.979-0.341,1.367,0.048L27.693,26.373z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_station_scan.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_station_scan.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M17,21c0,1.104-0.896,2-2,2s-2-0.896-2-2v-11c0-1.104,0.896-2,2-2s2,0.896,2,2v11z"/>
-<path d="M11,18c0,0.553-0.447,1-1,1s-1-0.447-1-1v-5c0-0.553,0.447-1,1-1s1,0.447,1,1v5z"/>
-<path d="M7,18c0,0.553-0.447,1-1,1s-1-0.447-1-1v-5c0-0.553,0.447-1,1-1s1,0.447,1,1v5z"/>
-<path d="M3,18c0,0.553-0.447,1-1,1s-1-0.447-1-1v-5c0-0.553,0.447-1,1-1s1,0.447,1,1v5z"/>
-<path d="M21,18c0,0.553-0.447,1-1,1s-1-0.447-1-1v-5c0-0.553,0.447-1,1-1s1,0.447,1,1v5z"/>
-<path d="M25,18c0,0.553-0.447,1-1,1s-1-0.447-1-1v-5c0-0.553,0.447-1,1-1s1,0.447,1,1v5z"/>
-<path d="M29,18c0,0.553-0.447,1-1,1s-1-0.447-1-1v-5c0-0.553,0.447-1,1-1s1,0.447,1,1v5z"/>
+<path d="M17,21c0,1.104-0.896,2-2,2l0,0c-1.104,0-2-0.896-2-2V10c0-1.104,0.896-2,2-2l0,0c1.104,0,2,0.896,2,2V21z"/>
+<path d="M11,18c0,0.553-0.447,1-1,1l0,0c-0.553,0-1-0.447-1-1v-5c0-0.553,0.447-1,1-1l0,0c0.553,0,1,0.447,1,1V18z"/>
+<path d="M7,18c0,0.553-0.447,1-1,1l0,0c-0.553,0-1-0.447-1-1v-5c0-0.553,0.447-1,1-1l0,0c0.553,0,1,0.447,1,1V18z"/>
+<path d="M3,18c0,0.553-0.447,1-1,1l0,0c-0.553,0-1-0.447-1-1v-5c0-0.553,0.447-1,1-1l0,0c0.553,0,1,0.447,1,1V18z"/>
+<path d="M21,18c0,0.553-0.447,1-1,1l0,0c-0.553,0-1-0.447-1-1v-5c0-0.553,0.447-1,1-1l0,0c0.553,0,1,0.447,1,1V18z"/>
+<path d="M25,18c0,0.553-0.447,1-1,1l0,0c-0.553,0-1-0.447-1-1v-5c0-0.553,0.447-1,1-1l0,0c0.553,0,1,0.447,1,1V18z"/>
+<path d="M29,18c0,0.553-0.447,1-1,1l0,0c-0.553,0-1-0.447-1-1v-5c0-0.553,0.447-1,1-1l0,0c0.553,0,1,0.447,1,1V18z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stop.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_stop.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-3 -3 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M24,22c0,1.104-0.896,2-2,2h-20c-1.104,0-2-0.896-2-2v-20c0-1.104,0.896-2,2-2h20c1.104,0,2,0.896,2,2v20z"/>
-</svg>
\ No newline at end of file
+<path d="M24,22c0,1.104-0.896,2-2,2H2c-1.104,0-2-0.896-2-2V2c0-1.104,0.896-2,2-2h20c1.104,0,2,0.896,2,2V22z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_store.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_store.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="8.5" cy="25.5" r="2.5"/>
<circle cx="22.5" cy="25.5" r="2.5"/>
-<path d="M28,7h-22v-3c0-0.553-0.447-1-1-1h-3c-0.553,0-1,0.447-1,1v1c0,0.553,0.447,1,1,1h1v16c0,0.553,0.448,1,1,1h22c0.552,0,1-0.447,1-1v-1c0-0.553-0.448-1-1-1h-20v-2h20c0.553,0,1-0.447,1-1,0-0.331-0.172-0.61-0.419-0.792l1.01-6.21h0.41c0.553,0,1-0.447,1-1v-1c0-0.553-0.45-1-1-1zm-20,9h-2v-6h2v6zm4,0h-2v-6h2v6zm4,0h-2v-6h2v6zm4,0h-2v-6h2v6zm3.57,0h-1.57v-6h2.553l-0.98,6z"/>
+<path d="M28,7h-1H6V5V4c0-0.553-0.447-1-1-1H4H2C1.447,3,1,3.447,1,4v1c0,0.553,0.447,1,1,1h1v16c0,0.553,0.448,1,1,1h0.001H5h3.5 h14H26c0.552,0,1-0.447,1-1v-1c0-0.553-0.448-1-1-1H6v-2h17.237H26c0.553,0,1-0.447,1-1c0-0.331-0.172-0.61-0.419-0.792L27.593,10 H28c0.553,0,1-0.447,1-1V8C29,7.447,28.553,7,28,7z M8,16H6v-6h2V16z M12,16h-2v-6h2V16z M16,16h-2v-6h2V16z M20,16h-2v-6h2V16z M23.566,16H22v-6h2.553L23.566,16z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_swap_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_swap_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M21,15c0-3.309-2.691-6-6-6-1.206,0-2.327,0.361-3.269,0.976l1.21,1.613c0.6-0.37,1.3-0.59,2.06-0.59,2.206,0,4,1.795,4,4h-2l3,4,3-4h-2z"/>
-<path d="M15,19c-2.206,0-4-1.794-4-4h2l-3-4-3,4h2c0,3.309,2.691,6,6,6,1.206,0,2.327-0.36,3.269-0.975l-1.21-1.613c-0.6,0.37-1.3,0.59-2.06,0.59z"/>
-<path d="M8.205,19.92c-0.063-0.329-0.366-0.549-0.673-0.484l-2.431,0.519c-0.007,0.004-0.011,0.008-0.017,0.014,0.001-0.001-0.001-0.01-0.001-0.01-0.498-1.825-0.629-3.556-0.63-5.283,0-1.66,0.467-3.848,0.76-4.748l0.003,0.003c0.001-0.002-0.003-0.005-0.002-0.006l1.861,0.456c0.269,0.066,0.542-0.097,0.656-0.369l1.693-6.137c0.09-0.317-0.077-0.641-0.374-0.718,0,0-0.276-0.053-1.019-0.128l-0.004-0.003c-0.379-0.038-0.408-0.024-0.826-0.008-1.252,0.055-2.21,0.527-2.21,0.527-0.378,0.174-1.372,1.033-2.198,2.532-0.828,1.497-1.796,5.785-1.793,9.145s0.865,7.081,1.324,8.074c0.727,1.568,2.054,2.781,2.526,3.05,0,0,0.37,0.182,0.962,0.345,0.005,0.001,0.014,0.004,0.021,0.007,0.058,0.017,0.114,0.03,0.177,0.046l0.004-0.002c0.306,0.074,0.65,0.142,1.032,0.177,0.448,0.039,0.528,0.098,0.929,0.073,0.001-0.001,0.001-0.001,0.001-0.001,0.742-0.048,1.009-0.103,1.009-0.103,0.308-0.063,0.504-0.383,0.442-0.711l-1.222-6.26z"/>
-<path d="M27.21,6.075c-0.826-1.499-1.82-2.358-2.198-2.532,0,0-0.958-0.473-2.21-0.527-0.42-0.016-0.45-0.03-0.83,0.008l-0.004,0.003c-0.742,0.075-1.019,0.128-1.019,0.128-0.297,0.077-0.464,0.4-0.376,0.718l1.693,6.137c0.114,0.272,0.388,0.436,0.656,0.369l1.861-0.456c0.001,0.001-0.003,0.004-0.002,0.006l0.003-0.003c0.293,0.9,0.76,3.088,0.76,4.748-0.001,1.728-0.132,3.458-0.63,5.283,0,0-0.002,0.009-0.001,0.01-0.006-0.006-0.01-0.01-0.017-0.014l-2.431-0.519c-0.307-0.064-0.609,0.155-0.673,0.484l-1.223,6.261c-0.062,0.328,0.135,0.648,0.442,0.711,0,0,0.267,0.055,1.009,0.103l0.001,0.001c0.4,0.024,0.48-0.034,0.929-0.073,0.382-0.035,0.727-0.103,1.032-0.177l0.004,0.002c0.063-0.016,0.119-0.029,0.177-0.046,0.008-0.003,0.017-0.006,0.021-0.007,0.592-0.163,0.962-0.345,0.962-0.345,0.473-0.269,1.8-1.481,2.526-3.05,0.459-0.993,1.321-4.71,1.324-8.074s-0.95-7.648-1.78-9.145z"/>
-</svg>
\ No newline at end of file
+<path d="M21,15c0-3.309-2.691-6-6-6c-1.206,0-2.327,0.361-3.269,0.976l1.21,1.613C13.545,11.223,14.244,11,15,11 c2.206,0,4,1.795,4,4h-2l3,4l3-4H21z"/>
+<path d="M15,19c-2.206,0-4-1.794-4-4h2l-3-4l-3,4h2c0,3.309,2.691,6,6,6c1.206,0,2.327-0.36,3.269-0.975l-1.21-1.613 C16.455,18.777,15.756,19,15,19z"/>
+<path d="M8.205,19.919c-0.063-0.329-0.366-0.549-0.673-0.484l-2.431,0.519c-0.007,0.004-0.011,0.008-0.017,0.014 c0.001-0.001-0.001-0.01-0.001-0.01c-0.498-1.825-0.629-3.556-0.63-5.283c0-1.66,0.467-3.848,0.76-4.748l0.003,0.003 c0.001-0.002-0.003-0.005-0.002-0.006l1.861,0.456c0.269,0.066,0.542-0.097,0.656-0.369l1.693-6.137 C9.514,3.556,9.347,3.232,9.05,3.155c0,0-0.276-0.053-1.019-0.128L8.027,3.024C7.648,2.986,7.619,3,7.201,3.016 c-1.252,0.055-2.21,0.527-2.21,0.527C4.613,3.717,3.619,4.576,2.793,6.075C1.965,7.572,0.997,11.86,1,15.225 s0.865,7.081,1.324,8.074c0.727,1.568,2.054,2.781,2.526,3.05c0,0,0.37,0.182,0.962,0.345c0.005,0.001,0.014,0.004,0.021,0.007 c0.058,0.017,0.114,0.03,0.177,0.046l0.004-0.002c0.306,0.074,0.65,0.142,1.032,0.177c0.448,0.039,0.528,0.098,0.929,0.073 c0.001-0.001,0.001-0.001,0.001-0.001c0.742-0.048,1.009-0.103,1.009-0.103c0.308-0.063,0.504-0.383,0.442-0.711L8.205,19.919z"/>
+<path d="M27.207,6.075c-0.826-1.499-1.82-2.358-2.198-2.532c0,0-0.958-0.473-2.21-0.527C22.381,3,22.352,2.986,21.973,3.024 l-0.004,0.003c-0.742,0.075-1.019,0.128-1.019,0.128c-0.297,0.077-0.464,0.4-0.376,0.718l1.693,6.137 c0.114,0.272,0.388,0.436,0.656,0.369l1.861-0.456c0.001,0.001-0.003,0.004-0.002,0.006l0.003-0.003 c0.293,0.9,0.76,3.088,0.76,4.748c-0.001,1.728-0.132,3.458-0.63,5.283c0,0-0.002,0.009-0.001,0.01 c-0.006-0.006-0.01-0.01-0.017-0.014l-2.431-0.519c-0.307-0.064-0.609,0.155-0.673,0.484l-1.223,6.261 c-0.062,0.328,0.135,0.648,0.442,0.711c0,0,0.267,0.055,1.009,0.103c0,0,0,0,0.001,0.001c0.4,0.024,0.48-0.034,0.929-0.073 c0.382-0.035,0.727-0.103,1.032-0.177l0.004,0.002c0.063-0.016,0.119-0.029,0.177-0.046c0.008-0.003,0.017-0.006,0.021-0.007 c0.592-0.163,0.962-0.345,0.962-0.345c0.473-0.269,1.8-1.481,2.526-3.05c0.459-0.993,1.321-4.71,1.324-8.074 S28.035,7.572,27.207,6.075z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_itut.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_itut.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M4.426,12.81c-0.771-0.426-1.314-0.787-1.635-1.083-0.318-0.296-0.479-0.69-0.479-1.184,0-0.509,0.184-0.907,0.549-1.195,0.367-0.287,0.855-0.432,1.465-0.432,0.671,0,1.398,0.089,2.18,0.266v-1.449c-0.738-0.166-1.545-0.25-2.422-0.25-1.209,0-2.188,0.281-2.939,0.843s-1.127,1.401-1.127,2.52c0,0.703,0.168,1.329,0.506,1.88s0.994,1.098,1.963,1.64c0.889,0.504,1.496,0.912,1.822,1.225,0.328,0.313,0.492,0.743,0.492,1.29,0,0.582-0.199,1.029-0.596,1.346-0.396,0.314-0.947,0.473-1.652,0.473-0.742,0-1.594-0.13-2.553-0.391v1.479c0.877,0.227,1.768,0.34,2.672,0.34,1.475,0,2.582-0.312,3.322-0.934,0.74-0.623,1.111-1.557,1.111-2.802,0-0.691-0.182-1.314-0.541-1.868-0.361-0.56-1.074-1.14-2.138-1.73z"/>
-<path d="M11.92,17.88l-1.92-7.58h-2.338l2.613,9.297h1.174c-0.234,0.725-0.471,1.206-0.713,1.443-0.24,0.238-0.572,0.357-0.994,0.357s-0.904-0.063-1.447-0.191v1.428c0.605,0.128,1.168,0.191,1.689,0.191,0.793,0,1.432-0.202,1.918-0.605,0.484-0.404,0.855-1.041,1.109-1.91l2.938-10.01h-1.996l-2.04,7.58z"/>
-<path d="M29.26,10.94c-0.496-0.525-1.24-0.788-2.232-0.788-1.172,0-2.076,0.459-2.715,1.378-0.432-0.919-1.295-1.378-2.586-1.378-1.23,0-2.174,0.528-2.828,1.585l-0.391-1.443h-1.316v9.7h2.256v-5.902c0-0.769,0.146-1.386,0.439-1.851,0.295-0.465,0.719-0.697,1.273-0.697,0.439,0,0.768,0.155,0.986,0.465s0.328,0.772,0.328,1.386v6.59h2.246v-5.902c0-0.774,0.15-1.393,0.449-1.854,0.301-0.462,0.73-0.693,1.29-0.693,0.433,0,0.755,0.14,0.966,0.419s0.314,0.757,0.314,1.432v6.59h2.25v-6.699c0-1.04-0.25-1.83-0.74-2.36z"/>
-</svg>
\ No newline at end of file
+<path d="M4.426,12.812c-0.771-0.426-1.314-0.787-1.635-1.083c-0.318-0.296-0.479-0.69-0.479-1.184c0-0.509,0.184-0.907,0.549-1.195 c0.367-0.287,0.855-0.432,1.465-0.432c0.671,0,1.398,0.089,2.18,0.266V7.74C5.768,7.574,4.961,7.49,4.084,7.49 c-1.209,0-2.188,0.281-2.939,0.843s-1.127,1.401-1.127,2.52c0,0.703,0.168,1.329,0.506,1.88s0.994,1.098,1.963,1.64 c0.889,0.504,1.496,0.912,1.822,1.225c0.328,0.313,0.492,0.743,0.492,1.29c0,0.582-0.199,1.029-0.596,1.346 c-0.396,0.314-0.947,0.473-1.652,0.473c-0.742,0-1.594-0.13-2.553-0.391v1.479c0.877,0.227,1.768,0.34,2.672,0.34 c1.475,0,2.582-0.312,3.322-0.934c0.74-0.623,1.111-1.557,1.111-2.802c0-0.691-0.182-1.314-0.541-1.868 C6.203,13.977,5.49,13.403,4.426,12.812z"/>
+<path d="M11.922,17.875L10,10.297H7.662l2.613,9.297h1.174c-0.234,0.725-0.471,1.206-0.713,1.443 c-0.24,0.238-0.572,0.357-0.994,0.357s-0.904-0.063-1.447-0.191v1.428c0.605,0.128,1.168,0.191,1.689,0.191 c0.793,0,1.432-0.202,1.918-0.605c0.484-0.404,0.855-1.041,1.109-1.91l2.938-10.01h-1.996L11.922,17.875z"/>
+<path d="M29.256,10.943c-0.496-0.525-1.24-0.788-2.232-0.788c-1.172,0-2.076,0.459-2.715,1.378 c-0.432-0.919-1.295-1.378-2.586-1.378c-1.23,0-2.174,0.528-2.828,1.585l-0.391-1.443h-1.316V20h2.256v-5.902 c0-0.769,0.146-1.386,0.439-1.851c0.295-0.465,0.719-0.697,1.273-0.697c0.439,0,0.768,0.155,0.986,0.465s0.328,0.772,0.328,1.386V20 h2.246v-5.902c0-0.774,0.15-1.393,0.449-1.854c0.301-0.462,0.73-0.693,1.29-0.693c0.433,0,0.755,0.14,0.966,0.419 s0.314,0.757,0.314,1.432V20H30v-6.699C30,12.256,29.752,11.47,29.256,10.943z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_qwerty.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_qwerty.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M7.672,9.609c0-0.651-0.169-1.237-0.508-1.758s-1.008-1.06-2.008-1.617c-0.724-0.401-1.235-0.741-1.535-1.02s-0.449-0.649-0.449-1.112c0-0.479,0.172-0.854,0.516-1.125s0.801-0.407,1.375-0.407c0.63,0,1.313,0.083,2.047,0.25v-1.359c-0.692-0.156-1.45-0.234-2.273-0.234-1.137,0-2.057,0.264-2.763,0.793s-1.058,1.319-1.058,2.371c0,0.661,0.159,1.251,0.477,1.77s0.933,1.032,1.844,1.543c0.833,0.474,1.403,0.858,1.711,1.152s0.461,0.699,0.461,1.215c0,0.547-0.187,0.969-0.559,1.266s-0.89,0.445-1.551,0.445c-0.698,0-1.497-0.122-2.398-0.367v1.391c0.823,0.214,1.659,0.32,2.508,0.32,1.386,0,2.426-0.293,3.121-0.879s1.042-1.46,1.042-2.631z"/>
-<path d="M13.83,13.29l2.758-9.422h-1.875l-1.92,7.132-1.8-7.133h-2.195l2.453,8.75h1.102c-0.219,0.683-0.441,1.136-0.668,1.359s-0.538,0.336-0.934,0.336-0.849-0.06-1.359-0.18v1.344c0.567,0.12,1.097,0.18,1.586,0.18,0.745,0,1.345-0.19,1.801-0.57s0.8-0.98,1.04-1.8z"/>
-<path d="M29.3,4.477c-0.466-0.495-1.165-0.742-2.098-0.742-1.099,0-1.948,0.433-2.547,1.297-0.406-0.864-1.216-1.297-2.43-1.297-1.156,0-2.042,0.497-2.656,1.492l-0.367-1.359h-1.234v9.132h2.117v-5.555c0-0.724,0.138-1.305,0.414-1.742s0.675-0.656,1.195-0.656c0.411,0,0.72,0.146,0.926,0.438s0.309,0.727,0.309,1.305v6.21h2.109v-5.555c0-0.729,0.141-1.312,0.422-1.746s0.685-0.652,1.211-0.652c0.406,0,0.708,0.132,0.906,0.395s0.297,0.712,0.297,1.348v6.21h2.13v-6.305c0-0.984-0.23-1.723-0.7-2.218z"/>
-<polygon points="8.011,17.73,7.02,17.73,4.005,18.68,4.005,19.77,6.151,19.28,6.151,26.91,4.005,26.91,4.005,28,10.04,28,10.04,26.91,8.011,26.91"/>
-<path d="M13.65,25.69c0.193-0.34,0.432-0.651,0.714-0.934s0.675-0.636,1.176-1.06c0.897-0.752,1.468-1.368,1.709-1.849s0.362-0.97,0.362-1.467c0-0.884-0.269-1.553-0.807-2.006-0.538-0.454-1.324-0.681-2.358-0.681-0.839,0-1.7,0.139-2.584,0.417v1.217h0.014c0.843-0.306,1.561-0.458,2.153-0.458,0.561,0,0.98,0.134,1.262,0.399,0.279,0.268,0.42,0.665,0.42,1.193,0,0.301-0.087,0.604-0.26,0.909s-0.59,0.736-1.251,1.292c-0.552,0.465-1.007,0.893-1.367,1.281-0.36,0.391-0.663,0.86-0.909,1.412s-0.369,1.183-0.369,1.894v0.76h6.098v-1.189h-4.32c0.03-0.41,0.14-0.78,0.33-1.12z"/>
-<path d="M23.37,22.59c0.588-0.173,1.039-0.468,1.354-0.886,0.314-0.416,0.472-0.914,0.472-1.493,0-0.839-0.262-1.468-0.786-1.887s-1.308-0.629-2.352-0.629c-0.692,0-1.468,0.107-2.324,0.321v1.203h0.014c0.843-0.232,1.497-0.349,1.962-0.349,0.528,0,0.927,0.125,1.192,0.376,0.268,0.251,0.4,0.624,0.4,1.121,0,0.565-0.166,0.984-0.499,1.258s-1.169,0.41-2.509,0.41v1.142c1.354,0,2.217,0.146,2.591,0.438s0.561,0.772,0.561,1.442c0,0.624-0.156,1.093-0.468,1.404-0.313,0.313-0.778,0.469-1.398,0.469-0.515,0-1.219-0.111-2.112-0.335h-0.014v1.189c0.766,0.214,1.513,0.321,2.242,0.321,1.217,0,2.13-0.261,2.737-0.783,0.609-0.521,0.913-1.304,0.913-2.348,0-0.634-0.17-1.161-0.509-1.582-0.32-0.4-0.81-0.67-1.45-0.79z"/>
-</svg>
\ No newline at end of file
+<path d="M7.672,9.609c0-0.651-0.169-1.237-0.508-1.758s-1.008-1.06-2.008-1.617c-0.724-0.401-1.235-0.741-1.535-1.02 S3.172,4.565,3.172,4.102c0-0.479,0.172-0.854,0.516-1.125S4.489,2.57,5.063,2.57c0.63,0,1.313,0.083,2.047,0.25V1.461 c-0.692-0.156-1.45-0.234-2.273-0.234C3.7,1.227,2.78,1.491,2.074,2.02S1.016,3.339,1.016,4.391c0,0.661,0.159,1.251,0.477,1.77 s0.933,1.032,1.844,1.543c0.833,0.474,1.403,0.858,1.711,1.152s0.461,0.699,0.461,1.215c0,0.547-0.187,0.969-0.559,1.266 s-0.89,0.445-1.551,0.445c-0.698,0-1.497-0.122-2.398-0.367v1.391c0.823,0.214,1.659,0.32,2.508,0.32 c1.386,0,2.426-0.293,3.121-0.879S7.672,10.781,7.672,9.609z"/>
+<path d="M13.828,13.289l2.758-9.422h-1.875L12.805,11L11,3.867H8.805l2.453,8.75h1.102c-0.219,0.683-0.441,1.136-0.668,1.359 s-0.538,0.336-0.934,0.336s-0.849-0.06-1.359-0.18v1.344c0.567,0.12,1.097,0.18,1.586,0.18c0.745,0,1.345-0.19,1.801-0.57 S13.589,14.106,13.828,13.289z"/>
+<path d="M29.301,4.477c-0.466-0.495-1.165-0.742-2.098-0.742c-1.099,0-1.948,0.433-2.547,1.297c-0.406-0.864-1.216-1.297-2.43-1.297 c-1.156,0-2.042,0.497-2.656,1.492l-0.367-1.359h-1.234V13h2.117V7.445c0-0.724,0.138-1.305,0.414-1.742s0.675-0.656,1.195-0.656 c0.411,0,0.72,0.146,0.926,0.438s0.309,0.727,0.309,1.305V13h2.109V7.445c0-0.729,0.141-1.312,0.422-1.746s0.685-0.652,1.211-0.652 c0.406,0,0.708,0.132,0.906,0.395s0.297,0.712,0.297,1.348V13H30V6.695C30,5.711,29.767,4.972,29.301,4.477z"/>
+<polygon points="8.011,17.726 7.02,17.726 4.005,18.676 4.005,19.77 6.151,19.277 6.151,26.906 4.005,26.906 4.005,28 10.041,28 10.041,26.906 8.011,26.906 "/>
+<path d="M13.654,25.693c0.193-0.34,0.432-0.651,0.714-0.934s0.675-0.636,1.176-1.06c0.897-0.752,1.468-1.368,1.709-1.849 c0.241-0.481,0.362-0.97,0.362-1.467c0-0.884-0.269-1.553-0.807-2.006c-0.538-0.454-1.324-0.681-2.358-0.681 c-0.839,0-1.7,0.139-2.584,0.417v1.217h0.014c0.843-0.306,1.561-0.458,2.153-0.458c0.561,0,0.98,0.134,1.262,0.399 c0.279,0.268,0.42,0.665,0.42,1.193c0,0.301-0.087,0.604-0.26,0.909s-0.59,0.736-1.251,1.292c-0.552,0.465-1.007,0.893-1.367,1.281 c-0.36,0.391-0.663,0.86-0.909,1.412s-0.369,1.183-0.369,1.894V28h6.098v-1.189h-4.32C13.354,26.405,13.46,26.032,13.654,25.693z"/>
+<path d="M23.371,22.593c0.588-0.173,1.039-0.468,1.354-0.886c0.314-0.416,0.472-0.914,0.472-1.493c0-0.839-0.262-1.468-0.786-1.887 s-1.308-0.629-2.352-0.629c-0.692,0-1.468,0.107-2.324,0.321v1.203h0.014c0.843-0.232,1.497-0.349,1.962-0.349 c0.528,0,0.927,0.125,1.192,0.376c0.268,0.251,0.4,0.624,0.4,1.121c0,0.565-0.166,0.984-0.499,1.258s-1.169,0.41-2.509,0.41v1.142 c1.354,0,2.217,0.146,2.591,0.438s0.561,0.772,0.561,1.442c0,0.624-0.156,1.093-0.468,1.404c-0.313,0.313-0.778,0.469-1.398,0.469 c-0.515,0-1.219-0.111-2.112-0.335h-0.014v1.189c0.766,0.214,1.513,0.321,2.242,0.321c1.217,0,2.13-0.261,2.737-0.783 c0.609-0.521,0.913-1.304,0.913-2.348c0-0.634-0.17-1.161-0.509-1.582C24.498,22.975,24.009,22.707,23.371,22.593z"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_sym_qwerty_hi.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="30" width="30"/>
+<path d="M7.672,9.609c0-0.651-0.169-1.237-0.508-1.758s-1.008-1.06-2.008-1.617c-0.724-0.401-1.235-0.741-1.535-1.02 c-0.3-0.279-0.449-0.649-0.449-1.112c0-0.479,0.172-0.854,0.516-1.125C4.032,2.706,4.489,2.57,5.063,2.57 c0.63,0,1.313,0.083,2.047,0.25V1.461C6.418,1.305,5.66,1.227,4.837,1.227C3.7,1.227,2.78,1.491,2.074,2.02 C1.368,2.549,1.016,3.339,1.016,4.391c0,0.661,0.159,1.251,0.477,1.77C1.811,6.68,2.426,7.193,3.337,7.704 C4.17,8.178,4.74,8.562,5.048,8.856s0.461,0.699,0.461,1.215c0,0.547-0.187,0.969-0.559,1.266c-0.372,0.297-0.89,0.445-1.551,0.445 c-0.698,0-1.497-0.122-2.398-0.367v1.391c0.823,0.214,1.659,0.32,2.508,0.32c1.386,0,2.426-0.293,3.121-0.879 c0.695-0.586,1.042-1.46,1.042-2.631V9.609z"/>
+<path d="M13.83,13.29l2.758-9.422h-1.875L12.793,11l-1.8-7.133H8.798l2.453,8.75h1.102c-0.219,0.683-0.441,1.136-0.668,1.359 s-0.538,0.336-0.934,0.336s-0.849-0.06-1.359-0.18v1.344c0.567,0.12,1.097,0.18,1.586,0.18c0.745,0,1.345-0.19,1.801-0.57 s0.8-0.98,1.04-1.8L13.83,13.29z"/>
+<path d="M29.3,4.477c-0.466-0.495-1.165-0.742-2.098-0.742c-1.099,0-1.948,0.433-2.548,1.297c-0.405-0.864-1.215-1.297-2.43-1.297 c-1.156,0-2.041,0.497-2.656,1.492l-0.366-1.359h-1.234V13h2.117V7.445c0-0.724,0.138-1.305,0.414-1.742s0.675-0.656,1.194-0.656 c0.412,0,0.721,0.146,0.927,0.438s0.31,0.727,0.31,1.305V13h2.108V7.445c0-0.729,0.142-1.312,0.422-1.746 c0.281-0.434,0.685-0.652,1.211-0.652c0.406,0,0.708,0.132,0.906,0.395c0.198,0.263,0.297,0.712,0.297,1.348V13h2.13V6.695 c0-0.984-0.23-1.723-0.699-2.218H29.3z"/>
+<path d="M4.971,17.607l-1.381,0.828c0,0,1.455,2.283,1.64,4.218 c0.184,1.934,0.11,5.452,0.11,5.452h1.565c0,0,0.129-3.096-0.147-5.582C6.482,20.036,4.971,17.607,4.971,17.607z M13.96,19.378 c-1.627,0-2.911-1.771-2.911-1.771l-1.38,0.735c0,0,1.73,1.847,2.209,3.867c0.376,1.59,0.277,5.896,0.277,5.896h1.565 c0,0,0.11-4.125-0.166-5.507c-0.277-1.38-0.479-1.677-0.479-1.677s0.748,0.413,2.063-0.038c1.792-0.614,2.082-3.276,2.082-3.276 h-1.475C15.746,17.607,15.507,19.378,13.96,19.378z M26.41,17.607h-1.178c0,0,0.127,1.751-0.829,1.751 c-1.127,0-0.902-1.751-0.902-1.751h-1.215c0,0,0.253,1.752-0.885,1.752c-0.845,0-1.547-1.754-1.547-1.754l-1.346,0.83 c0,0,1.271,1.86,1.916,3.757c0.6,1.766,0.571,5.913,0.571,5.913h1.565c0,0,0.14-2.786-0.259-4.513 c-0.402-1.75-0.772-2.541-0.772-2.541s1.028,0.123,1.492-0.498c0.791,0.657,2.063,0.818,2.78-0.239 C26.466,19.338,26.41,17.607,26.41,17.607z" fill-rule="evenodd"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_active.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_active.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<circle cx="13" cy="13" r="13"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_passive.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tab_passive.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13,0c-7.18,0-13,5.82-13,13s5.82,13,13,13,13-5.82,13-13-5.82-13-13-13zm0,23c-5.514,0-10-4.49-10-10s4.486-10,10-10,10,4.486,10,10-4.49,10-10,10z"/>
-</svg>
\ No newline at end of file
+<path d="M13,0C5.82,0,0,5.82,0,13s5.82,13,13,13s13-5.82,13-13S20.18,0,13,0z M13,23C7.486,23,3,18.514,3,13S7.486,3,13,3 s10,4.486,10,10S18.514,23,13,23z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tag.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tag.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27.34,16.02l-13.44-13.43c-0.38-0.375-0.88-0.586-1.42-0.586h-8.48c-0.53,0-1.039,0.211-1.414,0.586s-0.586,0.883-0.586,1.414v8.484c0,0.531,0.211,1.04,0.586,1.415l13.44,13.44c0.781,0.781,2.048,0.781,2.829,0l8.485-8.484c0.78-0.79,0.78-2.06,0-2.84zm-21.34-8.02c-1.104,0-2-0.896-2-2s0.896-2,2-2,2,0.896,2,2-0.896,2-2,2zm11.44,15.09l-7.778-7.778,5.656-5.657,7.778,7.779-5.66,5.66z"/>
+<path d="M27.335,16.021L13.899,2.586C13.524,2.211,13.016,2,12.485,2H4C3.47,2,2.961,2.211,2.586,2.586S2,3.469,2,4v8.484 c0,0.531,0.211,1.04,0.586,1.415l13.435,13.435c0.781,0.781,2.048,0.781,2.829,0l8.485-8.484 C28.115,18.068,28.115,16.802,27.335,16.021z M6,8C4.896,8,4,7.104,4,6s0.896-2,2-2s2,0.896,2,2S7.104,8,6,8z M17.436,23.092 l-7.778-7.778l5.656-5.657l7.778,7.779L17.436,23.092z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_center.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_center.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,5c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.447,1,1z"/>
-<path d="M24,9c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.447,1,1z"/>
-<path d="M27,13c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M24,17c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.45,1,1z"/>
-<path d="M27,21c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M24,25c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.45,1,1z"/>
-</svg>
\ No newline at end of file
+<path d="M27,5c0,0.553-0.447,1-1,1H4C3.447,6,3,5.553,3,5l0,0c0-0.553,0.447-1,1-1h22C26.553,4,27,4.447,27,5L27,5z"/>
+<path d="M24,9c0,0.553-0.447,1-1,1H7c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C23.553,8,24,8.447,24,9L24,9z"/>
+<path d="M27,13c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,12,27,12.447,27,13L27,13z"/>
+<path d="M24,17c0,0.553-0.447,1-1,1H7c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C23.553,16,24,16.447,24,17L24,17z"/>
+<path d="M27,21c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,20,27,20.447,27,21L27,21z"/>
+<path d="M24,25c0,0.553-0.447,1-1,1H7c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C23.553,24,24,24.447,24,25L24,25z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_justify.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_justify.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,5c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.447,1,1z"/>
-<path d="M27,9c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.447,1,1z"/>
-<path d="M27,13c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M27,17c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M27,21c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M27,25c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-</svg>
\ No newline at end of file
+<path d="M27,5c0,0.553-0.447,1-1,1H4C3.447,6,3,5.553,3,5l0,0c0-0.553,0.447-1,1-1h22C26.553,4,27,4.447,27,5L27,5z"/>
+<path d="M27,9c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,8,27,8.447,27,9L27,9z"/>
+<path d="M27,13c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,12,27,12.447,27,13L27,13z"/>
+<path d="M27,17c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,16,27,16.447,27,17L27,17z"/>
+<path d="M27,21c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,20,27,20.447,27,21L27,21z"/>
+<path d="M27,25c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,24,27,24.447,27,25L27,25z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_left.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_left.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M27,5c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.447,1,1z"/>
-<path d="M21,9c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.447,1,1z"/>
-<path d="M27,13c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M21,17c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.45,1,1z"/>
-<path d="M27,21c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M21,25c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.45,1,1z"/>
-</svg>
\ No newline at end of file
+<path d="M27,5c0,0.553-0.447,1-1,1H4C3.447,6,3,5.553,3,5l0,0c0-0.553,0.447-1,1-1h22C26.553,4,27,4.447,27,5L27,5z"/>
+<path d="M21,9c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C20.553,8,21,8.447,21,9L21,9z"/>
+<path d="M27,13c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,12,27,12.447,27,13L27,13z"/>
+<path d="M21,17c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C20.553,16,21,16.447,21,17L21,17z"/>
+<path d="M27,21c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C26.553,20,27,20.447,27,21L27,21z"/>
+<path d="M21,25c0,0.553-0.447,1-1,1H4c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C20.553,24,21,24.447,21,25L21,25z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_right.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_text_align_right.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M28,5c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.447,1,1z"/>
-<path d="M28,9c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.447,1,1z"/>
-<path d="M28,13c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M28,17c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.45,1,1z"/>
-<path d="M28,21c0,0.553-0.447,1-1,1h-22c-0.553,0-1-0.447-1-1s0.447-1,1-1h22c0.55,0,1,0.45,1,1z"/>
-<path d="M28,25c0,0.553-0.447,1-1,1h-16c-0.553,0-1-0.447-1-1s0.447-1,1-1h16c0.55,0,1,0.45,1,1z"/>
-</svg>
\ No newline at end of file
+<path d="M28,5c0,0.553-0.447,1-1,1H5C4.447,6,4,5.553,4,5l0,0c0-0.553,0.447-1,1-1h22C27.553,4,28,4.447,28,5L28,5z"/>
+<path d="M28,9c0,0.553-0.447,1-1,1H11c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C27.553,8,28,8.447,28,9L28,9z"/>
+<path d="M28,13c0,0.553-0.447,1-1,1H5c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C27.553,12,28,12.447,28,13L28,13z"/>
+<path d="M28,17c0,0.553-0.447,1-1,1H11c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C27.553,16,28,16.447,28,17L28,17z"/>
+<path d="M28,21c0,0.553-0.447,1-1,1H5c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h22C27.553,20,28,20.447,28,21L28,21z"/>
+<path d="M28,25c0,0.553-0.447,1-1,1H11c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h16C27.553,24,28,24.447,28,25L28,25z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tick.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tick.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28.08,5.586c-0.78-0.781-2.047-0.781-2.828,0l-14.85,14.85-5.657-5.657c-0.781-0.781-2.048-0.781-2.828,0-0.781,0.781-0.781,2.048,0,2.828l7.07,7.071c0.781,0.781,2.048,0.781,2.829,0l16.27-16.27c0.78-0.78,0.78-2.047,0-2.828z"/>
+<path d="M28.081,5.586c-0.78-0.781-2.047-0.781-2.828,0l-14.849,14.85l-5.657-5.657c-0.781-0.781-2.048-0.781-2.828,0 c-0.781,0.781-0.781,2.048,0,2.828l7.07,7.071c0.781,0.781,2.048,0.781,2.829,0L28.081,8.414 C28.862,7.634,28.862,6.367,28.081,5.586z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_tip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect height="2" width="10" x="10" y="23"/>
-<path d="M12,28h6c1.104,0,2-0.896,2-2h-10c0,1.1,0.9,2,2,2z"/>
-<path d="M15,2c-4.971,0-9,2.864-9,9,0,3.221,1.383,6.082,3.271,8.083l0.729,2.92h10l0.729-2.917c1.89-2,3.27-4.86,3.27-8.08,0-6.136-4.03-9-9-9zm2.44,16c-0.422,0.31-0.845,0.55-1.247,0.719-0.037,0.016-0.072,0.028-0.108,0.042-0.154,0.061-0.304,0.107-0.45,0.145-0.045,0.012-0.091,0.024-0.135,0.034-0.17,0.05-0.34,0.07-0.5,0.07s-0.328-0.023-0.503-0.061c-0.044-0.01-0.09-0.022-0.135-0.034-0.146-0.037-0.296-0.084-0.45-0.145-0.036-0.014-0.072-0.026-0.108-0.042-0.4-0.17-0.82-0.41-1.24-0.72-1.8-1.32-3.56-3.84-3.56-7,0-4.959,3.263-6,6-6s6,1.041,6,6c0,3.16-1.76,5.68-3.56,7z"/>
+<path d="M12,28h6c1.104,0,2-0.896,2-2H10C10,27.104,10.896,28,12,28z"/>
+<path d="M15,2c-4.971,0-9,2.864-9,9c0,3.221,1.383,6.082,3.271,8.083L10,22h10l0.729-2.917C22.617,17.082,24,14.221,24,11 C24,4.864,19.971,2,15,2z M17.444,18c-0.422,0.31-0.845,0.55-1.247,0.719c-0.037,0.016-0.072,0.028-0.108,0.042 c-0.154,0.061-0.304,0.107-0.45,0.145c-0.045,0.012-0.091,0.024-0.135,0.034C15.328,18.977,15.158,19,15,19 s-0.328-0.023-0.503-0.061c-0.044-0.01-0.09-0.022-0.135-0.034c-0.146-0.037-0.296-0.084-0.45-0.145 c-0.036-0.014-0.072-0.026-0.108-0.042C13.4,18.55,12.978,18.31,12.556,18C10.761,16.684,9,14.162,9,11c0-4.959,3.263-6,6-6 s6,1.041,6,6C21,14.162,19.238,16.684,17.444,18z"/>
+<g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_two.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_two.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M13.5,22.69c0.036-0.788,0.244-1.511,0.626-2.169,0.381-0.659,0.849-1.264,1.406-1.813,0.556-0.548,1.326-1.234,2.314-2.057,1.766-1.46,2.887-2.656,3.362-3.59s0.714-1.883,0.714-2.847c0-1.717-0.53-3.015-1.588-3.895-1.06-0.875-2.6-1.315-4.64-1.315-1.65,0-3.345,0.27-5.085,0.81v2.362h0.027c1.659-0.593,3.072-0.89,4.238-0.89,1.103,0,1.931,0.259,2.481,0.776,0.553,0.519,0.828,1.289,0.828,2.316,0,0.584-0.171,1.172-0.512,1.765s-1.162,1.429-2.462,2.509c-1.085,0.902-1.982,1.732-2.69,2.488s-1.305,1.671-1.789,2.741-0.73,2.29-0.73,3.67v1.45h12v-2.31h-8.502z"/>
-</svg>
\ No newline at end of file
+<path d="M13.498,22.69c0.036-0.788,0.244-1.511,0.626-2.169c0.381-0.659,0.849-1.264,1.406-1.813 c0.556-0.548,1.326-1.234,2.314-2.057c1.766-1.46,2.887-2.656,3.362-3.59s0.714-1.883,0.714-2.847c0-1.717-0.53-3.015-1.588-3.895 C19.273,5.44,17.727,5,15.69,5c-1.65,0-3.345,0.27-5.085,0.81v2.362h0.027c1.659-0.593,3.072-0.89,4.238-0.89 c1.103,0,1.931,0.259,2.481,0.776c0.553,0.519,0.828,1.289,0.828,2.316c0,0.584-0.171,1.172-0.512,1.765s-1.162,1.429-2.462,2.509 c-1.085,0.902-1.982,1.732-2.69,2.488c-0.708,0.756-1.305,1.671-1.789,2.741S10,22.174,10,23.553V25h12v-2.31H13.498z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M23.35,19.39v-7.117h-7.115v5.185h-2.38v-5.185h-7.116v7.117h5.186l-0.015,2.395-5.197,0.031,0.027,7.05,7.065-0.029,0.014-5.162h2.404v5.187h7.115v-7.116h-5.186v-2.371h5.199zm-7.09,2.37h-0.026v0.027h-2.401v-2.398h0.028v-0.031h2.373v0.026h0.026v2.369z"/>
-<polygon points="15.07,3.928,26.41,15.23,27.75,13.9,15,1.12,2.254,13.87,3.729,15.31"/>
+<path d="M23.349,19.388v-7.117h-7.115v5.185H13.86v-5.185H6.744v7.117h5.186l-0.015,2.395l-5.197,0.031L6.75,28.88l7.065-0.029 l0.014-5.162h2.404v5.187h7.115v-7.116h-5.186v-2.371H23.349z M16.26,21.759h-0.026v0.027h-2.401v-2.398h0.028v-0.031h2.373v0.026 h0.026V21.759z"/>
+<polygon points="15.071,3.928 26.414,15.233 27.746,13.901 15,1.12 2.254,13.866 3.729,15.306 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M16.29,10.94v-3.718h-3.712v2.707h-1.238v-2.707h-3.717v3.715h2.708l-0.012,1.251-2.71,0.01,0.013,3.687,3.69-0.015,0.007-2.693h1.256v2.706h3.712v-3.715h-2.707v-1.237h2.708zm-3.7,1.23h-0.015v0.018h-1.26v-1.255h0.018v-0.014h1.238v0.014h0.015v1.234z"/>
-<polygon points="11.97,2.87,17.89,8.771,18.58,8.074,11.93,1.403,5.28,8.056,6.05,8.808"/>
-<polygon points="17.5,22.33,18.91,24.6,22.77,24.6,21.36,22.33"/>
-<polygon points="11.47,22.33,12.88,24.6,16.72,24.6,15.31,22.33"/>
-<polygon points="23.56,22.33,24.72,24.21,24.72,22.33"/>
-<polygon points="10.68,24.6,10.69,24.6,9.28,22.33,6.614,22.33,10.53,28.6,12.44,27.4,11.77,26.34"/>
-<polygon points="20.6,17.66,22.01,19.92,24.72,19.92,20.81,13.66,18.88,14.86,20.63,17.66"/>
-<polygon points="19.82,19.92,18.41,17.66,14.61,17.66,16.02,19.92"/>
-<polygon points="6.614,18.03,6.614,19.92,7.787,19.92"/>
-<polygon points="13.82,19.92,12.42,17.66,8.569,17.66,9.978,19.92"/>
+<path d="M16.288,10.937V7.222h-3.712v2.707h-1.238V7.222H7.623v3.715h2.708l-0.012,1.251L7.61,12.204l0.013,3.687l3.69-0.015 l0.007-2.693h1.256v2.706h3.712v-3.715h-2.707v-1.237H16.288z M12.591,12.174h-0.015v0.018H11.32v-1.255h0.018v-0.014h1.238v0.014 h0.015V12.174z"/>
+<polygon points="11.97,2.87 17.889,8.771 18.581,8.074 11.931,1.403 5.28,8.056 6.05,8.808 "/>
+<polygon points="17.505,22.329 18.913,24.599 22.773,24.599 21.365,22.329 "/>
+<polygon points="11.471,22.329 12.877,24.599 16.725,24.599 15.312,22.329 "/>
+<polygon points="23.556,22.329 24.722,24.208 24.722,22.329 "/>
+<polygon points="10.684,24.599 10.688,24.599 9.28,22.329 6.614,22.329 10.529,28.597 12.435,27.403 11.773,26.341 "/>
+<polygon points="20.604,17.657 22.013,19.925 24.722,19.925 20.81,13.659 18.882,14.86 20.626,17.657 "/>
+<polygon points="19.824,19.925 18.413,17.657 14.607,17.657 16.016,19.925 "/>
+<polygon points="6.614,18.033 6.614,19.925 7.787,19.925 "/>
+<polygon points="13.825,19.925 12.419,17.657 8.569,17.657 9.978,19.925 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_context.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_context.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M16.24,11.01v-3.698h-3.696v2.695h-1.234v-2.698h-3.696v3.699h2.696l-0.01,1.25-2.7,0.016,0.015,3.672,3.675-0.014,0.007-2.684h1.251v2.695h3.697v-3.699h-2.697v-1.232h2.693zm-3.68,1.23h-0.014v0.018h-1.251v-1.25h0.017v-0.014h1.234v0.014h0.014v1.233z"/>
-<polygon points="11.94,2.976,17.84,8.853,18.53,8.159,11.9,1.517,5.279,8.142,6.045,8.89"/>
-<polygon points="24.72,22.24,6.685,22.24,10.58,28.48,12.5,27.29,10.76,24.5,10.77,24.5,10.77,24.5,24.72,24.5"/>
-<polygon points="20.82,13.61,18.91,14.8,20.64,17.59,6.685,17.59,6.685,19.85,24.72,19.85"/>
+<path d="M16.243,11.011V7.312h-3.696v2.695h-1.234V7.312H7.614v3.699h2.696L10.3,12.257l-2.7,0.016l0.015,3.672l3.675-0.014 l0.007-2.684h1.251v2.695h3.697v-3.699h-2.697v-1.232H16.243z M12.561,12.243h-0.014v0.018h-1.251v-1.25h0.017v-0.014h1.234v0.014 h0.014V12.243z"/>
+<polygon points="11.942,2.976 17.837,8.853 18.528,8.159 11.904,1.517 5.279,8.142 6.045,8.89 "/>
+<polygon points="24.721,22.241 6.685,22.243 10.585,28.483 12.499,27.29 10.759,24.503 10.773,24.503 10.77,24.503 24.721,24.503 "/>
+<polygon points="20.822,13.606 18.908,14.804 20.64,17.589 6.685,17.591 6.685,19.849 24.721,19.847 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_multipdp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_multipdp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M16.24,11.01v-3.698h-3.696v2.695h-1.234v-2.698h-3.696v3.699h2.696l-0.01,1.25-2.7,0.016,0.015,3.672,3.674-0.014,0.008-2.684h1.251v2.695h3.697v-3.699h-2.697v-1.232h2.693zm-3.68,1.23h-0.014v0.018h-1.251v-1.25h0.017v-0.014h1.234v0.014h0.014v1.233z"/>
-<polygon points="11.94,2.976,17.84,8.853,18.53,8.159,11.9,1.517,5.279,8.142,6.046,8.89"/>
-<polygon points="24.72,22.24,6.685,22.24,10.58,28.48,12.5,27.29,10.76,24.5,10.77,24.5,10.77,24.5,24.72,24.5"/>
-<polygon points="20.82,13.61,18.91,14.8,20.64,17.59,6.685,17.59,6.685,19.85,24.72,19.85"/>
-<polygon points="10.56,28.48,12.47,27.28,10.74,24.49,13.57,24.49,16.06,28.48,17.97,27.28,16.24,24.49,24.69,24.49,24.69,22.23,6.659,22.23"/>
+<path d="M16.243,11.011V7.312h-3.696v2.695h-1.234V7.312H7.614v3.699h2.696L10.3,12.257l-2.7,0.016l0.015,3.672l3.674-0.014 l0.008-2.684h1.251v2.695h3.697v-3.699h-2.697v-1.232H16.243z M12.561,12.243h-0.014v0.018h-1.251v-1.25h0.017v-0.014h1.234v0.014 h0.014V12.243z"/>
+<polygon points="11.942,2.976 17.837,8.853 18.528,8.159 11.904,1.517 5.279,8.142 6.046,8.89 "/>
+<polygon points="24.721,22.241 6.685,22.243 10.585,28.483 12.499,27.29 10.759,24.503 10.772,24.503 10.77,24.503 24.721,24.503 "/>
+<polygon points="20.821,13.606 18.908,14.804 20.64,17.589 6.685,17.591 6.685,19.849 24.721,19.847 "/>
+<polygon points="10.556,28.477 12.474,27.278 10.739,24.49 13.57,24.49 16.057,28.477 17.97,27.278 16.238,24.49 24.694,24.49 24.694,22.232 6.659,22.232 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_suspended.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_uma_suspended.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M16.29,10.97v-3.717h-3.71v2.706h-1.24v-2.706h-3.717v3.715h2.708l-0.011,1.25-2.712,0.017,0.015,3.687,3.688-0.014,0.009-2.695h1.256v2.707h3.712v-3.715h-2.709v-1.236h2.706zm-3.7,1.23h-0.013v0.018h-1.26v-1.254h0.016v-0.015h1.24v0.015h0.013v1.224z"/>
-<polygon points="11.97,2.9,17.89,8.8,18.58,8.104,11.93,1.435,5.278,8.087,6.048,8.837"/>
-<polygon points="24.72,22.27,24.72,24.53,20.62,24.53,20.62,24.53,15.06,24.53,16.95,22.27"/>
-<polygon points="6.614,22.27,11.55,22.27,9.636,24.53,6.614,24.53"/>
-<polygon points="24.72,17.59,24.72,19.86,18.95,19.86,20.85,17.59"/>
-<polygon points="6.614,19.86,6.614,17.59,15.49,17.59,13.57,19.86"/>
-<polygon points="21.65,15.06,21.72,15.12,21.67,15.17,11.36,27.46,10.43,28.56,8.696,27.11,10.02,25.53,19.98,13.66"/>
+<path d="M16.286,10.968V7.253h-3.71v2.706h-1.24V7.253H7.623v3.715h2.708l-0.011,1.25l-2.712,0.017l0.015,3.687l3.688-0.014 l0.009-2.695h1.256v2.707h3.712v-3.715h-2.709v-1.236H16.286z M12.589,12.204h-0.013v0.018H11.32v-1.254h0.016v-0.015h1.24v0.015 h0.013V12.204z"/>
+<polygon points="11.968,2.9 17.887,8.8 18.582,8.104 11.931,1.435 5.278,8.087 6.048,8.837 "/>
+<polygon points="24.72,22.266 24.72,24.532 20.62,24.532 20.62,24.532 15.057,24.532 16.946,22.266 "/>
+<polygon points="6.614,22.266 11.55,22.266 9.636,24.532 6.614,24.532 "/>
+<polygon points="24.72,17.593 24.72,19.86 18.954,19.86 20.849,17.593 "/>
+<polygon points="6.614,19.86 6.614,17.591 15.486,17.591 13.574,19.86 "/>
+<polygon points="21.65,15.058 21.719,15.116 21.673,15.172 11.362,27.458 10.432,28.565 8.696,27.106 10.021,25.528 19.981,13.659 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unblock.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unblock.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M12.06,21.93c-1.396-0.15-2.703-0.605-3.837-1.321l12.39-12.39c0.715,1.133,1.17,2.437,1.32,3.832,1.455,0.149,2.836,0.645,4.043,1.448,0.01-0.17,0.03-0.33,0.03-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13,5.832,13,13,13c0.169,0,0.332-0.02,0.5-0.025-0.82-1.24-1.3-2.63-1.44-4.05zm-8.06-8.93c0-4.963,4.037-9,9-9,1.758,0,3.395,0.515,4.782,1.39l-12.39,12.39c-0.876-1.38-1.39-3.02-1.39-4.78z"/>
-<path d="M25.95,16.05c-2.732-2.733-7.166-2.733-9.898,0-2.734,2.734-2.734,7.166,0,9.899,2.732,2.732,7.164,2.734,9.898,0,2.73-2.73,2.73-7.17,0-9.9zm-4.95,6.36l-2.828,2.829-1.414-1.414,2.83-2.83-2.828-2.828,1.414-1.414,2.83,2.83,2.828-2.828,1.414,1.414-2.83,2.83,2.828,2.829-1.414,1.414-2.83-2.83z"/>
-</svg>
\ No newline at end of file
+<path d="M12.055,21.932c-1.396-0.15-2.703-0.605-3.837-1.321L20.611,8.218c0.715,1.133,1.17,2.437,1.32,3.832 c1.455,0.149,2.836,0.645,4.043,1.448C25.98,13.332,26,13.168,26,13c0-7.168-5.832-13-13-13S0,5.832,0,13s5.832,13,13,13 c0.169,0,0.332-0.02,0.5-0.025C12.682,24.742,12.201,23.352,12.055,21.932z M4,13c0-4.963,4.037-9,9-9 c1.758,0,3.395,0.515,4.782,1.39L5.39,17.782C4.514,16.395,4,14.758,4,13z"/>
+<path d="M25.949,16.051c-2.732-2.733-7.166-2.733-9.898,0c-2.734,2.734-2.734,7.166,0,9.899c2.732,2.732,7.164,2.734,9.898,0 C28.684,23.217,28.684,18.783,25.949,16.051z M21,22.414l-2.828,2.829l-1.414-1.414L19.586,21l-2.828-2.828l1.414-1.414L21,19.586 l2.828-2.828l1.414,1.414L22.414,21l2.828,2.829l-1.414,1.414L21,22.414z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_underline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_underline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M8.212,23.31c1.474,1.13,3.758,1.69,6.848,1.69,2.909,0,5.126-0.576,6.65-1.729,1.53-1.15,2.29-3.03,2.29-5.27v-14.08h-0.008c-0.04-1.07-0.91-1.924-1.99-1.924h-1c-1.078,0-1.951,0.854-1.992,1.924h-0.01v14.08c0,1.494-0.356,2.91-0.971,3.551-0.614,0.639-1.612,0.959-3,0.959-1.389,0-2.397-0.324-3.022-0.975-0.63-0.65-1.01-2.06-1.01-3.54v-14.08h-0.008c-0.04-1.07-0.91-1.924-1.99-1.924h-1c-1.079,0-1.951,0.854-1.992,1.924h-0.008v14.08c0,2.34,0.737,4.18,2.212,5.31z"/>
-<path d="M24,26h-18c-0.553,0-1,0.447-1,1s0.447,1,1,1h18c0.553,0,1-0.447,1-1s-0.45-1-1-1z"/>
+<path d="M8.212,23.309C9.686,24.436,11.971,25,15.065,25c2.909,0,5.126-0.576,6.65-1.729C23.239,22.119,24,20.236,24,18V3.924 h-0.008C23.951,2.854,23.078,2,22,2h-1c-1.078,0-1.951,0.854-1.992,1.924H19V18c0,1.494-0.356,2.91-0.971,3.551 c-0.614,0.639-1.612,0.959-3,0.959c-1.389,0-2.397-0.324-3.022-0.975C11.38,20.887,11,19.475,11,18V3.924h-0.008 C10.951,2.854,10.079,2,9,2H8C6.921,2,6.049,2.854,6.008,3.924H6V18C6,20.344,6.737,22.18,8.212,23.309z"/>
+<path d="M24,26H6c-0.553,0-1,0.447-1,1s0.447,1,1,1h18c0.553,0,1-0.447,1-1S24.553,26,24,26z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unknown.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_unknown.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M21.68,2.715c-1.54-1.143-3.77-1.715-6.69-1.715-1.76,0-3.75,0.41-5.99,1,0,0-2,1.256,0,3.128,1.977-0.565,3.683-0.849,5.116-0.849,1.473,0,2.578,0.314,3.313,0.943,0.736,0.629,1.105,1.571,1.105,2.827,0,0.603-0.152,1.22-0.456,1.848-0.303,0.628-1.095,1.545-2.374,2.752-1.214,1.118-2.112,2.143-2.693,3.072-0.581,0.931-1.012,2.03-1.012,3.3v1.98c0,0.553,1.119,1,2.5,1s2.5-0.447,2.5-1v-1.715c0-0.767,0.269-1.443,0.682-2.027,0.414-0.584,1.234-1.467,2.462-2.648,1.68-1.633,2.742-2.943,3.188-3.93,0.44-0.977,0.66-1.941,0.66-2.884,0-2.237-0.77-3.927-2.32-5.071z"/>
+<path d="M21.684,2.715C20.141,1.572,17.908,1,14.988,1C13.231,1,11.235,1.41,9,2c0,0-2,1.256,0,3.128 c1.977-0.565,3.683-0.849,5.116-0.849c1.473,0,2.578,0.314,3.313,0.943c0.736,0.629,1.105,1.571,1.105,2.827 c0,0.603-0.152,1.22-0.456,1.848c-0.303,0.628-1.095,1.545-2.374,2.752c-1.214,1.118-2.112,2.143-2.693,3.072 c-0.581,0.931-1.012,2.03-1.012,3.3V21c0,0.553,1.119,1,2.5,1s2.5-0.447,2.5-1v-1.715c0-0.767,0.269-1.443,0.682-2.027 c0.414-0.584,1.234-1.467,2.462-2.648c1.68-1.633,2.742-2.943,3.188-3.93C23.777,9.693,24,8.729,24,7.786 C24,5.549,23.228,3.859,21.684,2.715z"/>
<circle cx="14.5" cy="26.5" r="3"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_update_existing.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_update_existing.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M24,16.08v2.021c2.282,0.464,4,2.48,4,4.899s-1.718,4.436-4,4.899v2.021c3.391-0.486,6-3.395,6-6.92s-2.61-6.43-6-6.92z"/>
-<path d="M18.58,17.58c-1.57,1.28-2.58,3.23-2.58,5.42,0,3.525,2.609,6.434,6,6.92v-2.021c-2.282-0.464-4-2.48-4-4.899,0-1.637,0.797-3.075,2.013-3.987l1.99,1.99v-4.999h-5l1.58,1.58z"/>
-<path d="M14,23c0-1.897,0.613-3.676,1.649-5.146-0.684-0.348-1.251-0.944-1.251-1.945v-0.42c0-0.188,0.093-0.365,0.245-0.479,2.01-1.43,3.36-4.38,3.36-7.34,0-4.226-2.69-7.66-6-7.66s-6,3.434-6,7.66c0,2.959,1.348,5.906,3.352,7.342,0.157,0.113,0.245,0.291,0.245,0.479v0.428c0,1.695-1.636,2.33-2.999,2.359-5.925,0.58-6.574,7.39-6.598,7.73h14.53c-0.34-0.94-0.53-1.95-0.53-3z"/>
-<polygon points="24,25,29,30,24,30"/>
-</svg>
\ No newline at end of file
+</g>
+<path d="M24,16.08v2.021c2.282,0.464,4,2.48,4,4.899s-1.718,4.436-4,4.899v2.021c3.391-0.486,6-3.395,6-6.92S27.391,16.566,24,16.08 z"/>
+<path d="M18.581,17.581C17.007,18.862,16,20.812,16,23c0,3.525,2.609,6.434,6,6.92v-2.021c-2.282-0.464-4-2.48-4-4.899 c0-1.637,0.797-3.075,2.013-3.987L22,21v-2.899V16.08V16h-5L18.581,17.581z"/>
+<path d="M14,23c0-1.897,0.613-3.676,1.649-5.146c-0.684-0.348-1.251-0.944-1.251-1.945V15.48c0-0.188,0.093-0.365,0.245-0.479 C16.652,13.566,18,10.619,18,7.66C18,3.434,15.309,0,12,0S6,3.434,6,7.66c0,2.959,1.348,5.906,3.352,7.342 c0.157,0.113,0.245,0.291,0.245,0.479v0.428c0,1.695-1.636,2.33-2.999,2.359C0.673,18.85,0.024,25.664,0,26h14.528 C14.189,25.056,14,24.046,14,23z"/>
+<polygon points="24,25 29,30 24,30 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_usb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_usb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect height="2" width="3" x="10" y="6"/>
<rect height="2" width="3" x="17" y="6"/>
-<path d="M24,9v-6c0-1.104-0.896-2-2-2h-14c-1.104,0-2,0.896-2,2v6c-1.104,0-2,0.896-2,2v7c0,6.075,4.925,11,11,11s11-4.925,11-11v-7c0-1.104-0.9-2-2-2zm-3,9h-1v1.5c0,1.379-1.121,2.5-2.5,2.5h-1.5v3h1v2h-4v-2h1v-2h-1.5c-1.379,0-2.5-1.121-2.5-2.5v-0.5h-1v-2h3v2h-1v0.5c0,0.827,0.673,1.5,1.5,1.5h1.5v-7h-2l3-4,3,4h-2v6h1.5c0.827,0,1.5-0.673,1.5-1.5v-1.5h-1v-2h3v2zm1-8h-14v-7h14v7z"/>
+<path d="M24,9V3c0-1.104-0.896-2-2-2H8C6.896,1,6,1.896,6,3v6c-1.104,0-2,0.896-2,2v7c0,6.075,4.925,11,11,11s11-4.925,11-11v-7 C26,9.896,25.104,9,24,9z M21,18h-1v1.5c0,1.379-1.121,2.5-2.5,2.5H16v3h1v2h-4v-2h1v-2h-1.5c-1.379,0-2.5-1.121-2.5-2.5V20H9v-2h1 h1h1v2h-1v0.5c0,0.827,0.673,1.5,1.5,1.5H14v-7h-2l3-4l3,4h-2v6h1.5c0.827,0,1.5-0.673,1.5-1.5V18h-1v-2h3V18z M22,10H8V3h14V10z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_user_defined.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_user_defined.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-7.44,16.2h-2.26v-6.442l-1.6,3.052h-1.028l-1.606-3.055v6.44h-2.267v-10.59h1.894l2.497,4.754,2.497-4.754h1.873v10.59z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M19.565,20.2h-2.26 v-6.442l-1.6,3.052h-1.028l-1.606-3.055V20.2h-2.267V9.607h1.894l2.497,4.754l2.497-4.754h1.873V20.2z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="21.14,15.89,22.8,15.89,21.98,12.58"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-17.66,15.2h-2.117l-2.427-9.137h2.1l1.538,6.398,1.581-6.398h1.855l-2.538,9.14zm8.868,0h-1.256l-0.17-0.552c-0.151,0.156-0.333,0.288-0.542,0.393-0.336,0.168-0.697,0.253-1.074,0.253-1.041,0-1.839-0.385-2.373-1.143-0.525-0.747-0.781-1.933-0.781-3.628,0-1.455,0.326-2.588,0.969-3.365,0.652-0.788,1.622-1.188,2.882-1.188,0.633,0,1.236,0.079,1.794,0.236l0.146,0.04v1.417l-0.258-0.077c-0.463-0.139-0.99-0.208-1.565-0.208-0.614,0-1.067,0.253-1.385,0.774-0.333,0.545-0.501,1.331-0.501,2.336,0,1.341,0.123,2.266,0.365,2.749,0.223,0.444,0.533,0.66,0.946,0.66,0.252,0,0.445-0.085,0.591-0.259,0.153-0.186,0.229-0.43,0.229-0.748v-1.435h-1.154v-1.385h3.137v5.12zm5.43,0l-0.504-1.922h-2.335l-0.51,1.92h-1.884l2.635-9.137h2.201l2.524,9.137h-2.117z"/>
+<polygon points="21.136,15.894 22.797,15.894 21.978,12.576 "/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M9.342,19.2H7.225 l-2.427-9.137h2.1l1.538,6.398l1.581-6.398h1.855L9.342,19.2z M18.208,19.2h-1.256l-0.17-0.552 c-0.151,0.156-0.333,0.288-0.542,0.393c-0.336,0.168-0.697,0.253-1.074,0.253c-1.041,0-1.839-0.385-2.373-1.143 c-0.525-0.747-0.781-1.933-0.781-3.628c0-1.455,0.326-2.588,0.969-3.365c0.652-0.788,1.622-1.188,2.882-1.188 c0.633,0,1.236,0.079,1.794,0.236l0.146,0.04v1.417l-0.258-0.077c-0.463-0.139-0.99-0.208-1.565-0.208 c-0.614,0-1.067,0.253-1.385,0.774c-0.333,0.545-0.501,1.331-0.501,2.336c0,1.341,0.123,2.266,0.365,2.749 c0.223,0.444,0.533,0.66,0.946,0.66c0.252,0,0.445-0.085,0.591-0.259c0.153-0.186,0.229-0.43,0.229-0.748v-1.435h-1.154v-1.385 h3.137V19.2z M23.643,19.2l-0.504-1.922h-2.335L20.288,19.2h-1.884l2.635-9.137h2.201l2.524,9.137H23.643z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga_wide.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vga_wide.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="19.73,9.388,19.17,11.62,20.28,11.62"/>
-<path d="M18.54,17.4h-0.331v4.649h0.349c0.388,0,0.675-0.15,0.877-0.461,0.216-0.332,0.325-0.979,0.325-1.923,0-0.834-0.108-1.436-0.322-1.785-0.2-0.33-0.49-0.48-0.9-0.48z"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-8.01,3.248h1.727l1.92,6.952h-1.696l-0.378-1.441h-1.674l-0.39,1.44h-1.519l2.01-6.952zm-3.84-0.07c0.479,0,0.936,0.061,1.359,0.179l0.146,0.04v1.168l-0.258-0.076c-0.343-0.104-0.733-0.154-1.16-0.154-0.441,0-0.768,0.182-0.996,0.557-0.244,0.399-0.368,0.98-0.368,1.726,0,0.998,0.09,1.685,0.269,2.039,0.16,0.319,0.371,0.468,0.665,0.468,0.176,0,0.305-0.056,0.405-0.176,0.105-0.129,0.159-0.307,0.159-0.529v-1.025h-0.866v-1.139h2.453v3.94h-1.029l-0.114-0.37c-0.104,0.096-0.225,0.178-0.359,0.245-0.261,0.13-0.539,0.195-0.828,0.195-0.798,0-1.411-0.296-1.82-0.878-0.4-0.568-0.595-1.468-0.595-2.75,0-1.104,0.248-1.963,0.737-2.555,0.5-0.611,1.25-0.917,2.21-0.917zm-6.688,0.07l1.116,4.638,1.146-4.638h1.495l-1.92,6.948h-1.67l-1.846-6.952h1.678zm7.578,10.15h-0.54v4.64h0.54v1.16h-2.694v-1.156h0.541v-4.64h-0.541v-0.936l-1.61,6.74h-1.632l-0.99-4.34-1.095,4.34h-1.674l-1.497-6.952h1.688l0.815,4.398,1.076-4.398h1.597l0.99,4.398,0.901-4.398h4.117v1.154zm4.66,4.93c-0.48,0.578-1.21,0.872-2.167,0.872h-1.933v-6.952h2.063c0.914,0,1.61,0.279,2.069,0.832,0.451,0.541,0.68,1.392,0.68,2.527,0,1.25-0.23,2.14-0.71,2.72zm5.18,0.87h-3.81v-6.952h3.767v1.156h-2.158v1.471h1.745v1.166h-1.745v2.003h2.197v1.15z"/>
+<polygon points="19.732,9.388 19.166,11.62 20.284,11.62 "/>
+<path d="M18.539,17.395h-0.331v4.649h0.349c0.388,0,0.675-0.15,0.877-0.461c0.216-0.332,0.325-0.979,0.325-1.923 c0-0.834-0.108-1.436-0.322-1.785C19.239,17.552,18.946,17.395,18.539,17.395z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M18.992,7.248h1.727 L22.64,14.2h-1.696l-0.378-1.441h-1.674L18.505,14.2h-1.519L18.992,7.248z M15.147,7.178c0.479,0,0.936,0.061,1.359,0.179 l0.146,0.04v1.168l-0.258-0.076c-0.343-0.104-0.733-0.154-1.16-0.154c-0.441,0-0.768,0.182-0.996,0.557 c-0.244,0.399-0.368,0.98-0.368,1.726c0,0.998,0.09,1.685,0.269,2.039c0.16,0.319,0.371,0.468,0.665,0.468 c0.176,0,0.305-0.056,0.405-0.176c0.105-0.129,0.159-0.307,0.159-0.529v-1.025h-0.866v-1.139h2.453V14.2h-1.029l-0.114-0.37 c-0.104,0.096-0.225,0.178-0.359,0.245c-0.261,0.13-0.539,0.195-0.828,0.195c-0.798,0-1.411-0.296-1.82-0.878 c-0.4-0.568-0.595-1.468-0.595-2.75c0-1.104,0.248-1.963,0.737-2.555C13.445,7.484,14.186,7.178,15.147,7.178z M8.462,7.248 l1.116,4.638l1.146-4.638h1.495L10.295,14.2H8.63L6.784,7.248H8.462z M16.037,17.404h-0.54v4.64h0.54V23.2h-2.694v-1.156h0.541 v-4.64h-0.541v-0.936L11.736,23.2h-1.632L9.12,18.861L8.025,23.2H6.351l-1.497-6.952h1.688l0.815,4.398l1.076-4.398h1.597 l0.99,4.398l0.901-4.398h1.422h0.053h2.642V17.404z M20.698,22.328c-0.48,0.578-1.21,0.872-2.167,0.872h-1.933v-6.952h2.063 c0.914,0,1.61,0.279,2.069,0.832c0.451,0.541,0.68,1.392,0.68,2.527C21.411,20.864,21.178,21.754,20.698,22.328z M25.876,23.2H22.07 v-6.952h3.767v1.156h-2.158v1.471h1.745v1.166h-1.745v2.003h2.197V23.2z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28,6v-1c0-1.104-0.896-2-2-2h-22c-1.104,0-2,0.896-2,2v1h2v2h-2v1c0,1.104,0.896,2,2,2h2v8h-2c-1.104,0-2,0.896-2,2v1h2v2h-2v1c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-1h-2v-2h2v-1c0-1.104-0.896-2-2-2h-2v-8h2c1.104,0,2-0.896,2-2v-1h-2v-2h2zm-12,0h3v2h-3v-2zm-5,0h3v2h-3v-2zm-5,0h3v2h-3v-2zm3,18h-3v-2h3v2zm0-13h12v8h-12v-8zm5,13h-3v-2h3v2zm5,0h-3v-2h3v2zm5,0h-3v-2h3v2zm0-16h-3v-2h3v2z"/>
+<path d="M28,6V5c0-1.104-0.896-2-2-2H4C2.896,3,2,3.896,2,5v1h2v2H2v1c0,1.104,0.896,2,2,2h1h1v8H5H4c-1.104,0-2,0.896-2,2v1h2v2H2 v1c0,1.104,0.896,2,2,2h22c1.104,0,2-0.896,2-2v-1h-2v-2h2v-1c0-1.104-0.896-2-2-2h-2v-8h2c1.104,0,2-0.896,2-2V8h-2V6H28z M16,6h3 v2h-3V6z M11,6h3v2h-3V6z M6,6h3v2H6V6z M9,24H6v-2h3V24z M9,11h12v8H9V11z M14,24h-3v-2h3V24z M19,24h-3v-2h3V24z M24,24h-3v-2h3 V24z M24,8h-3V6h3V8z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30" y="0.001"/>
</g>
-<path d="M10.79,10.17c1.569-1.568,4.066-3.209,5.188-3.791v0.004c0.002,0,0.005-0.006,0.006-0.008l1.278,2.143c0.183,0.313,0.589,0.408,0.952,0.256l7.36-4.248c0.384-0.221,0.532-0.68,0.333-1.023,0,0-0.202-0.305-0.818-1.061,0.002,0,0.004,0.002,0.005,0.004-0.001-0.002-0.001-0.004-0.003-0.008-0.311-0.383-0.349-0.396-0.75-0.764-1.205-1.104-2.531-1.537-2.531-1.537-0.513-0.182-2.24-0.281-4.416,0.375s-7.119,3.822-10.3,7.004c-3.18,3.184-5.9,7.49-6.42,8.855-0.814,2.148-0.74,4.516-0.563,5.205,0,0,0.169,0.512,0.56,1.211,0.005,0.006,0.01,0.016,0.015,0.023,0.038,0.068,0.076,0.137,0.119,0.207,0.001,0.002,0.004,0.002,0.004,0.002,0.211,0.35,0.465,0.73,0.784,1.115,0.374,0.449,0.392,0.578,0.785,0.924h0.003c0.723,0.637,1.021,0.83,1.021,0.83,0.345,0.225,0.827,0.104,1.08-0.268l4.794-7.041c0.254-0.373,0.186-0.857-0.158-1.078l-2.725-1.744c-0.01,0-0.019,0-0.027-0.002,0.002-0.002,0.008-0.01,0.008-0.01,1.264-2.19,2.782-3.95,4.41-5.58z"/>
-<path d="M22,13c2.757,0,5,2.242,5,5,0,2.756-2.243,5-5,5s-5-2.244-5-5c0-2.76,2.24-5,5-5m0-3c-4.419,0-8,3.58-8,8,0,4.418,3.581,8,8,8s8-3.582,8-8c0-4.42-3.58-8-8-8z"/>
-<circle cx="22" cy="18" r="3"/>
-<rect height="4" width="4" x="20" y="23"/>
-<path d="M29,30v-1c0-1.1-0.9-2-2-2h-10c-1.1,0-2,0.9-2,2v1h14z"/>
-</svg>
\ No newline at end of file
+<path d="M10.794,10.169c1.569-1.568,4.066-3.209,5.188-3.791v0.004c0.002,0,0.005-0.006,0.006-0.008l1.278,2.143 c0.183,0.313,0.589,0.408,0.952,0.256l7.36-4.248c0.384-0.221,0.532-0.68,0.333-1.023c0,0-0.202-0.305-0.818-1.061 c0.002,0,0.004,0.002,0.005,0.004c-0.001-0.002-0.001-0.004-0.003-0.008c-0.311-0.383-0.349-0.396-0.75-0.764 c-1.205-1.104-2.531-1.537-2.531-1.537c-0.513-0.182-2.24-0.281-4.416,0.375s-7.119,3.822-10.3,7.004 c-3.18,3.184-5.9,7.49-6.42,8.855c-0.814,2.148-0.74,4.516-0.563,5.205c0,0,0.169,0.512,0.56,1.211 c0.005,0.006,0.01,0.016,0.015,0.023c0.038,0.068,0.076,0.137,0.119,0.207c0.001,0.002,0.004,0.002,0.004,0.002 c0.211,0.35,0.465,0.73,0.784,1.115c0.374,0.449,0.392,0.578,0.785,0.924c0.001,0,0.002,0,0.003,0 c0.723,0.637,1.021,0.83,1.021,0.83c0.345,0.225,0.827,0.104,1.08-0.268l4.794-7.041c0.254-0.373,0.186-0.857-0.158-1.078 l-2.725-1.744c-0.01,0-0.019,0-0.027-0.002c0.002-0.002,0.008-0.01,0.008-0.01C7.644,13.562,9.162,11.804,10.794,10.169z"/>
+<path d="M22,13.001c2.757,0,5,2.242,5,5c0,2.756-2.243,5-5,5s-5-2.244-5-5C17,15.243,19.243,13.001,22,13.001 M22,10.001 c-4.419,0-8,3.58-8,8c0,4.418,3.581,8,8,8s8-3.582,8-8C30,13.581,26.419,10.001,22,10.001L22,10.001z"/>
+<g>
+<circle cx="22" cy="18.001" r="3"/>
+</g>
+<rect height="4" width="4" x="20" y="23.001"/>
+<path d="M29,30.001v-1c0-1.1-0.9-2-2-2H17c-1.1,0-2,0.9-2,2v1H29z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_collection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_collection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M27,1h-19c-1.104,0-2,0.896-2,2v1h20v20h1c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2z"/>
+<path d="M27,1H8C6.896,1,6,1.896,6,3v1h20v17v3h1c1.104,0,2-0.896,2-2V3C29,1.896,28.104,1,27,1z"/>
<rect height="5" width="7" x="9" y="15"/>
<rect height="2" width="2" x="7" y="22"/>
<rect height="2" width="2" x="10" y="22"/>
@@ -10,9 +10,9 @@
<rect height="2" width="2" x="10" y="11"/>
<rect height="2" width="2" x="16" y="11"/>
<rect height="2" width="2" x="13" y="22"/>
-<path d="M22,6h-19c-1.104,0-2,0.896-2,2v19c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2v-19c0-1.104-0.9-2-2-2zm-2,7c0.553,0,1,0.447,1,1s-0.447,1-1,1h-2v5h2c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.447,1,1s-0.447,1-1,1h-15c-0.553,0-1-0.447-1-1s0.447-1,1-1h1v-2h-1c-0.553,0-1-0.447-1-1s0.447-1,1-1h2v-5h-2c-0.553,0-1-0.447-1-1s0.447-1,1-1h1v-2h-1c-0.553,0-1-0.447-1-1s0.447-1,1-1h15c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1z"/>
+<path d="M22,6H3C1.896,6,1,6.896,1,8v19c0,1.104,0.896,2,2,2h19c1.104,0,2-0.896,2-2V8C24,6.896,23.104,6,22,6z M20,13 c0.553,0,1,0.447,1,1s-0.447,1-1,1h-2v5h2c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2h1c0.553,0,1,0.447,1,1s-0.447,1-1,1H5 c-0.553,0-1-0.447-1-1s0.447-1,1-1h1v-2H5c-0.553,0-1-0.447-1-1s0.447-1,1-1h2v-5H5c-0.553,0-1-0.447-1-1s0.447-1,1-1h1v-2H5 c-0.553,0-1-0.447-1-1s0.447-1,1-1h15c0.553,0,1,0.447,1,1s-0.447,1-1,1h-1v2H20z"/>
<rect height="2" width="2" x="16" y="22"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_services.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_video_services.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M14,23v1h-3v-2h3v1c0-1.439,0.346-2.794,0.946-4h-5.95v-8h12v3.23c0.645-0.146,1.312-0.23,2-0.23,0.338,0,0.672,0.022,1,0.059v-3.06h2c1.104,0,2-0.896,2-2v-1h-2v-2h2v-1c0-1.104-0.896-2-2-2h-22c-1.104,0-2,0.896-2,2v1h2v2h-2v1c0,1.104,0.896,2,2,2h2v8h-2c-1.104,0-2,0.896-2,2v1h2v2h-2v1c0,1.104,0.896,2,2,2h10.95c-0.6-1.21-0.95-2.56-0.95-4zm7-17h3v2h-3v-2zm-5,0h3v2h-3v-2zm-5,0h3v2h-3v-2zm-5,0h3v2h-3v-2zm3,18h-3v-2h3v2z"/>
-<polygon points="25.06,19.56,22.31,18.88,20.29,19.64,24.38,20.94"/>
-<path d="M29.96,22.28c-0.36-3.52-3.34-6.28-6.96-6.28s-6.605,2.755-6.964,6.284c-0.03,0.24-0.04,0.48-0.04,0.72s0.012,0.48,0.036,0.716c0.36,3.53,3.34,6.28,6.96,6.28s6.605-2.754,6.964-6.284c0.03-0.24,0.04-0.48,0.04-0.72s-0.01-0.48-0.04-0.72zm-3.74,4.52l-0.22-0.2,0.116-1.6,1.273,0.344c-0.3,0.56-0.69,1.05-1.17,1.46zm-7.48-6.38c0.285-0.265,1.355-1,1.355-1l-0.162-0.232c-0.016-0.035-0.01-0.071,0.004-0.108,0.203-0.158,0.416-0.298,0.643-0.425,0.236,0.12,0.395-0.021,0.395-0.021l0.071-0.182-0.012-0.044c0.6-0.27,1.26-0.42,1.96-0.42,0.496,0,0.967,0.095,1.42,0.23l0.643,0.645,0.27-0.271c0.953,0.509,1.723,1.304,2.184,2.284l-0.48-0.088-0.789-0.305,0.449,0.607,0.322-0.143s0.395,0.377,0.377,0.502-0.609,0.699-0.609,0.699l-0.519,0.186-0.684-0.563-0.521-0.43,0.323,0.771,0.431,0.447s0.754-0.107,0.86-0.018c0.108,0.09-0.143,0.771-0.143,0.771l-1.256,1.291-0.126,1.291c-0.699,0.359-0.771,0.912-0.771,0.912s-0.178-0.033-0.645,0.488c-0.467,0.518-0.969,0.383-0.969,0.383-0.592,0-0.699-0.383-0.699-0.51,0-0.125-0.592-1.094-0.592-1.418,0-0.322,0.18-0.717,0.18-0.717,0.035-0.467-0.467-1.721-0.467-1.721h-0.52l-0.18-0.395c-1.686,0.359-1.758-0.072-2.009-0.539-0.195-0.363-0.065-1.197,0.079-1.645,0.08-0.12,0.14-0.24,0.2-0.34zm0.33,3.6l0.93,0.94-1.152,0.822c-0.355-0.529-0.613-1.129-0.746-1.774l0.97,0.01z"/>
+<path d="M14,23v1h-3v-2h3V23c0-1.439,0.346-2.794,0.946-4H9v-8h12v3.23c0.645-0.146,1.312-0.23,2-0.23c0.338,0,0.672,0.022,1,0.059 V11h2c1.104,0,2-0.896,2-2V8h-2V6h2V5c0-1.104-0.896-2-2-2H4C2.896,3,2,3.896,2,5v1h2v2H2v1c0,1.104,0.896,2,2,2h1h1v8H5H4 c-1.104,0-2,0.896-2,2v1h2v2H2v1c0,1.104,0.896,2,2,2h10.946C14.346,25.794,14,24.439,14,23z M21,6h3v2h-3V6z M16,6h3v2h-3V6z M11,6 h3v2h-3V6z M6,6h3v2H6V6z M9,24H6v-2h3V24z"/>
+<polygon points="25.063,19.561 22.313,18.875 20.293,19.635 24.375,20.938 "/>
+<path d="M29.964,22.284C29.605,18.755,26.625,16,23,16s-6.605,2.755-6.964,6.284C16.012,22.52,16,22.758,16,23 s0.012,0.48,0.036,0.716C16.395,27.246,19.375,30,23,30s6.605-2.754,6.964-6.284C29.988,23.48,30,23.242,30,23 S29.988,22.52,29.964,22.284z M26.217,26.796L26,26.6l0.116-1.6l1.273,0.344C27.091,25.9,26.695,26.39,26.217,26.796z M18.74,20.418 c0.285-0.265,1.355-1,1.355-1l-0.162-0.232c-0.016-0.035-0.01-0.071,0.004-0.108c0.203-0.158,0.416-0.298,0.643-0.425 c0.236,0.12,0.395-0.021,0.395-0.021l0.071-0.182l-0.012-0.044C21.639,18.146,22.303,18,23,18c0.496,0,0.967,0.095,1.42,0.23 l0.643,0.645l0.27-0.271c0.953,0.509,1.723,1.304,2.184,2.284l-0.48-0.088l-0.789-0.305l0.449,0.607l0.322-0.143 c0,0,0.395,0.377,0.377,0.502s-0.609,0.699-0.609,0.699l-0.519,0.186l-0.684-0.563l-0.521-0.43l0.323,0.771l0.431,0.447 c0,0,0.754-0.107,0.86-0.018c0.108,0.09-0.143,0.771-0.143,0.771l-1.256,1.291l-0.126,1.291c-0.699,0.359-0.771,0.912-0.771,0.912 s-0.178-0.033-0.645,0.488c-0.467,0.518-0.969,0.383-0.969,0.383c-0.592,0-0.699-0.383-0.699-0.51c0-0.125-0.592-1.094-0.592-1.418 c0-0.322,0.18-0.717,0.18-0.717c0.035-0.467-0.467-1.721-0.467-1.721h-0.52l-0.18-0.395c-1.686,0.359-1.758-0.072-2.009-0.539 c-0.195-0.363-0.065-1.197,0.079-1.645C18.617,20.637,18.676,20.525,18.74,20.418z M19.066,24.025L20,24.959l-1.152,0.822 c-0.355-0.529-0.613-1.129-0.746-1.774L19.066,24.025z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_virtual_input.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_virtual_input.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28,5h-26c-1.104,0-2,0.896-2,2v16c0,1.104,0.896,2,2,2h26c1.104,0,2-0.896,2-2v-16c0-1.104-0.9-2-2-2zm-10,3h3v3h-3v-3zm-5,0h3v3h-3v-3zm0,5h3v3h-3v-3.001zm-5-5h3v3h-3v-3zm0,5h3v3h-3v-3.001zm-2,8h-3v-3h3v3zm0-5h-3v-3h3v2.999zm0-5h-3v-3h3v3zm15,10h-13v-3h13v3zm5,0h-3v-3h3v3zm0-5h-8v-3h5v-5h3v7.999z"/>
+<path d="M28,5H2C0.896,5,0,5.896,0,7v16c0,1.104,0.896,2,2,2h26c1.104,0,2-0.896,2-2V7C30,5.896,29.104,5,28,5z M18,8h3v3h-3V8z M13,8h3v3h-3V8z M13,12.999h3v3h-3V12.999z M8,8h3v3H8V8z M8,12.999h3v3H8V12.999z M6,21H3v-3h3V21z M6,15.999H3v-3h3V15.999z M6,11H3V8h3V11z M21,21H8v-3h13V21z M26,21h-3v-3h3V21z M26,15.999h-8v-3h5V8h3V15.999z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_voice_mailbox.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_voice_mailbox.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<path d="M23.5,8.5c-3.59,0-6.5,2.91-6.5,6.5,0,1.748,0.693,3.332,1.816,4.5h-7.633c1.12-1.17,1.81-2.75,1.81-4.5,0-3.59-2.91-6.5-6.5-6.5s-6.5,2.91-6.5,6.5,2.91,6.5,6.5,6.5h17c3.59,0,6.5-2.91,6.5-6.5s-2.91-6.5-6.5-6.5zm-20.5,6.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5-1.57,3.5-3.5,3.5-3.5-1.57-3.5-3.5zm20.5,3.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5,3.5,1.57,3.5,3.5-1.57,3.5-3.5,3.5z"/>
-</svg>
\ No newline at end of file
+<path d="M23.5,8.5c-3.59,0-6.5,2.91-6.5,6.5c0,1.748,0.693,3.332,1.816,4.5h-7.633C12.306,18.332,13,16.748,13,15 c0-3.59-2.91-6.5-6.5-6.5S0,11.41,0,15s2.91,6.5,6.5,6.5h17c3.59,0,6.5-2.91,6.5-6.5S27.09,8.5,23.5,8.5z M3,15 c0-1.93,1.57-3.5,3.5-3.5S10,13.07,10,15s-1.57,3.5-3.5,3.5S3,16.93,3,15z M23.5,18.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5 S27,13.07,27,15S25.43,18.5,23.5,18.5z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_down.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_down.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M8,9h-5c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5v-12z"/>
-<path d="M14,23c0-4.274,2.998-7.855,7-8.769v-10.23c0-0.354-0.188-0.682-0.492-0.861-0.16-0.093-0.33-0.139-0.51-0.139-0.167,0-0.334,0.042-0.486,0.126l-9,5c-0.31,0.177-0.51,0.511-0.51,0.874v12c0,0.363,0.197,0.697,0.514,0.874l3.529,1.96c-0.02-0.27-0.04-0.55-0.04-0.83z"/>
-<path d="M23.94,14.05c0.711,0.074,1.395,0.239,2.047,0.47-0.084-2.138-0.713-4.362-1.731-6.038-0.286-0.471-0.901-0.621-1.374-0.335-0.472,0.287-0.622,0.901-0.335,1.374,0.75,1.259,1.23,2.899,1.38,4.529z"/>
-<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.13-7-7-7zm-5,8v-2h10v2h-10z"/>
+<path d="M8,9H3c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5V9z"/>
+<path d="M14,23c0-4.274,2.998-7.855,7-8.769V4c0-0.354-0.188-0.682-0.492-0.861C20.351,3.046,20.176,3,20,3 c-0.167,0-0.334,0.042-0.486,0.126l-9,5C10.197,8.303,10,8.637,10,9v12c0,0.363,0.197,0.697,0.514,0.874l3.529,1.96 C14.017,23.56,14,23.281,14,23z"/>
+<path d="M23.936,14.049c0.711,0.074,1.395,0.239,2.047,0.47c-0.084-2.138-0.713-4.362-1.731-6.038 c-0.286-0.471-0.901-0.621-1.374-0.335c-0.472,0.287-0.622,0.901-0.335,1.374C23.307,10.777,23.791,12.416,23.936,14.049z"/>
+<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7s7-3.134,7-7S26.866,16,23,16z M18,24v-2h10v2H18z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_up.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_vol_up.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M8,9h-5c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5v-12z"/>
-<path d="M14,23c0-4.274,2.998-7.855,7-8.769v-10.23c0-0.354-0.188-0.682-0.492-0.861-0.16-0.093-0.33-0.139-0.51-0.139-0.167,0-0.334,0.042-0.486,0.126l-9,5c-0.31,0.177-0.51,0.511-0.51,0.874v12c0,0.363,0.197,0.697,0.514,0.874l3.528,1.96c-0.02-0.27-0.04-0.55-0.04-0.83z"/>
-<path d="M23.94,14.05c0.711,0.074,1.395,0.239,2.047,0.47-0.084-2.138-0.713-4.362-1.731-6.038-0.286-0.471-0.901-0.621-1.374-0.335-0.472,0.287-0.622,0.901-0.335,1.374,0.75,1.259,1.23,2.899,1.38,4.529z"/>
-<path d="M28,15c0,0.172-0.012,0.34-0.019,0.511,0.696,0.465,1.323,1.026,1.864,1.661,0.11-0.71,0.16-1.44,0.16-2.17,0-3.035-0.866-5.909-2.575-8.544-0.301-0.464-0.921-0.597-1.383-0.295-0.464,0.3-0.596,0.919-0.295,1.383,1.5,2.306,2.26,4.816,2.26,7.456z"/>
-<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.13-7-7-7zm1,8v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4z"/>
+<path d="M8,9H3c-1.104,0-2,0.896-2,2v8c0,1.104,0.896,2,2,2h5V9z"/>
+<path d="M14,23c0-4.274,2.998-7.855,7-8.769V4c0-0.354-0.188-0.682-0.492-0.861C20.351,3.046,20.176,3,20,3 c-0.167,0-0.334,0.042-0.486,0.126l-9,5C10.197,8.303,10,8.637,10,9v12c0,0.363,0.197,0.697,0.514,0.874l3.528,1.96 C14.017,23.559,14,23.281,14,23z"/>
+<path d="M23.936,14.049c0.711,0.074,1.395,0.239,2.047,0.47c-0.084-2.138-0.713-4.362-1.731-6.038 c-0.286-0.471-0.901-0.621-1.374-0.335c-0.472,0.287-0.622,0.901-0.335,1.374C23.307,10.777,23.791,12.416,23.936,14.049z"/>
+<path d="M28,15c0,0.172-0.012,0.34-0.019,0.511c0.696,0.465,1.323,1.026,1.864,1.661C29.947,16.458,30,15.734,30,15 c0-3.035-0.866-5.909-2.575-8.544c-0.301-0.464-0.921-0.597-1.383-0.295c-0.464,0.3-0.596,0.919-0.295,1.383 C27.242,9.85,28,12.357,28,15z"/>
+<path d="M23,16c-3.866,0-7,3.134-7,7s3.134,7,7,7s7-3.134,7-7S26.866,16,23,16z M24,24v4h-2v-4h-4v-2h4v-4h2v4h4v2H24z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.03,14.48c1.288-0.898,2.01-2.207,2.01-3.754,0-2.27-1.652-4.561-5.34-4.561-2.02,0-3.773,0.743-4.667,1.379l-0.432,0.311,1.104,2.94,0.731-0.526c0.612-0.435,1.722-0.942,2.843-0.942,1.385,0,2.148,0.624,2.148,1.752,0,1.505-1.748,2.052-2.924,2.052h-1.916v3.033h1.917c0.58,0,3.472,0.121,3.499,2.559,0.01,0.627-0.218,1.229-0.629,1.65-0.52,0.525-1.304,0.791-2.344,0.791-1.371,0-2.687-0.563-3.239-0.898l-0.725-0.434-1.067,2.979,0.455,0.303c0.856,0.558,2.566,1.207,4.598,1.207,4.543,0,6.611-2.881,6.611-5.555,0-1.86-1.02-3.44-2.63-4.28z"/>
-<path d="M22.08,13.83v3.132h3.396v3.833c-0.385,0.114-1.056,0.244-2.204,0.244-3.634,0-5.795-2.279-5.795-6.094,0-3.742,2.323-6.067,6.065-6.067,1.386,0,2.475,0.208,3.422,0.656l0.721,0.341,0.963-3.104-0.535-0.258c-0.801-0.389-2.47-0.844-4.517-0.844-2.907,0-5.382,0.922-7.152,2.66-1.712,1.678-2.647,4.063-2.647,6.717,0,2.727,0.931,5.191,2.556,6.762,1.705,1.625,3.914,2.414,6.769,2.414,2.713,0,4.846-0.741,5.441-0.969l0.45-0.16v-9.25h-6.921z"/>
+<path d="M10.031,14.484c1.288-0.898,2.01-2.207,2.01-3.754c0-2.27-1.652-4.561-5.34-4.561c-2.02,0-3.773,0.743-4.667,1.379 L1.601,7.859l1.104,2.94l0.731-0.526c0.612-0.435,1.722-0.942,2.843-0.942c1.385,0,2.148,0.624,2.148,1.752 c0,1.505-1.748,2.052-2.924,2.052H3.587v3.033h1.917c0.58,0,3.472,0.121,3.499,2.559c0.01,0.627-0.218,1.229-0.629,1.65 c-0.52,0.525-1.304,0.791-2.344,0.791c-1.371,0-2.687-0.563-3.239-0.898l-0.725-0.434l-1.067,2.979l0.455,0.303 c0.856,0.558,2.566,1.207,4.598,1.207c4.543,0,6.611-2.881,6.611-5.555C12.663,16.895,11.645,15.322,10.031,14.484z"/>
+<path d="M22.079,13.834v3.132h3.396v3.833c-0.385,0.114-1.056,0.244-2.204,0.244c-3.634,0-5.795-2.279-5.795-6.094 c0-3.742,2.323-6.067,6.065-6.067c1.386,0,2.475,0.208,3.422,0.656l0.721,0.341l0.963-3.104l-0.535-0.258 c-0.801-0.389-2.47-0.844-4.517-0.844c-2.907,0-5.382,0.922-7.152,2.66c-1.712,1.678-2.647,4.063-2.647,6.717 c0,2.727,0.931,5.191,2.556,6.762c1.705,1.625,3.914,2.414,6.769,2.414c2.713,0,4.846-0.741,5.441-0.969L29,23.084v-9.25H22.079z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="9.648,24.74,9.653,24.74,8.139,22.3,5.279,22.3,9.48,29.03,11.52,27.75,10.82,26.61"/>
-<polygon points="10.49,22.3,12.01,24.74,16.13,24.74,14.62,22.3"/>
-<polygon points="16.97,22.3,18.49,24.74,22.63,24.74,21.12,22.3"/>
-<polygon points="23.47,22.3,24.72,24.32,24.72,22.3"/>
-<polygon points="20.3,17.28,21.81,19.72,24.72,19.72,20.52,12.99,18.45,14.28,20.32,17.28"/>
-<polygon points="19.46,19.72,17.95,17.28,13.86,17.29,15.38,19.72"/>
-<polygon points="13.02,19.72,11.51,17.29,7.378,17.29,8.893,19.72"/>
-<polygon points="5.279,17.69,5.279,19.72,6.54,19.72"/>
-<path d="M11.95,5.938c0.667-0.515,1.049-1.233,1.049-2.079,0-0.721-0.281-1.381-0.789-1.862-0.56-0.528-1.357-0.806-2.313-0.806-1.163,0-2.172,0.43-2.685,0.793l-0.309,0.221,0.697,1.863,0.526-0.377c0.333-0.234,0.93-0.506,1.531-0.506,0.501,0,1.095,0.15,1.095,0.871,0,0.852-1.106,1.039-1.532,1.039h-1.18v1.92h1.187c0.305,0,1.838,0.064,1.852,1.326,0.002,0.154-0.025,0.539-0.323,0.842-0.271,0.27-0.686,0.41-1.235,0.41-0.744,0-1.456-0.309-1.756-0.487l-0.529-0.315-0.674,1.883,0.33,0.215c0.486,0.322,1.475,0.699,2.635,0.699,2.619,0,3.813-1.674,3.813-3.227,0-1.031-0.53-1.913-1.39-2.415z"/>
-<path d="M19.34,5.539v1.979h1.9v1.939c-0.251,0.066-0.59,0.125-1.121,0.125-1.964,0-3.137-1.236-3.137-3.305,0-1.014,0.307-1.854,0.888-2.426,0.573-0.564,1.404-0.863,2.401-0.863,0.76,0,1.354,0.113,1.874,0.355l0.518,0.246,0.604-1.949-0.391-0.188c-0.456-0.225-1.411-0.483-2.577-0.483-3.352,0-5.603,2.157-5.603,5.363,0,1.56,0.536,2.97,1.468,3.868,0.976,0.931,2.239,1.387,3.868,1.387,1.538,0,2.753-0.422,3.087-0.551l0.318-0.125v-5.381h-4.104z"/>
+<polygon points="9.648,24.737 9.653,24.737 8.139,22.303 5.279,22.303 9.48,29.029 11.525,27.748 10.818,26.609 "/>
+<polygon points="10.491,22.301 12.008,24.737 16.132,24.737 14.617,22.301 "/>
+<polygon points="16.97,22.301 18.488,24.737 22.631,24.737 21.117,22.301 "/>
+<polygon points="23.469,22.301 24.721,24.32 24.721,22.301 "/>
+<polygon points="20.303,17.284 21.814,19.719 24.721,19.719 20.52,12.992 18.453,14.283 20.325,17.284 "/>
+<polygon points="19.462,19.719 17.95,17.284 13.861,17.287 15.376,19.719 "/>
+<polygon points="13.023,19.719 11.514,17.287 7.378,17.287 8.893,19.721 "/>
+<polygon points="5.279,17.688 5.279,19.721 6.54,19.721 "/>
+<path d="M11.949,5.938c0.667-0.515,1.049-1.233,1.049-2.079c0-0.721-0.281-1.381-0.789-1.862c-0.56-0.528-1.357-0.806-2.313-0.806 c-1.163,0-2.172,0.43-2.685,0.793L6.903,2.205l0.697,1.863l0.526-0.377c0.333-0.234,0.93-0.506,1.531-0.506 c0.501,0,1.095,0.15,1.095,0.871c0,0.852-1.106,1.039-1.532,1.039H8.038v1.92h1.187c0.305,0,1.838,0.064,1.852,1.326 c0.002,0.154-0.025,0.539-0.323,0.842c-0.271,0.27-0.686,0.41-1.235,0.41c-0.744,0-1.456-0.309-1.756-0.487L7.24,8.791l-0.674,1.883 l0.33,0.215c0.486,0.322,1.475,0.699,2.635,0.699c2.619,0,3.813-1.674,3.813-3.227C13.344,7.322,12.806,6.44,11.949,5.938z"/>
+<path d="M19.336,5.539v1.979h1.9v1.939c-0.251,0.066-0.59,0.125-1.121,0.125c-1.964,0-3.137-1.236-3.137-3.305 c0-1.014,0.307-1.854,0.888-2.426c0.573-0.564,1.404-0.863,2.401-0.863c0.76,0,1.354,0.113,1.874,0.355l0.518,0.246l0.604-1.949 l-0.391-0.188c-0.456-0.225-1.411-0.483-2.577-0.483c-3.352,0-5.603,2.157-5.603,5.363c0,1.56,0.536,2.97,1.468,3.868 c0.976,0.931,2.239,1.387,3.868,1.387c1.538,0,2.753-0.422,3.087-0.551l0.318-0.125V5.539H19.336z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_context.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_context.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<polygon points="24.72,22.3,5.279,22.3,9.48,29.03,11.54,27.74,9.672,24.74,9.684,24.74,9.684,24.74,24.72,24.74"/>
-<polygon points="20.52,12.99,18.45,14.28,20.33,17.28,5.279,17.29,5.279,19.72,24.72,19.72"/>
-<path d="M11.95,5.938c0.667-0.516,1.048-1.234,1.048-2.08,0-0.721-0.28-1.381-0.786-1.861-0.56-0.529-1.36-0.807-2.314-0.807-1.161,0-2.173,0.43-2.685,0.793l-0.307,0.22,0.697,1.863,0.526-0.377c0.332-0.233,0.93-0.506,1.528-0.506,0.501,0,1.096,0.15,1.096,0.871,0,0.853-1.104,1.039-1.531,1.039h-1.18v1.92h1.187c0.305,0,1.838,0.064,1.85,1.327,0.002,0.153-0.023,0.54-0.323,0.841-0.271,0.27-0.684,0.41-1.233,0.41-0.747,0-1.458-0.309-1.758-0.486l-0.531-0.316-0.672,1.883,0.328,0.215c0.489,0.322,1.477,0.699,2.638,0.699,2.619,0,3.811-1.674,3.811-3.227,0-1.032-0.53-1.914-1.39-2.415z"/>
-<path d="M19.34,5.537v1.98h1.902v1.938c-0.253,0.067-0.592,0.124-1.121,0.124-1.966,0-3.136-1.236-3.136-3.304,0-1.015,0.304-1.854,0.885-2.427,0.573-0.564,1.404-0.863,2.403-0.863,0.761,0,1.355,0.113,1.872,0.355l0.518,0.246,0.606-1.949-0.391-0.188c-0.457-0.225-1.412-0.483-2.577-0.483-3.354,0-5.604,2.157-5.604,5.364,0,1.559,0.536,2.969,1.468,3.868,0.974,0.931,2.237,1.386,3.869,1.386,1.535,0,2.75-0.422,3.084-0.551l0.321-0.125v-5.383h-4.095z"/>
+<polygon points="24.722,22.301 5.279,22.303 9.48,29.03 11.544,27.742 9.672,24.738 9.684,24.738 9.684,24.738 24.722,24.738 "/>
+<polygon points="20.521,12.994 18.452,14.281 20.326,17.285 5.279,17.287 5.279,19.721 24.722,19.719 "/>
+<path d="M11.948,5.938c0.667-0.516,1.048-1.234,1.048-2.08c0-0.721-0.28-1.381-0.786-1.861c-0.56-0.529-1.36-0.807-2.314-0.807 c-1.161,0-2.173,0.43-2.685,0.793L6.904,2.203l0.697,1.863l0.526-0.377c0.332-0.233,0.93-0.506,1.528-0.506 c0.501,0,1.096,0.15,1.096,0.871c0,0.853-1.104,1.039-1.531,1.039H8.039v1.92h1.187c0.305,0,1.838,0.064,1.85,1.327 c0.002,0.153-0.023,0.54-0.323,0.841c-0.271,0.27-0.684,0.41-1.233,0.41c-0.747,0-1.458-0.309-1.758-0.486L7.238,8.789l-0.672,1.883 l0.328,0.215c0.489,0.322,1.477,0.699,2.638,0.699c2.619,0,3.811-1.674,3.811-3.227C13.343,7.321,12.807,6.439,11.948,5.938z"/>
+<path d="M19.335,5.537v1.98h1.902v1.938c-0.253,0.067-0.592,0.124-1.121,0.124c-1.966,0-3.136-1.236-3.136-3.304 c0-1.015,0.304-1.854,0.885-2.427c0.573-0.564,1.404-0.863,2.403-0.863c0.761,0,1.355,0.113,1.872,0.355l0.518,0.246l0.606-1.949 l-0.391-0.188c-0.457-0.225-1.412-0.483-2.577-0.483c-3.354,0-5.604,2.157-5.604,5.364c0,1.559,0.536,2.969,1.468,3.868 c0.974,0.931,2.237,1.386,3.869,1.386c1.535,0,2.75-0.422,3.084-0.551l0.321-0.125V5.537H19.335z"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_multipdp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_multipdp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M11.94,5.982c0.667-0.514,1.05-1.232,1.05-2.078,0-0.722-0.281-1.381-0.787-1.863-0.555-0.528-1.358-0.805-2.314-0.805-1.162,0-2.168,0.428-2.68,0.793l-0.306,0.221,0.7,1.863,0.529-0.377c0.328-0.234,0.93-0.507,1.53-0.507,0.499,0,1.097,0.151,1.097,0.872,0,0.852-1.108,1.039-1.533,1.039h-1.191v1.92h1.187c0.304,0,1.837,0.064,1.849,1.327,0.004,0.153-0.023,0.539-0.32,0.843-0.27,0.269-0.686,0.409-1.236,0.409-0.744,0-1.455-0.309-1.754-0.489l-0.524-0.315-0.671,1.884,0.328,0.215c0.487,0.322,1.475,0.698,2.637,0.698,2.618,0,3.812-1.673,3.812-3.226,0.01-1.045-0.53-1.928-1.4-2.432z"/>
-<path d="M19.34,5.585v1.978h1.899v1.939c-0.249,0.066-0.592,0.125-1.123,0.125-1.967,0-3.137-1.236-3.137-3.305,0-1.014,0.305-1.853,0.886-2.426,0.573-0.565,1.404-0.863,2.403-0.863,0.76,0,1.354,0.114,1.872,0.356l0.52,0.245,0.604-1.95-0.386-0.187c-0.46-0.226-1.411-0.484-2.582-0.484-3.352,0-5.602,2.157-5.602,5.363,0,1.561,0.534,2.971,1.466,3.871,0.977,0.93,2.24,1.384,3.87,1.384,1.537,0,2.75-0.421,3.09-0.55l0.319-0.125v-5.375h-4.103z"/>
-<polygon points="20.52,13.04,18.45,14.33,20.32,17.33,17.27,17.33,14.59,13.04,12.52,14.33,14.39,17.33,5.278,17.33,5.278,19.77,24.72,19.77"/>
-<polygon points="9.479,28.98,11.54,27.69,9.679,24.69,12.72,24.69,15.41,28.98,17.47,27.69,15.6,24.69,24.72,24.69,24.72,22.26,5.278,22.26"/>
+<path d="M11.944,5.982c0.667-0.514,1.05-1.232,1.05-2.078c0-0.722-0.281-1.381-0.787-1.863c-0.555-0.528-1.358-0.805-2.314-0.805 c-1.162,0-2.168,0.428-2.68,0.793L6.9,2.25L7.6,4.113l0.529-0.377c0.328-0.234,0.93-0.507,1.53-0.507 c0.499,0,1.097,0.151,1.097,0.872c0,0.852-1.108,1.039-1.533,1.039H8.036V7.06h1.187c0.304,0,1.837,0.064,1.849,1.327 c0.004,0.153-0.023,0.539-0.32,0.843c-0.27,0.269-0.686,0.409-1.236,0.409C8.77,9.639,8.059,9.33,7.76,9.15L7.236,8.835 l-0.671,1.884l0.328,0.215c0.487,0.322,1.475,0.698,2.637,0.698c2.618,0,3.812-1.673,3.812-3.226 C13.346,7.369,12.807,6.486,11.944,5.982z"/>
+<path d="M19.337,5.585v1.978h1.899v1.939c-0.249,0.066-0.592,0.125-1.123,0.125c-1.967,0-3.137-1.236-3.137-3.305 c0-1.014,0.305-1.853,0.886-2.426c0.573-0.565,1.404-0.863,2.403-0.863c0.76,0,1.354,0.114,1.872,0.356l0.52,0.245l0.604-1.95 l-0.386-0.187c-0.46-0.226-1.411-0.484-2.582-0.484c-3.352,0-5.602,2.157-5.602,5.363c0,1.561,0.534,2.971,1.466,3.871 c0.977,0.93,2.24,1.384,3.87,1.384c1.537,0,2.75-0.421,3.09-0.55l0.319-0.125V5.585H19.337z"/>
+<polygon points="20.52,13.04 18.451,14.327 20.324,17.332 17.27,17.332 14.589,13.04 12.522,14.327 14.391,17.332 5.278,17.334 5.278,19.768 24.721,19.766 "/>
+<polygon points="9.479,28.984 11.543,27.694 9.679,24.689 12.725,24.689 15.408,28.984 17.473,27.694 15.604,24.689 24.721,24.689 24.721,22.256 5.278,22.256 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_suspended.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wcdma_suspended.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M11.94,5.938c0.667-0.517,1.05-1.235,1.05-2.081,0-0.721-0.281-1.379-0.787-1.861-0.559-0.527-1.358-0.805-2.314-0.805-1.162,0-2.173,0.426-2.684,0.793l-0.302,0.221,0.7,1.862,0.526-0.376c0.331-0.234,0.928-0.506,1.529-0.506,0.499,0,1.096,0.15,1.096,0.87,0,0.853-1.107,1.038-1.533,1.038h-1.181v1.922h1.187c0.304,0,1.837,0.063,1.849,1.324,0.004,0.154-0.023,0.541-0.32,0.844-0.272,0.27-0.687,0.41-1.236,0.41-0.745,0-1.456-0.309-1.755-0.49l-0.523-0.312-0.675,1.881,0.332,0.216c0.486,0.321,1.475,0.698,2.637,0.698,2.618,0,3.812-1.672,3.812-3.227,0-1.041-0.54-1.922-1.4-2.425z"/>
-<path d="M19.33,5.539v1.977h1.899v1.939c-0.25,0.066-0.589,0.125-1.12,0.125-1.967,0-3.137-1.234-3.137-3.305,0-1.014,0.305-1.853,0.886-2.424,0.573-0.567,1.404-0.865,2.403-0.865,0.76,0,1.354,0.114,1.872,0.357l0.52,0.246,0.604-1.951-0.39-0.188c-0.456-0.225-1.412-0.484-2.578-0.484-3.352,0-5.602,2.157-5.602,5.365,0,1.56,0.534,2.971,1.466,3.869,0.977,0.932,2.24,1.385,3.87,1.385,1.537,0,2.75-0.422,3.086-0.551l0.32-0.123v-5.371h-4.096z"/>
-<polygon points="24.72,22.27,24.72,24.7,20.32,24.7,20.32,24.7,14.34,24.7,16.38,22.27"/>
-<polygon points="5.278,22.27,10.58,22.27,8.523,24.7,5.278,24.7"/>
-<polygon points="24.72,17.25,24.72,19.69,18.53,19.69,20.57,17.25"/>
-<polygon points="5.278,19.68,5.278,17.25,14.8,17.25,12.75,19.69"/>
-<polygon points="21.42,14.53,21.5,14.59,21.45,14.65,10.38,27.84,9.382,29.03,7.518,27.46,8.937,25.77,19.63,13.03"/>
+<path d="M11.944,5.938c0.667-0.517,1.05-1.235,1.05-2.081c0-0.721-0.281-1.379-0.787-1.861c-0.559-0.527-1.358-0.805-2.314-0.805 c-1.162,0-2.173,0.426-2.684,0.793L6.9,2.205L7.6,4.067l0.526-0.376c0.331-0.234,0.928-0.506,1.529-0.506 c0.499,0,1.096,0.15,1.096,0.87c0,0.853-1.107,1.038-1.533,1.038H8.036v1.922h1.187c0.304,0,1.837,0.063,1.849,1.324 c0.004,0.154-0.023,0.541-0.32,0.844c-0.272,0.27-0.687,0.41-1.236,0.41c-0.745,0-1.456-0.309-1.755-0.49L7.236,8.791l-0.675,1.881 l0.332,0.216c0.486,0.321,1.475,0.698,2.637,0.698c2.618,0,3.812-1.672,3.812-3.227C13.342,7.322,12.804,6.441,11.944,5.938z"/>
+<path d="M19.334,5.539v1.977h1.899v1.939c-0.25,0.066-0.589,0.125-1.12,0.125c-1.967,0-3.137-1.234-3.137-3.305 c0-1.014,0.305-1.853,0.886-2.424c0.573-0.567,1.404-0.865,2.403-0.865c0.76,0,1.354,0.114,1.872,0.357l0.52,0.246l0.604-1.951 l-0.39-0.188c-0.456-0.225-1.412-0.484-2.578-0.484c-3.352,0-5.602,2.157-5.602,5.365c0,1.56,0.534,2.971,1.466,3.869 c0.977,0.932,2.24,1.385,3.87,1.385c1.537,0,2.75-0.422,3.086-0.551l0.32-0.123V5.539H19.334z"/>
+<polygon points="24.721,22.27 24.721,24.703 20.316,24.703 20.32,24.703 14.344,24.703 16.376,22.27 "/>
+<polygon points="5.278,22.266 10.58,22.266 8.523,24.703 5.278,24.703 "/>
+<polygon points="24.721,17.253 24.721,19.688 18.529,19.688 20.566,17.253 "/>
+<polygon points="5.278,19.682 5.278,17.253 14.805,17.253 12.752,19.688 "/>
+<polygon points="21.424,14.528 21.499,14.59 21.447,14.65 10.381,27.84 9.382,29.031 7.518,27.465 8.937,25.768 19.63,13.027 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M20.33,15.16h-0.673v2.658h0.685c0.461,0,0.792-0.101,0.984-0.3,0.193-0.199,0.292-0.553,0.292-1.047,0-0.459-0.102-0.797-0.304-1.003-0.2-0.21-0.53-0.31-0.98-0.31z"/>
-<path d="M27,4h-24c-1.104,0-2,0.896-2,2v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2v-18c0-1.104-0.9-2-2-2zm-12.07,15.2h-2.07l-1.362-6.004-1.518,6h-2.128l-1.968-9.137h2.114l1.133,6.116,1.497-6.116h2.022l1.377,6.116,1.253-6.116h1.828l-2.18,9.14zm7.95-0.66c-0.523,0.438-1.306,0.662-2.326,0.662h-2.913v-9.137h3.118c0.881,0,1.557,0.194,2.01,0.577,0.463,0.393,0.698,0.977,0.698,1.738,0,0.904-0.368,1.569-1.097,1.982,0.872,0.366,1.313,1.096,1.313,2.178,0,0.88-0.27,1.55-0.8,2z"/>
-<path d="M21.16,13.49c0.187-0.19,0.28-0.513,0.28-0.956,0-0.371-0.085-0.647-0.252-0.822-0.165-0.174-0.425-0.261-0.772-0.261h-0.761v2.324h0.591c0.42,0,0.72-0.09,0.91-0.28z"/>
+<path d="M20.326,15.157h-0.673v2.658h0.685c0.461,0,0.792-0.101,0.984-0.3c0.193-0.199,0.292-0.553,0.292-1.047 c0-0.459-0.102-0.797-0.304-1.003C21.111,15.261,20.779,15.157,20.326,15.157z"/>
+<path d="M27,4H3C1.896,4,1,4.896,1,6v18c0,1.104,0.896,2,2,2h24c1.104,0,2-0.896,2-2V6C29,4.896,28.104,4,27,4z M14.93,19.2h-2.07 l-1.362-6.004L9.982,19.2H7.854l-1.968-9.137H8l1.133,6.116l1.497-6.116h2.022l1.377,6.116l1.253-6.116h1.828L14.93,19.2z M22.881,18.538c-0.523,0.438-1.306,0.662-2.326,0.662h-2.913v-9.137h3.118c0.881,0,1.557,0.194,2.01,0.577 c0.463,0.393,0.698,0.977,0.698,1.738c0,0.904-0.368,1.569-1.097,1.982c0.872,0.366,1.313,1.096,1.313,2.178 C23.685,17.418,23.414,18.09,22.881,18.538z"/>
+<path d="M21.158,13.487c0.187-0.19,0.28-0.513,0.28-0.956c0-0.371-0.085-0.647-0.252-0.822c-0.165-0.174-0.425-0.261-0.772-0.261 h-0.761v2.324h0.591C20.666,13.772,20.974,13.677,21.158,13.487z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_cloudy.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_cloudy.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M5.688,7.103c0.412-0.529,0.886-1.003,1.415-1.415l-1.467-1.466c-0.391-0.391-1.023-0.391-1.414,0s-0.391,1.024,0,1.414l1.466,1.467z"/>
-<path d="M12,4c0.339,0,0.672,0.028,1,0.069v-2.069c0-0.553-0.447-1-1-1s-1,0.447-1,1v2.069c0.33-0.041,0.66-0.069,1-0.069z"/>
-<path d="M18.31,7.103l1.467-1.467c0.391-0.392,0.391-1.023,0-1.415-0.391-0.39-1.023-0.391-1.415,0l-1.467,1.467c0.54,0.411,1.01,0.885,1.42,1.415z"/>
-<path d="M4,12c0-0.34,0.028-0.672,0.069-1h-2.069c-0.553,0-1,0.447-1,1s0.447,1,1,1h2.069c-0.041-0.33-0.069-0.66-0.069-1z"/>
-<path d="M7.339,16c0.122-0.451,0.28-0.885,0.463-1.307-0.502-0.77-0.802-1.7-0.802-2.69,0-2.757,2.243-5,5-5,1.637,0,3.079,0.802,3.992,2.021,0.17-0.008,0.34-0.021,0.51-0.021,0.654,0,1.293,0.066,1.91,0.193-1.08-2.467-3.54-4.193-6.41-4.193-3.866,0-7,3.134-7,7,0,1.527,0.495,2.938,1.326,4.088,0.332-0.05,0.669-0.08,1.013-0.09z"/>
-<path d="M18.95,27c0.02-0.17,0.05-0.33,0.05-0.5,0-2.481-2.019-4.5-4.5-4.5-0.33,0-0.65,0.041-0.96,0.108-0.126-0.319-0.278-0.624-0.452-0.916,0.45-0.12,0.92-0.19,1.41-0.19,3.032,0,5.5,2.467,5.5,5.5,0,0.17-0.016,0.334-0.031,0.5h8.818c0.13-0.48,0.21-0.98,0.21-1.5,0-2.92-2.279-5.303-5.154-5.482,0.1-0.49,0.15-1,0.15-1.52,0-4.142-3.359-7.5-7.5-7.5-4.034,0-7.317,3.19-7.484,7.186-0.487-0.12-0.993-0.19-1.516-0.19-3.59,0-6.5,2.91-6.5,6.5,0,0.887,0.179,1.73,0.5,2.5h17.45z"/>
+<path d="M5.688,7.103C6.1,6.574,6.574,6.1,7.103,5.688L5.636,4.222c-0.391-0.391-1.023-0.391-1.414,0s-0.391,1.024,0,1.414 L5.688,7.103z"/>
+<path d="M12,4c0.339,0,0.672,0.028,1,0.069V2c0-0.553-0.447-1-1-1s-1,0.447-1,1v2.069C11.328,4.028,11.661,4,12,4z"/>
+<path d="M18.312,7.103l1.467-1.467c0.391-0.392,0.391-1.023,0-1.415c-0.391-0.39-1.023-0.391-1.415,0l-1.467,1.467 C17.426,6.099,17.9,6.573,18.312,7.103z"/>
+<path d="M4,12c0-0.34,0.028-0.672,0.069-1H2c-0.553,0-1,0.447-1,1s0.447,1,1,1h2.069C4.028,12.672,4,12.34,4,12z"/>
+<path d="M7.339,16.002c0.122-0.451,0.28-0.885,0.463-1.307C7.3,13.916,7,12.994,7,12c0-2.757,2.243-5,5-5 c1.637,0,3.079,0.802,3.992,2.021C16.161,9.013,16.329,9,16.5,9c0.654,0,1.293,0.066,1.91,0.193C17.328,6.726,14.867,5,12,5 c-3.866,0-7,3.134-7,7c0,1.527,0.495,2.938,1.326,4.088C6.658,16.041,6.995,16.008,7.339,16.002z"/>
+<path d="M18.949,27C18.969,26.834,19,26.672,19,26.5c0-2.481-2.019-4.5-4.5-4.5c-0.33,0-0.65,0.041-0.96,0.108 c-0.126-0.319-0.278-0.624-0.452-0.916C13.54,21.072,14.011,21,14.5,21c3.032,0,5.5,2.467,5.5,5.5c0,0.17-0.016,0.334-0.031,0.5 h8.818C28.923,26.522,29,26.021,29,25.5c0-2.92-2.279-5.303-5.154-5.482C23.947,19.527,24,19.02,24,18.5c0-4.142-3.359-7.5-7.5-7.5 c-4.034,0-7.317,3.19-7.484,7.186C8.529,18.068,8.023,18,7.5,18C3.91,18,1,20.91,1,24.5c0,0.887,0.179,1.73,0.5,2.5H18.949z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_fluorescent.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_fluorescent.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M28,10h-1v10h1c1.104,0,2-0.896,2-2v-6c0-1.1-0.9-2-2-2z"/>
-<path d="M5,20h20v-10h-20v10zm17-7v4h-14v-4h14z"/>
-<path d="M3,10h-1c-1.104,0-2,0.896-2,2v6c0,1.104,0.896,2,2,2h1v-10z"/>
+<path d="M28,10h-1v10h1c1.104,0,2-0.896,2-2v-6C30,10.896,29.104,10,28,10z"/>
+<path d="M5,20h20V10H5V20z M22,13v4H8v-4H22z"/>
+<path d="M3,10H2c-1.104,0-2,0.896-2,2v6c0,1.104,0.896,2,2,2h1V10z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_incandescent.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_incandescent.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect height="2" width="10" x="10" y="23"/>
-<path d="M12,28h6c1.104,0,2-0.896,2-2h-10c0,1.1,0.9,2,2,2z"/>
-<path d="M15,2c-4.971,0-9,2.864-9,9,0,3.221,1.383,6.082,3.271,8.083l0.729,2.92h10l0.729-2.917c1.89-2,3.27-4.86,3.27-8.08,0-6.136-4.03-9-9-9zm1,16.8v-4.8h1c0.553,0,1-0.448,1-1,0-0.553-0.447-1-1-1h-4c-0.553,0-1,0.447-1,1,0,0.552,0.447,1,1,1h1v4.795c-2.14-0.78-5-3.77-5-7.8,0-4.959,3.263-6,6-6s6,1.041,6,6c0,4.03-2.86,7.02-5,7.8z"/>
+<path d="M12,28h6c1.104,0,2-0.896,2-2H10C10,27.104,10.896,28,12,28z"/>
+<path d="M15,2c-4.971,0-9,2.864-9,9c0,3.221,1.383,6.082,3.271,8.083L10,22h10l0.729-2.917C22.617,17.082,24,14.221,24,11 C24,4.864,19.971,2,15,2z M16,18.795V14h1c0.553,0,1-0.448,1-1c0-0.553-0.447-1-1-1h-4c-0.553,0-1,0.447-1,1c0,0.552,0.447,1,1,1h1 v4.795C11.856,18.02,9,15.028,9,11c0-4.959,3.263-6,6-6s6,1.041,6,6C21,15.028,18.145,18.02,16,18.795z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_sunny.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_white_balance_sunny.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M7.259,8.673c0.423-0.518,0.896-0.991,1.414-1.414l-2.158-2.158c-0.391-0.392-1.024-0.391-1.414,0-0.391,0.391-0.391,1.022,0,1.414l2.158,2.158z"/>
-<path d="M15,5c0.337,0,0.671,0.018,1,0.051v-3.051c0-0.553-0.448-1-1-1-0.553,0-1,0.447-1,1v3.051c0.33-0.033,0.66-0.051,1-0.051z"/>
-<path d="M22.74,8.673l2.158-2.158c0.391-0.392,0.391-1.024,0-1.414-0.391-0.391-1.023-0.392-1.414,0l-2.158,2.158c0.51,0.423,0.99,0.896,1.41,1.414z"/>
-<path d="M28,14h-3.051c0.03,0.33,0.05,0.66,0.05,1s-0.018,0.671-0.051,1h3.05c0.553,0,1-0.447,1-1s-0.45-1-1-1z"/>
-<path d="M5,15c0-0.338,0.018-0.671,0.05-1h-3.05c-0.553,0-1,0.447-1,1s0.447,1,1,1h3.05c-0.032-0.33-0.05-0.66-0.05-1z"/>
-<path d="M22.74,21.33c-0.423,0.518-0.896,0.991-1.414,1.414l2.158,2.158c0.391,0.391,1.023,0.391,1.414,0s0.391-1.024,0-1.414l-2.16-2.16z"/>
-<path d="M15,25c-0.337,0-0.671-0.018-1-0.051v3.05c0,0.553,0.447,1,1,1s1-0.447,1-1v-3.051c-0.33,0.03-0.66,0.05-1,0.05z"/>
-<path d="M7.259,21.33l-2.158,2.158c-0.391,0.391-0.391,1.023,0,1.414s1.023,0.391,1.414,0l2.158-2.158c-0.518-0.42-0.991-0.9-1.414-1.41z"/>
-<path d="M15,7c-4.411,0-8,3.589-8,8s3.589,8,8,8,8-3.589,8-8-3.59-8-8-8zm0,13c-2.757,0-5-2.243-5-5s2.243-5,5-5,5,2.243,5,5-2.24,5-5,5z"/>
+<path d="M7.259,8.673c0.423-0.518,0.896-0.991,1.414-1.414L6.515,5.101c-0.391-0.392-1.024-0.391-1.414,0 c-0.391,0.391-0.391,1.022,0,1.414L7.259,8.673z"/>
+<path d="M15,5c0.337,0,0.671,0.018,1,0.051V2c0-0.553-0.448-1-1-1c-0.553,0-1,0.447-1,1v3.051C14.329,5.018,14.663,5,15,5z"/>
+<path d="M22.741,8.673l2.158-2.158c0.391-0.392,0.391-1.024,0-1.414c-0.391-0.391-1.023-0.392-1.414,0l-2.158,2.158 C21.845,7.682,22.318,8.155,22.741,8.673z"/>
+<path d="M28,14h-3.051C24.982,14.329,25,14.662,25,15s-0.018,0.671-0.051,1H28c0.553,0,1-0.447,1-1S28.553,14,28,14z"/>
+<path d="M5,15c0-0.338,0.018-0.671,0.05-1H2c-0.553,0-1,0.447-1,1s0.447,1,1,1h3.05C5.018,15.671,5,15.338,5,15z"/>
+<path d="M22.741,21.327c-0.423,0.518-0.896,0.991-1.414,1.414l2.158,2.158c0.391,0.391,1.023,0.391,1.414,0s0.391-1.024,0-1.414 L22.741,21.327z"/>
+<path d="M15,25c-0.337,0-0.671-0.018-1-0.051V28c0,0.553,0.447,1,1,1s1-0.447,1-1v-3.051C15.671,24.982,15.337,25,15,25z"/>
+<path d="M7.259,21.327l-2.158,2.158c-0.391,0.391-0.391,1.023,0,1.414s1.023,0.391,1.414,0l2.158-2.158 C8.155,22.318,7.682,21.845,7.259,21.327z"/>
+<path d="M15,7c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S19.411,7,15,7z M15,20c-2.757,0-5-2.243-5-5s2.243-5,5-5s5,2.243,5,5 S17.757,20,15,20z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wildcard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.202"/>
+<path d="M10.843,22.588c0,1.259-1.023,2.285-2.288,2.285c-1.265,0-2.29-1.026-2.29-2.285c0-1.262,1.025-2.289,2.29-2.289 c1.264,0,2.278,1.028,2.278,2.291L10.843,22.588z"/>
+<path d="M8.961,5.127c-1.708,0-2.931,0.526-3.738,1.611c-0.765,1.026-1.241,2.387-1.41,4.049l2.82,0.487 c0.118-0.89,0.327-1.542,0.634-1.977c0.415-0.585,0.979-0.892,1.633-0.892c0.773,0,1.203,0.35,1.427,0.645 c0.29,0.378,0.439,0.895,0.439,1.531c0,0.651-0.322,1.347-0.952,2.062c-0.993,1.153-1.637,1.96-1.909,2.397 c-0.264,0.424-0.464,0.895-0.592,1.401c-0.136,0.513-0.206,1.204-0.207,2.054h2.738c0.035-0.555,0.131-1.024,0.285-1.424 c0.21-0.53,0.663-1.172,1.39-1.975c0.923-1.017,1.54-1.876,1.828-2.555c0.285-0.669,0.43-1.374,0.43-2.086 c0-1.776-0.542-3.151-1.657-4.204C11.32,5.503,10.29,5.135,8.96,5.135L8.961,5.127z"/>
+<rect fill="none" height="29.03" width="29.03" x="0.54" y="0.202"/>
+<g>
+<path d="M22.479,15.12l3.816,1.998l-0.963,1.649l-3.647-2.336l0.253,4.31h-1.975l0.241-4.31l-3.647,2.336l-0.963-1.649l3.828-1.998 l-3.828-1.975l0.963-1.673l3.647,2.348l-0.241-4.322h1.975l-0.253,4.322l3.647-2.348l0.963,1.673L22.479,15.12z"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="1,13.89,4.511,13.89,4.719,20.63,7.95,13.89,10.76,13.89,10.76,20.63,13.77,13.89,17.49,13.89,11.88,24.42,8.582,24.42,8.512,17.88,5.564,24.42,2.194,24.42"/>
-<path d="M22.98,12.44c0-1.117-1.227-2.021-2.736-2.021s-2.738,0.904-2.738,2.021c0,0.598,0.355,1.133,0.912,1.504v10.48h3.65v-10.47c0.57-0.366,0.92-0.906,0.92-1.506z"/>
-<path d="M13.18,13.51s1.931-3.965,7.089-3.965c5.156,0,7.053,3.895,7.053,3.895s-0.947-5.053-7.158-5.053c-6.21-0.001-6.98,5.123-6.98,5.123z"/>
-<path d="M11.07,12.39s2.246-5.403,9.193-5.403c6.945,0,8.734,5.332,8.734,5.332s-1.611-6.736-8.84-6.736-9.08,6.806-9.08,6.806z"/>
-</svg>
\ No newline at end of file
+<polygon points="1,13.894 4.511,13.894 4.719,20.632 7.95,13.894 10.757,13.894 10.757,20.632 13.771,13.894 17.492,13.894 11.878,24.421 8.582,24.421 8.512,17.875 5.564,24.421 2.194,24.421 "/>
+<path d="M22.984,12.442c0-1.117-1.227-2.021-2.736-2.021s-2.738,0.904-2.738,2.021c0,0.598,0.355,1.133,0.912,1.504v10.475h3.65 V13.946C22.633,13.575,22.984,13.04,22.984,12.442z"/>
+<path d="M13.177,13.509c0,0,1.931-3.965,7.089-3.965c5.156,0,7.053,3.895,7.053,3.895s-0.947-5.053-7.158-5.053 C13.946,8.386,13.177,13.509,13.177,13.509z"/>
+<path d="M11.072,12.387c0,0,2.246-5.403,9.193-5.403c6.945,0,8.734,5.332,8.734,5.332s-1.611-6.736-8.84-6.736 S11.072,12.387,11.072,12.387z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_attach.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_attach.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="5.279,7.183,7.277,7.183,7.396,11.02,9.236,7.183,10.83,7.183,10.83,11.02,12.55,7.183,14.67,7.183,11.47,13.18,9.597,13.18,9.556,9.45,7.878,13.18,5.96,13.18"/>
-<path d="M17.8,6.356c0-0.637-0.695-1.15-1.557-1.15-0.859,0-1.558,0.514-1.558,1.15,0,0.34,0.201,0.645,0.52,0.855v5.965h2.075v-5.968c0.32-0.211,0.52-0.516,0.52-0.856z"/>
-<path d="M12.21,6.964s1.099-2.258,4.035-2.258,4.016,2.218,4.016,2.218-0.539-2.878-4.076-2.878-3.97,2.918-3.97,2.918z"/>
-<path d="M11.02,6.325s1.278-3.078,5.233-3.078,4.973,3.037,4.973,3.037-0.918-3.836-5.033-3.836c-4.12,0-5.17,3.877-5.17,3.877z"/>
-<polygon points="9.648,23.26,9.652,23.26,8.139,20.82,5.279,20.82,9.48,27.55,11.52,26.27,10.82,25.13"/>
-<polygon points="10.49,20.82,12.01,23.26,16.13,23.26,14.62,20.82"/>
-<polygon points="16.97,20.82,18.49,23.26,22.63,23.26,21.12,20.82"/>
-<polygon points="23.47,20.82,24.72,22.84,24.72,20.82"/>
-<polygon points="20.3,15.81,21.81,18.24,24.72,18.24,20.52,11.51,18.45,12.8,20.32,15.81"/>
-<polygon points="19.46,18.24,17.95,15.81,13.86,15.81,15.37,18.24"/>
-<polygon points="13.02,18.24,11.51,15.81,7.378,15.81,8.892,18.24"/>
-<polygon points="5.279,16.21,5.279,18.24,6.539,18.24"/>
-</svg>
\ No newline at end of file
+<polygon points="5.279,7.183 7.277,7.183 7.396,11.019 9.236,7.183 10.834,7.183 10.834,11.019 12.551,7.183 14.671,7.183 11.473,13.177 9.597,13.177 9.556,9.45 7.878,13.177 5.96,13.177 "/>
+<path d="M17.795,6.356c0-0.637-0.695-1.15-1.557-1.15c-0.859,0-1.558,0.514-1.558,1.15c0,0.34,0.201,0.645,0.52,0.855v5.965h2.075 V7.212C17.596,7.001,17.795,6.696,17.795,6.356z"/>
+<path d="M12.213,6.964c0,0,1.099-2.258,4.035-2.258c2.936,0,4.016,2.218,4.016,2.218s-0.539-2.878-4.076-2.878 S12.213,6.964,12.213,6.964z"/>
+<path d="M11.015,6.325c0,0,1.278-3.078,5.233-3.078s4.973,3.037,4.973,3.037s-0.918-3.836-5.033-3.836 C12.073,2.448,11.015,6.325,11.015,6.325z"/>
+<polygon points="9.648,23.259 9.652,23.259 8.139,20.825 5.279,20.825 9.48,27.552 11.524,26.271 10.818,25.132 "/>
+<polygon points="10.491,20.822 12.008,23.259 16.131,23.259 14.617,20.822 "/>
+<polygon points="16.969,20.822 18.486,23.259 22.629,23.259 21.115,20.822 "/>
+<polygon points="23.469,20.822 24.721,22.841 24.721,20.822 "/>
+<polygon points="20.301,15.806 21.814,18.239 24.721,18.239 20.52,11.513 18.451,12.804 20.324,15.806 "/>
+<polygon points="19.461,18.239 17.949,15.806 13.861,15.808 15.374,18.239 "/>
+<polygon points="13.022,18.239 11.513,15.808 7.378,15.808 8.892,18.242 "/>
+<polygon points="5.279,16.21 5.279,18.242 6.539,18.242 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_context.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_context.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="5.279,7.184,7.278,7.184,7.396,11.02,9.237,7.184,10.84,7.184,10.84,11.02,12.55,7.184,14.67,7.184,11.47,13.18,9.598,13.18,9.557,9.45,7.879,13.18,5.961,13.18"/>
-<path d="M17.8,6.356c0-0.637-0.697-1.15-1.557-1.15s-1.559,0.514-1.559,1.15c0,0.341,0.201,0.646,0.52,0.856v5.965h2.076v-5.967c0.32-0.21,0.52-0.516,0.52-0.857z"/>
-<path d="M12.21,6.965s1.099-2.259,4.036-2.259c2.934,0,4.016,2.219,4.016,2.219s-0.539-2.879-4.076-2.879c-3.54,0-3.98,2.919-3.98,2.919z"/>
-<path d="M11.02,6.325s1.279-3.077,5.235-3.077c3.953,0,4.973,3.036,4.973,3.036s-0.918-3.836-5.033-3.836-5.18,3.877-5.18,3.877z"/>
-<polygon points="24.72,20.82,5.279,20.82,9.48,27.55,11.54,26.26,9.672,23.26,9.684,23.26,9.684,23.26,24.72,23.26"/>
-<polygon points="20.52,11.52,18.45,12.8,20.33,15.81,5.279,15.81,5.279,18.24,24.72,18.24"/>
-</svg>
\ No newline at end of file
+<polygon points="5.279,7.184 7.278,7.184 7.396,11.021 9.237,7.184 10.835,7.184 10.835,11.021 12.552,7.184 14.672,7.184 11.474,13.178 9.598,13.178 9.557,9.45 7.879,13.178 5.961,13.178 "/>
+<path d="M17.797,6.356c0-0.637-0.697-1.15-1.557-1.15c-0.86,0-1.559,0.514-1.559,1.15c0,0.341,0.201,0.646,0.52,0.856v5.965h2.076 V7.213C17.596,7.003,17.797,6.697,17.797,6.356z"/>
+<path d="M12.214,6.965c0,0,1.099-2.259,4.036-2.259c2.934,0,4.016,2.219,4.016,2.219s-0.539-2.879-4.076-2.879 C12.651,4.046,12.214,6.965,12.214,6.965z"/>
+<path d="M11.015,6.325c0,0,1.279-3.077,5.235-3.077c3.953,0,4.973,3.036,4.973,3.036s-0.918-3.836-5.033-3.836 S11.015,6.325,11.015,6.325z"/>
+<polygon points="24.721,20.823 5.279,20.825 9.48,27.552 11.544,26.263 9.672,23.259 9.684,23.259 9.684,23.259 24.721,23.259 "/>
+<polygon points="20.52,11.516 18.451,12.803 20.326,15.808 5.279,15.808 5.279,18.242 24.721,18.241 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_multipdp.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_multipdp.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="5.278,7.206,7.277,7.206,7.396,11.04,9.236,7.206,10.83,7.206,10.83,11.04,12.55,7.206,14.67,7.206,11.47,13.2,9.597,13.2,9.556,9.473,7.878,13.2,5.96,13.2"/>
-<path d="M17.8,6.38c0-0.637-0.695-1.15-1.557-1.15-0.859,0-1.558,0.514-1.558,1.15,0,0.34,0.201,0.645,0.52,0.855v5.965h2.075v-5.965c0.32-0.211,0.52-0.515,0.52-0.855z"/>
-<path d="M12.21,6.987s1.099-2.258,4.035-2.258,4.018,2.217,4.018,2.217-0.541-2.877-4.076-2.877c-3.53,0-3.97,2.918-3.97,2.918z"/>
-<path d="M11.01,6.348s1.279-3.077,5.234-3.077,4.975,3.036,4.975,3.036-0.92-3.835-5.033-3.835c-4.12,0-5.18,3.876-5.18,3.876z"/>
-<polygon points="20.52,11.58,18.45,12.87,20.32,15.88,5.278,15.88,5.278,18.31,24.72,18.31"/>
-<polygon points="9.479,27.53,11.54,26.24,9.679,23.23,12.72,23.23,15.41,27.53,17.47,26.24,15.6,23.23,24.72,23.23,24.72,20.8,5.278,20.8"/>
-</svg>
\ No newline at end of file
+<polygon points="5.278,7.206 7.277,7.206 7.396,11.042 9.236,7.206 10.834,7.206 10.834,11.042 12.551,7.206 14.671,7.206 11.473,13.2 9.597,13.2 9.556,9.473 7.878,13.2 5.96,13.2 "/>
+<path d="M17.795,6.38c0-0.637-0.695-1.15-1.557-1.15c-0.859,0-1.558,0.514-1.558,1.15c0,0.34,0.201,0.645,0.52,0.855V13.2h2.075 V7.235C17.596,7.024,17.795,6.72,17.795,6.38z"/>
+<path d="M12.213,6.987c0,0,1.099-2.258,4.035-2.258c2.936,0,4.018,2.217,4.018,2.217s-0.541-2.877-4.076-2.877 C12.65,4.069,12.213,6.987,12.213,6.987z"/>
+<path d="M11.014,6.348c0,0,1.279-3.077,5.234-3.077s4.975,3.036,4.975,3.036s-0.92-3.835-5.033-3.835 C12.073,2.472,11.014,6.348,11.014,6.348z"/>
+<polygon points="20.52,11.583 18.451,12.87 20.324,15.875 5.278,15.878 5.278,18.312 24.721,18.31 "/>
+<polygon points="9.479,27.528 11.543,26.237 9.679,23.233 12.725,23.233 15.408,27.528 17.473,26.237 15.604,23.233 24.721,23.233 24.721,20.8 5.278,20.8 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_suspended.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wimax_suspended.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,14 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="30" width="30"/>
-<polygon points="5.279,7.19,7.278,7.19,7.396,11.03,9.237,7.19,10.84,7.19,10.84,11.03,12.55,7.19,14.67,7.19,11.47,13.18,9.598,13.18,9.557,9.458,7.879,13.18,5.961,13.18"/>
-<path d="M17.8,6.364c0-0.637-0.697-1.15-1.557-1.15s-1.559,0.514-1.559,1.15c0,0.34,0.201,0.645,0.52,0.855v5.965h2.076v-5.96c0.32-0.211,0.52-0.516,0.52-0.856z"/>
-<path d="M12.21,6.972s1.099-2.258,4.036-2.258c2.934,0,4.016,2.218,4.016,2.218s-0.539-2.878-4.076-2.878c-3.54,0-3.98,2.918-3.98,2.918z"/>
-<path d="M11.02,6.333s1.279-3.078,5.235-3.078c3.953,0,4.973,3.037,4.973,3.037s-0.918-3.836-5.033-3.836-5.18,3.877-5.18,3.877z"/>
-<polygon points="24.72,20.78,24.72,23.22,20.32,23.22,20.32,23.22,14.34,23.22,16.38,20.78"/>
-<polygon points="5.279,20.78,10.58,20.78,8.524,23.22,5.279,23.22"/>
-<polygon points="24.72,15.76,24.72,18.2,18.53,18.2,20.57,15.76"/>
-<polygon points="5.279,18.19,5.279,15.76,14.81,15.76,12.75,18.2"/>
-<polygon points="21.42,13.04,21.5,13.1,21.45,13.16,10.38,26.35,9.383,27.54,7.519,25.98,8.938,24.28,19.63,11.54"/>
-</svg>
\ No newline at end of file
+<polygon points="5.279,7.19 7.278,7.19 7.396,11.026 9.237,7.19 10.835,7.19 10.835,11.026 12.552,7.19 14.672,7.19 11.474,13.185 9.598,13.185 9.557,9.458 7.879,13.185 5.961,13.185 "/>
+<path d="M17.797,6.364c0-0.637-0.697-1.15-1.557-1.15c-0.86,0-1.559,0.514-1.559,1.15c0,0.34,0.201,0.645,0.52,0.855v5.965h2.076 V7.22C17.596,7.009,17.797,6.704,17.797,6.364z"/>
+<path d="M12.214,6.972c0,0,1.099-2.258,4.036-2.258c2.934,0,4.016,2.218,4.016,2.218s-0.539-2.878-4.076-2.878 C12.651,4.054,12.214,6.972,12.214,6.972z"/>
+<path d="M11.015,6.333c0,0,1.279-3.078,5.235-3.078c3.953,0,4.973,3.037,4.973,3.037s-0.918-3.836-5.033-3.836 S11.015,6.333,11.015,6.333z"/>
+<polygon points="24.721,20.78 24.721,23.215 20.316,23.215 20.32,23.215 14.345,23.215 16.377,20.78 "/>
+<polygon points="5.279,20.777 10.581,20.777 8.524,23.215 5.279,23.215 "/>
+<polygon points="24.721,15.765 24.721,18.199 18.529,18.199 20.566,15.765 "/>
+<polygon points="5.279,18.194 5.279,15.765 14.806,15.765 12.753,18.199 "/>
+<polygon points="21.424,13.04 21.5,13.103 21.447,13.162 10.382,26.351 9.383,27.544 7.519,25.978 8.938,24.28 19.631,11.539 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,13 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M23,25h-3.294l-2.746-9.336c-0.62,0.22-1.27,0.34-1.96,0.34s-1.345-0.122-1.96-0.336l-2.75,9.34h-3.29c-1.104,0-2,0.896-2,2v2h20v-2c0-1.1-0.9-2-2-2z"/>
+<path d="M23,25h-3.294l-2.746-9.336C16.345,15.878,15.688,16,15,16s-1.345-0.122-1.96-0.336L10.294,25H7c-1.104,0-2,0.896-2,2v2h20 v-2C25,25.896,24.104,25,23,25z"/>
<circle cx="15" cy="10" r="4"/>
-<path d="M20.88,16.86c0.16,0.09,0.34,0.14,0.52,0.14,0.338,0,0.667-0.17,0.855-0.48,1.09-1.8,1.74-4.24,1.74-6.52s-0.654-4.717-1.749-6.52c-0.286-0.471-0.901-0.621-1.374-0.334-0.472,0.287-0.622,0.901-0.335,1.373,0.92,1.502,1.46,3.551,1.46,5.481,0,1.931-0.545,3.979-1.458,5.48-0.28,0.47-0.14,1.09,0.34,1.38z"/>
-<path d="M26.42,1.457c-0.301-0.464-0.921-0.598-1.383-0.295-0.464,0.3-0.596,0.919-0.295,1.383,1.5,2.305,2.26,4.813,2.26,7.455,0,2.643-0.758,5.15-2.253,7.457-0.301,0.463-0.169,1.082,0.295,1.383,0.17,0.11,0.36,0.16,0.54,0.16,0.327,0,0.648-0.16,0.84-0.455,1.71-2.63,2.58-5.5,2.58-8.54,0-3.034-0.87-5.908-2.58-8.543z"/>
-<path d="M8.604,17c0.177,0,0.356-0.047,0.519-0.145,0.472-0.287,0.622-0.902,0.335-1.375-0.913-1.5-1.458-3.55-1.458-5.48s0.545-3.979,1.458-5.48c0.287-0.472,0.137-1.086-0.335-1.373-0.473-0.288-1.088-0.137-1.374,0.333-1.095,1.803-1.749,4.24-1.749,6.52,0,2.281,0.654,4.719,1.749,6.52,0.189,0.31,0.518,0.48,0.855,0.48z"/>
-<path d="M5.253,17.46c-1.495-2.31-2.253-4.82-2.253-7.46,0-2.642,0.758-5.15,2.253-7.455,0.301-0.464,0.169-1.083-0.295-1.383-0.462-0.303-1.082-0.169-1.383,0.295-1.709,2.635-2.575,5.509-2.575,8.543,0,3.035,0.866,5.91,2.575,8.545,0.192,0.3,0.513,0.46,0.84,0.46,0.187,0,0.375-0.051,0.543-0.16,0.464-0.3,0.596-0.92,0.295-1.38z"/>
+<path d="M20.877,16.855C21.039,16.953,21.219,17,21.396,17c0.338,0,0.667-0.17,0.855-0.48C23.346,14.719,24,12.281,24,10 c0-2.28-0.654-4.717-1.749-6.52c-0.286-0.471-0.901-0.621-1.374-0.334c-0.472,0.287-0.622,0.901-0.335,1.373 C21.455,6.021,22,8.07,22,10c0,1.931-0.545,3.979-1.458,5.48C20.255,15.953,20.405,16.568,20.877,16.855z"/>
+<path d="M26.425,1.457c-0.301-0.464-0.921-0.598-1.383-0.295c-0.464,0.3-0.596,0.919-0.295,1.383C26.242,4.85,27,7.358,27,10 c0,2.643-0.758,5.15-2.253,7.457c-0.301,0.463-0.169,1.082,0.295,1.383C25.21,18.949,25.398,19,25.585,19 c0.327,0,0.648-0.16,0.84-0.455C28.134,15.91,29,13.035,29,10C29,6.966,28.134,4.092,26.425,1.457z"/>
+<path d="M8.604,17c0.177,0,0.356-0.047,0.519-0.145c0.472-0.287,0.622-0.902,0.335-1.375C8.545,13.979,8,11.931,8,10 c0-1.93,0.545-3.979,1.458-5.48c0.287-0.472,0.137-1.086-0.335-1.373C8.65,2.859,8.035,3.01,7.749,3.48C6.654,5.283,6,7.72,6,10 c0,2.281,0.654,4.719,1.749,6.52C7.938,16.83,8.267,17,8.604,17z"/>
+<path d="M5.253,17.457C3.758,15.15,3,12.643,3,10c0-2.642,0.758-5.15,2.253-7.455c0.301-0.464,0.169-1.083-0.295-1.383 C4.496,0.859,3.876,0.993,3.575,1.457C1.866,4.092,1,6.966,1,10c0,3.035,0.866,5.91,2.575,8.545C3.767,18.84,4.088,19,4.415,19 c0.187,0,0.375-0.051,0.543-0.16C5.422,18.539,5.554,17.92,5.253,17.457z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_wlan_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M26.42,1.457c-0.301-0.464-0.921-0.598-1.383-0.295-0.464,0.3-0.596,0.919-0.295,1.383,1.5,2.305,2.26,4.813,2.26,7.455,0,2.643-0.758,5.15-2.253,7.457-0.301,0.463-0.169,1.082,0.295,1.383,0.17,0.11,0.36,0.16,0.54,0.16,0.327,0,0.648-0.16,0.84-0.455,1.71-2.63,2.58-5.5,2.58-8.54,0-3.034-0.87-5.908-2.58-8.543z"/>
-<path d="M3,10c0-0.881,0.092-1.745,0.26-2.594l-1.657-1.658c-0.398,1.375-0.603,2.795-0.603,4.252,0,3.035,0.866,5.91,2.575,8.545,0.192,0.3,0.513,0.46,0.84,0.46,0.187,0,0.375-0.051,0.543-0.16,0.464-0.301,0.596-0.92,0.295-1.383-1.495-2.31-2.253-4.82-2.253-7.46z"/>
-<path d="M9.194,5.045c0.089-0.174,0.165-0.363,0.264-0.525,0.287-0.472,0.137-1.086-0.335-1.373-0.473-0.288-1.088-0.137-1.374,0.333-0.015,0.026-0.027,0.053-0.042,0.077l1.487,1.488z"/>
-<path d="M8.295,12.44l-2.29-2.289c0.028,2.236,0.674,4.605,1.744,6.367,0.189,0.31,0.518,0.48,0.855,0.48,0.177,0,0.356-0.047,0.519-0.145,0.472-0.287,0.622-0.902,0.335-1.375-0.529-0.87-0.915-1.93-1.163-3.04z"/>
-<path d="M20.46,16.31l0.646,0.646c0.09,0.02,0.19,0.04,0.29,0.04,0.338,0,0.667-0.17,0.855-0.48,1.09-1.8,1.74-4.24,1.74-6.52s-0.654-4.717-1.749-6.52c-0.286-0.471-0.901-0.621-1.374-0.334-0.472,0.287-0.622,0.901-0.335,1.373,0.92,1.502,1.46,3.551,1.46,5.481,0,1.931-0.545,3.979-1.458,5.48-0.16,0.26-0.17,0.56-0.08,0.83z"/>
-<path d="M17.36,13.21c0.99-0.73,1.64-1.89,1.64-3.21,0-2.209-1.791-4-4-4-1.322,0-2.484,0.648-3.213,1.638l5.57,5.572z"/>
-<path d="M20.85,25h-1.146l-0.478-1.625-6.534-6.534-2.4,8.15h-3.29c-1.104,0-2,0.896-2,2v2h19.85l-4-4z"/>
-<path d="M27.69,26.37c0.389,0.389,0.41,1.005,0.048,1.368-0.362,0.362-0.978,0.343-1.366-0.046l-24.06-24.06c-0.389-0.389-0.411-1.004-0.047-1.367,0.363-0.362,0.979-0.34,1.367,0.049l24.06,24.06z"/>
+<path d="M26.425,1.457c-0.301-0.464-0.921-0.598-1.383-0.295c-0.464,0.3-0.596,0.919-0.295,1.383C26.242,4.85,27,7.358,27,10 c0,2.643-0.758,5.15-2.253,7.457c-0.301,0.463-0.169,1.082,0.295,1.383C25.21,18.949,25.398,19,25.585,19 c0.327,0,0.648-0.16,0.84-0.455C28.134,15.91,29,13.035,29,10C29,6.966,28.134,4.092,26.425,1.457z"/>
+<path d="M3,10c0-0.881,0.092-1.745,0.26-2.594L1.603,5.748C1.205,7.123,1,8.543,1,10c0,3.035,0.866,5.91,2.575,8.545 C3.767,18.84,4.088,19,4.415,19c0.187,0,0.375-0.051,0.543-0.16c0.464-0.301,0.596-0.92,0.295-1.383C3.758,15.15,3,12.643,3,10z"/>
+<path d="M9.194,5.045C9.283,4.871,9.359,4.682,9.458,4.52c0.287-0.472,0.137-1.086-0.335-1.373C8.65,2.859,8.035,3.01,7.749,3.48 C7.734,3.506,7.722,3.533,7.707,3.557L9.194,5.045z"/>
+<path d="M8.295,12.441l-2.29-2.289c0.028,2.236,0.674,4.605,1.744,6.367C7.938,16.83,8.267,17,8.604,17 c0.177,0,0.356-0.047,0.519-0.145c0.472-0.287,0.622-0.902,0.335-1.375C8.929,14.61,8.543,13.551,8.295,12.441z"/>
+<path d="M20.457,16.307l0.646,0.646C21.199,16.982,21.297,17,21.396,17c0.338,0,0.667-0.17,0.855-0.48 C23.346,14.719,24,12.281,24,10c0-2.28-0.654-4.717-1.749-6.52c-0.286-0.471-0.901-0.621-1.374-0.334 c-0.472,0.287-0.622,0.901-0.335,1.373C21.455,6.021,22,8.07,22,10c0,1.931-0.545,3.979-1.458,5.48 C20.384,15.74,20.369,16.039,20.457,16.307z"/>
+<path d="M17.362,13.213C18.351,12.484,19,11.322,19,10c0-2.209-1.791-4-4-4c-1.322,0-2.484,0.648-3.213,1.638L17.362,13.213z"/>
+<path d="M20.853,25h-1.146l-0.478-1.625l-6.534-6.534L10.294,25H7c-1.104,0-2,0.896-2,2v2h19.853L20.853,25z"/>
+<path d="M27.693,26.372c0.389,0.389,0.41,1.005,0.048,1.368c-0.362,0.362-0.978,0.343-1.366-0.046L2.307,3.625 C1.918,3.236,1.896,2.621,2.26,2.258c0.363-0.362,0.979-0.34,1.367,0.049L27.693,26.372z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M26,8h-6c-1.104,0-2,0.896-2,2v16c0,1.105,0.896,2,2,2h6c1.104,0,2-0.895,2-2v-16c0-1.104-0.9-2-2-2zm0,15h-6v-2h6v2zm0-5h-6v-2h6v2zm0-5h-6v-2h6v2z"/>
-<path d="M16.58,2.183c-0.18-0.12-0.38-0.183-0.58-0.183-0.113,0-0.227,0.02-0.336,0.059l-13,5c-0.394,0.141-0.66,0.518-0.66,0.941v18c0,1.104,0.896,2,2,2h11c1.104,0,2-0.896,2-2v-23c0-0.325-0.16-0.63-0.42-0.817zm-5.58,7.817h3v4h-3v-4zm0,6h3v4h-3v-4zm-6-6h3v4h-3v-4zm0,6h3v4h-3v-4zm2,11v-4.25c0-0.41,0.448-0.75,1-0.75h3c0.552,0,1,0.336,1,0.75v4.25h-5z"/>
+<path d="M26,8h-6c-1.104,0-2,0.896-2,2v16c0,1.105,0.896,2,2,2h6c1.104,0,2-0.895,2-2V10C28,8.896,27.104,8,26,8z M26,23h-6v-2h6V23 z M26,18h-6v-2h6V18z M26,13h-6v-2h6V13z"/>
+<path d="M16.576,2.183C16.405,2.063,16.203,2,16,2c-0.113,0-0.227,0.02-0.336,0.059l-13,5C2.266,7.2,2,7.577,2,8v18 c0,1.104,0.896,2,2,2h4h3h4c1.104,0,2-0.896,2-2V3C17,2.675,16.842,2.37,16.576,2.183z M11,10h3v4h-3V10z M11,16h3v4h-3V16z M5,10h3 v4H5V10z M5,16h3v4H5V16z M7,27v-4.25C7,22.336,7.448,22,8,22h3c0.552,0,1,0.336,1,0.75V27H7z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_world_clock.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_world_clock.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="-2 -2 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M13,0c-7.18,0-13,5.82-13,13s5.82,13,13,13,13-5.82,13-13-5.82-13-13-13zm-9.16,19.42c-0.775-1.102-1.351-2.348-1.689-3.689l1.637-0.324,1.4,2.801-1.348,1.21zm16.28,2.22l-0.703-0.635,1.4-2.799,1.884,0.371c-0.68,1.18-1.55,2.22-2.58,3.07zm1.1-13.12l-1.61-0.62,0.913,1.238,0.656-0.291s0.802,0.768,0.766,1.021c-0.036,0.258-1.239,1.424-1.239,1.424l-1.06,0.38-1.393-1.145-1.06-0.868,0.657,1.566,0.876,0.914s1.533-0.219,1.752-0.037c0.22,0.182-0.291,1.572-0.291,1.572l-2.557,2.627-0.255,2.627c-1.424,0.732-1.57,1.859-1.57,1.859s-0.365-0.068-1.314,0.99c-0.948,1.059-1.972,0.781-1.972,0.781-1.204,0-1.423-0.781-1.423-1.039,0-0.254-1.205-2.225-1.205-2.885,0-0.656,0.365-1.459,0.365-1.459,0.072-0.949-0.949-3.502-0.949-3.502h-1.065l-0.365-0.805c-3.432,0.73-3.577-0.146-4.089-1.096-0.511-0.949,0.073-3.504,0.401-3.906,0.211-0.256,1.328-1.063,2.109-1.613l7.998,2.551,1.4-2.792-5.6-1.4-3.122,1.175c0.058-0.039,0.1-0.068,0.1-0.068l-0.329-0.475c-0.22-0.472,1.205-1.13,1.205-1.13,0.548,0.365,0.912,0,0.912,0l0.146-0.365-0.146-0.548,0.677-0.842c1.087-0.351,2.247-0.548,3.447-0.548,1.26,0,2.465,0.219,3.596,0.605l-0.797,0.795,1.4,1.4,1.326-1.326c2.934,1.678,5.043,4.641,5.546,8.119-0.585-1.176-1.067-2.545-1.067-2.545l-1.79-0.325z"/>
-</svg>
\ No newline at end of file
+<path d="M13,0C5.82,0,0,5.82,0,13s5.82,13,13,13s13-5.82,13-13S20.18,0,13,0z M3.84,19.422c-0.775-1.102-1.351-2.348-1.689-3.689 l1.637-0.324l1.4,2.801L3.84,19.422z M20.115,21.643l-0.703-0.635l1.4-2.799l1.884,0.371C22.021,19.748,21.151,20.789,20.115,21.643 z M21.215,8.52L19.609,7.9l0.913,1.238l0.656-0.291c0,0,0.802,0.768,0.766,1.021c-0.036,0.258-1.239,1.424-1.239,1.424L19.65,11.67 l-1.393-1.145L17.2,9.652l0.657,1.566l0.876,0.914c0,0,1.533-0.219,1.752-0.037c0.22,0.182-0.291,1.572-0.291,1.572l-2.557,2.627 l-0.255,2.627c-1.424,0.732-1.57,1.859-1.57,1.859s-0.365-0.068-1.314,0.99c-0.948,1.059-1.972,0.781-1.972,0.781 c-1.204,0-1.423-0.781-1.423-1.039c0-0.254-1.205-2.225-1.205-2.885c0-0.656,0.365-1.459,0.365-1.459 c0.072-0.949-0.949-3.502-0.949-3.502H8.256l-0.365-0.805c-3.432,0.73-3.577-0.146-4.089-1.096 c-0.511-0.949,0.073-3.504,0.401-3.906c0.211-0.256,1.328-1.063,2.109-1.613l7.998,2.551L15.711,6L10.11,4.6L6.988,5.775 c0.058-0.039,0.1-0.068,0.1-0.068L6.759,5.232C6.539,4.76,7.964,4.102,7.964,4.102c0.548,0.365,0.912,0,0.912,0l0.146-0.365 L8.876,3.189l0.677-0.842C10.641,1.996,11.797,1.799,13,1.799c1.26,0,2.465,0.219,3.596,0.605l-0.797,0.795l1.4,1.4l1.326-1.326 c2.934,1.678,5.043,4.641,5.546,8.119c-0.585-1.176-1.067-2.545-1.067-2.545L21.215,8.52z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.57,19.43c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828,4.242,4.242,2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542c-0.39-0.29-0.78-0.61-1.14-0.97z"/>
-<path d="M26.13,3.871c-4.1-4.102-10.75-4.102-14.85-0.002-4.1,4.102-4.1,10.75,0.002,14.85,4.1,4.102,10.75,4.102,14.85,0,4.1-4.1,4.1-10.75,0-14.85zm-2.12,12.73c-2.928,2.93-7.678,2.93-10.6,0-2.94-2.93-2.94-7.68-0.01-10.61,2.93-2.928,7.678-2.928,10.61,0.002s2.93,7.678,0,10.61z"/>
-<path d="M1.381,27.2l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242c-0.781,0.79-0.781,2.05,0,2.83z"/>
-<path d="M21,8h-1v-1c0-0.553-0.447-1-1-1h-1c-0.553,0-1,0.447-1,1v1h-1c-0.552,0-1,0.447-1,1v1c0,0.553,0.448,1,1,1h1v1c0,0.553,0.447,1,1,1h1c0.553,0,1-0.447,1-1v-1h1c0.553,0,1-0.447,1-1v-1c0-0.553-0.45-1-1-1z"/>
-<path d="M21,14h-5c-0.552,0-1,0.447-1,1v1c0,0.553,0.448,1,1,1h5c0.553,0,1-0.447,1-1v-1c0-0.55-0.45-1-1-1z"/>
+<path d="M10.572,19.428c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828 l4.242,4.242l2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542C11.318,20.107,10.934,19.787,10.572,19.428z"/>
+<path d="M26.129,3.871c-4.1-4.102-10.748-4.102-14.85-0.002c-4.1,4.102-4.1,10.75,0.002,14.85c4.1,4.102,10.748,4.102,14.848,0 C30.23,14.619,30.23,7.971,26.129,3.871z M24.008,16.598c-2.928,2.93-7.678,2.93-10.605,0C10.473,13.67,10.473,8.92,13.4,5.99 c2.93-2.928,7.678-2.928,10.607,0.002S26.938,13.67,24.008,16.598z"/>
+<path d="M1.381,27.205l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242C0.6,25.158,0.6,26.424,1.381,27.205z"/>
+<path d="M21,8h-1V7c0-0.553-0.447-1-1-1h-1c-0.553,0-1,0.447-1,1v1h-1c-0.552,0-1,0.447-1,1v1c0,0.553,0.448,1,1,1h1v1 c0,0.553,0.447,1,1,1h1c0.553,0,1-0.447,1-1v-1h1c0.553,0,1-0.447,1-1V9C22,8.447,21.553,8,21,8z"/>
+<path d="M21,14h-5c-0.552,0-1,0.447-1,1v1c0,0.553,0.448,1,1,1h5c0.553,0,1-0.447,1-1v-1C22,14.447,21.553,14,21,14z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_in.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_in.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.57,19.43c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828,4.242,4.242,2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542c-0.39-0.29-0.78-0.61-1.14-0.97z"/>
-<path d="M26.13,3.871c-4.1-4.102-10.75-4.102-14.85-0.002-4.1,4.102-4.1,10.75,0.002,14.85,4.1,4.102,10.75,4.102,14.85,0,4.1-4.1,4.1-10.75,0-14.85zm-2.12,12.73c-2.928,2.93-7.678,2.93-10.6,0-2.94-2.93-2.94-7.68-0.01-10.61,2.93-2.928,7.678-2.928,10.61,0.002s2.93,7.678,0,10.61z"/>
-<path d="M1.381,27.2l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242c-0.781,0.79-0.781,2.05,0,2.83z"/>
-<path d="M22.5,10h-2.5v-2.5c0-0.828-0.67-1.5-1.5-1.5s-1.5,0.672-1.5,1.5v2.5h-2.5c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5h2.5v2.5c0,0.828,0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5v-2.5h2.5c0.828,0,1.5-0.672,1.5-1.5s-0.67-1.5-1.5-1.5z"/>
+<path d="M10.572,19.428c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828 l4.242,4.242l2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542C11.318,20.107,10.934,19.787,10.572,19.428z"/>
+<path d="M26.129,3.871c-4.1-4.102-10.748-4.102-14.85-0.002c-4.1,4.102-4.1,10.75,0.002,14.85c4.1,4.102,10.748,4.102,14.848,0 C30.23,14.619,30.23,7.971,26.129,3.871z M24.008,16.598c-2.928,2.93-7.678,2.93-10.605,0C10.473,13.67,10.473,8.92,13.4,5.99 c2.93-2.928,7.678-2.928,10.607,0.002S26.938,13.67,24.008,16.598z"/>
+<path d="M1.381,27.205l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242C0.6,25.158,0.6,26.424,1.381,27.205z"/>
+<path d="M22.5,10H20V7.5C20,6.672,19.328,6,18.5,6S17,6.672,17,7.5V10h-2.5c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5H17v2.5 c0,0.828,0.672,1.5,1.5,1.5s1.5-0.672,1.5-1.5V13h2.5c0.828,0,1.5-0.672,1.5-1.5S23.328,10,22.5,10z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_out.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_mono_zoom_out.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,11 +1,11 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30px" version="1.1" viewBox="0 0 30 30" width="30px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
-<path d="M10.57,19.43c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828,4.242,4.242,2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542c-0.39-0.29-0.78-0.61-1.14-0.97z"/>
-<path d="M26.13,3.871c-4.1-4.102-10.75-4.102-14.85-0.002-4.1,4.102-4.1,10.75,0.002,14.85,4.1,4.102,10.75,4.102,14.85,0,4.1-4.1,4.1-10.75,0-14.85zm-2.12,12.73c-2.928,2.93-7.678,2.93-10.6,0-2.94-2.93-2.94-7.68-0.01-10.61,2.93-2.928,7.678-2.928,10.61,0.002s2.93,7.678,0,10.61z"/>
-<path d="M1.381,27.2l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242c-0.781,0.79-0.781,2.05,0,2.83z"/>
-<path d="M22.5,10h-8c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5h8c0.828,0,1.5-0.672,1.5-1.5s-0.67-1.5-1.5-1.5z"/>
+<path d="M10.572,19.428c-0.359-0.361-0.68-0.746-0.982-1.139l-1.542,1.542c-0.766-0.451-1.767-0.354-2.425,0.304l-2.828,2.828 l4.242,4.242l2.828-2.828c0.659-0.658,0.756-1.658,0.304-2.425l1.542-1.542C11.318,20.107,10.934,19.787,10.572,19.428z"/>
+<path d="M26.129,3.871c-4.1-4.102-10.748-4.102-14.85-0.002c-4.1,4.102-4.1,10.75,0.002,14.85c4.1,4.102,10.748,4.102,14.848,0 C30.23,14.619,30.23,7.971,26.129,3.871z M24.008,16.598c-2.928,2.93-7.678,2.93-10.605,0C10.473,13.67,10.473,8.92,13.4,5.99 c2.93-2.928,7.678-2.928,10.607,0.002S26.938,13.67,24.008,16.598z"/>
+<path d="M1.381,27.205l1.414,1.414c0.781,0.781,2.047,0.781,2.828,0l-4.242-4.242C0.6,25.158,0.6,26.424,1.381,27.205z"/>
+<path d="M22.5,10h-8c-0.828,0-1.5,0.672-1.5,1.5s0.672,1.5,1.5,1.5h8c0.828,0,1.5-0.672,1.5-1.5S23.328,10,22.5,10z"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_add.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_add.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="11,29,11,19,1,19,1,11,11,11,11,1,19,1,19,11,29,11,29,19,19,19,19,29"/>
-<polygon fill="url(#SVGID_1_)" points="28,12,18,12,18,2,12,2,12,12,2,12,2,18,12,18,12,28,18,28,18,18,28,18"/>
+<polygon fill-opacity="0.6" points="11,29 11,19 1,19 1,11 11,11 11,1 19,1 19,11 29,11 29,19 19,19 19,29 "/>
+<polygon fill="url(#SVGID_1_)" points="28,12 18,12 18,2 12,2 12,12 2,12 2,18 12,18 12,28 18,28 18,18 28,18 "/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="2" y="12"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="18" y="12"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814" y2="840">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="814.0391" y2="840.0391">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_anniversary.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_anniversary.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,56 +1,58 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="7" stroke-opacity="0.6" width="6" x="4.5" y="10"/>
<rect fill-opacity="0.6" height="7" stroke-opacity="0.6" width="6" x="12" y="10"/>
<rect fill-opacity="0.6" height="7" stroke-opacity="0.6" width="6" x="19.5" y="10"/>
-<path d="M11,6.375c0-3.11-2.807-5.11-2.927-5.194-0.172-0.12-0.372-0.181-0.573-0.181s-0.401,0.061-0.573,0.181c-0.12,0.084-2.927,2.084-2.927,5.194,0,2.168,1.406,3.625,3.5,3.625s3.5-1.457,3.5-3.625z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M18.5,6.375c0-3.11-2.807-5.11-2.927-5.194-0.17-0.12-0.37-0.181-0.57-0.181s-0.401,0.061-0.573,0.181c-0.12,0.084-2.93,2.084-2.93,5.194,0,2.168,1.41,3.625,3.5,3.625s3.5-1.457,3.5-3.625z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M26,6.375c0-3.11-2.807-5.11-2.927-5.194-0.17-0.12-0.37-0.181-0.57-0.181s-0.4,0.061-0.573,0.181c-0.12,0.084-2.93,2.084-2.93,5.194,0,2.168,1.41,3.625,3.5,3.625s3.5-1.457,3.5-3.625z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M11,6.375c0-3.11-2.807-5.11-2.927-5.194C7.901,1.061,7.701,1,7.5,1 S7.099,1.061,6.927,1.181C6.807,1.265,4,3.265,4,6.375C4,8.543,5.406,10,7.5,10S11,8.543,11,6.375z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M18.5,6.375c0-3.11-2.807-5.11-2.927-5.194C15.401,1.061,15.201,1,15,1 s-0.401,0.061-0.573,0.181C14.307,1.265,11.5,3.265,11.5,6.375C11.5,8.543,12.906,10,15,10C17.094,10,18.5,8.543,18.5,6.375z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M26,6.375c0-3.11-2.807-5.11-2.927-5.194C22.9,1.061,22.701,1,22.5,1 s-0.4,0.061-0.573,0.181C21.807,1.265,19,3.265,19,6.375C19,8.543,20.406,10,22.5,10S26,8.543,26,6.375z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="71.5" x2="75.5" y1="-59.5" y2="-59.5">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="5" width="4" x="5.5" y="11"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="79" x2="83" y1="-59.5" y2="-59.5">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="4" x="13" y="11"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="86.5" x2="90.5" y1="-59.5" y2="-59.5">
-<stop offset="0" stop-color="#F5F5F5"/>
-<stop offset="0.7818" stop-color="#CCCCCC"/>
-<stop offset="1" stop-color="#D1D1D1"/>
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="0.7818" style="stop-color:#CCCCCC"/>
+<stop offset="1" style="stop-color:#D1D1D1"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="5" width="4" x="20.5" y="11"/>
<rect fill-opacity="0.6" height="14" stroke-opacity="0.6" width="26" x="2" y="15"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 -66 -46)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="69" x2="93" y1="-68" y2="-68">
-<stop offset="0" stop-color="#BDA664"/>
-<stop offset="0.2303" stop-color="#E0D9B5"/>
-<stop offset="1" stop-color="#B3964D"/>
+<stop offset="0" style="stop-color:#BDA664"/>
+<stop offset="0.2303" style="stop-color:#E0D9B5"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="12" width="24" x="3" y="16"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="24" x="3" y="16"/>
<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" width="24" x="3" y="21"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="79.5" x2="79.5" y1="685.8" y2="692.2">
-<stop offset="0" stop-color="#DED7B3"/>
-<stop offset="0.5879" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#AA8250"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="79.5" x2="79.5" y1="685.8193" y2="692.2366">
+<stop offset="0" style="stop-color:#DED7B3"/>
+<stop offset="0.5879" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M5,6.375c0,1.449,0.834,2.625,2.5,2.625s2.5-1.176,2.5-2.625c0-2.625-2.5-4.375-2.5-4.375s-2.5,1.75-2.5,4.375z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="87" x2="87" y1="685.8" y2="692.2">
-<stop offset="0" stop-color="#DED7B3"/>
-<stop offset="0.5879" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#AA8250"/>
+<path d="M5,6.375C5,7.824,5.834,9,7.5,9S10,7.824,10,6.375C10,3.75,7.5,2,7.5,2S5,3.75,5,6.375z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="87" x2="87" y1="685.8193" y2="692.2366">
+<stop offset="0" style="stop-color:#DED7B3"/>
+<stop offset="0.5879" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M12.5,6.375c0,1.449,0.83,2.625,2.5,2.625s2.5-1.176,2.5-2.625c0-2.625-2.5-4.375-2.5-4.375s-2.5,1.75-2.5,4.375z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="94.5" x2="94.5" y1="685.8" y2="692.2">
-<stop offset="0" stop-color="#DED7B3"/>
-<stop offset="0.5879" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#AA8250"/>
+<path d="M12.5,6.375C12.5,7.824,13.334,9,15,9s2.5-1.176,2.5-2.625C17.5,3.75,15,2,15,2S12.5,3.75,12.5,6.375 z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -72 -681)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="94.5" x2="94.5" y1="685.8193" y2="692.2366">
+<stop offset="0" style="stop-color:#DED7B3"/>
+<stop offset="0.5879" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#AA8250"/>
</linearGradient>
-<path d="M20,6.375c0,1.449,0.83,2.625,2.5,2.625s2.5-1.176,2.5-2.625c0-2.625-2.5-4.375-2.5-4.375s-2.5,1.75-2.5,4.375z" fill="url(#SVGID_7_)"/>
-</svg>
\ No newline at end of file
+<path d="M20,6.375C20,7.824,20.834,9,22.5,9S25,7.824,25,6.375C25,3.75,22.5,2,22.5,2S20,3.75,20,6.375z" fill="url(#SVGID_7_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_assistant.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_assistant.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,66 +1,68 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.59,29c-0.845,0-1.65-0.229-2.338-0.659-0.373-0.132-0.747-0.308-1.116-0.522h-3.039c-2.506,0-4.545-2.039-4.545-4.545v-0.377c-0.774-0.248-1.49-0.752-2.076-1.477l-0.092-0.13c-0.146-0.187-0.309-0.417-0.453-0.671-0.041-0.07-0.077-0.148-0.112-0.227l-0.063-0.13c-0.091-0.181-0.181-0.359-0.256-0.556-0.049-0.127-0.089-0.267-0.128-0.403l-0.076-0.24c-0.037-0.113-0.073-0.227-0.101-0.347-0.081-0.358-0.136-0.724-0.165-1.085-0.028-0.354-0.031-0.715-0.008-1.074,0.007-0.119,0.024-0.234,0.042-0.35l0.029-0.221c0.018-0.15,0.036-0.301,0.067-0.443,0.038-0.178,0.089-0.346,0.143-0.515l0.05-0.167c0.024-0.086,0.049-0.17,0.079-0.251,0.091-0.243,0.202-0.466,0.319-0.687,0.026-0.057,0.051-0.107,0.079-0.154,0.136-0.238,0.298-0.471,0.492-0.703,0.34-0.403,0.707-0.719,1.103-0.949,0.509-6.278,5.486-11.11,11.58-11.11,6.096,0,11.07,4.832,11.58,11.11,0.394,0.229,0.757,0.537,1.083,0.925,0.213,0.257,0.375,0.489,0.516,0.733l0.072,0.143c0.119,0.227,0.23,0.449,0.322,0.693,0.029,0.08,0.055,0.164,0.078,0.25l0.051,0.167c0.053,0.169,0.104,0.337,0.143,0.517,0.03,0.143,0.049,0.291,0.066,0.441l0.029,0.221c0.019,0.115,0.035,0.23,0.043,0.352,0.021,0.357,0.02,0.721-0.01,1.074-0.027,0.359-0.084,0.725-0.164,1.08-0.027,0.124-0.064,0.242-0.104,0.359l-0.067,0.229c-0.039,0.143-0.08,0.283-0.134,0.416-0.073,0.195-0.165,0.377-0.257,0.557l-0.063,0.127c-0.035,0.078-0.069,0.154-0.11,0.229-0.146,0.252-0.308,0.48-0.478,0.699l-0.074,0.105c-0.838,1.037-1.933,1.622-3.082,1.649,0,0-0.172,0.011-0.217,0.011-0.733-0.039-1.351-0.279-1.834-0.713-0.498,1.057-1.043,2.051-1.623,2.969l-0.047,0.106-0.08,0.116c-0.186,0.246-0.391,0.49-0.604,0.729-0.201,0.218-0.341,0.358-0.483,0.496l-0.105,0.095c-0.133,0.118-0.24,0.213-0.348,0.301-0.68,1.08-2.03,1.78-3.52,1.78z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="509" cy="887.6" gradientTransform="matrix(0.9352 0 0 0.9448 -465.1303 -825.3632)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="18.86">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<path d="M15.591,29c-0.845,0-1.65-0.229-2.338-0.659 c-0.373-0.132-0.747-0.308-1.116-0.522H9.091c-2.506,0-4.545-2.039-4.545-4.545v-0.377c-0.774-0.248-1.49-0.752-2.076-1.477 l-0.092-0.13c-0.146-0.187-0.309-0.417-0.453-0.671c-0.041-0.07-0.077-0.148-0.112-0.227L1.75,20.264 c-0.091-0.181-0.181-0.359-0.256-0.556c-0.049-0.127-0.089-0.267-0.128-0.403L1.29,19.057c-0.037-0.113-0.073-0.227-0.101-0.347 c-0.081-0.358-0.136-0.724-0.165-1.085c-0.028-0.354-0.031-0.715-0.008-1.074c0.007-0.119,0.024-0.234,0.042-0.35l0.029-0.221 c0.018-0.15,0.036-0.301,0.067-0.443c0.038-0.178,0.089-0.346,0.143-0.515l0.05-0.167c0.024-0.086,0.049-0.17,0.079-0.251 c0.091-0.243,0.202-0.466,0.319-0.687c0.026-0.057,0.051-0.107,0.079-0.154c0.136-0.238,0.298-0.471,0.492-0.703 c0.34-0.403,0.707-0.719,1.103-0.949C3.928,5.832,8.905,1,15,1c6.096,0,11.072,4.832,11.581,11.111 c0.394,0.229,0.757,0.537,1.083,0.925c0.213,0.257,0.375,0.489,0.516,0.733l0.072,0.143c0.119,0.227,0.23,0.449,0.322,0.693 c0.029,0.08,0.055,0.164,0.078,0.25l0.051,0.167c0.053,0.169,0.104,0.337,0.143,0.517c0.03,0.143,0.049,0.291,0.066,0.441 l0.029,0.221c0.019,0.115,0.035,0.23,0.043,0.352c0.021,0.357,0.02,0.721-0.01,1.074c-0.027,0.359-0.084,0.725-0.164,1.08 c-0.027,0.124-0.064,0.242-0.104,0.359l-0.067,0.229c-0.039,0.143-0.08,0.283-0.134,0.416c-0.073,0.195-0.165,0.377-0.257,0.557 l-0.063,0.127c-0.035,0.078-0.069,0.154-0.11,0.229c-0.146,0.252-0.308,0.48-0.478,0.699l-0.074,0.105 c-0.838,1.037-1.933,1.622-3.082,1.649c0,0-0.172,0.011-0.217,0.011c-0.733-0.039-1.351-0.279-1.834-0.713 c-0.498,1.057-1.043,2.051-1.623,2.969l-0.047,0.106l-0.08,0.116c-0.186,0.246-0.391,0.49-0.604,0.729 c-0.201,0.218-0.341,0.358-0.483,0.496l-0.105,0.095c-0.133,0.118-0.24,0.213-0.348,0.301C18.43,28.295,17.078,29,15.591,29 L15.591,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="509.0391" cy="887.6172" gradientTransform="matrix(0.9352 0 0 0.9448 -465.1303 -825.3632)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="18.857">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M23.58,16.56c-0.045-0.021-0.093-0.024-0.14-0.039-0.008,0-0.016-0.002-0.025-0.004-0.066-0.018-0.135-0.033-0.207-0.037-8.628-1.521-12.59-6.369-12.89-5.083-0.237,1.021-2.656,3.228-3.923,4.332,0.01,0.047,0.017,0.094,0.026,0.142,0,0,0.046,0.228,0.142,0.612-0.101,0.01-0.2,0.028-0.295,0.072-0.806,0.344-1.059,1.686-0.564,2.991,0.495,1.312,1.548,2.093,2.353,1.749,0.051-0.021,0.094-0.061,0.138-0.087,0.47,1.065,1.044,2.212,1.749,3.358,1.18,1.422,2.988,3.09,4.984,3.09,2.415,0,3.894-1.34,4.909-2.688,0.025-0.057,0.053-0.11,0.08-0.155,0.754-1.192,1.363-2.391,1.859-3.504,0.787,0.276,1.801-0.466,2.303-1.726,0.53-1.29,0.3-2.64-0.5-3.01z" fill="url(#SVGID_1_)"/>
-<path d="M19.67,25.18c-0.265-1.736-1.983-3.087-4.082-3.087-1.524,0-2.844,0.718-3.561,1.772h-2.474c0.133,0.234,0.25,0.466,0.394,0.701,1.18,1.422,2.988,3.09,4.984,3.09,2.29,0,3.73-1.2,4.74-2.47z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="593.8" x2="593.8" y1="816.6" y2="827.7">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M23.583,16.563c-0.045-0.021-0.093-0.024-0.14-0.039V16.52c-0.008,0-0.016-0.002-0.025-0.004 c-0.066-0.018-0.135-0.033-0.207-0.037c-8.628-1.521-12.587-6.369-12.886-5.083c-0.237,1.021-2.656,3.228-3.923,4.332 c0.01,0.047,0.017,0.094,0.026,0.142c0,0,0.046,0.228,0.142,0.612c-0.101,0.01-0.2,0.028-0.295,0.072 c-0.806,0.344-1.059,1.686-0.564,2.991c0.495,1.312,1.548,2.093,2.353,1.749c0.051-0.021,0.094-0.061,0.138-0.087 c0.47,1.065,1.044,2.212,1.749,3.358c1.18,1.422,2.988,3.09,4.984,3.09c2.415,0,3.894-1.34,4.909-2.688 c0.025-0.057,0.053-0.11,0.08-0.155c0.754-1.192,1.363-2.391,1.859-3.504c0.787,0.276,1.801-0.466,2.303-1.726 C24.607,18.277,24.381,16.926,23.583,16.563z" fill="url(#SVGID_1_)"/>
+<path d="M19.673,25.178c-0.265-1.736-1.983-3.087-4.082-3.087 c-1.524,0-2.844,0.718-3.561,1.772H9.556c0.133,0.234,0.25,0.466,0.394,0.701c1.18,1.422,2.988,3.09,4.984,3.09 C17.221,27.654,18.663,26.452,19.673,25.178z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="593.8262" x2="593.8262" y1="816.5674" y2="827.6968">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M14.69,4.363c-2.99,0-4.43,1.381-5.541,2.821-1.805,0.283-4.669,1.962-2.646,9.316,1.267-1.102,3.585-4.086,3.822-5.106,0.302-1.296,4.328,3.652,13.12,5.125,0.103-0.41,0.15-0.653,0.15-0.653,1.39-6.283-1.62-11.26-8.9-11.51z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="594" x2="594" y1="825.9" y2="814.3">
-<stop offset="0" stop-color="#848586"/>
-<stop offset="0.4727" stop-color="#BFC1C1"/>
-<stop offset="1" stop-color="#E6E9E8"/>
+<path d="M14.691,4.363c-2.99,0-4.43,1.381-5.541,2.821C7.344,7.467,4.48,9.146,6.503,16.5 c1.267-1.102,3.585-4.086,3.822-5.106c0.302-1.296,4.328,3.652,13.12,5.125c0.103-0.41,0.15-0.653,0.15-0.653 C24.977,9.587,21.973,4.609,14.691,4.363z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="593.9609" x2="593.9609" y1="825.9395" y2="814.3264">
+<stop offset="0" style="stop-color:#848586"/>
+<stop offset="0.4727" style="stop-color:#BFC1C1"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
-<path d="M6.389,13.82c-0.015-0.219-0.031-0.434-0.031-0.656,0-5.068,3.876-9.191,8.642-9.191s8.643,4.123,8.643,9.191c0,0.223-0.018,0.438-0.031,0.656h1.994c0.014-0.219,0.031-0.434,0.031-0.656,0.01-6.164-4.75-11.16-10.63-11.16s-10.64,4.996-10.64,11.16c0,0.223,0.02,0.438,0.032,0.656h1.993z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="588.6" x2="588.6" y1="838.7" y2="832.9">
-<stop offset="0" stop-color="#969696"/>
-<stop offset="1" stop-color="#464646"/>
+<path d="M6.389,13.818c-0.015-0.219-0.031-0.434-0.031-0.656c0-5.068,3.876-9.191,8.642-9.191 c4.766,0,8.643,4.123,8.643,9.191c0,0.223-0.018,0.438-0.031,0.656h1.994c0.014-0.219,0.031-0.434,0.031-0.656 C25.637,6.996,20.875,2,15,2S4.364,6.996,4.364,13.162c0,0.223,0.02,0.438,0.032,0.656H6.389z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="588.6416" x2="588.6416" y1="838.748" y2="832.9103">
+<stop offset="0" style="stop-color:#969696"/>
+<stop offset="1" style="stop-color:#464646"/>
</linearGradient>
-<path d="M13.82,25.04h-4.729c-0.978,0-1.772-0.795-1.772-1.771v-2.36h-1.774v2.363c0,1.949,1.596,3.545,3.545,3.545h4.728v-1.775z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="588.6" x2="588.6" y1="833.2" y2="837.6">
-<stop offset="0" stop-color="#848586"/>
-<stop offset="0.4727" stop-color="#BFC1C1"/>
-<stop offset="1" stop-color="#E6E9E8"/>
+<path d="M13.818,25.045H9.091c-0.978,0-1.772-0.795-1.772-1.771V20.91H5.545v2.363 c0,1.949,1.596,3.545,3.545,3.545h4.728V25.045z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="588.6426" x2="588.6426" y1="833.2441" y2="837.6084">
+<stop offset="0" style="stop-color:#848586"/>
+<stop offset="0.4727" style="stop-color:#BFC1C1"/>
+<stop offset="1" style="stop-color:#E6E9E8"/>
</linearGradient>
-<path d="M7.318,23.27v-2.362h-1.773v1.182c0,1.95,1.596,3.547,3.545,3.547h4.728v-0.593h-4.729c-0.978-0.01-1.773-0.8-1.773-1.78z" fill="url(#SVGID_5_)"/>
-<path d="M25.6,13.82c-0.32-5.861-4.94-10.51-10.6-10.51s-10.28,4.646-10.6,10.51v0.002h1.994c-0.015-0.219-0.031-0.434-0.031-0.656,0-5.068,3.876-9.191,8.642-9.191,4.767,0,8.644,4.123,8.644,9.191,0,0.223-0.019,0.438-0.031,0.656h1.992z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="594.6" x2="594.6" y1="835.3" y2="839.4">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M7.318,23.273V22.09v-1.182H5.545v1.182c0,1.95,1.596,3.547,3.545,3.547h4.728v-0.593H9.091 C8.113,25.045,7.318,24.25,7.318,23.273z" fill="url(#SVGID_5_)"/>
+<path d="M25.604,13.816C25.277,7.959,20.663,3.313,15,3.313S4.722,7.959,4.396,13.816 c0,0,0,0,0,0.002H6.39c-0.015-0.219-0.031-0.434-0.031-0.656c0-5.068,3.876-9.191,8.642-9.191c4.767,0,8.644,4.123,8.644,9.191 c0,0.223-0.019,0.438-0.031,0.656h1.992C25.604,13.816,25.604,13.816,25.604,13.816z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="594.5518" x2="594.5518" y1="835.2559" y2="839.4011">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<ellipse cx="15.59" cy="25.64" fill="url(#SVGID_6_)" rx="2.954" ry="2.365"/>
-<path d="M15.59,24.46c1.376,0,2.521,0.754,2.851,1.771,0.063-0.189,0.104-0.388,0.104-0.594,0-1.305-1.321-2.359-2.954-2.359-1.632,0-2.955,1.057-2.955,2.359,0,0.206,0.043,0.402,0.104,0.594,0.33-1.02,1.48-1.77,2.85-1.77z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="583.9" x2="583.9" y1="824.9" y2="834.2">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#212121"/>
+<ellipse cx="15.591" cy="25.635" fill="url(#SVGID_6_)" rx="2.954" ry="2.365"/>
+<path d="M15.591,24.455c1.376,0,2.521,0.754,2.851,1.771 c0.063-0.189,0.104-0.388,0.104-0.594c0-1.305-1.321-2.359-2.954-2.359c-1.632,0-2.955,1.057-2.955,2.359 c0,0.206,0.043,0.402,0.104,0.594C13.07,25.209,14.215,24.455,15.591,24.455z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="583.9141" x2="583.9141" y1="824.873" y2="834.1864">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#212121"/>
</linearGradient>
-<path d="M2.021,17.55c0.207,2.609,1.889,4.645,3.758,4.539,1.867-0.102,2.29-2.248,2.082-4.857-0.207-2.606-0.968-4.688-2.837-4.587-1.868,0.1-3.211,2.3-3.003,4.91z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="583.2" x2="583.2" y1="824.9" y2="834.2">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M2.021,17.547c0.207,2.609,1.889,4.645,3.758,4.539c1.867-0.102,2.29-2.248,2.082-4.857 c-0.207-2.606-0.968-4.688-2.837-4.587C3.156,12.742,1.813,14.939,2.021,17.547z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="583.1758" x2="583.1758" y1="824.9219" y2="834.177">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M6.432,18.15c0-2.215-0.646-4.167-1.641-5.467-1.742,0.27-2.969,2.365-2.77,4.861,0.204,2.565,1.834,4.563,3.666,4.533,0.469-1.12,0.745-2.47,0.745-3.92z" fill="url(#SVGID_8_)"/>
-<path d="M2.064,17.83c0.238-1.885,1.303-3.335,2.727-3.555,0.897,1.174,1.484,2.893,1.595,4.842,0.026-0.316,0.045-0.637,0.045-0.963,0-2.215-0.646-4.167-1.641-5.467-1.742,0.27-2.969,2.365-2.77,4.861,0.009,0.09,0.032,0.18,0.044,0.28z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1461.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-1487" x2="-1487" y1="824.9" y2="834.2">
-<stop offset="0" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#212121"/>
+<path d="M6.432,18.152c0-2.215-0.646-4.167-1.641-5.467c-1.742,0.27-2.969,2.365-2.77,4.861 c0.204,2.565,1.834,4.563,3.666,4.533C6.156,20.954,6.432,19.605,6.432,18.152z" fill="url(#SVGID_8_)"/>
+<path d="M2.064,17.828c0.238-1.885,1.303-3.335,2.727-3.555 c0.897,1.174,1.484,2.893,1.595,4.842c0.026-0.316,0.045-0.637,0.045-0.963c0-2.215-0.646-4.167-1.641-5.467 c-1.742,0.27-2.969,2.365-2.77,4.861C2.029,17.645,2.052,17.732,2.064,17.828z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1461.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-1487.0063" x2="-1487.0063" y1="824.873" y2="834.1864">
+<stop offset="0" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#212121"/>
</linearGradient>
-<path d="M27.98,17.55c-0.207,2.609-1.889,4.645-3.758,4.539-1.867-0.102-2.289-2.248-2.082-4.857,0.207-2.606,0.969-4.688,2.838-4.587,1.86,0.1,3.21,2.3,3,4.91z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1461.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-1488" x2="-1488" y1="824.9" y2="834.2">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M27.979,17.547c-0.207,2.609-1.889,4.645-3.758,4.539c-1.867-0.102-2.289-2.248-2.082-4.857 c0.207-2.606,0.969-4.688,2.838-4.587C26.844,12.742,28.188,14.939,27.979,17.547z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1461.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-1487.7446" x2="-1487.7446" y1="824.9219" y2="834.177">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M23.57,18.15c0-2.215,0.646-4.167,1.641-5.467,1.742,0.27,2.969,2.365,2.77,4.861-0.203,2.565-1.834,4.563-3.666,4.533-0.47-1.12-0.74-2.47-0.74-3.92z" fill="url(#SVGID_10_)"/>
-<path d="M27.94,17.83c-0.235-1.885-1.303-3.335-2.727-3.555-0.896,1.174-1.484,2.893-1.596,4.842-0.025-0.316-0.045-0.637-0.045-0.963,0-2.215,0.646-4.167,1.641-5.467,1.742,0.27,2.969,2.365,2.77,4.861,0,0.09-0.02,0.18-0.03,0.28z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-</svg>
\ No newline at end of file
+<path d="M23.568,18.152c0-2.215,0.646-4.167,1.641-5.467c1.742,0.27,2.969,2.365,2.77,4.861 c-0.203,2.565-1.834,4.563-3.666,4.533C23.844,20.954,23.568,19.605,23.568,18.152z" fill="url(#SVGID_10_)"/>
+<path d="M27.936,17.828c-0.235-1.885-1.303-3.335-2.727-3.555 c-0.896,1.174-1.484,2.893-1.596,4.842c-0.025-0.316-0.045-0.637-0.045-0.963c0-2.215,0.646-4.167,1.641-5.467 c1.742,0.27,2.969,2.365,2.77,4.861C27.971,17.645,27.947,17.732,27.936,17.828z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_attachment.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_attachment.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M10.46,29l-4.46-6.7v-13.3h4v12.09l2.6,3.91h5.789l2.61-3.91v-16.09h-6v13.5c0,0.275,0.224,0.5,0.5,0.5s0.5-0.225,0.5-0.5v-12.5h4v12.5c0,2.481-2.019,4.5-4.5,4.5s-4.5-2.02-4.5-4.5v-14.5c0-1.654,1.346-3,3-3h8c1.654,0,3,1.346,3,3v18.3l-4.46,6.7h-10.08z" fill-opacity="0.6"/>
-<path d="M22,2h-8c-1.101,0-2,0.9-2,2v14.5c0,1.934,1.567,3.5,3.5,3.5s3.5-1.566,3.5-3.5v-11.5h-2v11.5c0,0.827-0.673,1.5-1.5,1.5s-1.5-0.67-1.5-1.5v-14.5h8v17.4l-3.07,4.6h-6.86l-3.07-4.6v-11.4h-2v12l4,6h9l4-6v-18c0-1.1-0.9-2-2-2z" fill="url(#SVGID_1_)"/>
+<path d="M10.465,29L6,22.303V9h4v12.092L12.605,25h5.789L21,21.092V5h-6v13.5c0,0.275,0.224,0.5,0.5,0.5 s0.5-0.225,0.5-0.5V6h4v12.5c0,2.481-2.019,4.5-4.5,4.5S11,20.981,11,18.5V4c0-1.654,1.346-3,3-3h8c1.654,0,3,1.346,3,3v18.303 L20.535,29H10.465z" fill-opacity="0.6"/>
+<path d="M22,2h-8c-1.101,0-2,0.9-2,2v14.5c0,1.934,1.567,3.5,3.5,3.5s3.5-1.566,3.5-3.5V7h-2v11.5 c0,0.827-0.673,1.5-1.5,1.5S14,19.327,14,18.5V4h8v17.395L18.93,26H12.07L9,21.395V10H7v12l4,6h9l4-6V4C24,2.9,23.101,2,22,2z" fill="url(#SVGID_1_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5" x2="15.5" y1="28" y2="2">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.6545" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.5005" x2="15.5005" y1="28" y2="2.0005">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_authorised.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_authorised.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,13h-1v-3c0-4.963-4.037-9-9-9s-9,4.037-9,9v3h-1c-1.654,0-3,1.346-3,3v10c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-10c0-1.65-1.35-3-3-3zm-13-3c0-1.654,1.346-3,3-3s3,1.346,3,3v3h-6v-3z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="23" y1="14" y2="14">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="0.2083" stop-color="#F0F0F0"/>
-<stop offset="0.526" stop-color="#969696"/>
-<stop offset="0.8061" stop-color="#A1A1A1"/>
-<stop offset="1" stop-color="#BEBEBE"/>
-</linearGradient>
-<path d="M15,6c2.207,0,4,1.794,4,4v8c0,2.206-1.793,4-4,4-2.206,0-4-1.794-4-4v-8c0-2.206,1.79-4,4-4m0-4c-4.4,0-8,3.6-8,8v8c0,4.4,3.6,8,8,8s8-3.6,8-8v-8c0-4.4-3.6-8-8-8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="23" y1="9" y2="9">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.2083" stop-color="#BDBDBD"/>
-<stop offset="0.526" stop-color="#707070"/>
-<stop offset="1" stop-color="#8F8F8F"/>
+<path d="M25,13h-1v-3c0-4.963-4.037-9-9-9c-4.963,0-9,4.037-9,9v3H5c-1.654,0-3,1.346-3,3v10 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V16C28,14.346,26.654,13,25,13z M12,10c0-1.654,1.346-3,3-3c1.654,0,3,1.346,3,3v3h-6 V10z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="23" y1="14" y2="14">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
-<path d="M11,16v-6c0-2.206,1.794-4,4-4,2.207,0,4,1.794,4,4v6h4v-6c0-4.4-3.6-8-8-8s-8,3.6-8,8v6h4z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8" x2="22" y1="9.5" y2="9.5">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="0.2083" stop-color="#F0F0F0"/>
-<stop offset="0.526" stop-color="#969696"/>
-<stop offset="0.8061" stop-color="#A1A1A1"/>
-<stop offset="1" stop-color="#BEBEBE"/>
+<path d="M15,6c2.207,0,4,1.794,4,4v8c0,2.206-1.793,4-4,4c-2.206,0-4-1.794-4-4v-8C11,7.794,12.794,6,15,6 M15,2c-4.4,0-8,3.6-8,8v8c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-8C23,5.6,19.4,2,15,2L15,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.0005" x2="23" y1="9" y2="9">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.2083" style="stop-color:#BDBDBD"/>
+<stop offset="0.526" style="stop-color:#707070"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
-<path d="M10,16v-6c0-2.757,2.243-5,5-5s5,2.243,5,5v6h2v-6c0-3.859-3.141-7-7-7s-7,3.141-7,7v6h2z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3" x2="27" y1="21" y2="21">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M11,16v-6c0-2.206,1.794-4,4-4c2.207,0,4,1.794,4,4v6h4v-6c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v6H11z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.0005" x2="22" y1="9.5" y2="9.5">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
-<path d="M27,26c0,1.1-0.9,2-2,2h-20c-1.1,0-2-0.9-2-2v-10c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v10z" fill="url(#SVGID_4_)"/>
-<path d="M25,27h-20c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1c0,1.1-0.9,2-2,2z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M25,14h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M10,16v-6c0-2.757,2.243-5,5-5c2.757,0,5,2.243,5,5v6h2v-6c0-3.859-3.141-7-7-7c-3.859,0-7,3.141-7,7 v6H10z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.0005" x2="27" y1="21" y2="21">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#BCA162"/>
+</linearGradient>
+<path d="M27,26c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V16c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_4_)"/>
+<path d="M25,27H5c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1C27,26.1,26.1,27,25,27z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M25,14H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,14.9,26.1,14,25,14z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="23"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="19"/>
<rect fill="none" height="30" width="30" x="0"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_blocked.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_blocked.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14s6.279-14,14-14c7.719,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4.738" y2="61.75">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<path d="M15,29C7.279,29,1,22.72,1,15S7.279,1,15,1c7.719,0,14,6.28,14,14S22.719,29,15,29L15,29z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9985" x2="14.9985" y1="4.7378" y2="61.75">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2" y2="27.95">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#5A2633"/>
+<circle cx="14.999" cy="15" fill="url(#SVGID_1_)" r="10"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2" y2="27.9507">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#5A2633"/>
</linearGradient>
-<path d="M15,2c-7.18,0-13,5.82-13,13s5.82,13,13,13,13-5.82,13-13-5.82-13-13-13zm0,4c1.788,0,3.45,0.527,4.851,1.427l-12.42,12.42c-0.9-1.4-1.428-3.06-1.428-4.85,0-4.97,4.03-9,9-9zm0,18c-1.929,0-3.711-0.611-5.176-1.645l12.53-12.53c1.04,1.46,1.65,3.24,1.65,5.17,0,4.97-4.03,9-9,9z" fill="url(#SVGID_2_)"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.169,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,2C7.82,2,2,7.82,2,15s5.82,13,13,13s13-5.82,13-13S22.18,2,15,2z M15.001,6 c1.788,0,3.45,0.527,4.851,1.427L7.428,19.852C6.528,18.451,6,16.788,6,15C6,10.028,10.03,6,15.001,6z M15.001,24 c-1.929,0-3.711-0.611-5.176-1.645l12.53-12.531C23.389,11.289,24,13.071,24,15C24,19.971,19.971,24,15.001,24z" fill="url(#SVGID_2_)"/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bluetooth_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bluetooth_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,30c-7.505,0-11-4.78-11-15.03,0-10.21,3.495-14.97,11-14.97s11,4.757,11,14.97c0,10.39-3.39,15.03-11,15.03z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="41.97" cy="5.191" gradientTransform="matrix(0.9686 0 0 1 -26.1192 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.52">
-<stop offset="0" stop-color="#83CABF"/>
-<stop offset="0.7636" stop-color="#3C6287"/>
-<stop offset="1" stop-color="#477D9E"/>
+<path d="M15,30C7.495,30,4,25.224,4,14.969C4,4.757,7.495,0,15,0 s11,4.757,11,14.969C26,25.364,22.607,30,15,30L15,30z" fill-opacity="0.6" fill-rule="evenodd" stroke-opacity="0.6"/>
+<radialGradient cx="41.9736" cy="5.1909" gradientTransform="matrix(0.9686 0 0 1 -26.1192 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.5175">
+<stop offset="0" style="stop-color:#83CABF"/>
+<stop offset="0.7636" style="stop-color:#3C6287"/>
+<stop offset="1" style="stop-color:#477D9E"/>
</radialGradient>
-<path d="M15,29c5.941,0,10-2.915,10-14.03,0-11.06-4.06-13.97-10-13.97-5.885,0-10,2.915-10,13.97,0,11.11,4.115,14.03,10,14.03z" fill="url(#SVGID_1_)"/>
-<path d="M14.54,3.475v9.976l-4.043-4.168-1.5,1.518,5.1,5.177-5.1,5.24,1.494,1.515,4.043-4.166v9.911l7.47-7.52-4.914-4.987,4.91-4.92-7.46-7.575zm4.47,17.48l-2.36,2.4v-4.797l2.36,2.4zm-2.36-7.51v-4.799l2.363,2.398-2.36,2.4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M14.07,2.467v9.976l-4.043-4.168-1.499,1.518,5.1,5.177-5.1,5.24,1.494,1.515,4.043-4.166v9.911l7.463-7.513-4.914-4.987,4.914-4.925-7.45-7.573zm4.47,17.48l-2.363,2.398v-4.797l2.36,2.4zm-2.36-7.51v-4.796l2.363,2.398-2.36,2.4z" fill="#FFFFFF"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M15,29c5.941,0,10-2.915,10-14.031C25,3.915,20.941,1,15,1 C9.115,1,5,3.915,5,14.969C5,26.085,9.115,29,15,29L15,29z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14.537,3.475v9.976l-4.043-4.168L9,10.798l5.1,5.177L9,21.215 l1.494,1.515l4.043-4.166v9.911L22,20.962l-4.914-4.987L22,11.05L14.537,3.475z M19.014,20.962L16.65,23.36v-4.797L19.014,20.962z M16.65,13.45V8.651l2.363,2.398L16.65,13.45z" fill-opacity="0.2" fill-rule="evenodd" stroke-opacity="0.2"/>
+<path d="M14.068,2.467v9.976l-4.043-4.168L8.531,9.79l5.1,5.177l-5.1,5.24 l1.494,1.515l4.043-4.166v9.911l7.463-7.513l-4.914-4.987l4.914-4.925L14.068,2.467z M18.545,19.954l-2.363,2.398v-4.797 L18.545,19.954z M16.182,12.442V7.644l2.363,2.398L16.182,12.442z" fill="#FFFFFF" fill-rule="evenodd"/>
+<rect fill="none" fill-rule="evenodd" height="30" width="30"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -22,4 +25,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_low_battery.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_low_battery.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,31 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.35" points="6.199,29,6.199,3.6,11.4,3.6,11.4,1,18.6,1,18.6,3.6,23.8,3.6,23.8,29" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.199" x2="22.8" y1="16.3" y2="16.3">
-<stop offset="0" stop-color="#7F8084"/>
-<stop offset="0.4182" stop-color="#D1D1D1"/>
-<stop offset="1" stop-color="#97999A"/>
+<polygon fill-opacity="0.35" points="6.199,29 6.199,3.6 11.4,3.6 11.4,1 18.6,1 18.6,3.6 23.799,3.6 23.799,29 " stroke-opacity="0.35"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.1992" x2="22.7988" y1="16.2998" y2="16.2998">
+<stop offset="0" style="stop-color:#7F8084"/>
+<stop offset="0.4182" style="stop-color:#D1D1D1"/>
+<stop offset="1" style="stop-color:#97999A"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="23.4" width="15.6" x="7.199" y="4.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="20.5" y1="16.3" y2="16.3">
-<stop offset="0" stop-color="#EFEFEF"/>
-<stop offset="0.5636" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+</g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="20.5" y1="16.2988" y2="16.2988">
+<stop offset="0" style="stop-color:#EFEFEF"/>
+<stop offset="0.5636" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="18" width="11" x="9.5" y="7.299"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.4" x2="17.6" y1="3.3" y2="3.3">
-<stop offset="0" stop-color="#7F8084"/>
-<stop offset="0.5394" stop-color="#D1D1D1"/>
-<stop offset="1" stop-color="#97999A"/>
+</g>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.4004" x2="17.5996" y1="3.2998" y2="3.2998">
+<stop offset="0" style="stop-color:#7F8084"/>
+<stop offset="0.5394" style="stop-color:#D1D1D1"/>
+<stop offset="1" style="stop-color:#97999A"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2.6" width="5.199" x="12.4" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.416" x2="20.5" y1="23.86" y2="23.86">
-<stop offset="0" stop-color="#984E49"/>
-<stop offset="0.3394" stop-color="#B18563"/>
-<stop offset="1" stop-color="#8D3C45"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.416" x2="20.4993" y1="23.8594" y2="23.8594">
+<stop offset="0" style="stop-color:#984E49"/>
+<stop offset="0.3394" style="stop-color:#B18563"/>
+<stop offset="1" style="stop-color:#8D3C45"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="3" width="11" x="9.5" y="22.36"/>
+<rect fill="url(#SVGID_4_)" height="3" width="11" x="9.5" y="22.359"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_high.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_high.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,39 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.35" height="12" stroke-opacity="0.35" width="8" x="1" y="15"/>
<rect fill-opacity="0.35" height="18" stroke-opacity="0.35" width="8" x="11" y="9"/>
<rect fill-opacity="0.35" height="24" stroke-opacity="0.35" width="8" x="21" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="15.9" y2="26.02">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="15.8965" y2="26.0217">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="7.4" y2="24.8">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="7.3999" y2="24.801">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="8" width="4" x="3" y="17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.959" y2="25.96">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.959" y2="25.959">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="16" width="6" x="12" y="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="5.75" y2="24.78">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="5.75" y2="24.7824">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="14" width="4" x="13" y="11"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25" x2="25" y1="4" y2="25.75">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="25" x2="25" y1="4" y2="25.7514">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="22" width="6" x="22" y="4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25" x2="25" y1="5" y2="24.77">
-<stop offset="0" stop-color="#69A044"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="25" x2="25" y1="5" y2="24.774">
+<stop offset="0" style="stop-color:#69A044"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="20" width="4" x="23" y="5"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_low.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_low.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,45 +1,47 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.35" height="12" stroke-opacity="0.35" width="8" x="1" y="15"/>
<rect fill-opacity="0.35" height="18" stroke-opacity="0.35" width="8" x="11" y="9"/>
<rect fill-opacity="0.35" height="24" stroke-opacity="0.35" width="8" x="21" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="16" y2="26.14">
-<stop offset="0" stop-color="#C1A775"/>
-<stop offset="1" stop-color="#A46853"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="16" y2="26.1373">
+<stop offset="0" style="stop-color:#C1A775"/>
+<stop offset="1" style="stop-color:#A46853"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="17" y2="25.11">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="17" y2="25.1098">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="8" width="4" x="3" y="17"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 11700.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="11690" x2="11690" y1="4" y2="26">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#6F6F6F"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 11700.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="11685.957" x2="11685.957" y1="4" y2="26">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#6F6F6F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="16" width="6" x="12" y="10"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 11700.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11690" x2="11690" y1="5.75" y2="25">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 11700.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="11685.957" x2="11685.957" y1="5.75" y2="25">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="14" width="4" x="13" y="11"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,12.39,12,10,14.39,10" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,17.7,12,23.7,12,18.05,18,12.05" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,23.36,18,26,15.36,26" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 11720.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11700" x2="11700" y1="4" y2="26">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#6F6F6F"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,12.389 12,10 14.39,10 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,17.703 12,23.703 12,18.047 18,12.047 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,23.359 18,26 15.36,26 " stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 11720.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11695.957" x2="11695.957" y1="4" y2="26">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#6F6F6F"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="22" width="6" x="22" y="4"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 11720.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11700" x2="11700" y1="5" y2="25">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 11720.957 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11695.957" x2="11695.957" y1="5" y2="25">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="20" width="4" x="23" y="5"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,9.639,22,4,27.64,4" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,14.95,22,20.95,22,15.3,28,9.297" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,20.61,28,26,22.61,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,9.639 22,4 27.64,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,14.953 22,20.953 22,15.297 28,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,20.609 28,26 22.61,26 " stroke-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_medium.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_bt_signal_medium.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,44 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.35" height="12" stroke-opacity="0.35" width="8" x="1" y="15"/>
<rect fill-opacity="0.35" height="18" stroke-opacity="0.35" width="8" x="11" y="9"/>
<rect fill-opacity="0.35" height="24" stroke-opacity="0.35" width="8" x="21" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.75" y2="25.5">
-<stop offset="0" stop-color="#DDDAB1"/>
-<stop offset="1" stop-color="#BC9F63"/>
+<stop offset="0" style="stop-color:#DDDAB1"/>
+<stop offset="1" style="stop-color:#BC9F63"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5" x2="5" y1="12" y2="24.6">
-<stop offset="0" stop-color="#CEBF8E"/>
-<stop offset="1" stop-color="#B38C4D"/>
+<stop offset="0" style="stop-color:#CEBF8E"/>
+<stop offset="1" style="stop-color:#B38C4D"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="8" width="4" x="3" y="17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.917" y2="26">
-<stop offset="0" stop-color="#DDDAB1"/>
-<stop offset="1" stop-color="#BC9F63"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.917" y2="26.0034">
+<stop offset="0" style="stop-color:#DDDAB1"/>
+<stop offset="1" style="stop-color:#BC9F63"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="16" width="6" x="12" y="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="10.78" y2="24.56">
-<stop offset="0" stop-color="#CEBF8E"/>
-<stop offset="1" stop-color="#B38C4D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="10.7813" y2="24.5625">
+<stop offset="0" style="stop-color:#CEBF8E"/>
+<stop offset="1" style="stop-color:#B38C4D"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="14" width="4" x="13" y="11"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 11381.0703 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11360" x2="11360" y1="4" y2="25.75">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#6F6F6F"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 11381.0703 0)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="11356.0703" x2="11356.0703" y1="4" y2="25.7514">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#6F6F6F"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="22" width="6" x="22" y="4"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 11381.0703 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11360" x2="11360" y1="5" y2="24.77">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 11381.0703 0)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="11356.0703" x2="11356.0703" y1="5" y2="24.774">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="20" width="4" x="23" y="5"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,9.641,22,4,27.64,4" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,14.95,22,20.95,22,15.3,28,9.297" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,20.61,28,26,22.61,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,9.641 22,4 27.641,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,14.953 22,20.953 22,15.297 28,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,20.611 28,26 22.611,26 " stroke-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_business_card.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_business_card.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="22" width="28" x="1" y="4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="3.947" y2="24.65">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="3.9473" y2="24.6524">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="20" width="26" x="2" y="5"/>
<rect fill="#FFFFFF" height="1" width="26" x="2" y="5"/>
<rect fill="#020202" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="24"/>
<rect fill="#FFFFFF" height="14" width="14" x="3" y="7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10" x2="10" y1="20.2" y2="7.708">
-<stop offset="0" stop-color="#75B1BE"/>
-<stop offset="1" stop-color="#A6C8C1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="10" x2="10" y1="20.1982" y2="7.7075">
+<stop offset="0" style="stop-color:#75B1BE"/>
+<stop offset="1" style="stop-color:#A6C8C1"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="12" width="12" x="4" y="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.711" x2="9.711" y1="19.92" y2="3.387">
-<stop offset="0" stop-color="#425A81"/>
-<stop offset="1" stop-color="#242954"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.7114" x2="9.7114" y1="19.9209" y2="3.3869">
+<stop offset="0" style="stop-color:#425A81"/>
+<stop offset="1" style="stop-color:#242954"/>
</linearGradient>
-<path d="M15,20c-0.046-1.653-1.578-2.359-2.485-2.926l-1.296-0.788c-0.534-0.37,0.098-0.794,0.467-1.508,0.547-1.06,0.667-1.647,0.667-2.505,0-1.559-1.161-2.851-2.616-2.851-0.009,0-0.016,0.002-0.026,0.003-0.015,0.013-0.023,0.011-0.032,0.011-1.456,0-2.615,1.292-2.615,2.851,0,0.857,0.121,1.446,0.667,2.505,0.37,0.716,1.001,1.138,0.466,1.508l-1.575,0.788c-0.907,0.56-2.16,1.27-2.207,2.92h10.58z" fill="url(#SVGID_3_)"/>
+<path d="M15,20c-0.046-1.653-1.578-2.359-2.485-2.926l-1.296-0.788c-0.534-0.37,0.098-0.794,0.467-1.508 c0.547-1.06,0.667-1.647,0.667-2.505c0-1.559-1.161-2.851-2.616-2.851c-0.009,0-0.016,0.002-0.026,0.003 C9.703,9.425,9.695,9.423,9.686,9.423c-1.456,0-2.615,1.292-2.615,2.851c0,0.857,0.121,1.446,0.667,2.505 c0.37,0.716,1.001,1.138,0.466,1.508l-1.575,0.788C5.722,17.641,4.469,18.347,4.422,20H15z" fill="url(#SVGID_3_)"/>
<rect fill="#020202" fill-opacity="0.5" height="2" stroke-opacity="0.5" width="7" x="19" y="8"/>
<rect fill="#020202" fill-opacity="0.5" height="2" stroke-opacity="0.5" width="7" x="19" y="13"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_calendar.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_calendar.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,49 +1,51 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M22,4c0-1.104-0.896-2-2-2s-2,0.896-2,2h-6c0-1.104-0.897-2-2-2s-2,0.896-2,2h-6v24h26v-24h-6z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="10.37" y2="27">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<g>
+<path d="M22,4c0-1.104-0.896-2-2-2s-2,0.896-2,2h-6c0-1.104-0.897-2-2-2S8,2.896,8,4H2v24h26V4H22z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="10.3691" y2="27.0025">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="22" width="24" x="3" y="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.21" x2="11.21" y1="23.83" y2="13.75">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.2095" x2="11.2095" y1="23.834" y2="13.7479">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M14.23,22.91v1.09h-6.039v-1.094h2.146v-7.629l-2.149,0.49v-1.094l3.015-0.95h0.991v9.181h2.028z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.79" x2="18.79" y1="23.83" y2="13.75">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M14.228,22.906V24H8.191v-1.094h2.146v-7.629L8.191,15.77v-1.094l3.015-0.95h0.991v9.181H14.228z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.7939" x2="18.7939" y1="23.834" y2="13.7479">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M21.84,22.81v1.19h-6.098v-0.745c0-0.711,0.123-1.343,0.369-1.894s0.55-1.021,0.909-1.412c0.359-0.389,0.816-0.816,1.367-1.281,0.66-0.557,1.078-0.986,1.251-1.292s0.26-0.608,0.26-0.909c0-0.529-0.14-0.926-0.421-1.193-0.279-0.266-0.7-0.399-1.261-0.399-0.593,0-1.31,0.153-2.153,0.458h-0.014v-1.217c0.885-0.277,1.746-0.417,2.584-0.417,1.035,0,1.82,0.227,2.358,0.681,0.538,0.453,0.807,1.121,0.807,2.006,0,0.496-0.12,0.985-0.362,1.467-0.242,0.48-0.811,1.097-1.709,1.849-0.502,0.424-0.893,0.776-1.176,1.06s-0.521,0.594-0.715,0.934c-0.193,0.339-0.299,0.711-0.317,1.117h4.323z" fill="url(#SVGID_3_)"/>
-<polygon fill="#FFFFFF" points="8,22,8,27,3,22"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="5" y2="11">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<path d="M21.843,22.811V24h-6.098v-0.745c0-0.711,0.123-1.343,0.369-1.894s0.55-1.021,0.909-1.412 c0.359-0.389,0.816-0.816,1.367-1.281c0.66-0.557,1.078-0.986,1.251-1.292s0.26-0.608,0.26-0.909c0-0.529-0.14-0.926-0.421-1.193 c-0.279-0.266-0.7-0.399-1.261-0.399c-0.593,0-1.31,0.153-2.153,0.458h-0.014v-1.217c0.885-0.277,1.746-0.417,2.584-0.417 c1.035,0,1.82,0.227,2.358,0.681c0.538,0.453,0.807,1.121,0.807,2.006c0,0.496-0.12,0.985-0.362,1.467 c-0.242,0.48-0.811,1.097-1.709,1.849c-0.502,0.424-0.893,0.776-1.176,1.06s-0.521,0.594-0.715,0.934 c-0.193,0.339-0.299,0.711-0.317,1.117H21.843z" fill="url(#SVGID_3_)"/>
+<polygon fill="#FFFFFF" points="8,22 8,27 3,22 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="5" y2="11">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="6" width="24" x="3" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10" x2="10" y1="6" y2="10">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
<circle cx="10" cy="8" fill="url(#SVGID_5_)" r="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="6" y2="10">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
<circle cx="20" cy="8" fill="url(#SVGID_6_)" r="2"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="24" x="3" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="10" x2="10" y1="3" y2="9">
-<stop offset="0" stop-color="#FEFDFD"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<stop offset="0" style="stop-color:#FEFDFD"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
-<path d="M11,8c0,0.55-0.45,1-1,1s-1-0.45-1-1v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4z" fill="url(#SVGID_7_)"/>
+<path d="M11,8c0,0.55-0.45,1-1,1l0,0C9.45,9,9,8.55,9,8V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_7_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="20" x2="20" y1="3" y2="9">
-<stop offset="0" stop-color="#FEFDFD"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<stop offset="0" style="stop-color:#FEFDFD"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
-<path d="M21,8c0,0.55-0.45,1-1,1s-1-0.45-1-1v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4z" fill="url(#SVGID_8_)"/>
+<path d="M21,8c0,0.55-0.45,1-1,1l0,0c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_8_)"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="24" x="3" y="11"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_car.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_car.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,77 +1,79 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27.61,11.99l-1.636-5.233c-0.38-1.531-2.51-3.757-4.97-3.757h-12c-2.461,0-4.588,2.226-4.955,3.702l-1.652,5.291c-0.846,0.74-1.393,1.81-1.393,3.01v6c0,0.883,0.391,1.67,1,2.22v1.78c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.9,2.25-2v-1h12v1c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.897,2.25-2v-1.78c0.609-0.55,1-1.337,1-2.22v-6c0-1.2-0.55-2.28-1.39-3.01z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27.606,11.991l-1.636-5.233C25.588,5.226,23.461,3,21,3H9C6.539,3,4.412,5.226,4.045,6.702l-1.652,5.291 C1.547,12.727,1,13.795,1,15v6c0,0.883,0.391,1.67,1,2.22V25c0,1.103,1.01,2,2.25,2h2.5C7.99,27,9,26.103,9,25v-1h12v1 c0,1.103,1.01,2,2.25,2h2.5c1.24,0,2.25-0.897,2.25-2v-1.78c0.609-0.55,1-1.337,1-2.22v-6C29,13.795,28.453,12.725,27.606,11.991z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.5" x2="5.5" y1="22" y2="26">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.6848" stop-color="#000000"/>
-<stop offset="1" stop-color="#646464"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<path d="M3,22v3c0,0.55,0.563,1,1.25,1h2.5c0.688,0,1.25-0.45,1.25-1v-3h-5z" fill="url(#SVGID_1_)"/>
+<path d="M3,22v3c0,0.55,0.563,1,1.25,1h2.5C7.438,26,8,25.55,8,25v-3H3z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="24.5" x2="24.5" y1="22" y2="26">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="0.6848" stop-color="#000000"/>
-<stop offset="1" stop-color="#646464"/>
-</linearGradient>
-<path d="M22,22v3c0,0.55,0.563,1,1.25,1h2.5c0.688,0,1.25-0.45,1.25-1v-3h-5z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="4.062" y2="14.94">
-<stop offset="0" stop-color="#AD9A4B"/>
-<stop offset="1" stop-color="#B3914D"/>
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="0.6848" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#646464"/>
</linearGradient>
-<path d="M27.5,15l-2.5-8c-0.267-1.067-2-3-4-3h-12c-2,0-3.733,1.933-4,3l-2.5,8h25z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="5.545" y2="13.46">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M22,22v3c0,0.55,0.563,1,1.25,1h2.5c0.688,0,1.25-0.45,1.25-1v-3H22z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="4.0625" y2="14.942">
+<stop offset="0" style="stop-color:#AD9A4B"/>
+<stop offset="1" style="stop-color:#B3914D"/>
</linearGradient>
-<path d="M4.541,13.5l1.891-6.053c0.14-0.548,1.33-1.947,2.568-1.947h12c1.238,0,2.428,1.399,2.545,1.863l1.916,6.137h-20.92z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="2" x2="28" y1="17.5" y2="17.5">
-<stop offset="0" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#B3964D"/>
+<path d="M27.5,15L25,7c-0.267-1.067-2-3-4-3H9C7,4,5.267,5.933,5,7l-2.5,8H27.5z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="5.5454" y2="13.4578">
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M25,12h-20c-1.65,0-3,1.35-3,3v6c0,1.1,0.9,2,2,2h22c1.1,0,2-0.9,2-2v-6c0-1.65-1.35-3-3-3z" fill="url(#SVGID_5_)"/>
-<path d="M7.416,12l1.04,3.383c0.452,1.47,2.004,2.62,3.544,2.62h6c1.535,0,3.092-1.15,3.544-2.617l1.04-3.38h-15.16z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6" x2="6" y1="18" y2="13">
-<stop offset="0" stop-color="#A88E49"/>
-<stop offset="1" stop-color="#A67447"/>
+<path d="M4.541,13.5l1.891-6.053C6.572,6.899,7.762,5.5,9,5.5h12c1.238,0,2.428,1.399,2.545,1.863 l1.916,6.137H4.541z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="2" x2="28" y1="17.5" y2="17.5">
+<stop offset="0" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
-<path d="M6,18c-1.654,0-3-1.121-3-2.5s1.346-2.5,3-2.5,3,1.121,3,2.5-1.346,2.5-3,2.5z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6" x2="6" y1="13.83" y2="17.17">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#CBCFCF"/>
+<path d="M25,12H5c-1.65,0-3,1.35-3,3v6c0,1.1,0.9,2,2,2h22c1.1,0,2-0.9,2-2v-6C28,13.35,26.65,12,25,12z" fill="url(#SVGID_5_)"/>
+<path d="M7.416,12l1.04,3.383C8.908,16.85,10.465,18,12,18h6c1.535,0,3.092-1.15,3.544-2.617 L22.584,12H7.416z" fill="#FFFFFF" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6" x2="6" y1="18" y2="13.0005">
+<stop offset="0" style="stop-color:#A88E49"/>
+<stop offset="1" style="stop-color:#A67447"/>
+</linearGradient>
+<path d="M6,18c-1.654,0-3-1.121-3-2.5S4.346,13,6,13s3,1.121,3,2.5S7.654,18,6,18L6,18z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="6" x2="6" y1="13.834" y2="17.1665">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#CBCFCF"/>
</linearGradient>
<ellipse cx="6" cy="15.5" fill="url(#SVGID_7_)" rx="2" ry="1.666"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="24" x2="24" y1="18" y2="13">
-<stop offset="0" stop-color="#A88E49"/>
-<stop offset="1" stop-color="#A67447"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="24" x2="24" y1="18" y2="13.0005">
+<stop offset="0" style="stop-color:#A88E49"/>
+<stop offset="1" style="stop-color:#A67447"/>
</linearGradient>
-<path d="M24,18c-1.654,0-3-1.121-3-2.5s1.346-2.5,3-2.5,3,1.121,3,2.5-1.35,2.5-3,2.5z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24" x2="24" y1="13.83" y2="17.17">
-<stop offset="0" stop-color="#FAFAFA"/>
-<stop offset="1" stop-color="#CBCFCF"/>
+<path d="M24,18c-1.654,0-3-1.121-3-2.5s1.346-2.5,3-2.5s3,1.121,3,2.5S25.654,18,24,18L24,18z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="24" x2="24" y1="13.834" y2="17.1665">
+<stop offset="0" style="stop-color:#FAFAFA"/>
+<stop offset="1" style="stop-color:#CBCFCF"/>
</linearGradient>
<ellipse cx="24" cy="15.5" fill="url(#SVGID_9_)" rx="2" ry="1.666"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="2" x2="28" y1="19.5" y2="19.5">
-<stop offset="0" stop-color="#B3864D"/>
-<stop offset="0.511" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#B3834D"/>
+<stop offset="0" style="stop-color:#B3864D"/>
+<stop offset="0.511" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#B3834D"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="1" width="26" x="2" y="19"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15" x2="15" y1="17" y2="12">
-<stop offset="0" stop-color="#966640"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="15.0005" x2="15.0005" y1="17" y2="12.0005">
+<stop offset="0" style="stop-color:#966640"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</linearGradient>
-<path d="M8.461,12l0.951,3.088c0.323,1.05,1.488,1.91,2.588,1.91h6c1.1,0,2.265-0.86,2.588-1.912l0.95-3.09h-13.08z" fill="url(#SVGID_11_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15" x2="15" y1="12.06" y2="16.44">
-<stop offset="0" stop-color="#E0D9B5"/>
-<stop offset="1" stop-color="#B3964D"/>
+<path d="M8.461,12l0.951,3.088C9.735,16.14,10.9,17,12,17h6c1.1,0,2.265-0.86,2.588-1.912L21.539,12H8.461z" fill="url(#SVGID_11_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="14.9995" x2="14.9995" y1="12.0625" y2="16.4384">
+<stop offset="0" style="stop-color:#E0D9B5"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
-<path d="M8.984,12l0.905,2.941c0.261,0.85,1.231,1.56,2.111,1.56h6c0.884,0,1.85-0.714,2.11-1.559l0.91-2.94h-12.04z" fill="url(#SVGID_12_)"/>
-<path d="M23.22,8.01l-0.164-0.523c-0.08-0.288-1.08-1.487-2.06-1.487h-12c-0.965,0-1.99,1.203-2.092,1.596l-0.625,2.003,16.94-1.589z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15" x2="15" y1="23" y2="21">
-<stop offset="0" stop-color="#565656"/>
-<stop offset="1" stop-color="#212121"/>
+<path d="M8.984,12l0.905,2.941C10.15,15.786,11.116,16.5,12,16.5h6c0.884,0,1.85-0.714,2.11-1.559L21.016,12 H8.984z" fill="url(#SVGID_12_)"/>
+<path d="M23.225,8.01l-0.164-0.523C22.977,7.199,21.979,6,21,6H9C8.035,6,7.01,7.203,6.908,7.596 L6.283,9.599L23.225,8.01z" fill="#FFFFFF" fill-opacity="0.25" stroke-opacity="0.25"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.0005" x2="15.0005" y1="23" y2="21">
+<stop offset="0" style="stop-color:#565656"/>
+<stop offset="1" style="stop-color:#212121"/>
</linearGradient>
-<path d="M22,21h-14c-1.1,0-2,0.9-2,2h18c0-1.1-0.9-2-2-2z" fill="url(#SVGID_13_)"/>
+<path d="M22,21H8c-1.1,0-2,0.9-2,2h18C24,21.9,23.1,21,22,21z" fill="url(#SVGID_13_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_charger.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_charger.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,61 +1,63 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M23,10v-9h-5v9h-6v-9h-5v9h-3v7c0,3.52,2.613,6.433,6,6.92v2.08h2v3h6v-3h2v-2.08c3.387-0.487,6-3.4,6-6.92v-7h-3z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M23,10V1h-5v9h-6V1H7v9H4v7c0,3.52,2.613,6.433,6,6.92V26h2v3h6v-3h2v-2.08c3.387-0.487,6-3.4,6-6.92v-7H23z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="8" x2="11" y1="7" y2="7">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.4" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#6A6C6E"/>
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#6A6C6E"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="3" x="8" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8" x2="11" y1="9.5" y2="9.5">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.4" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="3" x="8" y="7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="19" x2="22" y1="10" y2="10">
-<stop offset="0" stop-color="#323232"/>
-<stop offset="0.4" stop-color="#787878"/>
-<stop offset="1" stop-color="#323232"/>
+<stop offset="0" style="stop-color:#323232"/>
+<stop offset="0.4" style="stop-color:#787878"/>
+<stop offset="1" style="stop-color:#323232"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="4" width="3" x="19" y="8"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="19" x2="22" y1="7" y2="7">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.4" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#6A6C6E"/>
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#6A6C6E"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="10" width="3" x="19" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19" x2="22" y1="9.5" y2="9.5">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.4" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="5" width="3" x="19" y="7"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="13" x2="17" y1="24.5" y2="24.5">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.4" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="7" width="4" x="13" y="21"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="11" x2="19" y1="23.5" y2="23.5">
-<stop offset="0" stop-color="#4D4D4D"/>
-<stop offset="0.4" stop-color="#7A7A7A"/>
-<stop offset="1" stop-color="#1A1A1A"/>
+<stop offset="0" style="stop-color:#4D4D4D"/>
+<stop offset="0.4" style="stop-color:#7A7A7A"/>
+<stop offset="1" style="stop-color:#1A1A1A"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="3" width="8" x="11" y="22"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15" x2="15" y1="11" y2="23">
-<stop offset="0" stop-color="#C8C8C8"/>
-<stop offset="0.8" stop-color="#383838"/>
-<stop offset="1" stop-color="#121212"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9995" x2="14.9995" y1="11" y2="23.0005">
+<stop offset="0" style="stop-color:#C8C8C8"/>
+<stop offset="0.8" style="stop-color:#383838"/>
+<stop offset="1" style="stop-color:#121212"/>
</linearGradient>
-<path d="M5,11v6c0,3.3,2.7,6,6,6h8c3.3,0,6-2.7,6-6v-6h-20z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15" x2="15" y1="12" y2="22">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.5" stop-color="#636363"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<path d="M5,11v6c0,3.3,2.7,6,6,6h8c3.3,0,6-2.7,6-6v-6H5z" fill="url(#SVGID_8_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9995" x2="14.9995" y1="12" y2="22.0005">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<path d="M11,22c-2.757,0-5-2.243-5-5v-5h18v5c0,2.757-2.243,5-5,5h-8z" fill="url(#SVGID_9_)"/>
+<path d="M11,22c-2.757,0-5-2.243-5-5v-5h18v5c0,2.757-2.243,5-5,5H11z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_collapse.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_collapse.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="30" stroke-opacity="0.6" width="30"/>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="28" x="1" y="1"/>
@@ -13,4 +14,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_company_details.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_company_details.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,86 +1,88 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="21" stroke-opacity="0.6" width="15" x="14" y="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21.5" x2="21.5" y1="9.211" y2="27.81">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#787878"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21.5" x2="21.5" y1="9.2114" y2="27.8131">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#787878"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="19" width="13" x="15" y="9"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="23.5" x2="23.5" y1="14" y2="11">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="3" width="9" x="19" y="11"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="23.5" x2="23.5" y1="19" y2="16">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="3" width="9" x="19" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="23.5" x2="23.5" y1="24" y2="21">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3" width="9" x="19" y="21"/>
<rect fill-opacity="0.6" height="28" stroke-opacity="0.6" width="19" x="1" y="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10.5" x2="10.5" y1="2.29" y2="27.74">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#787878"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10.4995" x2="10.4995" y1="2.2896" y2="27.7443">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#787878"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="26" width="17" x="2" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="5.5" x2="5.5" y1="4.056" y2="8.951">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="5.5" x2="5.5" y1="4.0557" y2="8.9507">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="5" width="3" x="4" y="4"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="4" y="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="5.5" x2="5.5" y1="12.06" y2="16.95">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="5.5" x2="5.5" y1="12.0557" y2="16.9512">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="5" width="3" x="4" y="12"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="4" y="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="5.5" x2="5.5" y1="20.06" y2="24.95">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="5.5" x2="5.5" y1="20.0557" y2="24.9507">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="5" width="3" x="4" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="4" y="24"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.5" x2="10.5" y1="4.056" y2="8.951">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="10.5" x2="10.5" y1="4.0557" y2="8.9507">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="5" width="3" x="9" y="4"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="9" y="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.5" x2="10.5" y1="12.06" y2="16.95">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="10.5" x2="10.5" y1="12.0557" y2="16.9512">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="5" width="3" x="9" y="12"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="9" y="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.5" x2="10.5" y1="20.06" y2="24.95">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="10.5" x2="10.5" y1="20.0557" y2="24.9507">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="5" width="3" x="9" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="9" y="24"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.5" x2="15.5" y1="4.056" y2="8.951">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="15.4995" x2="15.4995" y1="4.0557" y2="8.9507">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="5" width="3" x="14" y="4"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="14" y="8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.5" x2="15.5" y1="12.06" y2="16.95">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="15.4995" x2="15.4995" y1="12.0557" y2="16.9512">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="5" width="3" x="14" y="12"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="14" y="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.5" x2="15.5" y1="20.06" y2="24.95">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="15.4995" x2="15.4995" y1="20.0557" y2="24.9507">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="5" width="3" x="14" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="14" y="24"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<polygon fill-opacity="0.2" points="23.17,9,13.98,18.19,9.736,13.95,6.908,16.78,13.98,23.85,26,11.83" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="21.72,7.575,12.52,16.77,8.282,12.52,5.454,15.35,12.52,22.42,24.55,10.4"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.169,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="23.172,9 13.979,18.192 9.736,13.95 6.908,16.778 13.979,23.85 26,11.829 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="21.717,7.575 12.525,16.768 8.282,12.525 5.454,15.354 12.525,22.425 24.546,10.404 "/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connection.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_connection.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,35 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30" x="0.002"/>
-<path d="M20.75,15h-19.48c-0.555,0-0.998,0.273-1.186,0.73-0.186,0.459-0.059,0.966,0.34,1.355l10.52,10.31c0.339,0.335,0.687,0.404,0.918,0.404,0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051c0-0.83-0.69-1.52-1.53-1.52z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<path d="M29.58,12.91l-10.52-10.31c-0.339-0.333-0.685-0.402-0.916-0.402-0.564,0-1.165,0.449-1.165,1.281v4.399h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.48c0.555,0,0.998-0.273,1.186-0.73,0.18-0.46,0.06-0.97-0.34-1.36z" fill-opacity="0.35" stroke-opacity="0.35"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.14" x2="11.14" y1="16.1" y2="27">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M20.752,15.001H1.27c-0.555,0-0.998,0.273-1.186,0.73c-0.186,0.459-0.059,0.966,0.34,1.355l10.515,10.314 c0.339,0.335,0.687,0.404,0.918,0.404c0.565,0,1.165-0.448,1.165-1.28v-4.398h7.73c0.842,0,1.527-0.69,1.527-1.538v-4.051 C22.279,15.69,21.594,15.001,20.752,15.001z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<path d="M29.58,12.911L19.063,2.596c-0.339-0.333-0.685-0.402-0.916-0.402c-0.564,0-1.165,0.449-1.165,1.281v4.399 h-7.73c-0.842,0-1.525,0.689-1.525,1.537v4.051c0,0.847,0.684,1.535,1.525,1.535h19.482c0.555,0,0.998-0.273,1.186-0.73 C30.105,13.808,29.979,13.301,29.58,12.911z" fill-opacity="0.35" stroke-opacity="0.35"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="11.1406" x2="11.1406" y1="16.103" y2="27.0009">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M21.28,20.59c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861c0,0.295-0.172,0.37-0.38,0.165l-10.52-10.33c-0.211-0.205-0.144-0.372,0.145-0.372h19.48c0.289,0,0.527,0.241,0.527,0.537v4.049z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.78" x2="11.78" y1="17.07" y2="24.88">
-<stop offset="0" stop-color="#88A372"/>
-<stop offset="0.2545" stop-color="#426E4B"/>
-<stop offset="0.5091" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M21.279,20.589c0,0.294-0.236,0.538-0.527,0.538h-8.205c-0.287,0-0.525,0.241-0.525,0.537v4.861 c0,0.295-0.172,0.37-0.38,0.165L1.125,16.373c-0.211-0.205-0.144-0.372,0.145-0.372h19.482c0.289,0,0.527,0.241,0.527,0.537V20.589z " fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="11.7783" x2="11.7783" y1="17.0737" y2="24.8819">
+<stop offset="0" style="stop-color:#88A372"/>
+<stop offset="0.2545" style="stop-color:#426E4B"/>
+<stop offset="0.5091" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M3.336,17.06h16.88v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878l-7.634-7.49z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.86" x2="18.86" y1="3.223" y2="14.16">
-<stop offset="0" stop-color="#D6DFCB"/>
-<stop offset="0.4909" stop-color="#D6DFCB"/>
-<stop offset="0.9879" stop-color="#2E6B4D"/>
-<stop offset="1" stop-color="#2E6B4D"/>
+<path d="M3.336,17.06h16.885v3.009h-7.674c-0.872,0-1.584,0.715-1.584,1.596v2.878L3.336,17.06z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="18.8643" x2="18.8643" y1="3.2227" y2="14.1618">
+<stop offset="0" style="stop-color:#D6DFCB"/>
+<stop offset="0.4909" style="stop-color:#D6DFCB"/>
+<stop offset="0.9879" style="stop-color:#2E6B4D"/>
+<stop offset="1" style="stop-color:#2E6B4D"/>
</linearGradient>
-<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538v-4.861c0-0.297,0.172-0.37,0.381-0.165l10.52,10.32c0.211,0.205,0.144,0.372-0.145,0.372h-19.49c-0.289,0-0.525-0.241-0.525-0.535v-4.049z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.23" x2="18.23" y1="5.429" y2="12.97">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.703" stop-color="#426E4B"/>
-<stop offset="0.9879" stop-color="#1C3837"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M8.727,9.411c0-0.296,0.235-0.537,0.525-0.537h8.206c0.288,0,0.524-0.242,0.524-0.538V3.475 c0-0.297,0.172-0.37,0.381-0.165l10.516,10.315c0.211,0.205,0.144,0.372-0.145,0.372H9.252c-0.289,0-0.525-0.241-0.525-0.535V9.411z " fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.2266" x2="18.2266" y1="5.4292" y2="12.9712">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.703" style="stop-color:#426E4B"/>
+<stop offset="0.9879" style="stop-color:#1C3837"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</linearGradient>
-<path d="M9.785,12.94v-3.007h7.673c0.872,0,1.583-0.718,1.583-1.597v-2.878l7.627,7.48h-16.88z" fill="url(#SVGID_4_)"/>
+<path d="M9.785,12.938V9.933h7.673c0.872,0,1.583-0.718,1.583-1.597V5.458l7.627,7.48H9.785z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30" x="0.002"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_corrupted.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_corrupted.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,24 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="17.13,28,13.66,22.79,18.68,18.78,13.68,10.78,18.77,6.701,16.68,2,28,2,28,28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="21" y1="3" y2="27">
-<stop offset="0" stop-color="#C79A7D"/>
-<stop offset="1" stop-color="#71303C"/>
+<g>
+<polygon fill-opacity="0.6" points="17.131,28 13.66,22.792 18.681,18.775 13.68,10.775 18.772,6.701 16.683,2 28,2 28,28 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="21" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#C79A7D"/>
+<stop offset="1" style="stop-color:#71303C"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="17.67,27,27,27,27,3,18.22,3,20,7,15,11,20,19,15,23"/>
-<polygon fill-opacity="0.6" points="8.586,28,2,21.41,2,2,13.87,2,16.23,7.299,11.32,11.22,16.32,19.22,11.34,23.21,14.54,28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="9" y1="3" y2="27">
-<stop offset="0" stop-color="#C79A7D"/>
-<stop offset="1" stop-color="#71303C"/>
+<polygon fill="url(#SVGID_1_)" points="17.666,27 27,27 27,3 18.222,3 20,7 15,11 20,19 15,23 "/>
+<polygon fill-opacity="0.6" points="8.586,28 2,21.414 2,2 13.872,2 16.228,7.299 11.32,11.225 16.319,19.225 11.341,23.208 14.535,28 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="9" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#C79A7D"/>
+<stop offset="1" style="stop-color:#71303C"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="12.67,27,10,23,15,19,10,11,15,7,13.22,3,3,3,3,21,9,27"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 30 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="24" x2="24" y1="21.03" y2="26.94">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<polygon fill="url(#SVGID_2_)" points="12.667,27 10,23 15,19 10,11 15,7 13.222,3 3,3 3,21 9,27 "/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 30 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="24" x2="24" y1="21.0313" y2="26.9415">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="3,21,9,21,9,27"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="13.22,3,3,3,3,4,13.67,4" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="27,4,27,3,18.22,3,18.67,4" stroke-opacity="0.3"/>
+<polygon fill="url(#SVGID_3_)" points="3,21 9,21 9,27 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="13.222,3 3,3 3,4 13.666,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="27,4 27,3 18.222,3 18.666,4 " stroke-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_day.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_day.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,44 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M22,4c0-1.104-0.896-2-2-2-1.103,0-2,0.896-2,2h-6c0-1.104-0.896-2-2-2-1.103,0-2,0.896-2,2h-5v24h24v-24h-5z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -620 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-635" x2="-635" y1="10.37" y2="27">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<path d="M22,4c0-1.104-0.896-2-2-2c-1.103,0-2,0.896-2,2h-6c0-1.104-0.896-2-2-2C8.897,2,8,2.896,8,4H3v24h24V4H22z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -620 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-635" x2="-635" y1="10.3691" y2="27.0025">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="22" width="22" x="4" y="5"/>
-<polygon fill="#FFFFFF" points="9,22,9,27,4,22"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="5" y2="11">
-<stop offset="0" stop-color="#C6957B"/>
-<stop offset="1" stop-color="#73414B"/>
+<polygon fill="#FFFFFF" points="9,22 9,27 4,22 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="5" y2="11">
+<stop offset="0" style="stop-color:#C6957B"/>
+<stop offset="1" style="stop-color:#73414B"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="6" width="22" x="4" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="10" x2="10" y1="6" y2="10">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
<circle cx="10" cy="8" fill="url(#SVGID_3_)" r="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20" x2="20" y1="6" y2="10">
-<stop offset="0" stop-color="#351A25"/>
-<stop offset="1" stop-color="#803F4F"/>
+<stop offset="0" style="stop-color:#351A25"/>
+<stop offset="1" style="stop-color:#803F4F"/>
</linearGradient>
<circle cx="20" cy="8" fill="url(#SVGID_4_)" r="2"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="4" y="5"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="10" x2="10" y1="3" y2="9">
-<stop offset="0" stop-color="#FEFDFD"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<stop offset="0" style="stop-color:#FEFDFD"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
-<path d="M11,8c0,0.55-0.45,1-1,1s-1-0.45-1-1v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4z" fill="url(#SVGID_5_)"/>
+<path d="M11,8c0,0.55-0.45,1-1,1l0,0C9.45,9,9,8.55,9,8V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="3" y2="9">
-<stop offset="0" stop-color="#FEFDFD"/>
-<stop offset="1" stop-color="#8C8C8C"/>
+<stop offset="0" style="stop-color:#FEFDFD"/>
+<stop offset="1" style="stop-color:#8C8C8C"/>
</linearGradient>
-<path d="M21,8c0,0.55-0.45,1-1,1s-1-0.45-1-1v-4c0-0.55,0.45-1,1-1s1,0.45,1,1v4z" fill="url(#SVGID_6_)"/>
+<path d="M21,8c0,0.55-0.45,1-1,1l0,0c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1l0,0c0.55,0,1,0.45,1,1V8z" fill="url(#SVGID_6_)"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="22" x="4" y="11"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="23.83" y2="13.75">
-<stop offset="0" stop-color="#303030"/>
-<stop offset="1" stop-color="#000000"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15.0005" x2="15.0005" y1="23.834" y2="13.7479">
+<stop offset="0" style="stop-color:#303030"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M18.02,22.91v1.09h-6.036v-1.094h2.146v-7.629l-2.146,0.492v-1.094l3.015-0.95h0.991v9.181h2.029z" fill="url(#SVGID_7_)"/>
-</svg>
\ No newline at end of file
+<path d="M18.019,22.906V24h-6.036v-1.094h2.146v-7.629l-2.146,0.492v-1.094l3.015-0.95h0.991v9.181H18.019z" fill="url(#SVGID_7_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_dictionary.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_dictionary.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M6,1c-1.654,0-3,1.346-3,3v22c0,1.654,1.346,3,3,3h21v-28h-21z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -854.9609 -1148.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="872" x2="872" y1="-1150" y2="-1176">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M6,1C4.346,1,3,2.346,3,4v22c0,1.654,1.346,3,3,3h21V1H6z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -854.9609 -1148.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="871.96" x2="871.96" y1="-1150.0391" y2="-1176.0391">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="26" width="18" x="8" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="18" x="8" y="2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -854.9609 -1148.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="861" x2="861" y1="-1150" y2="-1176">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -854.9609 -1148.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="860.96" x2="860.96" y1="-1150.0391" y2="-1176.0391">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M8,2h-2c-1.1,0-2,0.9-2,2v22c0,1.1,0.9,2,2,2h2v-26z" fill="url(#SVGID_2_)"/>
-<path d="M10.82,12.01h5.534v-3.137h1.234v3.133h5.59v6.551h-1.179v-0.773h-4.4v5.346h-1.234v-5.346h-4.36v0.773h-1.178v-6.554zm1.18,4.71h4.354v-3.649h-4.35v3.648zm10-3.65h-4.41v3.649h4.411v-3.652z" fill-opacity="0.2"/>
-<path d="M10.82,11.01h5.534v-3.137h1.234v3.133h5.59v6.551h-1.179v-0.773h-4.4v5.346h-1.234v-5.346h-4.36v0.773h-1.178v-6.554zm1.18,4.71h4.354v-3.649h-4.35v3.648zm10-3.65h-4.41v3.649h4.411v-3.652z" fill="#FFFFFF"/>
-</svg>
\ No newline at end of file
+<path d="M8,2H6C4.9,2,4,2.9,4,4v22c0,1.1,0.9,2,2,2h2V2z" fill="url(#SVGID_2_)"/>
+<path d="M10.822,12.006h5.534V8.873h1.234v3.133h5.59v6.551h-1.179v-0.773H17.59v5.346h-1.234v-5.346H12v0.773 h-1.178V12.006z M12,16.718h4.354v-3.649H12V16.718z M22.001,13.068H17.59v3.649h4.411V13.068z" fill-opacity="0.2"/>
+<g>
+<path d="M10.822,11.006h5.534V7.873h1.234v3.133h5.59v6.551h-1.179v-0.773H17.59v5.346h-1.234v-5.346H12v0.773 h-1.178V11.006z M12,15.718h4.354v-3.649H12V15.718z M22.001,12.068H17.59v3.649h4.411V12.068z" fill="#FFFFFF"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_disconnected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_disconnected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,28 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30" x="0"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.01,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.169,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#F0F0F0" points="21.72,7.576,12.52,16.77,8.283,12.52,5.455,15.35,12.52,22.42,24.55,10.4"/>
-<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.5104 -10.5666)" width="1" x="20.51" y="13.15"/>
-<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.1925 -13.7483)" width="1" x="23.69" y="10.46"/>
-<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.0966 -11.2234)" width="1" x="19.1" y="7.49"/>
-<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.975 -7.0313)" width="1" x="16.98" y="16.68"/>
-<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 13.5609 -7.6881)" width="1" x="15.56" y="11.02"/>
-<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.4396 -3.4957)" width="1" x="13.44" y="20.22"/>
-<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" transform="matrix(0.7074 0.7069 -0.7069 0.7074 14.8717 -4.507)" width="1" x="12.38" y="14.71"/>
-<rect fill-opacity="0.5" height="1.001" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.6318 -13.9304)" width="3" x="21.63" y="7.782"/>
-<rect fill-opacity="0.5" height="1" stroke-opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 2.9036 43.2242)" width="3" x="8.904" y="20.51"/>
-<rect fill-opacity="0.5" height="1.001" stroke-opacity="0.5" transform="matrix(-0.7069 -0.7073 0.7073 -0.7069 -0.6353 34.686)" width="3" x="5.368" y="16.97"/>
-<rect fill-opacity="0.5" height="1" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.1969 -2.981)" width="3" x="8.197" y="12.73"/>
+<path d="M15,3c7.01,0,12.709,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 C7.82,2,2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#F0F0F0" points="21.717,7.576 12.525,16.768 8.283,12.525 5.455,15.354 12.525,22.425 24.547,10.404 "/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.5104 -10.5666)" width="1" x="20.51" y="13.147"/>
+<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 15.1925 -13.7483)" width="1" x="23.692" y="10.465"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.0966 -11.2234)" width="1" x="19.096" y="7.49"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 17.975 -7.0313)" width="1" x="16.975" y="16.682"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 13.5609 -7.6881)" width="1" x="15.561" y="11.025"/>
+<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 19.4396 -3.4957)" width="1" x="13.44" y="20.218"/>
+<rect fill-opacity="0.5" height="2" stroke-opacity="0.5" transform="matrix(0.7074 0.7069 -0.7069 0.7074 14.8717 -4.507)" width="1" x="12.379" y="14.707"/>
+<rect fill-opacity="0.5" height="1.001" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.6318 -13.9304)" width="3" x="21.632" y="7.782"/>
+<rect fill-opacity="0.5" height="1" stroke-opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 2.9036 43.2242)" width="3" x="8.904" y="20.511"/>
+<rect fill-opacity="0.5" height="1.001" stroke-opacity="0.5" transform="matrix(-0.7069 -0.7073 0.7073 -0.7069 -0.6353 34.686)" width="3" x="5.368" y="16.974"/>
+<rect fill-opacity="0.5" height="1" stroke-opacity="0.5" transform="matrix(0.7071 0.7071 -0.7071 0.7071 12.1969 -2.981)" width="3" x="8.197" y="12.732"/>
<rect fill-opacity="0.5" height="3" stroke-opacity="0.5" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 0.661 28.1527)" width="1" x="5.661" y="12.44"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#C5D3A1"/>
-<stop offset="1" stop-color="#6D8667"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#C5D3A1"/>
+<stop offset="1" style="stop-color:#6D8667"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_draft.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_draft.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill="url(#SVGID_1_)" points="27,2,27,28,9.586,28,3,21.4,3,2"/>
-<polygon fill="#FFFFFF" points="4,21,10,21,10,27"/>
+<g>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9.586,28 3,21.404 3,2 "/>
+<polygon fill="#FFFFFF" points="4,21 10,21 10,27 "/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="7"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="11"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="12" x="6" y="15"/>
<rect fill="none" height="30" width="30"/>
-<polygon fill="#505050" points="9.778,26.78,9.071,27.48,9.586,28,10.86,28,10.86,27,10,27"/>
+<g>
+<polygon fill="#505050" points="9.778,26.777 9.071,27.484 9.586,28 10.858,28 10.858,27 10,27 "/>
<rect fill="#505050" height="1" transform="matrix(-0.7074 -0.7069 0.7069 -0.7074 -5.2081 47.8633)" width="2" x="6.304" y="24.51"/>
<rect fill="#505050" height="1" width="2" x="7" y="2"/>
<rect fill="#505050" height="1" width="2" x="11" y="2"/>
-<rect fill="#505050" height="1" width="2" x="12.86" y="27"/>
-<rect fill="#505050" height="1" transform="matrix(-0.7074 -0.7069 0.7069 -0.7074 -8.0388 41.0351)" width="2" x="3.475" y="21.68"/>
+<rect fill="#505050" height="1" width="2" x="12.858" y="27"/>
+<rect fill="#505050" height="1" transform="matrix(-0.7074 -0.7069 0.7069 -0.7074 -8.0388 41.0351)" width="2" x="3.475" y="21.682"/>
<rect fill="#505050" height="2" width="1" x="3" y="10"/>
<rect fill="#505050" height="1" width="2" x="15" y="2"/>
<rect fill="#505050" height="2" width="1" x="3" y="6"/>
<rect fill="#505050" height="2" width="1" x="3" y="14"/>
<rect fill="#505050" height="2" width="1" x="3" y="18"/>
<rect fill="#505050" height="1" width="2" x="3" y="2"/>
-<rect fill="#505050" height="2" width="1" x="26" y="13.64"/>
+<rect fill="#505050" height="2" width="1" x="26" y="13.639"/>
<rect fill="#505050" height="2" width="1" x="26" y="9.639"/>
-<rect fill="#505050" height="2" width="1" x="26" y="17.64"/>
+<rect fill="#505050" height="2" width="1" x="26" y="17.639"/>
<rect fill="#505050" height="1" width="2" x="23" y="2"/>
<rect fill="#505050" height="2" width="1" x="26" y="5.639"/>
-<polygon fill="#505050" points="26,27.5,26.86,27.5,27,27.5,27,25.64,26,25.64"/>
-<rect fill="#505050" height="2" width="1" x="26" y="21.64"/>
-<rect fill="#505050" height="1" width="2" x="20.86" y="27"/>
+<polygon fill="#505050" points="26,27.496 26.857,27.496 27,27.496 27,25.639 26,25.639 "/>
+<rect fill="#505050" height="2" width="1" x="26" y="21.639"/>
+<rect fill="#505050" height="1" width="2" x="20.857" y="27"/>
<rect fill="#505050" height="1" width="2" x="19" y="2"/>
-<rect fill="#505050" height="1" width="2" x="16.86" y="27"/>
+<rect fill="#505050" height="1" width="2" x="16.857" y="27"/>
<rect fill="#505050" height="2" width="1" x="26" y="2"/>
<rect fill="#505050" height="2" width="1" x="3" y="2.361"/>
<rect fill="#505050" height="1" width="2" x="25" y="27"/>
+</g>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 -1 -305.0195 -262.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-320" x2="-320" y1="-264.5" y2="-290.5">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<linearGradient gradientTransform="matrix(-1 0 0 -1 -305.0195 -262.4805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-320.0195" x2="-320.0195" y1="-264.4805" y2="-290.4805">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_drm_rights_expired.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_drm_rights_expired.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,30 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M23.98,8.778c-0.472-3.282-0.868-5.2-1.181-5.701-0.08-0.126-1.99-3.077-7.91-3.077-5.978,0-7.625,3.002-7.663,3.079-0.374,0.621-0.864,3.438-1.215,5.747-0.098,1.013,0.428,2.248,1.291,2.927,1.198,0.784,2.063,1.291,2.696,1.623v2.622h1v9.01l4,4.824,4-4.825v-2l-0.635-0.616,1.211-1.303-1.244-1.34,1.351-1.388-1.302-1.276,0.62-0.64v-0.432h1v-2.632c0.646-0.34,1.527-0.859,2.756-1.665,0.78-0.62,1.32-1.853,1.22-2.922zm-11.48-3.778h5c0.27,0,0.5,0.229,0.5,0.5s-0.23,0.5-0.5,0.5h-5c-0.27,0-0.5-0.229-0.5-0.5s0.23-0.5,0.5-0.5z" fill-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="12,24.64,12,15,11,15,11,12,19,12,19,15,18,15,18,16.03,16.98,17.1,18.27,18.37,16.95,19.73,18.21,21.08,16.97,22.42,18,23.42,18,24.64,15,28.26"/>
-<polygon fill="url(#SVGID_1_)" points="12,24.64,12,15,11,15,11,12,19,12,19,15,18,15,18,16.03,16.98,17.1,18.27,18.37,16.95,19.73,18.21,21.08,16.97,22.42,18,23.42,18,24.64,15,28.26"/>
+<g>
+<path d="M23.984,8.778c-0.472-3.282-0.868-5.2-1.181-5.701C22.725,2.951,20.813,0,14.888,0 C8.912,0,7.265,3.002,7.227,3.079C6.853,3.7,6.363,6.517,6.012,8.826c-0.098,1.013,0.428,2.248,1.291,2.927 c1.198,0.784,2.063,1.291,2.696,1.623v2.622h1V25l4,4.824l4-4.825V23l-0.635-0.616l1.211-1.303l-1.244-1.34l1.351-1.388 l-1.302-1.276L19,16.43v-0.432h1v-2.632c0.646-0.34,1.527-0.859,2.756-1.665C23.544,11.078,24.075,9.847,23.984,8.778z M12.5,5h5 C17.771,5,18,5.229,18,5.5S17.771,6,17.5,6h-5C12.229,6,12,5.771,12,5.5S12.229,5,12.5,5z" fill-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="12,24.641 12,14.998 11,14.998 11,12 19,12 19,14.998 18,14.998 18,16.027 16.977,17.102 18.271,18.37 16.952,19.727 18.211,21.081 16.967,22.42 18,23.423 18,24.639 15,28.258 "/>
+<polygon fill="url(#SVGID_1_)" points="12,24.641 12,14.998 11,14.998 11,12 19,12 19,14.998 18,14.998 18,16.027 16.977,17.102 18.271,18.37 16.952,19.727 18.211,21.081 16.967,22.42 18,23.423 18,24.639 15,28.258 "/>
<rect fill-opacity="0.3" height="2" width="8" x="11" y="12"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -268.8496)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="222.8" x2="222.8" y1="-283.8" y2="-297.1">
-<stop offset="0" stop-color="#D1D2D2"/>
-<stop offset="1" stop-color="#F1F2F2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -268.8496)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="222.8494" x2="222.8494" y1="-283.8496" y2="-297.1074">
+<stop offset="0" style="stop-color:#D1D2D2"/>
+<stop offset="1" style="stop-color:#F1F2F2"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="13,15,13,25.85,15,28.26,15,15"/>
-<polygon fill-opacity="0.3" points="14,15,14,27.05,15,28.26,15,15"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -268.8496)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.8" x2="223.8" y1="-269.8" y2="-281.8">
-<stop offset="0" stop-color="#919191"/>
-<stop offset="1" stop-color="#0D0D0D"/>
+<polygon fill="url(#SVGID_3_)" points="13,15 13,25.846 15,28.258 15,15 "/>
+<polygon fill-opacity="0.3" points="14,15 14,27.053 15,28.258 15,15 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -268.8496)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="223.8494" x2="223.8494" y1="-269.8496" y2="-281.8496">
+<stop offset="0" style="stop-color:#919191"/>
+<stop offset="1" style="stop-color:#0D0D0D"/>
</linearGradient>
-<path d="M21.96,3.606s-1.628-2.606-7.066-2.606c-5.44,0-6.806,2.595-6.806,2.595-0.352,0.582-1.077,5.326-1.077,5.326-0.065,0.679,0.315,1.579,0.844,1.999,0,0,3.186,2.084,3.854,2.084h6.578c0.668,0,3.854-2.084,3.854-2.084,0.528-0.418,0.914-1.316,0.857-1.996,0-0.004-0.68-4.741-1.03-5.318zm-4.46,3.394h-5c-0.82,0-1.5-0.675-1.5-1.5s0.68-1.5,1.5-1.5h5c0.82,0,1.5,0.675,1.5,1.5s-0.68,1.5-1.5,1.5z" fill="url(#SVGID_4_)"/>
-<path d="M8.083,4.595s1.364-2.595,6.806-2.595c5.438,0,7.066,2.606,7.066,2.606,0.297,0.476,0.812,3.783,0.981,4.923,0.048-0.21,0.072-0.418,0.058-0.609,0,0-0.68-4.737-1.039-5.313,0,0-1.628-2.606-7.066-2.606-5.44,0-6.806,2.595-6.806,2.595-0.352,0.581-1.077,5.325-1.077,5.325-0.019,0.197,0.01,0.413,0.059,0.63,0.176-1.119,0.725-4.473,1.017-4.956z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M12.5,8h5c0.82,0,1.5-0.675,1.5-1.5,0-0.176-0.036-0.343-0.093-0.5-0.208,0.58-0.758,1-1.407,1h-5c-0.648,0-1.199-0.42-1.407-1-0.05,0.157-0.09,0.324-0.09,0.5,0,0.825,0.68,1.5,1.5,1.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21.955,3.606c0,0-1.628-2.606-7.066-2.606c-5.44,0-6.806,2.595-6.806,2.595 C7.732,4.177,7.007,8.921,7.007,8.921C6.942,9.6,7.322,10.498,7.851,10.916c0,0,3.186,2.084,3.854,2.084h6.578 c0.668,0,3.854-2.084,3.854-2.084c0.528-0.418,0.914-1.316,0.857-1.996C22.994,8.92,22.314,4.183,21.955,3.606z M17.5,7h-5 C11.675,7,11,6.325,11,5.5S11.675,4,12.5,4h5C18.325,4,19,4.675,19,5.5S18.325,7,17.5,7z" fill="url(#SVGID_4_)"/>
+<path d="M8.083,4.595c0,0,1.364-2.595,6.806-2.595 c5.438,0,7.066,2.606,7.066,2.606c0.297,0.476,0.812,3.783,0.981,4.923c0.048-0.21,0.072-0.418,0.058-0.609 c0,0-0.68-4.737-1.039-5.313c0,0-1.628-2.606-7.066-2.606c-5.44,0-6.806,2.595-6.806,2.595C7.732,4.177,7.007,8.921,7.007,8.921 c-0.019,0.197,0.01,0.413,0.059,0.63C7.242,8.432,7.791,5.078,8.083,4.595z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12.5,8h5C18.325,8,19,7.325,19,6.5 c0-0.176-0.036-0.343-0.093-0.5c-0.208,0.58-0.758,1-1.407,1h-5c-0.648,0-1.199-0.42-1.407-1C11.036,6.157,11,6.324,11,6.5 C11,7.325,11.675,8,12.5,8z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30" x="0"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -268.8496)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="223.8" x2="223.8" y1="-280.8" y2="-297.1">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="1" stop-color="#D9D9D9"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -208.8501 -268.8496)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="223.8494" x2="223.8494" y1="-280.8496" y2="-297.1074">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="1" style="stop-color:#D9D9D9"/>
</linearGradient>
</defs>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -35,4 +38,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M15,29C7.28,29,1,22.721,1,15C1,7.28,7.28,1,15,1c7.721,0,14,6.28,14,14 C29,22.721,22.721,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.179-5.82-13-13-13s-13,5.821-13,13c0,0.169,0.02,0.333,0.025,0.5,0.265-6.945,5.963-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24.75,16.23c0,1.563-0.314,2.916-0.943,4.06-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.578,0-2.121-0.768-3.929-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.455,0,2.139,0.75,3.963,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.05c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.914-2.861-4.217-2.861-6.9,0-2.671,0.955-4.962,2.865-6.873,1.907-1.911,4.197-2.867,6.877-2.867,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M24.75,14.98c0,1.563-0.314,2.916-0.943,4.059-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.579,0-2.12-0.768-3.93-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.453,0,2.139,0.75,3.962,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.912-2.861-4.216-2.861-6.899,0-2.673,0.955-4.964,2.865-6.873,1.907-1.921,4.197-2.877,6.877-2.877,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill="#FFFFFF"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13C7.82,2,2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.234c0,1.563-0.314,2.916-0.943,4.06 c-0.762,1.408-1.863,2.115-3.307,2.115c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237 c-1.415,0-2.546-0.543-3.401-1.621c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638 c0.844-1.053,1.979-1.574,3.401-1.574c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068 c0.782,0,1.387-0.541,1.809-1.619c0.311-0.806,0.467-1.66,0.467-2.578c0-2.121-0.768-3.929-2.289-5.438 c-1.523-1.509-3.354-2.26-5.484-2.26c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.455 c0,2.139,0.75,3.963,2.258,5.467c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865 c-1.907-1.914-2.861-4.217-2.861-6.9c0-2.671,0.955-4.962,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5 c2.688,0,4.986,0.95,6.893,2.856C23.796,11.257,24.75,13.552,24.75,16.234z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113 c-0.794,0-1.409,0.354-1.839,1.061c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271 C16.092,19.521,16.885,18.4,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M24.75,14.985c0,1.563-0.314,2.916-0.943,4.059c-0.762,1.408-1.863,2.115-3.307,2.115 c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.543-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068c0.782,0,1.387-0.541,1.809-1.619 c0.311-0.806,0.467-1.66,0.467-2.579c0-2.12-0.768-3.93-2.289-5.438c-1.523-1.509-3.354-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.962,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865c-1.907-1.912-2.861-4.216-2.861-6.899 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.893,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.15,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814" y2="840.3">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.9805" y2="840.3448">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,31 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814" y2="840.3">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M15,29C7.28,29,1,22.721,1,15C1,7.28,7.28,1,15,1c7.721,0,14,6.28,14,14 C29,22.721,22.721,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.9805" y2="840.3448">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.179-5.82-13-13-13s-13,5.821-13,13c0,0.169,0.02,0.333,0.025,0.5,0.265-6.945,5.963-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24.75,16.23c0,1.563-0.314,2.916-0.943,4.06-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.578,0-2.121-0.768-3.929-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.455,0,2.139,0.75,3.963,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.05c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.914-2.861-4.217-2.861-6.9,0-2.671,0.955-4.962,2.865-6.873,1.907-1.911,4.197-2.867,6.877-2.867,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M24.75,14.98c0,1.563-0.314,2.916-0.943,4.059-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.579,0-2.12-0.768-3.93-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.453,0,2.139,0.75,3.962,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.912-2.861-4.216-2.861-6.899,0-2.673,0.955-4.964,2.865-6.873,1.907-1.921,4.197-2.877,6.877-2.877,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill="#FFFFFF"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13C7.82,2,2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.234c0,1.563-0.314,2.916-0.943,4.06 c-0.762,1.408-1.863,2.115-3.307,2.115c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237 c-1.415,0-2.546-0.543-3.401-1.621c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638 c0.844-1.053,1.979-1.574,3.401-1.574c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068 c0.782,0,1.387-0.541,1.809-1.619c0.311-0.806,0.467-1.66,0.467-2.578c0-2.121-0.768-3.929-2.289-5.438 c-1.523-1.509-3.354-2.26-5.484-2.26c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.455 c0,2.139,0.75,3.963,2.258,5.467c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865 c-1.907-1.914-2.861-4.217-2.861-6.9c0-2.671,0.955-4.962,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5 c2.688,0,4.986,0.95,6.893,2.856C23.796,11.257,24.75,13.552,24.75,16.234z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113 c-0.794,0-1.409,0.354-1.839,1.061c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271 C16.092,19.521,16.885,18.4,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M24.75,14.985c0,1.563-0.314,2.916-0.943,4.059c-0.762,1.408-1.863,2.115-3.307,2.115 c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.543-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068c0.782,0,1.387-0.541,1.809-1.619 c0.311-0.806,0.467-1.66,0.467-2.579c0-2.12-0.768-3.93-2.289-5.438c-1.523-1.509-3.354-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.962,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865c-1.907-1.912-2.861-4.216-2.861-6.899 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.893,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.15,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="22" x2="22" y1="14.97" y2="29.16">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+</g>
+<g>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="22" x2="22" y1="14.9683" y2="29.1646">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3,26.34,24" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3,26.34,23"/>
-<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
+<polygon fill-opacity="0.2" points="26.34,24 21.999,19.4 17.66,24 17,23.3 21.999,18 27,23.3 26.34,24 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="21.999,20.857 18,25.098 18,27 21,27 21,24 23,24 23,27 26,27 26,25.097 " stroke-opacity="0.2"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="26.34,23 21.999,18.4 17.66,23 17,22.3 21.999,17 27,22.3 26.34,23 "/>
+<polygon fill="#FFFFFF" points="21.999,19.857 18,24.098 18,26 21,26 21,23 23,23 23,26 26,26 26,24.097 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_email_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,28 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814" y2="840.3">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M15,29C7.28,29,1,22.721,1,15C1,7.28,7.28,1,15,1c7.721,0,14,6.28,14,14 C29,22.721,22.721,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.9805" y2="840.3448">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.179-5.82-13-13-13s-13,5.821-13,13c0,0.169,0.02,0.333,0.025,0.5,0.265-6.945,5.963-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24.75,16.23c0,1.563-0.314,2.916-0.943,4.06-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.578,0-2.121-0.768-3.929-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.455,0,2.139,0.75,3.963,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.05c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.914-2.861-4.217-2.861-6.9,0-2.671,0.955-4.962,2.865-6.873,1.907-1.911,4.197-2.867,6.877-2.867,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M24.75,14.98c0,1.563-0.314,2.916-0.943,4.059-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.579,0-2.12-0.768-3.93-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.453,0,2.139,0.75,3.962,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.912-2.861-4.216-2.861-6.899,0-2.673,0.955-4.964,2.865-6.873,1.907-1.921,4.197-2.877,6.877-2.877,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill="#FFFFFF"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13C7.82,2,2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.234c0,1.563-0.314,2.916-0.943,4.06 c-0.762,1.408-1.863,2.115-3.307,2.115c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237 c-1.415,0-2.546-0.543-3.401-1.621c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638 c0.844-1.053,1.979-1.574,3.401-1.574c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068 c0.782,0,1.387-0.541,1.809-1.619c0.311-0.806,0.467-1.66,0.467-2.578c0-2.121-0.768-3.929-2.289-5.438 c-1.523-1.509-3.354-2.26-5.484-2.26c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.455 c0,2.139,0.75,3.963,2.258,5.467c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865 c-1.907-1.914-2.861-4.217-2.861-6.9c0-2.671,0.955-4.962,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5 c2.688,0,4.986,0.95,6.893,2.856C23.796,11.257,24.75,13.552,24.75,16.234z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113 c-0.794,0-1.409,0.354-1.839,1.061c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271 C16.092,19.521,16.885,18.4,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M24.75,14.985c0,1.563-0.314,2.916-0.943,4.059c-0.762,1.408-1.863,2.115-3.307,2.115 c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.543-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068c0.782,0,1.387-0.541,1.809-1.619 c0.311-0.806,0.467-1.66,0.467-2.579c0-2.12-0.768-3.93-2.289-5.438c-1.523-1.509-3.354-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.962,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865c-1.907-1.912-2.861-4.216-2.861-6.899 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.893,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.15,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -549.9609 -796.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="572" x2="572" y1="811" y2="825">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+</g>
+<g>
+<rect fill="none" height="30" width="30"/>
+<g>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -549.9609 -796.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="571.9609" x2="571.9609" y1="811.0391" y2="825.0391">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="24,19,24,20,26,20,26,21,24,21,24,22,26,22,26,23,24,23,24,26,27,26,27,19"/>
-<path d="M17,19v7h2v-2h2v2h2v-9l-6,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm3,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="24,19 24,20 26,20 26,21 24,21 24,22 26,22 26,23 24,23 24,26 27,26 27,19 "/>
+<path d="M17,19v7h2v-2h2v2h2v-9L17,19z M19,23h-1v-1h1V23z M19,21h-1v-1h1V21z M22,23h-1v-1h1V23z M22,21h-1v-1h1 V21z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="24"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_expand.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_expand.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="30" width="30"/>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-<polygon fill-opacity="0.2" points="24,13.88,17.99,13.88,17.99,8,13.99,8,13.99,13.88,8,13.88,8,17.88,13.99,17.88,13.99,24,17.99,24,17.99,17.88,24,17.88"/>
+<polygon fill-opacity="0.2" points="24,13.88 17.99,13.88 17.99,8 13.99,8 13.99,13.88 8,13.88 8,17.88 13.99,17.88 13.99,24 17.99,24 17.99,17.88 24,17.88 "/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" width="28" x="1" y="1"/>
<rect fill-opacity="0.2" height="1" width="28" x="1" y="28"/>
-<polygon fill="#FFFFFF" points="23,12.88,16.99,12.88,16.99,7,12.99,7,12.99,12.88,7,12.88,7,16.88,12.99,16.88,12.99,23,16.99,23,16.99,16.88,23,16.88"/>
+<polygon fill="#FFFFFF" points="23,12.88 16.99,12.88 16.99,7 12.99,7 12.99,12.88 7,12.88 7,16.88 12.99,16.88 12.99,23 16.99,23 16.99,16.88 23,16.88 "/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="813.2" y2="841.2">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.2148" y2="841.2148">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fail.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fail.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14s6.279-14,14-14c7.719,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4.738" y2="61.75">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<path d="M15,29C7.279,29,1,22.72,1,15S7.279,1,15,1c7.719,0,14,6.28,14,14S22.719,29,15,29L15,29z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9985" x2="14.9985" y1="4.7378" y2="61.75">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="10"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2" y2="27.95">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#5A2633"/>
+<circle cx="14.999" cy="15" fill="url(#SVGID_1_)" r="10"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2" y2="27.9507">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#5A2633"/>
</linearGradient>
-<path d="M15,2c-7.18,0-13,5.82-13,13s5.82,13,13,13,13-5.82,13-13-5.82-13-13-13zm0,4c1.788,0,3.45,0.527,4.851,1.427l-12.42,12.42c-0.9-1.4-1.428-3.06-1.428-4.85,0-4.97,4.03-9,9-9zm0,18c-1.929,0-3.711-0.611-5.176-1.645l12.53-12.53c1.04,1.46,1.65,3.24,1.65,5.17,0,4.97-4.03,9-9,9z" fill="url(#SVGID_2_)"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.169,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,2C7.82,2,2,7.82,2,15s5.82,13,13,13s13-5.82,13-13S22.18,2,15,2z M15.001,6 c1.788,0,3.45,0.527,4.851,1.427L7.428,19.852C6.528,18.451,6,16.788,6,15C6,10.028,10.03,6,15.001,6z M15.001,24 c-1.929,0-3.711-0.611-5.176-1.645l12.53-12.531C23.389,11.289,24,13.071,24,15C24,19.971,19.971,24,15.001,24z" fill="url(#SVGID_2_)"/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_family.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_family.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,38 +1,40 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M29.81,21.15c-0.168-0.236-0.379-0.377-1.244-0.93-2.185-1.396-3.445-2.377-3.756-2.9,0.68-0.59,1.246-1.319,1.623-2.104,0.813-1.688,0.664-5.425,0.646-5.798,0-2.197-2.8-4.422-4.81-4.422h-0.541c-2.014,0-4.813,2.225-4.813,4.379-0.015,0.417-0.122,4.122,0.633,5.807,0.356,0.798,0.924,1.544,1.627,2.145-0.295,0.47-1.26,1.247-2.864,2.313-2.51-1.551-3.942-2.637-4.252-3.217,0.787-0.644,1.444-1.451,1.882-2.323,0.923-1.842,0.751-5.937,0.729-6.349-0.02-2.365-3.14-4.761-5.377-4.761h-0.617c-2.242,0-5.36,2.396-5.359,4.719-0.018,0.457-0.14,4.52,0.717,6.36,0.413,0.888,1.072,1.712,1.888,2.368-0.353,0.609-1.813,1.707-4.353,3.268-0.967,0.594-1.201,0.742-1.38,0.982l-0.199,0.26v6.04h30v-5.594l-0.19-0.26z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="298.5" x2="298.5" y1="-387.1" y2="-409.3">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M29.813,21.146c-0.168-0.236-0.379-0.377-1.244-0.93 c-2.185-1.396-3.445-2.377-3.756-2.9c0.68-0.59,1.246-1.319,1.623-2.104c0.813-1.688,0.664-5.425,0.646-5.798 C27.081,7.225,24.279,5,22.266,5h-0.541c-2.014,0-4.813,2.225-4.813,4.379c-0.015,0.417-0.122,4.122,0.633,5.807 c0.356,0.798,0.924,1.544,1.627,2.145c-0.295,0.47-1.26,1.247-2.864,2.313c-2.51-1.551-3.942-2.637-4.252-3.217 c0.787-0.644,1.444-1.451,1.882-2.323c0.923-1.842,0.751-5.937,0.729-6.349C14.664,5.396,11.545,3,9.303,3H8.686 c-2.242,0-5.36,2.396-5.359,4.719c-0.018,0.457-0.14,4.52,0.717,6.36c0.413,0.888,1.072,1.712,1.888,2.368 c-0.353,0.609-1.813,1.707-4.353,3.268c-0.967,0.594-1.201,0.742-1.38,0.982L0,20.963V27h30v-5.594L29.813,21.146z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="298.4795" x2="298.4795" y1="-387.0615" y2="-409.2758">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M11,16.35c-0.008-0.125,0-0.252,0.004-0.38,0.852-0.585,1.589-1.415,2.039-2.311,0.831-1.661,0.623-5.901,0.623-5.901,0-1.733-2.64-3.759-4.357-3.759h-0.617c-1.72,0-4.36,2.026-4.36,3.756,0,0-0.155,4.226,0.624,5.901,0.425,0.912,1.178,1.752,2.049,2.335,0.003,0.117,0.011,0.236,0.004,0.354-0.107,1.69-5.729,4.58-6.003,4.95v4.7h16v-4.701c-0.28-0.37-5.9-3.26-6-4.95z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="298.5" x2="298.5" y1="-387.1" y2="-409.2">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="0.7212" stop-color="#3B518A"/>
-<stop offset="0.7836" stop-color="#486698"/>
-<stop offset="0.9249" stop-color="#6295B3"/>
-<stop offset="1" stop-color="#6BA8BE"/>
+<path d="M10.998,16.348c-0.008-0.125,0-0.252,0.004-0.38c0.852-0.585,1.589-1.415,2.039-2.311 c0.831-1.661,0.623-5.901,0.623-5.901C13.664,6.026,11.023,4,9.303,4H8.686c-1.72,0-4.36,2.026-4.36,3.756 c0,0-0.155,4.226,0.624,5.901c0.425,0.912,1.178,1.752,2.049,2.335c0.003,0.117,0.011,0.236,0.004,0.354 C6.896,18.044,1.274,20.928,1,21.295V26h16v-4.701C16.725,20.93,11.104,18.044,10.998,16.348z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="298.4795" x2="298.4795" y1="-387.0615" y2="-409.2013">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="0.7212" style="stop-color:#3B518A"/>
+<stop offset="0.7836" style="stop-color:#486698"/>
+<stop offset="0.9249" style="stop-color:#6295B3"/>
+<stop offset="1" style="stop-color:#6BA8BE"/>
</linearGradient>
-<path d="M11,16.35c-0.008-0.125,0-0.252,0.004-0.38,0.852-0.585,1.589-1.415,2.039-2.311,0.831-1.661,0.623-5.901,0.623-5.901,0-1.733-2.64-3.759-4.357-3.759h-0.617c-1.72,0-4.36,2.026-4.36,3.756,0,0-0.155,4.226,0.624,5.901,0.425,0.912,1.178,1.752,2.049,2.335,0.003,0.117,0.011,0.236,0.004,0.354-0.107,1.69-5.729,4.58-6.003,4.95v4.7h16v-4.701c-0.28-0.37-5.9-3.26-6-4.95zm5.11,8.76h-14.22v-3.358c0.188-0.12,0.441-0.274,0.676-0.42,2.75-1.688,5.225-3.335,5.324-4.925,0.007-0.12,0.005-0.234,0-0.35l-0.01-0.466-0.389-0.33c-0.756-0.505-1.389-1.225-1.736-1.971-0.563-1.21-0.58-4.371-0.54-5.487,0.001-1.157,2.109-2.897,3.472-2.897h0.617c1.363,0,3.473,1.74,3.473,2.863,0.076,1.594-0.001,4.444-0.529,5.498-0.377,0.753-1.014,1.474-1.746,1.976l-0.374,0.258-0.013,0.456c-0.007,0.205-0.01,0.334-0.002,0.461,0.1,1.591,2.574,3.238,5.324,4.928,0.234,0.146,0.488,0.3,0.675,0.421v3.337l-0.01,0.003z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="311.5" x2="311.5" y1="-389.4" y2="-409">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M10.998,16.348c-0.008-0.125,0-0.252,0.004-0.38c0.852-0.585,1.589-1.415,2.039-2.311 c0.831-1.661,0.623-5.901,0.623-5.901C13.664,6.026,11.023,4,9.303,4H8.686c-1.72,0-4.36,2.026-4.36,3.756 c0,0-0.155,4.226,0.624,5.901c0.425,0.912,1.178,1.752,2.049,2.335c0.003,0.117,0.011,0.236,0.004,0.354 C6.896,18.044,1.274,20.928,1,21.295V26h16v-4.701C16.725,20.93,11.104,18.044,10.998,16.348z M16.111,25.107H1.889v-3.358 c0.188-0.12,0.441-0.274,0.676-0.42c2.75-1.688,5.225-3.335,5.324-4.925c0.007-0.12,0.005-0.234,0-0.35l-0.01-0.466L7.49,15.248 c-0.756-0.505-1.389-1.225-1.736-1.971c-0.563-1.21-0.58-4.371-0.54-5.487c0.001-1.157,2.109-2.897,3.472-2.897h0.617 c1.363,0,3.473,1.74,3.473,2.863c0.076,1.594-0.001,4.444-0.529,5.498c-0.377,0.753-1.014,1.474-1.746,1.976l-0.374,0.258 l-0.013,0.456c-0.007,0.205-0.01,0.334-0.002,0.461c0.1,1.591,2.574,3.238,5.324,4.928c0.234,0.146,0.488,0.3,0.675,0.421V25.107 L16.111,25.107z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="311.4805" x2="311.4805" y1="-389.3994" y2="-408.9525">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M23.75,17.22c-0.007-0.115,0-0.229,0.004-0.346,0.744-0.531,1.391-1.286,1.783-2.102,0.729-1.508,0.546-5.363,0.546-5.363,0-1.572-2.31-3.414-3.815-3.414h-0.541c-1.504,0-3.813,1.842-3.813,3.414,0,0-0.138,3.842,0.545,5.363,0.371,0.831,1.03,1.594,1.793,2.124,0.003,0.107,0.01,0.218,0.004,0.324-0.094,1.543-5.012,4.162-5.252,4.498v4.29h14v-4.273c-0.24-0.34-5.16-2.96-5.25-4.51z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="311.5" x2="311.5" y1="-389.1" y2="-412.6">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#B18A7D"/>
+<path d="M23.748,17.225c-0.007-0.115,0-0.229,0.004-0.346c0.744-0.531,1.391-1.286,1.783-2.102 c0.729-1.508,0.546-5.363,0.546-5.363c0-1.572-2.31-3.414-3.815-3.414h-0.541c-1.504,0-3.813,1.842-3.813,3.414 c0,0-0.138,3.842,0.545,5.363c0.371,0.831,1.03,1.594,1.793,2.124c0.003,0.107,0.01,0.218,0.004,0.324 c-0.094,1.543-5.012,4.162-5.252,4.498V26h14v-4.273C28.76,21.391,23.842,18.768,23.748,17.225z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="311.4805" x2="311.4805" y1="-389.0576" y2="-412.6398">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#B18A7D"/>
</linearGradient>
-<path d="M23.75,17.22c-0.007-0.115,0-0.229,0.004-0.346,0.744-0.531,1.391-1.286,1.783-2.102,0.729-1.508,0.546-5.363,0.546-5.363,0-1.572-2.31-3.414-3.815-3.414h-0.541c-1.504,0-3.813,1.842-3.813,3.414,0,0-0.138,3.842,0.545,5.363,0.371,0.831,1.03,1.594,1.793,2.124,0.003,0.107,0.01,0.218,0.004,0.324-0.094,1.543-5.012,4.162-5.252,4.498v4.29h14v-4.273c-0.24-0.34-5.16-2.96-5.25-4.51zm4.37,7.87h-12.25v-2.904c0.158-0.104,0.361-0.233,0.551-0.354,2.984-1.903,4.617-3.194,4.699-4.552,0.006-0.114,0.004-0.223,0-0.331l-0.016-0.466-0.375-0.338c-0.647-0.451-1.189-1.09-1.484-1.752-0.434-0.963-0.516-3.545-0.466-4.946,0.001-0.993,1.813-2.539,2.94-2.539h0.539c1.127,0,2.941,1.546,2.941,2.506,0.066,1.443,0.001,4.016-0.453,4.955-0.322,0.671-0.868,1.312-1.497,1.76l-0.364,0.263-0.015,0.459c-0.006,0.188-0.01,0.31-0.002,0.43,0.082,1.357,1.715,2.648,4.698,4.555,0.189,0.121,0.393,0.25,0.552,0.355l0.01,2.89z" fill="url(#SVGID_4_)"/>
-<path d="M7.972,27l0.028-1.03c0.074-2.632,1.977-3.813,3.234-4.597l0.156-0.097,1.674-0.842c-0.006-0.01-0.012-0.019-0.018-0.026-0.166-0.231-0.371-0.522-0.547-0.863-0.744-1.44-0.995-2.394-0.995-3.774,0-2.632,2.001-4.772,4.462-4.772h0.103c2.445,0.019,4.43,2.152,4.43,4.772,0,1.381-0.252,2.334-0.995,3.774-0.177,0.341-0.382,0.63-0.546,0.861-0.016,0.021-0.029,0.041-0.045,0.063,0,0,1.6,0.973,1.746,1.06,1.303,0.776,3.271,1.95,3.342,4.44l0.04,1.04h-16.06z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="305.5" x2="305.5" y1="-408.9" y2="-387">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CEB991"/>
+<path d="M23.748,17.225c-0.007-0.115,0-0.229,0.004-0.346c0.744-0.531,1.391-1.286,1.783-2.102 c0.729-1.508,0.546-5.363,0.546-5.363c0-1.572-2.31-3.414-3.815-3.414h-0.541c-1.504,0-3.813,1.842-3.813,3.414 c0,0-0.138,3.842,0.545,5.363c0.371,0.831,1.03,1.594,1.793,2.124c0.003,0.107,0.01,0.218,0.004,0.324 c-0.094,1.543-5.012,4.162-5.252,4.498V26h14v-4.273C28.76,21.391,23.842,18.768,23.748,17.225z M28.125,25.092h-12.25v-2.904 c0.158-0.104,0.361-0.233,0.551-0.354c2.984-1.903,4.617-3.194,4.699-4.552c0.006-0.114,0.004-0.223,0-0.331l-0.016-0.466 l-0.375-0.338c-0.647-0.451-1.189-1.09-1.484-1.752c-0.434-0.963-0.516-3.545-0.466-4.946c0.001-0.993,1.813-2.539,2.94-2.539h0.539 c1.127,0,2.941,1.546,2.941,2.506c0.066,1.443,0.001,4.016-0.453,4.955c-0.322,0.671-0.868,1.312-1.497,1.76l-0.364,0.263 l-0.015,0.459c-0.006,0.188-0.01,0.31-0.002,0.43c0.082,1.357,1.715,2.648,4.698,4.555c0.189,0.121,0.393,0.25,0.552,0.355 L28.125,25.092L28.125,25.092z" fill="url(#SVGID_4_)"/>
+<path d="M7.972,27L8,25.973c0.074-2.632,1.977-3.813,3.234-4.597l0.156-0.097 l1.674-0.842c-0.006-0.01-0.012-0.019-0.018-0.026c-0.166-0.231-0.371-0.522-0.547-0.863c-0.744-1.44-0.995-2.394-0.995-3.774 c0-2.632,2.001-4.772,4.462-4.772h0.103c2.445,0.019,4.43,2.152,4.43,4.772c0,1.381-0.252,2.334-0.995,3.774 c-0.177,0.341-0.382,0.63-0.546,0.861c-0.016,0.021-0.029,0.041-0.045,0.063c0,0,1.6,0.973,1.746,1.06 c1.303,0.776,3.271,1.95,3.342,4.44L24.027,27H7.972z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="305.4805" x2="305.4805" y1="-408.9155" y2="-387.0308">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CEB991"/>
</linearGradient>
-<path d="M23,26c-0.063-2.188-2.088-3.122-3.289-3.873l-1.715-1.043c-0.707-0.488,0.129-1.05,0.617-1.995,0.725-1.401,0.885-2.181,0.885-3.315,0-2.063-1.536-3.772-3.463-3.772-0.012,0-0.021,0.003-0.035,0.005-0.01-0.02-0.02-0.02-0.03-0.02-1.928,0-3.462,1.71-3.462,3.771,0,1.137,0.159,1.916,0.884,3.316,0.488,0.947,1.324,1.506,0.617,1.995l-2.085,1.043c-1.2,0.76-2.858,1.69-2.92,3.88h14z" fill="url(#SVGID_5_)"/>
+<path d="M23,26c-0.063-2.188-2.088-3.122-3.289-3.873l-1.715-1.043c-0.707-0.488,0.129-1.05,0.617-1.995 c0.725-1.401,0.885-2.181,0.885-3.315c0-2.063-1.536-3.772-3.463-3.772c-0.012,0-0.021,0.003-0.035,0.005 C15.988,12.003,15.979,12,15.967,12c-1.928,0-3.462,1.71-3.462,3.771c0,1.137,0.159,1.916,0.884,3.316 c0.488,0.947,1.324,1.506,0.617,1.995l-2.085,1.043C10.72,22.878,9.062,23.813,9,26H23z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_favorite.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_favorite.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="15,0.734,19.64,10.13,30,11.63,22.5,18.94,24.27,29.27,15,24.39,5.73,29.27,7.5,18.94,0,11.63,10.36,10.13" stroke-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="15,23.26,7.058,27.44,8.574,18.59,2.149,12.33,11.03,11.04,15,2.994,18.97,11.04,27.85,12.33,21.43,18.59,22.94,27.44"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.69,11.95,15,5.253,18.31,11.95,26.96,13.2,27.85,12.33,18.97,11.04,15,2.994,11.03,11.04,2.149,12.33,3.042,13.2"/>
+<g>
+<polygon fill-opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 " stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="15,23.262 7.058,27.438 8.574,18.594 2.149,12.331 11.029,11.04 15,2.994 18.971,11.04 27.852,12.331 21.426,18.594 22.941,27.438 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.693,11.954 15,5.253 18.307,11.954 26.959,13.201 27.852,12.331 18.971,11.04 15,2.994 11.029,11.04 2.149,12.331 3.042,13.201 "/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.994" y2="27.44">
-<stop offset="0" stop-color="#E0D9B5"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
+<stop offset="0" style="stop-color:#E0D9B5"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<path d="M26,8v-2h-1.586l-5-5h-14.41v5h-1v2c-1.654,0-3,1.346-3,3v8c0,1.654,1.346,3,3,3v3h1v4h20v-4h1v-3c1.654,0,3-1.346,3-3v-8c0-1.654-1.35-3-3-3z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="7" y2="10">
<stop offset="0" stop-color="#808080"/>
@@ -86,4 +87,5 @@
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="8"/>
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,100 +1,104 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M26,8.001v-2h-1.586l-5-5h-14.41v5h-1v2c-1.654,0-3,1.346-3,3v8c0,1.653,1.346,3,3,3v3h1v4h20v-4h1v-3c1.654,0,3-1.347,3-3v-8c0-1.653-1.35-2.999-3-2.999z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.5" x2="297.5" y1="-382" y2="-385">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#636363"/>
+<g>
+<path d="M26,8.001v-2h-1.586l-5-5H5v5H4v2c-1.654,0-3,1.346-3,3v8c0,1.653,1.346,3,3,3 v3h1v4h20v-4h1v-3c1.654,0,3-1.347,3-3v-8C29,9.347,27.654,8.001,26,8.001z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-382.0205" y2="-385.0205">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7.001"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.5" x2="297.5" y1="-396" y2="-399">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#636363"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4795" x2="297.4795" y1="-396.0205" y2="-399.0205">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.5" x2="297.5" y1="-377" y2="-403.1">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.4795" x2="297.4795" y1="-377.0225" y2="-403.0858">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.5" x2="297.5" y1="-377" y2="-403.1">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18.001"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.501"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11.001" x="10.999" y="23.501"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.4795" x2="297.4795" y1="-377.0205" y2="-403.0858">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="24,7.001,24,19,6,19,6,2.001,19,2.001"/>
+<polygon fill="url(#SVGID_4_)" points="24,7.001 24,19.001 6,19.001 6,2.001 19,2.001 "/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="5.001"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="5.001"/>
-<polygon fill="#FFFFFF" points="19,7.001,24,7.001,19,2.001"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5" x2="297.5" y1="-384.1" y2="-396">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#626262"/>
+<polygon fill="#FFFFFF" points="19,7.001 24,7.001 19,2.001 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.4795" x2="297.4795" y1="-384.1367" y2="-396.0269">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
-<path d="M28,19c0,1.101-0.9,2-2,2h-22c-1.1,0-2-0.899-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v8.001z" fill="url(#SVGID_5_)"/>
-<path d="M26,9.001h-22c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v-1c0-1.099-0.9-1.999-2-1.999z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="298" x2="298" y1="-386" y2="-396">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M28,19.001c0,1.101-0.9,2-2,2H4c-1.1,0-2-0.899-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V19.001z" fill="url(#SVGID_5_)"/>
+<path d="M26,9.001H4c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22 c1.1,0,2,0.9,2,2v-1C28,9.901,27.1,9.001,26,9.001z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="297.9795" x2="297.9795" y1="-386.0205" y2="-396.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="302" x2="302" y1="-386" y2="-396">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="301.9795" x2="301.9795" y1="-386.0205" y2="-396.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="306" x2="306" y1="-386" y2="-396">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="305.9795" x2="305.9795" y1="-386.0205" y2="-396.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="298" x2="298" y1="-385" y2="-395">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="297.9795" x2="297.9795" y1="-385.0205" y2="-395.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="302" x2="302" y1="-385" y2="-395">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="301.9795" x2="301.9795" y1="-385.0205" y2="-395.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="306" x2="306" y1="-385" y2="-395">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="305.9795" x2="305.9795" y1="-385.0205" y2="-395.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="298" x2="298" y1="-384" y2="-394">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="297.9795" x2="297.9795" y1="-384.0205" y2="-394.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="302" x2="302" y1="-384" y2="-394">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="301.9795" x2="301.9795" y1="-384.0205" y2="-394.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="306" x2="306" y1="-384" y2="-394">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="305.9795" x2="305.9795" y1="-384.0205" y2="-394.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="290.5" x2="290.5" y1="-386.2" y2="-389.1">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="290.4795" x2="290.4795" y1="-386.209" y2="-389.0847">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11"/>
+<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11.001"/>
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="8.001"/>
-<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="304.5" x2="304.5" y1="-390" y2="-404.2">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21.001"/>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="304.4795" x2="304.4795" y1="-389.9883" y2="-404.1846">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_16_)" r="7"/>
-<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3"/>
-<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="26.34,24 21.999,19.4 17.66,24 17,23.3 21.999,18 27,23.3 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="21.999,20.857 18,25.098 18,27 21,27 21,24 23,24 23,27 26,27 26,25.098 " stroke-opacity="0.2"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="26.34,23 21.999,18.4 17.66,23 17,22.3 21.999,17 27,22.3 "/>
+<polygon fill="#FFFFFF" points="21.999,19.857 18,24.098 18,26 21,26 21,23 23,23 23,26 26,26 26,24.098 "/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_fax_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,101 +1,105 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M26,8.001v-2h-1.586l-5-5h-14.41v5h-1v2c-1.654,0-3,1.346-3,3v8c0,1.653,1.346,3,3,3v3h1v4h20v-4h1v-3c1.654,0,3-1.347,3-3v-8c0-1.653-1.35-2.999-3-2.999z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.5" x2="297.5" y1="-382" y2="-385">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#636363"/>
+<g>
+<path d="M26,8.001v-2h-1.586l-5-5H5v5H4v2c-1.654,0-3,1.346-3,3v8c0,1.653,1.346,3,3,3 v3h1v4h20v-4h1v-3c1.654,0,3-1.347,3-3v-8C29,9.347,27.654,8.001,26,8.001z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-382.0205" y2="-385.0205">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="3" width="20" x="5" y="7.001"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.5" x2="297.5" y1="-396" y2="-399">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="1" stop-color="#636363"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4795" x2="297.4795" y1="-396.0205" y2="-399.0205">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="1" style="stop-color:#636363"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.5" x2="297.5" y1="-377" y2="-403.1">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<rect fill="url(#SVGID_2_)" height="3" width="20" x="5" y="21.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.4795" x2="297.4795" y1="-377.0225" y2="-403.0858">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18"/>
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.5"/>
-<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="23.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.5" x2="297.5" y1="-377" y2="-403.1">
-<stop offset="0" stop-color="#EDEDED"/>
-<stop offset="1" stop-color="#BDBDBD"/>
+<rect fill="url(#SVGID_3_)" height="10" width="18" x="6" y="18.001"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="23.501"/>
+<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11.001" x="10.999" y="23.501"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.4795" x2="297.4795" y1="-377.0205" y2="-403.0858">
+<stop offset="0" style="stop-color:#EDEDED"/>
+<stop offset="1" style="stop-color:#BDBDBD"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="24,7.001,24,19,6,19,6,2.001,19,2.001"/>
+<polygon fill="url(#SVGID_4_)" points="24,7.001 24,19.001 6,19.001 6,2.001 19,2.001 "/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="2" x="8" y="5.001"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="11" x="11" y="5.001"/>
-<polygon fill="#FFFFFF" points="19,7.001,24,7.001,19,2.001"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5" x2="297.5" y1="-384.1" y2="-396">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#626262"/>
+<polygon fill="#FFFFFF" points="19,7.001 24,7.001 19,2.001 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.4795" x2="297.4795" y1="-384.1367" y2="-396.0269">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
-<path d="M28,19c0,1.101-0.9,2-2,2h-22c-1.1,0-2-0.899-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v8.001z" fill="url(#SVGID_5_)"/>
-<path d="M26,9.001h-22c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v-1c0-1.099-0.9-1.999-2-1.999z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="298" x2="298" y1="-386" y2="-396">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M28,19.001c0,1.101-0.9,2-2,2H4c-1.1,0-2-0.899-2-2v-8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V19.001z" fill="url(#SVGID_5_)"/>
+<path d="M26,9.001H4c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22 c1.1,0,2,0.9,2,2v-1C28,9.901,27.1,9.001,26,9.001z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="297.9795" x2="297.9795" y1="-386.0205" y2="-396.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="302" x2="302" y1="-386" y2="-396">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_6_)" height="2" width="3" x="14" y="11.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="301.9795" x2="301.9795" y1="-386.0205" y2="-396.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="306" x2="306" y1="-386" y2="-396">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_7_)" height="2" width="3" x="18" y="11.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="305.9795" x2="305.9795" y1="-386.0205" y2="-396.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="298" x2="298" y1="-385" y2="-395">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_8_)" height="2" width="3" x="22" y="11.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="297.9795" x2="297.9795" y1="-385.0205" y2="-395.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="302" x2="302" y1="-385" y2="-395">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_9_)" height="2" width="3" x="14" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="301.9795" x2="301.9795" y1="-385.0205" y2="-395.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="306" x2="306" y1="-385" y2="-395">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_10_)" height="2" width="3" x="18" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="305.9795" x2="305.9795" y1="-385.0205" y2="-395.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="298" x2="298" y1="-384" y2="-394">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_11_)" height="2" width="3" x="22" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="297.9795" x2="297.9795" y1="-384.0205" y2="-394.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="302" x2="302" y1="-384" y2="-394">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_12_)" height="2" width="3" x="14" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="301.9795" x2="301.9795" y1="-384.0205" y2="-394.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="306" x2="306" y1="-384" y2="-394">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_13_)" height="2" width="3" x="18" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="305.9795" x2="305.9795" y1="-384.0205" y2="-394.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="290.5" x2="290.5" y1="-386.2" y2="-389.1">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<rect fill="url(#SVGID_14_)" height="2" width="3" x="22" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="290.4795" x2="290.4795" y1="-386.209" y2="-389.0847">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11"/>
+<rect fill="url(#SVGID_15_)" height="3" width="8" x="4" y="11.001"/>
<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="8.001"/>
-<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="304.5" x2="304.5" y1="-390" y2="-404">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill-opacity="0.4" height="1" stroke-opacity="0.4" width="20" x="5" y="21.001"/>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="304.4795" x2="304.4795" y1="-390.0195" y2="-404.0195">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_16_)" r="7"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="24,19,24,20,26,20,26,21,24,21,24,22,26,22,26,23,24,23,24,26,27,26,27,19"/>
-<path d="M17,19v7h2v-2h2v2h2v-9l-6,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm3,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="24,19 24,20 26,20 26,21 24,21 24,22 26,22 26,23 24,23 24,26 27,26 27,19 "/>
+<path d="M17,19v7h2v-2h2v2h2v-9L17,19z M19,23h-1v-1h1V23z M19,21h-1v-1h1V21z M22,23h-1v-1h1V23z M22,21h-1v-1h1 V21z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="24"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_flash.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_flash.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M15,29c-7.719,0-14-6.28-14-14s6.281-14,14-14c7.72,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="-2687" cy="511.4" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="5.783">
-<stop offset="0" stop-color="#D0DDD9"/>
-<stop offset="0.2865" stop-color="#D0DDD9"/>
-<stop offset="0.6966" stop-color="#808B94"/>
-<stop offset="1" stop-color="#32333B"/>
+<g>
+<path d="M15,29C7.281,29,1,22.72,1,15S7.281,1,15,1c7.72,0,14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-2686.7461" cy="511.4414" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="5.7832">
+<stop offset="0" style="stop-color:#D0DDD9"/>
+<stop offset="0.2865" style="stop-color:#D0DDD9"/>
+<stop offset="0.6966" style="stop-color:#808B94"/>
+<stop offset="1" style="stop-color:#32333B"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M5.477,10.93c7.065-12.19,17.32-4.704,19.2,0.142,0.002,0.021,0.018,0.011,0.012-0.013-0.629-4.677-4.697-8.285-9.623-8.285-4.878,0-8.917,3.539-9.604,8.15-0.011,0.03,0.005,0.04,0.011,0.01z" fill="url(#SVGID_2_)"/>
-<radialGradient cx="-2687" cy="522.5" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="10.07">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.4831" stop-color="#FFFFFF"/>
-<stop offset="0.8989" stop-color="#717A86"/>
-<stop offset="1" stop-color="#525A6B"/>
+<path d="M5.477,10.928c7.065-12.188,17.325-4.704,19.199,0.142c0.002,0.021,0.018,0.011,0.012-0.013 c-0.629-4.677-4.697-8.285-9.623-8.285c-4.878,0-8.917,3.539-9.604,8.15C5.455,10.953,5.471,10.961,5.477,10.928z" fill="url(#SVGID_2_)"/>
+<radialGradient cx="-2686.8755" cy="522.4854" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="10.0661">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.4831" style="stop-color:#FFFFFF"/>
+<stop offset="0.8989" style="stop-color:#717A86"/>
+<stop offset="1" style="stop-color:#525A6B"/>
</radialGradient>
-<path d="M15.06,3.238c-4.846,0-8.86,3.455-9.59,7.695,2.184,1.027,3.792-1.483,8.994-1.164,4.73,0.206,8.146,2.484,10.2,1.305-0.65-4.302-4.7-7.832-9.6-7.832z" fill="url(#SVGID_3_)"/>
-<path d="M20.24,6.594c-4.72,0-6.709,3.967-7.915,7.425-1.269,3.636-2.079,4.225-3.53,4.225h-0.424c-0.334,0-0.603,0.269-0.603,0.603v3.336c0,0.336,0.269,0.604,0.603,0.604h0.431c4.315,0,6.17-3.007,7.272-5.78h3.104c0.335,0,0.604-0.269,0.604-0.604v-3.336c0-0.335-0.27-0.604-0.604-0.604h-1.123c0.779-1.129,1.514-1.323,2.192-1.323h0.431c0.333,0,0.603-0.271,0.603-0.605v-3.343c0-0.331-0.27-0.604-0.603-0.604h-0.428l-0.002,0.001z" fill="#25242B"/>
-<radialGradient cx="-2687" cy="511.6" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="3.05">
-<stop offset="0" stop-color="#25242B"/>
-<stop offset="0.1011" stop-color="#25242B"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M15.064,3.238c-4.846,0-8.86,3.455-9.59,7.695c2.184,1.027,3.792-1.483,8.994-1.164 c4.73,0.206,8.146,2.484,10.203,1.305C24.012,6.768,19.962,3.238,15.064,3.238z" fill="url(#SVGID_3_)"/>
+<path d="M20.242,6.594c-4.72,0-6.709,3.967-7.915,7.425c-1.269,3.636-2.079,4.225-3.53,4.225H8.366 c-0.334,0-0.603,0.269-0.603,0.603v3.336c0,0.336,0.269,0.604,0.603,0.604h0.431c4.315,0,6.17-3.007,7.272-5.78 c0.641,0,3.104,0,3.104,0c0.335,0,0.604-0.269,0.604-0.604v-3.336c0-0.335-0.27-0.604-0.604-0.604c0,0-0.561,0-1.123,0 c0.779-1.129,1.514-1.323,2.192-1.323h0.431c0.333,0,0.603-0.271,0.603-0.605V7.197c0-0.331-0.27-0.604-0.603-0.604H20.242 L20.242,6.594z" fill="#25242B"/>
+<radialGradient cx="-2686.96" cy="511.5801" gradientTransform="matrix(2.2479 0 0 -2.2479 6054.5376 1164.6696)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="3.0503">
+<stop offset="0" style="stop-color:#25242B"/>
+<stop offset="0.1011" style="stop-color:#25242B"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</radialGradient>
-<path d="M20.24,7.195c-4.314,0-6.133,3.549-7.346,7.021-1.252,3.592-2.171,4.63-4.1,4.63h-0.424v3.338h0.431c4.063,0,5.767-2.876,6.86-5.783h3.517v-3.335h-2.188c0.909-1.781,1.877-2.532,3.254-2.532h0.433v-3.353h-0.431v-0.002z" fill="url(#SVGID_4_)"/>
-<path d="M13.2,14.32c-1.146,3.284-2.076,4.846-4.512,4.846v2.69c4.125,0,5.691-2.909,6.743-5.779h3.413v-2.693h-2.375c1.023-2.216,2.127-3.176,3.876-3.176v-2.69c-4.25,0.001-5.96,3.44-7.14,6.8z" fill="#FFFFFF"/>
-<path d="M15.06,3.238c-4.846,0-8.86,3.455-9.59,7.695,2.184,1.027,3.792-1.483,8.994-1.164,4.73,0.206,8.146,2.484,10.2,1.305-0.65-4.302-4.7-7.832-9.6-7.832z" fill="#FFFFFF" fill-opacity="0.3"/>
+<path d="M20.242,7.195c-4.314,0-6.133,3.549-7.346,7.021l0,0c-1.252,3.592-2.171,4.63-4.1,4.63H8.366v3.338 h0.431c4.063,0,5.767-2.876,6.86-5.783c0.495,0,3.517,0,3.517,0v-3.335c0,0-1.478,0-2.188,0c0.909-1.781,1.877-2.532,3.254-2.532 h0.433V7.197h-0.431V7.195z" fill="url(#SVGID_4_)"/>
+<path d="M13.201,14.323L13.201,14.323c-1.146,3.284-2.076,4.846-4.512,4.846v2.69c4.125,0,5.691-2.909,6.743-5.779 c0.142,0,3.413,0,3.413,0v-2.693c0,0-2.079,0-2.375,0c1.023-2.216,2.127-3.176,3.876-3.176v-2.69 C16.094,7.521,14.377,10.959,13.201,14.323z" fill="#FFFFFF"/>
+<path d="M15.064,3.238c-4.846,0-8.86,3.455-9.59,7.695c2.184,1.027,3.792-1.483,8.994-1.164 c4.73,0.206,8.146,2.484,10.203,1.305C24.012,6.768,19.962,3.238,15.064,3.238z" fill="#FFFFFF" fill-opacity="0.3"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1.1364 0 0 -1.1364 895.5911 -433.8352)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-774.8" x2="-774.8" y1="-391.5" y2="-384.2">
-<stop offset="0" stop-color="#717A86"/>
-<stop offset="0.8708" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientTransform="matrix(1.1364 0 0 -1.1364 895.5911 -433.8352)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-774.8306" x2="-774.8306" y1="-391.5132" y2="-384.2012">
+<stop offset="0" style="stop-color:#717A86"/>
+<stop offset="0.8708" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_folder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_folder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="1,27,1,3,14,3,14,6,29,6,29,27" stroke-opacity="0.6"/>
-<polygon fill="#BEA069" points="13,7,13,4,2,4,2,26,28,26,28,7"/>
+<g>
+<polygon fill-opacity="0.6" points="1,27 1,3 14,3 14,6 29,6 29,27 " stroke-opacity="0.6"/>
+<polygon fill="#BEA069" points="13,7 13,4 2,4 2,26 28,26 28,7 "/>
<rect fill="#FFFFFF" height="1" width="15" x="13" y="7"/>
<rect fill="#FFFFFF" height="1" width="11" x="2" y="4"/>
<rect fill="url(#SVGID_1_)" height="16" width="26" x="2" y="10"/>
<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="26" x="2" y="10"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="10.72" y2="25.89">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="0.9091" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="10.7192" y2="25.8892">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="0.9091" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_follow_up.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_follow_up.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M26.62,6.5h-5.37c-0.896,0-1.607-0.439-2.508-0.996-1.14-0.705-2.43-1.504-4.36-1.504h-3.38v-3h-7v4h1v24h5v-10.5h4.375c1.366,0,2.313,0.585,3.315,1.205,1.02,0.64,2.08,1.3,3.55,1.3h5.368l-3.625-7.25,3.62-7.25z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.72" x2="9.958" y1="12.5" y2="12.5">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M26.618,6.5H21.25c-0.896,0-1.607-0.439-2.508-0.996C17.602,4.799,16.309,4,14.375,4H11V1H4v4h1v24h5 V18.5h4.375c1.366,0,2.313,0.585,3.315,1.205C18.721,20.342,19.785,21,21.25,21h5.368l-3.625-7.25L26.618,6.5z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.7227" x2="9.9584" y1="12.5005" y2="12.5005">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M21.88,13.75l3.12,6.25h-3.75c-2.5,0-3.75-2.5-6.875-2.5h-4.375v-12.5h4.375c3.12,0,4.37,2.5,6.87,2.5h3.75l-3.12,6.25z" fill="url(#SVGID_1_)"/>
-<path d="M21.62,14.25l2.88,5.75h0.5l-3.125-6.25-0.26,0.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M21.25,8.5h3.25l0.5-1h-3.75c-2.5,0-3.75-2.5-6.875-2.5h-4.38v1h4.375c3.12,0,4.37,2.5,6.87,2.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="6.041" y1="16" y2="16">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.6545" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<path d="M21.875,13.75L25,20c0,0-2.5,0-3.75,0c-2.5,0-3.75-2.5-6.875-2.5c-0.625,0-4.375,0-4.375,0V5 c0,0,3.75,0,4.375,0C17.5,5,18.75,7.5,21.25,7.5c1.25,0,3.75,0,3.75,0L21.875,13.75z" fill="url(#SVGID_1_)"/>
+<path d="M21.625,14.25L24.5,20c0.304,0,0.5,0,0.5,0l-3.125-6.25L21.625,14.25z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21.25,8.5c0.903,0,2.457,0,3.25,0l0.5-1c0,0-2.5,0-3.75,0c-2.5,0-3.75-2.5-6.875-2.5 C13.75,5,10,5,10,5v1c0,0,3.75,0,4.375,0C17.5,6,18.75,8.5,21.25,8.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9" x2="6.0412" y1="15.9995" y2="15.9995">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.6545" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="24" width="3" x="6" y="4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.958" x2="5.042" y1="3" y2="3">
-<stop offset="0" stop-color="#4F4F4F"/>
-<stop offset="0.589" stop-color="#BFBFBF"/>
-<stop offset="1" stop-color="#6B6B6B"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.9585" x2="5.0415" y1="3" y2="3">
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.589" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="5" x="5" y="2"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="3" x="6" y="4"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_forward.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_forward.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="15,20,1,20,1,10,15,10,15,2.865,29.56,15,15,27.14"/>
-<polygon fill="url(#SVGID_1_)" points="16,19,2,19,2,11,16,11,16,5,28,15,16,25"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="16,6.135,16,5,28,15,27.32,15.57" stroke-opacity="0.5"/>
+<polygon fill-opacity="0.6" points="15,20 1,20 1,10 15,10 15,2.865 29.563,15 15,27.135 "/>
+<polygon fill="url(#SVGID_1_)" points="16,19 2,19 2,11 16,11 16,5 28,15 16,25 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="16,6.135 16,5 28,15 27.319,15.567 " stroke-opacity="0.5"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="1.135" stroke-opacity="0.5" width="14" x="2" y="11"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 594 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="579" x2="579" y1="4.885" y2="25.26">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 594 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="579" x2="579" y1="4.8848" y2="25.2603">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_gprs.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_gprs.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill-opacity="0.2" points="25.84,14.5,7.454,14.5,7.454,11.5,20.25,11.5,18.98,9.57,21.48,7.914" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="6.454,16.5,24.84,16.5,24.84,19.5,12.04,19.5,13.32,21.43,10.82,23.09" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="24.84,13.5,6.454,13.5,6.454,10.5,19.25,10.5,17.98,8.57,20.48,6.914"/>
-<polygon fill="#FFFFFF" points="5.454,15.5,23.84,15.5,23.84,18.5,11.04,18.5,12.32,20.43,9.817,22.09"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13C7.82,2,2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.839,14.5 7.454,14.5 7.454,11.5 20.253,11.5 18.975,9.57 21.477,7.914 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="6.454,16.5 24.839,16.5 24.839,19.5 12.04,19.5 13.318,21.428 10.817,23.086 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="24.839,13.5 6.454,13.5 6.454,10.5 19.253,10.5 17.975,8.57 20.477,6.914 "/>
+<polygon fill="#FFFFFF" points="5.454,15.5 23.839,15.5 23.839,18.5 11.04,18.5 12.318,20.428 9.817,22.086 "/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_homescreen.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_homescreen.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,63 +1,67 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.509" y2="28.73">
-<stop offset="0" stop-color="#A7A8A9"/>
-<stop offset="1" stop-color="#212020"/>
+<g>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="36.0195" x2="36.0195" y1="31.3018" y2="3.0607">
+<stop offset="0" style="stop-color:#A7A8A9"/>
+<stop offset="1" style="stop-color:#212020"/>
</linearGradient>
-<path d="M15,28.31c-7.168,0-13-5.831-13-13,0-7.167,5.832-13,13-13,7.17,0,13,5.833,13,13,0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2.837" y2="28.39">
-<stop offset="0" stop-color="#A9AAAB"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M15,28.999c-7.719,0-14-6.278-14-13.998 c0-7.719,6.281-14,14-14c7.721,0,14,6.281,14,14C29,22.721,22.721,28.999,15,28.999L15,28.999z" fill="url(#SVGID_1_)" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="36.0205" x2="36.0205" y1="30.9482" y2="3.4317">
+<stop offset="0" style="stop-color:#A9AAAB"/>
+<stop offset="1" style="stop-color:#000000"/>
</linearGradient>
-<path d="M15,27.97c-6.984,0-12.67-5.683-12.67-12.67,0.004-6.979,5.686-12.66,12.67-12.66s12.67,5.682,12.67,12.67c0,6.98-5.69,12.66-12.67,12.66z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="2.694" y2="27.36">
-<stop offset="0" stop-color="#F4F5F4"/>
-<stop offset="0.7818" stop-color="#CCCBCB"/>
-<stop offset="1" stop-color="#D0D1D1"/>
+<path d="M15,28.64C7.479,28.64,1.36,22.521,1.36,15 C1.36,7.478,7.479,1.358,15,1.358c7.521,0,13.642,6.119,13.642,13.642C28.642,22.521,22.521,28.64,15,28.64L15,28.64z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="36.0195" x2="36.0195" y1="31.1025" y2="4.5376">
+<stop offset="0" style="stop-color:#F4F5F4"/>
+<stop offset="0.7818" style="stop-color:#CCCBCB"/>
+<stop offset="1" style="stop-color:#D0D1D1"/>
</linearGradient>
-<circle cx="15" cy="14.97" fill="url(#SVGID_3_)" r="12.33"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="3.183" y2="26.69">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#DEDEDD"/>
+<circle cx="15" cy="14.641" fill="url(#SVGID_3_)" r="13.283"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="36.0215" x2="36.0215" y1="30.5771" y2="5.2629">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#DEDEDD"/>
</linearGradient>
-<path d="M15,3.639c6.25,0,11.33,5.084,11.33,11.33s-5.08,11.34-11.33,11.34-11.33-5.09-11.33-11.34,5.084-11.33,11.33-11.33m0-0.333c-6.432,0-11.67,5.234-11.67,11.67,0.004,6.43,5.238,11.66,11.67,11.66,6.434,0,11.67-5.233,11.67-11.67,0-6.43-5.24-11.66-11.67-11.66z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="2.544" y2="27.49">
-<stop offset="0" stop-color="#E2E2E2"/>
-<stop offset="1" stop-color="#99999A"/>
+<path d="M15,2.435c6.73,0,12.205,5.475,12.205,12.205c0,6.729-5.475,12.206-12.205,12.206 S2.794,21.371,2.794,14.641C2.794,7.911,8.27,2.435,15,2.435 M15,2.077c-6.927,0-12.563,5.637-12.563,12.564 c0,6.928,5.637,12.564,12.563,12.564c6.928,0,12.566-5.637,12.566-12.564C27.566,7.713,21.928,2.077,15,2.077L15,2.077z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="36.0195" x2="36.0195" y1="31.2646" y2="4.3994">
+<stop offset="0" style="stop-color:#E2E2E2"/>
+<stop offset="1" style="stop-color:#99999A"/>
</linearGradient>
-<path d="M15,2.973c6.617,0,12,5.383,12,12,0,6.618-5.383,12-12,12s-12-5.38-12-12c0-6.614,5.383-12,12-12m0-0.334c-6.811,0-12.33,5.523-12.33,12.33,0,6.812,5.523,12.33,12.33,12.33,6.813,0,12.33-5.522,12.33-12.33s-5.52-12.33-12.33-12.33z" fill="url(#SVGID_5_)"/>
-<polygon fill="#020202" points="14.92,7.065,6,13.42,7.061,15.62,14.92,9.843,22.77,15.62,24,13.58"/>
-<polygon fill="#020202" points="8.496,16.1,8.496,22.86,13.16,22.86,13.16,19.52,16.76,19.52,16.76,22.86,21.38,22.86,21.38,16.1,14.94,11.38"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="6.607" y2="22.33">
-<stop offset="0" stop-color="#6077B3"/>
-<stop offset="1" stop-color="#458295"/>
+<path d="M15,1.718c7.127,0,12.924,5.797,12.924,12.922c0,7.128-5.797,12.926-12.924,12.926 c-7.126,0-12.922-5.798-12.922-12.926C2.078,7.515,7.874,1.718,15,1.718 M15,1.358c-7.335,0-13.283,5.948-13.283,13.281 c0,7.336,5.948,13.284,13.283,13.284c7.337,0,13.283-5.948,13.283-13.284C28.283,7.306,22.337,1.358,15,1.358L15,1.358z" fill="url(#SVGID_5_)"/>
+<polygon fill="#020202" points="14.91,6.125 5.308,12.97 6.451,15.342 14.91,9.117 23.371,15.342 24.691,13.143 "/>
+<polygon fill="#020202" points="7.996,15.853 7.996,23.138 13.017,23.138 13.017,19.533 16.896,19.533 16.896,23.138 21.865,23.138 21.865,15.853 14.931,10.767 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="36.0195" x2="36.0195" y1="26.8887" y2="9.9572">
+<stop offset="0" style="stop-color:#6077B3"/>
+<stop offset="1" style="stop-color:#458295"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="14.92,6.337,6,12.69,7.061,14.9,14.92,9.115,22.77,14.9,24,12.85"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.99" x2="14.99" y1="6.696" y2="13.12">
-<stop offset="0" stop-color="#6D97BF"/>
-<stop offset="1" stop-color="#3C637A"/>
+<polygon fill="url(#SVGID_6_)" points="14.91,5.341 5.308,12.186 6.451,14.558 14.91,8.332 23.371,14.558 24.691,12.359 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="36.0078" x2="36.0078" y1="26.7939" y2="19.8773">
+<stop offset="0" style="stop-color:#6D97BF"/>
+<stop offset="1" style="stop-color:#3C637A"/>
</linearGradient>
-<path d="M14.91,7.221l8.131,5.832-0.48,0.797-7.436-5.47-0.213-0.156-0.21,0.156-7.371,5.425-0.42-0.877,8.001-5.699m0.01-0.443l-8.465,6.032,0.74,1.541,7.721-5.682,7.752,5.704,0.854-1.419-8.6-6.172z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.94" x2="14.94" y1="5.888" y2="22.34">
-<stop offset="0" stop-color="#6077B3"/>
-<stop offset="1" stop-color="#458295"/>
+<path d="M14.907,6.292l8.757,6.281l-0.518,0.857l-8.008-5.89L14.91,7.373l-0.229,0.168l-7.938,5.842 L6.29,12.439L14.907,6.292 M14.91,5.815l-9.112,6.497l0.796,1.659l8.315-6.119l8.348,6.142l0.92-1.527L14.91,5.815L14.91,5.815z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="35.9502" x2="35.9502" y1="27.6641" y2="9.9468">
+<stop offset="0" style="stop-color:#6077B3"/>
+<stop offset="1" style="stop-color:#458295"/>
</linearGradient>
-<polygon fill="url(#SVGID_8_)" points="8.496,15.37,8.496,22.14,13.16,22.14,13.16,18.79,16.76,18.79,16.76,22.14,21.38,22.14,21.38,15.37,14.94,10.65"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.94" x2="14.94" y1="11.19" y2="21.97">
-<stop offset="0" stop-color="#638DBA"/>
-<stop offset="1" stop-color="#3C637A"/>
+<polygon fill="url(#SVGID_8_)" points="7.996,15.069 7.996,22.354 13.017,22.354 13.017,18.749 16.896,18.749 16.896,22.354 21.865,22.354 21.865,15.069 14.931,9.983 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="35.9512" x2="35.9512" y1="21.9561" y2="10.3511">
+<stop offset="0" style="stop-color:#638DBA"/>
+<stop offset="1" style="stop-color:#3C637A"/>
+</linearGradient>
+<path d="M14.931,10.944l6.162,4.517v6.119H17.67v-3.217v-0.387h-0.387h-4.65h-0.386v0.387v3.217H8.77v-6.119 L14.931,10.944 M14.931,10.464l-6.548,4.801v6.701h4.249v-3.603h4.649v3.603h4.197v-6.701L14.931,10.464L14.931,10.464z" fill="url(#SVGID_9_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="36.0195" x2="36.0195" y1="26.9844" y2="18.9088">
+<stop offset="0" style="stop-color:#40687F"/>
+<stop offset="1" style="stop-color:#375871"/>
</linearGradient>
-<path d="M14.94,11.54l5.721,4.194v5.682h-3.178v-3.346h-5.036v3.346h-3.225v-5.682l5.725-4.19m0-0.45l-6.08,4.458v6.224h3.945v-3.347h4.318v3.347h3.896v-6.224l-6.08-4.46z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="15" x2="15" y1="6.517" y2="14.02">
-<stop offset="0" stop-color="#40687F"/>
-<stop offset="1" stop-color="#375871"/>
+<path d="M14.91,5.815l9.268,6.652l-0.921,1.527l-8.119-5.973l-0.229-0.169L14.68,8.021l-8.086,5.95 l-0.796-1.659L14.91,5.815 M14.91,5.341l-9.602,6.845l1.143,2.372l8.459-6.227l8.461,6.227l1.32-2.199L14.91,5.341L14.91,5.341z" fill="url(#SVGID_10_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -21.02 32.5195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="35.9502" x2="35.9502" y1="22.4404" y2="9.963">
+<stop offset="0" style="stop-color:#40687F"/>
+<stop offset="1" style="stop-color:#375871"/>
</linearGradient>
-<path d="M14.92,6.778l8.605,6.176-0.854,1.419-7.539-5.547-0.213-0.157-0.213,0.157-7.508,5.525-0.74-1.541,8.458-6.032m0-0.441l-8.92,6.353,1.061,2.203,7.855-5.782,7.857,5.782,1.22-2.04-9.08-6.513z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="14.94" x2="14.94" y1="10.74" y2="22.32">
-<stop offset="0" stop-color="#40687F"/>
-<stop offset="1" stop-color="#375871"/>
-</linearGradient>
-<path d="M14.94,11.09l6.08,4.458v6.224h-3.896v-3.346h-4.318v3.346h-3.945v-6.224l6.085-4.46m0-0.44l-6.444,4.72v6.765h4.662v-3.347h3.604v3.347h4.613v-6.77l-6.43-4.72z" fill="url(#SVGID_11_)"/>
+<path d="M14.931,10.464l6.547,4.801v6.701h-4.195V18.75v-0.387h-0.385h-3.881h-0.385v0.387v3.216h-4.25 v-6.701L14.931,10.464 M14.931,9.983l-6.935,5.086v7.285h5.021v-3.604h3.879v3.604h4.969v-7.285L14.931,9.983L14.931,9.983z" fill="url(#SVGID_11_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,56 +1,61 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill-opacity="0.2" points="25.84,14.5,7.454,14.5,7.454,11.5,20.25,11.5,18.98,9.57,21.48,7.914" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="6.454,16.5,24.84,16.5,24.84,19.5,12.04,19.5,13.32,21.43,10.82,23.09" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="24.84,13.5,6.454,13.5,6.454,10.5,19.25,10.5,17.98,8.57,20.48,6.914"/>
-<polygon fill="#FFFFFF" points="5.454,15.5,23.84,15.5,23.84,18.5,11.04,18.5,12.32,20.43,9.817,22.09"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13C7.82,2,2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.2" points="25.839,14.5 7.454,14.5 7.454,11.5 20.253,11.5 18.975,9.57 21.477,7.914 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="6.454,16.5 24.839,16.5 24.839,19.5 12.04,19.5 13.318,21.428 10.817,23.086 " stroke-opacity="0.2"/>
+<polygon fill="#FFFFFF" points="24.839,13.5 6.454,13.5 6.454,10.5 19.253,10.5 17.975,8.57 20.477,6.914 "/>
+<polygon fill="#FFFFFF" points="5.454,15.5 23.839,15.5 23.839,18.5 11.04,18.5 12.318,20.428 9.817,22.086 "/>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="275" x2="275" y1="-359.4" y2="-352.3">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.66" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+</g>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="274.9814" x2="274.9814" y1="-359.3721" y2="-352.3351">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.66" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<polygon fill="url(#SVGID_1__)" points="12.6,28.54,2.4,28.54,2.4,22.27,7.5,18.34,12.6,22.27"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="275" x2="275" y1="-354.4" y2="-359.3">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.66" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#BABCBB"/>
+<polygon fill="url(#SVGID_1__)" points="12.601,28.542 2.4,28.542 2.4,22.27 7.5,18.343 12.601,22.27 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="274.9795" x2="274.9795" y1="-354.4097" y2="-359.3443">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.66" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#BABCBB"/>
</linearGradient>
-<path d="M7.5,18.86l4.693,3.613v5.665h-9.381v-5.666l4.691-3.61m0-0.52l-5.1,3.93v6.273h10.2v-6.27l-5.1-3.93z" fill="url(#SVGID_2_)"/>
-<polygon fill-opacity="0.2" points="12.6,23.83,12.6,22.27,7.5,18.34,2.4,22.27,2.4,23.95,7.5,19.87" stroke-opacity="0.2"/>
-<polygon fill="#727272" points="12.6,23.83,12.6,22.27,7.5,18.34,2.4,22.27,2.4,23.95,7.5,18.85"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="275" x2="275" y1="-354.7" y2="-359.6">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<path d="M7.5,18.857l4.693,3.613v5.665H2.809v-5.666L7.5,18.857 M7.5,18.343L2.4,22.27v6.273h10.2V22.27 L7.5,18.343L7.5,18.343z" fill="url(#SVGID_2_)"/>
+<polygon fill-opacity="0.2" points="12.601,23.826 12.601,22.27 7.5,18.343 2.4,22.27 2.4,23.952 7.5,19.872 " stroke-opacity="0.2"/>
+<polygon fill="#727272" points="12.601,23.826 12.601,22.27 7.5,18.343 2.4,22.27 2.4,23.952 7.5,18.853 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="274.9805" x2="274.9805" y1="-354.707" y2="-359.5847">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="4.59" width="3.061" x="5.971" y="23.95"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="275" x2="275" y1="-359.4" y2="-354.9">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_3_)" height="4.59" width="3.061" x="5.971" y="23.952"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="274.9814" x2="274.9814" y1="-359.4072" y2="-354.8671">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<path d="M8.622,24.36v3.774h-2.244v-3.77h2.244m0.409-0.41h-3.06v4.59h3.061v-4.588l-0.001-0.002z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="275" x2="275" y1="-346.9" y2="-354.6">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.26" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<path d="M8.622,24.36v3.774H6.378V24.36H8.622 M9.031,23.952H5.971v4.59h3.061V23.952L9.031,23.952z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -267.4805 -330.8975)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="274.9795" x2="274.9795" y1="-346.8545" y2="-354.5899">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.26" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<path d="M7.5,18.34l5.101,5.1,1.02-1.02-5.759-5.76c-0.255-0.271-0.422-0.285-0.738,0.016-0.313,0.3-5.743,5.74-5.743,5.74l1.021,1.02,5.099-5.1z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="-3058" cy="-384.3" gradientTransform="matrix(0.125 0 0 -0.125 389.692 -31.3322)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="65.28">
-<stop offset="0" stop-color="#D4C9A4"/>
-<stop offset="1" stop-color="#AF6151"/>
+<path d="M7.5,18.343l5.101,5.1l1.02-1.02c0,0-5.502-5.488-5.759-5.76c-0.255-0.271-0.422-0.285-0.738,0.016 C6.81,16.979,1.38,22.422,1.38,22.422l1.021,1.02L7.5,18.343z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="-3057.9365" cy="-384.3403" gradientTransform="matrix(0.125 0 0 -0.125 389.692 -31.3322)" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="65.2801">
+<stop offset="0" style="stop-color:#D4C9A4"/>
+<stop offset="1" style="stop-color:#AF6151"/>
</radialGradient>
-<path d="M7.125,17.09c0.316-0.301,0.481-0.285,0.738-0.016,0.225,0.24,4.56,4.564,5.553,5.556l0.204-0.205-5.759-5.76c-0.255-0.271-0.422-0.285-0.738,0.016-0.313,0.3-5.743,5.74-5.743,5.74l0.205,0.204c0.984-0.98,5.261-5.27,5.54-5.53z" fill="url(#SVGID_6_)"/>
-<rect fill-opacity="0.2" height="0.511" stroke-opacity="0.2" width="3.061" x="5.971" y="23.95"/>
+<path d="M7.125,17.087c0.316-0.301,0.481-0.285,0.738-0.016c0.225,0.24,4.56,4.564,5.553,5.556l0.204-0.205 c0,0-5.502-5.488-5.759-5.76c-0.255-0.271-0.422-0.285-0.738,0.016C6.81,16.979,1.38,22.422,1.38,22.422l0.205,0.204 C2.569,21.638,6.846,17.353,7.125,17.087z" fill="url(#SVGID_6_)"/>
+<rect fill-opacity="0.2" height="0.511" stroke-opacity="0.2" width="3.061" x="5.971" y="23.952"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1___)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -61,4 +66,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_widget.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hs_widget.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,44 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M4.63,28.03c-0.878,0-1.593-0.714-1.593-1.592v-8.962c0-0.878,0.714-1.593,1.593-1.593h8.962c0.878,0,1.592,0.715,1.592,1.593v8.962c0,0.877-0.714,1.592-1.592,1.592h-8.96z" fill-opacity="0.6"/>
-<path d="M17.17,28.03c-0.878,0-1.592-0.714-1.592-1.592v-8.961c0-0.878,0.714-1.593,1.592-1.593h8.963c0.878,0,1.592,0.714,1.592,1.593v8.961c0,0.877-0.714,1.592-1.592,1.592h-8.963z" fill-opacity="0.6"/>
-<path d="M17.17,15.49c-0.878,0-1.592-0.714-1.592-1.592v-8.963c0-0.877,0.714-1.592,1.592-1.592h8.963c0.878,0,1.592,0.714,1.592,1.592v8.961c0,0.877-0.714,1.592-1.592,1.592h-8.963z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.11" x2="9.11" y1="14.8" y2="29.2">
-<stop offset="0" stop-color="#EAEDEB"/>
-<stop offset="0.0424" stop-color="#EAEDEB"/>
-<stop offset="0.2606" stop-color="#BDBFBF"/>
-<stop offset="0.5394" stop-color="#969A9A"/>
-<stop offset="1" stop-color="#999E9E"/>
+<g>
+<path d="M4.63,28.028c-0.878,0-1.593-0.714-1.593-1.592v-8.962c0-0.878,0.714-1.593,1.593-1.593h8.962 c0.878,0,1.592,0.715,1.592,1.593v8.962c0,0.877-0.714,1.592-1.592,1.592H4.63z" fill-opacity="0.6"/>
+<path d="M17.167,28.028c-0.878,0-1.592-0.714-1.592-1.592v-8.961c0-0.878,0.714-1.593,1.592-1.593h8.963 c0.878,0,1.592,0.714,1.592,1.593v8.961c0,0.877-0.714,1.592-1.592,1.592H17.167z" fill-opacity="0.6"/>
+<path d="M17.167,15.49c-0.878,0-1.592-0.714-1.592-1.592V4.937c0-0.877,0.714-1.592,1.592-1.592h8.963 c0.878,0,1.592,0.714,1.592,1.592v8.961c0,0.877-0.714,1.592-1.592,1.592H17.167z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.1099" x2="9.1099" y1="14.7993" y2="29.1976">
+<stop offset="0" style="stop-color:#EAEDEB"/>
+<stop offset="0.0424" style="stop-color:#EAEDEB"/>
+<stop offset="0.2606" style="stop-color:#BDBFBF"/>
+<stop offset="0.5394" style="stop-color:#969A9A"/>
+<stop offset="1" style="stop-color:#999E9E"/>
</linearGradient>
-<path d="M4.63,27.47c-0.571,0-1.036-0.464-1.036-1.034v-8.962c0-0.571,0.465-1.035,1.036-1.035h8.962c0.57,0,1.034,0.464,1.034,1.035v8.962c0,0.57-0.464,1.034-1.034,1.034h-8.96z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.65" x2="21.65" y1="14.27" y2="29.5">
-<stop offset="0" stop-color="#B6D6CA"/>
-<stop offset="0.7333" stop-color="#566486"/>
-<stop offset="1" stop-color="#597996"/>
+<path d="M4.63,27.471c-0.571,0-1.036-0.464-1.036-1.034v-8.962c0-0.571,0.465-1.035,1.036-1.035h8.962 c0.57,0,1.034,0.464,1.034,1.035v8.962c0,0.57-0.464,1.034-1.034,1.034H4.63z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.6484" x2="21.6484" y1="14.2666" y2="29.5001">
+<stop offset="0" style="stop-color:#B6D6CA"/>
+<stop offset="0.7333" style="stop-color:#566486"/>
+<stop offset="1" style="stop-color:#597996"/>
</linearGradient>
-<path d="M17.17,27.47c-0.569,0-1.034-0.464-1.034-1.034v-8.961c0-0.571,0.465-1.035,1.034-1.035h8.963c0.569,0,1.033,0.463,1.033,1.035v8.961c0,0.57-0.464,1.034-1.033,1.034h-8.963z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21.65" x2="21.65" y1="1.866" y2="17.15">
-<stop offset="0" stop-color="#EAEDEB"/>
-<stop offset="0.0424" stop-color="#EAEDEB"/>
-<stop offset="0.2606" stop-color="#BDBFBF"/>
-<stop offset="0.5394" stop-color="#969A9A"/>
-<stop offset="1" stop-color="#999E9E"/>
+<path d="M17.167,27.47c-0.569,0-1.034-0.464-1.034-1.034v-8.961c0-0.571,0.465-1.035,1.034-1.035h8.963 c0.569,0,1.033,0.463,1.033,1.035v8.961c0,0.57-0.464,1.034-1.033,1.034H17.167z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21.6484" x2="21.6484" y1="1.8657" y2="17.1518">
+<stop offset="0" style="stop-color:#EAEDEB"/>
+<stop offset="0.0424" style="stop-color:#EAEDEB"/>
+<stop offset="0.2606" style="stop-color:#BDBFBF"/>
+<stop offset="0.5394" style="stop-color:#969A9A"/>
+<stop offset="1" style="stop-color:#999E9E"/>
</linearGradient>
-<path d="M17.17,14.93c-0.569,0-1.034-0.462-1.034-1.034v-8.963c0-0.571,0.465-1.035,1.034-1.035h8.963c0.569,0,1.033,0.463,1.033,1.035v8.961c0,0.571-0.464,1.034-1.033,1.034h-8.963z" fill="url(#SVGID_3_)"/>
-<polygon fill-opacity="0.6" points="4.988,10.18,1.52,6.882,6.245,6.136,8.309,1.82,10.48,6.082,15.22,6.71,11.84,10.09,12.71,14.8,8.445,12.62,4.237,14.9"/>
-<radialGradient cx="8.146" cy="58.45" gradientTransform="matrix(1 0 0 -1 0.1597 62.4922)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="10.16">
-<stop offset="0" stop-color="#D1C899"/>
-<stop offset="0.14" stop-color="#D1C899"/>
-<stop offset="0.55" stop-color="#B8A259"/>
-<stop offset="0.73" stop-color="#B2955E"/>
-<stop offset="1" stop-color="#C2B375"/>
+<path d="M17.167,14.932c-0.569,0-1.034-0.462-1.034-1.034V4.937c0-0.571,0.465-1.035,1.034-1.035h8.963 c0.569,0,1.033,0.463,1.033,1.035v8.961c0,0.571-0.464,1.034-1.033,1.034H17.167z" fill="url(#SVGID_3_)"/>
+<polygon fill-opacity="0.6" points="4.988,10.178 1.52,6.882 6.245,6.136 8.309,1.82 10.479,6.082 15.222,6.71 11.838,10.092 12.706,14.796 8.445,12.624 4.237,14.902 "/>
+<radialGradient cx="8.146" cy="58.4453" gradientTransform="matrix(1 0 0 -1 0.1597 62.4922)" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="10.161">
+<stop offset="0" style="stop-color:#D1C899"/>
+<stop offset="0.14" style="stop-color:#D1C899"/>
+<stop offset="0.55" style="stop-color:#B8A259"/>
+<stop offset="0.73" style="stop-color:#B2955E"/>
+<stop offset="1" style="stop-color:#C2B375"/>
</radialGradient>
-<polygon fill="url(#SVGID_4_)" points="5.559,9.985,2.67,7.24,6.605,6.619,8.324,3.023,10.13,6.574,14.08,7.098,11.26,9.915,11.98,13.83,8.436,12.02,4.934,13.92"/>
-<radialGradient cx="8.261" cy="57.21" gradientTransform="matrix(1 0 0 -1 0.1597 62.4922)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="14.12">
-<stop offset="0" stop-color="#F0EDDC"/>
-<stop offset="1" stop-color="#B8A259"/>
+<polygon fill="url(#SVGID_4_)" points="5.559,9.985 2.67,7.24 6.605,6.619 8.324,3.023 10.131,6.574 14.081,7.098 11.263,9.915 11.985,13.831 8.436,12.022 4.934,13.92 "/>
+<radialGradient cx="8.2612" cy="57.21" gradientTransform="matrix(1 0 0 -1 0.1597 62.4922)" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="14.1249">
+<stop offset="0" style="stop-color:#F0EDDC"/>
+<stop offset="1" style="stop-color:#B8A259"/>
</radialGradient>
-<polygon fill="url(#SVGID_5_)" points="6.766,6.938,8.324,3.663,9.971,6.894,13.8,7.38,14.08,7.098,10.13,6.574,8.324,3.023,6.605,6.619,2.67,7.24,2.96,7.516"/>
+<polygon fill="url(#SVGID_5_)" points="6.766,6.938 8.324,3.663 9.971,6.894 13.797,7.38 14.081,7.098 10.131,6.574 8.324,3.023 6.605,6.619 2.67,7.24 2.96,7.516 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_html.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_html.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="27,29,27,1,3,1,3,22.41,9.586,29" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1444 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1459" x2="-1459" y1="2" y2="28">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<g>
+<polygon fill-opacity="0.6" points="27,29 27,1 3,1 3,22.414 9.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1444 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1459" x2="-1459" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="26,2,26,28,10,28,4,22,4,2"/>
-<polygon fill="#FFFFFF" points="4,22,10,22,10,28"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="-2.375" y2="7.001">
-<stop offset="0" stop-color="#83CABF"/>
-<stop offset="1" stop-color="#3E678C"/>
+<polygon fill="url(#SVGID_1_)" points="26,2 26,28 10,28 4,22 4,2 "/>
+<polygon fill="#FFFFFF" points="4,22 10,22 10,28 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="-2.375" y2="7.0009">
+<stop offset="0" style="stop-color:#83CABF"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5.393" width="22" x="4" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="4" y="2"/>
-<polygon fill="#646464" points="9,18.5,6.332,15.5,9,12.5,9,11,5,15.5,9,20"/>
-<polygon fill="#646464" points="21,18.5,23.67,15.5,21,12.5,21,11,25,15.5,21,20"/>
+<polygon fill="#646464" points="9,18.502 6.332,15.5 9,12.498 9,11 5,15.5 9,20 "/>
+<polygon fill="#646464" points="21,18.502 23.668,15.5 21,12.498 21,11 25,15.5 21,20 "/>
<rect fill="none" height="30" width="30"/>
<rect fill="#646464" height="2" width="2" x="10" y="14.5"/>
<rect fill="#646464" height="2" width="2" x="14" y="14.5"/>
<rect fill="#646464" height="2" width="2" x="18" y="14.5"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hwr.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_hwr.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<g fill-opacity="0.6" stroke-opacity="0.6">
-<path d="M4,29c-1.65,0-3-1.35-3-3v-22c0-1.65,1.35-3,3-3h22c1.65,0,3,1.35,3,3v22c0,1.65-1.35,3-3,3h-22z"/>
+<path d="M4,29c-1.65,0-3-1.35-3-3V4c0-1.65,1.35-3,3-3h22c1.65,0,3,1.35,3,3v22c0,1.65-1.35,3-3,3H4z"/>
</g>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.916" y2="27.92">
-<stop offset="0" stop-color="#65AEBD"/>
-<stop offset="1" stop-color="#526085"/>
+<g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.9165" y2="27.917">
+<stop offset="0" style="stop-color:#65AEBD"/>
+<stop offset="1" style="stop-color:#526085"/>
</linearGradient>
-<path d="M28,26c0,1.1-0.9,2-2,2h-22c-1.1,0-2-0.9-2-2v-22c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v22z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="594" x2="594" y1="815" y2="839">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M28,26c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_1_)"/>
+</g>
+<g>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="593.9609" x2="593.9609" y1="815.0391" y2="839.0391">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M4,27c-0.55,0-1-0.45-1-1v-22c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v22c0,0.55-0.45,1-1,1h-22z" fill="url(#SVGID_2_)"/>
-<path d="M23.5,18.34c0-0.547-0.443-0.989-0.992-0.989h-2.104c-1.016-2.688-2.176-5.542-3.198-7.476,0.487-0.4,0.802-1.008,0.802-1.69,0-1.206-0.98-2.184-2.18-2.184-1.205,0-2.183,0.978-2.183,2.182,0,0.639,0.275,1.21,0.71,1.607-0.689,1.458-2.026,4.366-3.282,7.559h-0.947c-0.361-0.707-1.094-1.193-1.943-1.193-1.21-0.01-2.187,0.97-2.187,2.18,0,1.205,0.977,2.183,2.183,2.183,0.849,0,1.582-0.481,1.943-1.19h0.195c-0.687,1.881-1.297,3.774-1.689,5.457-0.124,0.532,0.206,1.063,0.741,1.188,0.532,0.125,1.064-0.205,1.189-0.738,0.416-1.791,1.107-3.867,1.875-5.906h6.59c1.182,3.216,2.072,5.934,2.091,5.99,0.137,0.414,0.524,0.68,0.942,0.68,0.104,0,0.205-0.016,0.309-0.049,0.521-0.172,0.805-0.729,0.633-1.25-0.066-0.215-0.826-2.52-1.861-5.374h1.375c0.54,0,0.98-0.45,0.98-0.99zm-10.29-0.99c0.947-2.351,1.911-4.505,2.568-5.924,0.803,1.619,1.688,3.783,2.508,5.924h-5.079z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M23.75,17.34c0-0.547-0.443-0.989-0.992-0.989h-2.104c-1.016-2.688-2.176-5.542-3.198-7.476,0.487-0.4,0.801-1.008,0.801-1.69,0-1.206-0.98-2.184-2.18-2.184-1.205,0-2.183,0.978-2.183,2.182,0,0.639,0.275,1.21,0.71,1.607-0.689,1.458-2.026,4.366-3.282,7.559h-0.947c-0.361-0.707-1.094-1.193-1.943-1.193-1.206,0-2.183,0.979-2.183,2.183,0,1.205,0.977,2.184,2.183,2.184,0.849,0,1.582-0.482,1.943-1.191h0.195c-0.687,1.881-1.297,3.773-1.689,5.457-0.124,0.531,0.206,1.063,0.741,1.188,0.532,0.125,1.064-0.205,1.189-0.74,0.416-1.791,1.107-3.865,1.875-5.904h6.591c1.181,3.216,2.072,5.936,2.09,5.988,0.12,0.4,0.51,0.67,0.93,0.67,0.104,0,0.205-0.016,0.309-0.049,0.521-0.172,0.805-0.729,0.633-1.25-0.066-0.215-0.826-2.52-1.861-5.374h1.375c0.55,0,0.99-0.45,0.99-0.99zm-10.29-0.99c0.947-2.351,1.911-4.505,2.568-5.924,0.803,1.619,1.688,3.783,2.508,5.924h-5.081z" fill="#F5F5F5"/>
+<path d="M4,27c-0.55,0-1-0.45-1-1V4c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v22c0,0.55-0.45,1-1,1H4z" fill="url(#SVGID_2_)"/>
+</g>
+<path d="M23.504,18.337c0-0.547-0.443-0.989-0.992-0.989h-2.104 c-1.016-2.688-2.176-5.542-3.198-7.476c0.487-0.4,0.802-1.008,0.802-1.69C18.01,6.978,17.033,6,15.827,6 c-1.205,0-2.183,0.978-2.183,2.182c0,0.639,0.275,1.21,0.71,1.607c-0.689,1.458-2.026,4.366-3.282,7.559h-0.947 c-0.361-0.707-1.094-1.193-1.943-1.193C6.977,16.154,6,17.133,6,18.337c0,1.205,0.977,2.183,2.183,2.183 c0.849,0,1.582-0.481,1.943-1.19h0.195c-0.687,1.881-1.297,3.774-1.689,5.457c-0.124,0.532,0.206,1.063,0.741,1.188 c0.532,0.125,1.064-0.205,1.189-0.738c0.416-1.791,1.107-3.867,1.875-5.906h6.59c1.182,3.216,2.072,5.934,2.091,5.99 c0.137,0.414,0.524,0.68,0.942,0.68c0.104,0,0.205-0.016,0.309-0.049c0.521-0.172,0.805-0.729,0.633-1.25 c-0.066-0.215-0.826-2.52-1.861-5.374h1.375C23.061,19.327,23.504,18.885,23.504,18.337z M13.211,17.348 c0.947-2.351,1.911-4.505,2.568-5.924c0.803,1.619,1.688,3.783,2.508,5.924H13.211z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.752,17.337c0-0.547-0.443-0.989-0.992-0.989h-2.104c-1.016-2.688-2.176-5.542-3.198-7.476 c0.487-0.4,0.801-1.008,0.801-1.69C18.258,5.978,17.281,5,16.075,5c-1.205,0-2.183,0.978-2.183,2.182c0,0.639,0.275,1.21,0.71,1.607 c-0.689,1.458-2.026,4.366-3.282,7.559h-0.947c-0.361-0.707-1.094-1.193-1.943-1.193c-1.206,0-2.183,0.979-2.183,2.183 c0,1.205,0.977,2.184,2.183,2.184c0.849,0,1.582-0.482,1.943-1.191h0.195c-0.687,1.881-1.297,3.773-1.689,5.457 c-0.124,0.531,0.206,1.063,0.741,1.188c0.532,0.125,1.064-0.205,1.189-0.74c0.416-1.791,1.107-3.865,1.875-5.904h6.591 c1.181,3.216,2.072,5.936,2.09,5.988C21.503,24.734,21.891,25,22.309,25c0.104,0,0.205-0.016,0.309-0.049 c0.521-0.172,0.805-0.729,0.633-1.25c-0.066-0.215-0.826-2.52-1.861-5.374h1.375C23.309,18.327,23.752,17.885,23.752,17.337z M13.459,16.348c0.947-2.351,1.911-4.505,2.568-5.924c0.803,1.619,1.688,3.783,2.508,5.924H13.459z" fill="#F5F5F5"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_image.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_image.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="24" stroke-opacity="0.6" width="30" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4" y2="26">
<stop offset="0" stop-color="#DFDFDF"/>
@@ -50,4 +51,5 @@
</linearGradient>
<path d="M27,13.39c-0.542,0.568-1.025,1.292-1.342,2.203-0.617,1.781,0.855,3.279,0.855,3.279s0.18-0.04,0.48-0.13v-5.352z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_internet.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_internet.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,35 +1,37 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill-opacity="0.6"/>
-<radialGradient cx="-453.9" cy="-299.3" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.91">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6"/>
+<radialGradient cx="-453.8818" cy="-299.3193" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M27.54,14.29c-0.288-5.078-3.577-9.45-8.38-11.14l-0.585,0.096-3.397-0.65-4.235,2.525-0.159,1.064h-2.458l0.971,1.651-2.631,2.143-0.613,2.649,2.173,3.851,2.218-0.453,0.81,0.696,0.633,0.063,0.418,1.634-0.552,1.432,2.01,5.15h2.053l2.035-1.644v-0.671l0.537-0.833,0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566-0.019,0.134,0.289,2.755,1.192,2.55,0.686-0.155,3.135-4.705,3.182-5.138,0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15-1.462,1.466c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551,0.808-2.604,1.231-1.002-0.27-0.491,0.929-0.894-0.519-0.946,0.395,0.048,2.313,5.178,0.49-0.4c-0.015-0.254-0.042-0.503-0.071-0.753l0.61-0.76zm-12.38-5.826l-0.193-0.516h1.161l0.565,1.271h-0.841v-0.755h-0.704zm3.83,2.556l0.927,1.353,0.063,0.162-0.95-0.574-0.23-0.81,0.19-0.13zm1.39,2.37l0.28,0.28-0.362,0.081-0.082-0.1,0.16-0.26zm-7.25-9.104l0.59,0.913-0.67,0.205-0.262-0.149,0.34-0.969z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,2c-7.179,0-13,5.821-13,13,0,7.182,5.821,13,13,13,7.182,0,13-5.818,13-13,0-7.179-5.82-13-13-13zm0,25c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.42">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M27.536,14.288c-0.288-5.078-3.577-9.45-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H8.322l0.971,1.651L6.662,9.979l-0.613,2.649l2.173,3.851l2.218-0.453l0.81,0.696l0.633,0.063l0.418,1.634l-0.552,1.432L13.763,25 h2.053l2.035-1.644v-0.671l0.537-0.833l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.134,0.289,2.755,1.192,2.55 c0.686-0.155,3.135-4.705,3.182-5.138c0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15l-1.462,1.466 c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.491l0.929-0.894l-0.519-0.946 l0.395,0.048l2.313,5.178L27,15.796c-0.015-0.254-0.042-0.503-0.071-0.753L27.536,14.288z M15.156,8.464l-0.193-0.516h1.161 l0.565,1.271h-0.841V8.464H15.156z M18.987,11.024l0.927,1.353l0.063,0.162l-0.95-0.574L18.8,11.146L18.987,11.024z M20.381,13.388 l0.28,0.28l-0.362,0.081l-0.082-0.1L20.381,13.388z M13.127,4.286l0.59,0.913l-0.67,0.205l-0.262-0.149L13.127,4.286z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,2C7.821,2,2,7.821,2,15c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C28,7.821,22.182,2,15,2z M15,27C8.383,27,3,21.617,3,15S8.383,3,15,3s12,5.383,12,12S21.617,27,15,27z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.04,18.71l-1.353,1.355-0.856,0.324c-0.018,0.14-0.063,0.744-0.201,1.056-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.206,0.734,1.001c0.91-0.19,3.67-3.88,2.28-4.54z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.83">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.044,18.714l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.14-0.063,0.744-0.201,1.056 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.206,0.734,1.001C20.669,23.06,23.434,19.367,22.044,18.714z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="15.75" cy="5.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8335">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M18.99,3.619c-0.222,0.084-0.374,0.142-0.374,0.142l-3.344-0.64-1.64,1.026,0.863,1.335-1.509,0.464-0.813-0.464,0.286-0.811-1.06,0.734-0.2,1.278h-2.014l0.745,1.267-2.831,2.31-0.533,2.304,1.051,2.035,0.631,0.4,2.218-0.453,0.81,0.696,0.736,0.072,0.801,3.134-0.533,1.386,1.178,2.604,0.332,1.081h2.053l1.16-0.628,0.875-1.016v-1.229l1.663-0.849v-1.821l0.658-1.251,1.467-1.32,0.351-1.53-1.919,0.428-0.505-0.615,0.359-0.574-1.363-0.824-0.581-2.089,1.007-0.656,0.927,1.353,0.32,0.89,0.696,0.696,0.813,0.425,0.903-0.146,1.003-0.965-0.706-1.288-0.889,0.232-0.804-0.957,0.764-0.533,2.397,0.29v0.853l2.086,4.298,0.474-0.379c-0.27-4.951-3.55-9.111-8.04-10.69zm-1.09,5.81l-1.095,0.29h-1.458v-0.755h-1.394l-1.103,0.291-1.68-0.465-0.465-0.87,2.321-0.522h2.322l-0.34-0.929h1.161l0.646,1.451,1.095,0.384v1.125zm2.5-1.915l-1.974-0.349v-0.696l0.987-0.232,0.29-0.348,0.696,0.58v1.045z" fill="url(#SVGID_4_)"/>
+<path d="M18.99,3.619c-0.222,0.084-0.374,0.142-0.374,0.142l-3.344-0.64l-1.64,1.026l0.863,1.335 l-1.509,0.464l-0.813-0.464l0.286-0.811l-1.06,0.734L11.21,6.683H9.196L9.941,7.95L7.11,10.259l-0.533,2.304l1.051,2.035L8.259,15 l2.218-0.453l0.81,0.696l0.736,0.072l0.801,3.134l-0.533,1.386l1.178,2.604l0.332,1.081h2.053l1.16-0.628l0.875-1.016v-1.229 l1.663-0.849v-1.821l0.658-1.251l1.467-1.32l0.351-1.53l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.089 l1.007-0.656l0.927,1.353L20.3,11.79l0.696,0.696l0.813,0.425l0.903-0.146l1.003-0.965l-0.706-1.288l-0.889,0.232l-0.804-0.957 l0.764-0.533l2.397,0.29v0.853l2.086,4.298l0.474-0.379C26.756,9.359,23.48,5.199,18.99,3.619z M17.901,9.429l-1.095,0.29h-1.458 V8.964h-1.394l-1.103,0.291L11.17,8.79l-0.465-0.87l2.321-0.522h2.322L15,6.469h1.161l0.646,1.451l1.095,0.384V9.429z M20.397,7.514 l-1.974-0.349V6.469l0.987-0.232l0.29-0.348l0.696,0.58V7.514z" fill="url(#SVGID_4_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2.062" y2="28.13">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.0625" y2="28.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_intranet.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_intranet.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,39 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M13,29v-2.173c-0.742-0.125-1.47-0.321-2.18-0.587l-1.088,1.885-3.465-2,1.088-1.885c-0.581-0.481-1.115-1.015-1.596-1.596l-1.885,1.088-2-3.465,1.886-1.08c-0.265-0.71-0.462-1.44-0.588-2.18h-2.172v-4h2.172c0.126-0.741,0.322-1.47,0.587-2.18l-1.883-1.088,2-3.465,1.884,1.088c0.481-0.581,1.015-1.114,1.596-1.595l-1.088-1.885,3.465-2,1.087,1.885c0.71-0.266,1.44-0.462,2.18-0.587v-2.173h4v2.173c0.742,0.125,1.471,0.321,2.18,0.587l1.088-1.885,3.465,2-1.1,1.885c0.58,0.481,1.114,1.015,1.596,1.596l1.885-1.088,1.999,3.465-1.88,1.087c0.266,0.71,0.461,1.438,0.588,2.18h2.17v4h-2.172c-0.127,0.741-0.322,1.47-0.588,2.18l1.884,1.088-1.999,3.465-1.885-1.088c-0.481,0.581-1.016,1.114-1.596,1.596l1.088,1.885-3.465,2-1.08-1.9c-0.709,0.266-1.438,0.462-2.18,0.587v2.17h-4z" fill-opacity="0.6"/>
-<path d="M28,16v-2h-2.051c-0.115-1.279-0.455-2.491-0.971-3.606l1.779-1.027-1-1.732-1.78,1.029c-0.725-1.023-1.617-1.916-2.641-2.641l1.026-1.778-1.732-1-1.027,1.779c-1.12-0.515-2.33-0.854-3.61-0.969v-2.051h-2v2.051c-1.279,0.115-2.491,0.454-3.606,0.97l-1.024-1.78-1.732,1,1.027,1.779c-1.024,0.724-1.917,1.617-2.641,2.64l-1.778-1.026-1,1.732,1.779,1.027c-0.516,1.12-0.855,2.33-0.971,3.61h-2.05v2h2.05c0.116,1.279,0.455,2.491,0.971,3.606l-1.779,1.027,1,1.732,1.778-1.03c0.724,1.023,1.617,1.916,2.641,2.641l-1.027,1.778,1.732,1,1.027-1.779c1.115,0.516,2.327,0.854,3.606,0.97v2.05h2v-2.051c1.279-0.115,2.491-0.454,3.606-0.97l1.027,1.779,1.732-1-1.03-1.78c1.023-0.725,1.916-1.617,2.641-2.641l1.777,1.026,1-1.732-1.779-1.027c0.516-1.115,0.855-2.327,0.971-3.606h2.05z" fill="#FFFFFF"/>
-<radialGradient cx="-453.9" cy="-296.4" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="37.62">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M13,29v-2.173c-0.742-0.125-1.47-0.321-2.18-0.587l-1.088,1.885l-3.465-2l1.088-1.885 c-0.581-0.481-1.115-1.015-1.596-1.596l-1.885,1.088l-2-3.465L3.76,19.18C3.495,18.47,3.298,17.741,3.172,17H1v-4h2.172 c0.126-0.741,0.322-1.47,0.587-2.18L1.876,9.732l2-3.465L5.76,7.355C6.241,6.774,6.775,6.241,7.356,5.76L6.268,3.875l3.465-2 L10.82,3.76C11.53,3.494,12.258,3.298,13,3.173V1h4v2.173c0.742,0.125,1.471,0.321,2.18,0.587l1.088-1.885l3.465,2L22.645,5.76 c0.58,0.481,1.114,1.015,1.596,1.596l1.885-1.088l1.999,3.465L26.24,10.82c0.266,0.71,0.461,1.438,0.588,2.18H29v4h-2.172 c-0.127,0.741-0.322,1.47-0.588,2.18l1.884,1.088l-1.999,3.465l-1.885-1.088c-0.481,0.581-1.016,1.114-1.596,1.596l1.088,1.885 l-3.465,2L19.18,26.24c-0.709,0.266-1.438,0.462-2.18,0.587V29H13z" fill-opacity="0.6"/>
+<path d="M28,16v-2h-2.051c-0.115-1.279-0.455-2.491-0.971-3.606l1.779-1.027l-1-1.732L23.98,8.66 c-0.725-1.023-1.617-1.916-2.641-2.641l1.026-1.778l-1.732-1l-1.027,1.779C18.491,4.505,17.279,4.166,16,4.051V2h-2v2.051 c-1.279,0.115-2.491,0.454-3.606,0.97L9.366,3.241l-1.732,1L8.661,6.02C7.637,6.744,6.744,7.637,6.02,8.66L4.242,7.634l-1,1.732 l1.779,1.027C4.505,11.509,4.166,12.721,4.05,14H2v2h2.05c0.116,1.279,0.455,2.491,0.971,3.606l-1.779,1.027l1,1.732L6.02,21.34 c0.724,1.023,1.617,1.916,2.641,2.641l-1.027,1.778l1.732,1l1.027-1.779c1.115,0.516,2.327,0.854,3.606,0.97V28h2v-2.051 c1.279-0.115,2.491-0.454,3.606-0.97l1.027,1.779l1.732-1L21.34,23.98c1.023-0.725,1.916-1.617,2.641-2.641l1.777,1.026l1-1.732 l-1.779-1.027c0.516-1.115,0.855-2.327,0.971-3.606H28z" fill="#FFFFFF"/>
+<radialGradient cx="-453.8818" cy="-296.3535" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="37.62">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="10"/>
-<path d="M24.64,14.45c-0.221-3.906-2.75-7.27-6.445-8.568l-0.451,0.072-2.612-0.501-3.258,1.942-0.123,0.82h-1.89l0.747,1.27-2.023,1.65-0.472,2.039,1.672,2.961,1.706-0.349,0.623,0.535,0.486,0.048,0.321,1.259-0.424,1.101,1.55,3.96h1.579l1.566-1.263v-0.516l0.412-0.643,0.342-0.174c-0.087,0.133-0.223,0.436-0.223,0.436-0.014,0.104,0.223,2.119,0.917,1.963,0.527-0.12,2.411-3.621,2.448-3.954,0.07-0.656-0.287-0.929-0.508-1.032l-0.244-0.115-1.125,1.127c-0.121,0.01-0.229,0.029-0.328,0.059v-0.937l1.222-1.192,0.622-2.002,0.947-0.771-0.209-0.378,0.715-0.687-0.398-0.729,0.305,0.036,1.778,3.983,0.364-0.292c-0.011-0.195-0.032-0.386-0.055-0.577l0.46-0.59zm-9.52-4.477l-0.148-0.397h0.893l0.435,0.977h-0.647v-0.577h-0.53zm2.95,1.967l0.713,1.042,0.049,0.124-0.731-0.442-0.176-0.629,0.15-0.09zm1.07,1.82l0.216,0.216-0.278,0.063-0.063-0.078,0.12-0.2zm-5.58-7.001l0.454,0.702-0.515,0.158-0.202-0.114,0.26-0.746z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,5c-5.522,0-10,4.478-10,10,0,5.523,4.478,10,10,10,5.525,0,10-4.477,10-10,0-5.522-4.48-10-10-10zm0,19.23c-5.09,0-9.231-4.141-9.231-9.231s4.141-9.231,9.231-9.231c5.09,0,9.23,4.141,9.23,9.231s-4.14,9.23-9.23,9.23z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="15.58" cy="7.69" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="11.86">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M24.643,14.452c-0.221-3.906-2.75-7.27-6.445-8.568l-0.451,0.072l-2.612-0.501l-3.258,1.942l-0.123,0.82 h-1.89l0.747,1.27l-2.023,1.65l-0.472,2.039l1.672,2.961l1.706-0.349l0.623,0.535l0.486,0.048l0.321,1.259l-0.424,1.101l1.55,3.96 h1.579l1.566-1.263v-0.516l0.412-0.643l0.342-0.174c-0.087,0.133-0.223,0.436-0.223,0.436c-0.014,0.104,0.223,2.119,0.917,1.963 c0.527-0.12,2.411-3.621,2.448-3.954c0.07-0.656-0.287-0.929-0.508-1.032l-0.244-0.115l-1.125,1.127 c-0.121,0.01-0.229,0.029-0.328,0.059v-0.937l1.222-1.192l0.622-2.002l0.947-0.771l-0.209-0.378l0.715-0.687l-0.398-0.729 l0.305,0.036l1.778,3.983l0.364-0.292c-0.011-0.195-0.032-0.386-0.055-0.577L24.643,14.452z M15.12,9.973l-0.148-0.397h0.893 l0.435,0.977h-0.647V9.973H15.12z M18.067,11.941l0.713,1.042l0.049,0.124l-0.731-0.442l-0.176-0.629L18.067,11.941z M19.139,13.76 l0.216,0.216l-0.278,0.063l-0.063-0.078L19.139,13.76z M13.559,6.759l0.454,0.702l-0.515,0.158l-0.202-0.114L13.559,6.759z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,5C9.478,5,5,9.478,5,15c0,5.523,4.478,10,10,10c5.525,0,10-4.477,10-10 C25,9.478,20.525,5,15,5z M15,24.231c-5.09,0-9.231-4.141-9.231-9.231S9.91,5.769,15,5.769c5.09,0,9.23,4.141,9.23,9.231 S20.09,24.231,15,24.231z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.5771" cy="7.6904" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="11.8606">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M20.42,17.86l-1.04,1.04-0.658,0.248c-0.014,0.107-0.049,0.573-0.154,0.813-0.209,0.145-0.459,0.625-0.459,0.625s-0.129,0.928,0.564,0.77c0.69-0.15,2.82-2.99,1.75-3.49z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="15.58" cy="7.693" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="13.72">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M20.418,17.856L19.377,18.9c0,0-0.629,0-0.658,0.248c-0.014,0.107-0.049,0.573-0.154,0.813 c-0.209,0.145-0.459,0.625-0.459,0.625s-0.129,0.928,0.564,0.77C19.361,21.199,21.486,18.359,20.418,17.856z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="15.5776" cy="7.6934" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="13.7178">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M18.07,6.245c-0.17,0.065-0.287,0.108-0.287,0.108l-2.572-0.49-1.262,0.789,0.664,1.027-1.16,0.355-0.62-0.354,0.22-0.624-0.815,0.565-0.147,0.98h-1.549l0.574,0.975-2.178,1.776-0.41,1.772,0.808,1.566,0.484,0.31,1.707-0.348,0.622,0.535,0.566,0.055,0.616,2.41-0.41,1.066,0.905,2.004,0.256,0.832h1.58l0.893-0.484,0.672-0.781v-0.945l1.279-0.652v-1.4l0.506-0.962,1.129-1.016,0.27-1.177-1.477,0.329-0.387-0.475,0.275-0.44-1.049-0.635-0.445-1.606,0.773-0.504,0.713,1.039,0.268,0.688,0.535,0.535,0.625,0.327,0.695-0.112,0.771-0.742-0.543-0.991-0.684,0.179-0.617-0.735,0.588-0.41,1.844,0.224v0.655l1.604,3.306,0.365-0.291c-0.2-3.82-2.72-7.019-6.17-8.235zm-0.84,4.475l-0.844,0.223h-1.121v-0.581h-1.071l-0.849,0.225-1.294-0.358-0.356-0.668,1.785-0.402h1.786l-0.27-0.712h0.893l0.496,1.117,0.844,0.294v0.866zm1.92-1.478l-1.518-0.27v-0.534l0.758-0.18,0.223-0.266,0.537,0.445v0.805z" fill="url(#SVGID_4_)"/>
+<path d="M18.068,6.245c-0.17,0.065-0.287,0.108-0.287,0.108l-2.572-0.49l-1.262,0.789l0.664,1.027 l-1.16,0.355L12.827,7.68l0.22-0.624l-0.815,0.565l-0.147,0.98h-1.549l0.574,0.975l-2.178,1.776l-0.41,1.772l0.808,1.566L9.814,15 l1.707-0.348l0.622,0.535l0.566,0.055l0.616,2.41l-0.41,1.066l0.905,2.004l0.256,0.832h1.58l0.893-0.484l0.672-0.781v-0.945 l1.279-0.652V17.29l0.506-0.962l1.129-1.016l0.27-1.177l-1.477,0.329l-0.387-0.475l0.275-0.44l-1.049-0.635l-0.445-1.606 l0.773-0.504l0.713,1.039l0.268,0.688l0.535,0.535l0.625,0.327l0.695-0.112l0.771-0.742l-0.543-0.991l-0.684,0.179l-0.617-0.735 l0.588-0.41l1.844,0.224v0.655l1.604,3.306l0.365-0.291C24.043,10.66,21.523,7.461,18.068,6.245z M17.232,10.715l-0.844,0.223 h-1.121v-0.581h-1.071l-0.849,0.225l-1.294-0.358l-0.356-0.668l1.785-0.402h1.786L15,8.438h0.893l0.496,1.117l0.844,0.294V10.715z M19.152,9.242l-1.518-0.27V8.438l0.758-0.18l0.223-0.266l0.537,0.445V9.242z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="5.048" y2="25.1">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="5.0479" y2="25.1011">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_itut.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_itut.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,94 +1,96 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M3.5,25.5c-1.65,0-3.001-1.35-3.001-3v-15c0-1.65,1.351-3,3.001-3h23c1.65,0,3,1.35,3,3v15c0,1.65-1.35,3-3,3h-23z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-187.5" x2="-187.5" y1="403.5" y2="384.5">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<path d="M3.5,25.5c-1.65,0-3.001-1.35-3.001-3v-15c0-1.65,1.351-3,3.001-3h23 c1.65,0,3,1.35,3,3v15c0,1.65-1.35,3-3,3H3.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-187.52" x2="-187.52" y1="403.4805" y2="384.4805">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M28.5,22.5c0,1.1-0.9,2-2,2h-23c-1.1,0-2-0.9-2-2v-15c0-1.1,0.9-2,2-2h23c1.1,0,2,0.9,2,2v15z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-187.5" x2="-187.5" y1="402.5" y2="385.5">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<path d="M28.5,22.5c0,1.1-0.9,2-2,2h-23c-1.1,0-2-0.9-2-2v-15c0-1.1,0.9-2,2-2h23c1.1,0,2,0.9,2,2V22.5z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-187.52" x2="-187.52" y1="402.4805" y2="385.4805">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M3.5,23.5c-0.551,0-1-0.449-1-1v-15c0-0.551,0.449-1,1-1h23c0.549,0,1,0.449,1,1v15c0,0.551-0.451,1-1,1h-23z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.28" x2="12.28" y1="7.5" y2="22.39">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M3.5,23.5c-0.551,0-1-0.449-1-1v-15c0-0.551,0.449-1,1-1h23c0.549,0,1,0.449,1,1v15 c0,0.551-0.451,1-1,1H3.5z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="12.2773" x2="12.2773" y1="7.5" y2="22.3881">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="3" width="4.5" x="10.03" y="7.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.36" x2="12.36" y1="7.501" y2="22.39">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_3_)" height="3" width="4.5" x="10.027" y="7.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.3594" x2="12.3594" y1="7.501" y2="22.3891">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="3" width="4.5" x="10.11" y="11.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="12.36" x2="12.36" y1="7.498" y2="22.39">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_4_)" height="3" width="4.5" x="10.109" y="11.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="12.3594" x2="12.3594" y1="7.4976" y2="22.3906">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="3" width="4.5" x="10.11" y="15.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.36" x2="12.36" y1="7.5" y2="22.39">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_5_)" height="3" width="4.5" x="10.109" y="15.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.3594" x2="12.3594" y1="7.5005" y2="22.3886">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="3" width="4.5" x="10.11" y="19.5"/>
+<rect fill="url(#SVGID_6_)" height="3" width="4.5" x="10.109" y="19.5"/>
<rect fill="url(#SVGID_7_)" height="3" width="4.5" x="4.707" y="7.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-195.6" x2="-195.6" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-195.563" x2="-195.563" y1="401.4795" y2="386.5914">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="3" width="4.5" x="4.707" y="11.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-195.6" x2="-195.6" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-195.563" x2="-195.563" y1="401.4814" y2="386.5909">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="3" width="4.5" x="4.707" y="15.5"/>
<rect fill="url(#SVGID_7_)" height="3" width="4.5" x="4.707" y="19.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-184.8" x2="-184.8" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-184.7993" x2="-184.7993" y1="401.4805" y2="386.5924">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="3" width="4.5" x="15.47" y="7.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-184.9" x2="-184.9" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_11_)" height="3" width="4.5" x="15.471" y="7.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-184.8813" x2="-184.8813" y1="401.4795" y2="386.5914">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="3" width="4.5" x="15.39" y="11.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-184.9" x2="-184.9" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_12_)" height="3" width="4.5" x="15.389" y="11.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-184.8813" x2="-184.8813" y1="401.4814" y2="386.5909">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_13_)" height="3" width="4.5" x="15.39" y="15.5"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-184.9" x2="-184.9" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_13_)" height="3" width="4.5" x="15.389" y="15.5"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-184.8813" x2="-184.8813" y1="401.4805" y2="386.5924">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_14_)" height="3" width="4.5" x="15.39" y="19.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="23.04" x2="23.09" y1="7.548" y2="22.52">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_14_)" height="3" width="4.5" x="15.389" y="19.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="23.0352" x2="23.0908" y1="7.5483" y2="22.5211">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_15_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.79" y="7.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.02" x2="23.08" y1="7.551" y2="22.52">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_15_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="7.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="23.0205" x2="23.0761" y1="7.5513" y2="22.524">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_16_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.79" y="11.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.01" x2="23.06" y1="7.553" y2="22.53">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_16_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="11.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_17_" x1="23.0059" x2="23.0615" y1="7.5532" y2="22.5259">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_17_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.79" y="15.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="22.99" x2="23.05" y1="7.556" y2="22.53">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_17_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="15.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="22.9912" x2="23.0468" y1="7.5562" y2="22.5289">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_18_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.79" y="19.5"/>
+<rect fill="url(#SVGID_18_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="4.5" x="20.791" y="19.5"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-195.6" x2="-195.6" y1="401.5" y2="386.6">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-195.563" x2="-195.563" y1="401.4805" y2="386.5924">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_java.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_java.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.78,24v-3.441l0.494-0.289c1.05-0.61,1.73-1.06,1.73-1.72,0-1.41-1.64-2.55-3-2.55-1.359,0-3,1.137-3,2.548,0,0.666,0.684,1.114,1.728,1.722l0.497,0.289v3.44h-3.23c-1.654,0-3-1.346-3-3h-0.063c-0.597,0.973-1.407,2-2.832,2-2.419,0-4.105-2.37-4.105-4.5s1.686-4.5,4.104-4.5c1.438,0,2.249,1.052,2.83,2h0.066v-4c0-1.654,1.346-3,3-3h1v-0.063c-0.971-0.597-2-1.406-2-2.832,0-2.419,2.37-4.105,4.5-4.105s4.5,1.686,4.5,4.104c0,1.438-1.051,2.249-2,2.83v0.066h7c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3h-8.219z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593" x2="593" y1="814.9" y2="835.6">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<path d="M15.781,24v-3.441l0.494-0.289C17.316,19.659,18,19.209,18,18.548 C18,17.137,16.357,16,15,16c-1.359,0-3,1.137-3,2.548c0,0.666,0.684,1.114,1.728,1.722l0.497,0.289V24H11c-1.654,0-3-1.346-3-3 H7.937c-0.597,0.973-1.407,2-2.832,2C2.686,23,1,20.629,1,18.5S2.686,14,5.104,14c1.438,0,2.249,1.052,2.83,2H8v-4 c0-1.654,1.346-3,3-3h1V8.937c-0.971-0.597-2-1.406-2-2.832C10,3.686,12.371,2,14.5,2S19,3.686,19,6.104c0,1.438-1.051,2.249-2,2.83 V9h7c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3H15.781z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="592.9609" x2="592.9609" y1="814.9307" y2="835.5632">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M24,10h-8v-1.635c0.943-0.553,2-1.146,2-2.261,0-1.712-1.78-3.104-3.5-3.104s-3.5,1.392-3.5,3.104c0,1.115,1.053,1.711,2,2.263v1.633h-2c-1.1,0-2,0.9-2,2v5h-1.635c-0.553-0.943-1.146-2-2.261-2-1.712,0-3.104,1.78-3.104,3.5s1.392,3.5,3.104,3.5c1.115,0,1.711-1.053,2.263-2h1.633v1c0,1.1,0.9,2,2,2h2.225v-1.866c-1.08-0.63-2.22-1.31-2.22-2.58,0-1.96,2.04-3.55,4-3.55,1.961,0,4,1.591,4,3.548,0,1.272-1.141,1.952-2.219,2.584v1.87h7.22c1.1,0,2-0.9,2-2v-9c0-1.1-0.9-2-2-2z" fill="url(#SVGID_1_)"/>
-<path d="M16.78,21.13v1c1.08-0.63,2.22-1.31,2.22-2.58,0-0.175-0.034-0.342-0.064-0.51-0.26,0.96-1.23,1.55-2.16,2.09z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559,0.04-0.143,0.07-0.291,0.07-0.455,0-1.712-1.78-3.104-3.5-3.104s-3.5,1.392-3.5,3.104c0,0.163,0.028,0.313,0.07,0.455,0.33-1.452,1.9-2.559,3.43-2.559z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2h1.635v-1h-1.635c-0.553-0.943-1.146-2-2.261-2-1.712,0-3.104,1.78-3.104,3.5,0,0.167,0.023,0.334,0.049,0.5,0.235-1.55,1.51-3,3.055-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M11.06,19.04c-0.03,0.17-0.06,0.33-0.06,0.51,0,1.274,1.141,1.955,2.225,2.586v-1c-0.93-0.55-1.9-1.13-2.16-2.1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,10h-8V8.365c0.943-0.553,2-1.146,2-2.261C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104 c0,1.115,1.053,1.711,2,2.263V10h-2c-1.1,0-2,0.9-2,2v5H7.365c-0.553-0.943-1.146-2-2.261-2C3.392,15,2,16.783,2,18.5 C2,20.218,3.392,22,5.104,22c1.115,0,1.711-1.053,2.263-2H9v1c0,1.1,0.9,2,2,2h2.225v-1.866C12.141,20.503,11,19.822,11,18.548 C11,16.591,13.037,15,15,15c1.961,0,4,1.591,4,3.548c0,1.272-1.141,1.952-2.219,2.584V23H24c1.1,0,2-0.9,2-2v-9 C26,10.9,25.1,10,24,10z" fill="url(#SVGID_1_)"/>
+<path d="M16.781,21.132v1C17.859,21.5,19,20.82,19,19.548 c0-0.175-0.034-0.342-0.064-0.51C18.684,20.005,17.711,20.587,16.781,21.132z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1C9,11.9,9.9,11,11,11z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559 C17.973,6.416,18,6.268,18,6.104C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104c0,0.163,0.028,0.313,0.07,0.455 C11.396,5.107,12.969,4,14.5,4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1C26,10.9,25.1,10,24,10z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2H9v-1H7.365 c-0.553-0.943-1.146-2-2.261-2C3.392,15,2,16.783,2,18.5c0,0.167,0.023,0.334,0.049,0.5C2.284,17.454,3.559,16,5.104,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11.065,19.038C11.034,19.206,11,19.373,11,19.548 c0,1.274,1.141,1.955,2.225,2.586v-1C12.289,20.59,11.316,20.006,11.065,19.038z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill-opacity="0.6" height="12" stroke-opacity="0.6" width="12" x="17" y="16"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="602" x2="602" y1="829" y2="839">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="601.9609" x2="601.9609" y1="829.0391" y2="839.0391">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="10" width="10" x="18" y="17"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="18" y="17"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" x="18" y="26"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_keyboard.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_keyboard.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,102 +1,104 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M3.5,25c-1.65,0-3-1.35-3-3v-15c0-1.65,1.35-3,3-3h23c1.65,0,3,1.35,3,3v15c0,1.65-1.35,3-3,3h-23z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-187.5" x2="-187.5" y1="404" y2="385">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<g>
+<path d="M3.5,25c-1.65,0-3-1.35-3-3V7c0-1.65,1.35-3,3-3h23c1.65,0,3,1.35,3,3v15 c0,1.65-1.35,3-3,3H3.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-187.52" x2="-187.52" y1="403.9805" y2="384.9805">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M28.5,22c0,1.1-0.9,2-2,2h-23c-1.1,0-2-0.9-2-2v-15c0-1.1,0.9-2,2-2h23c1.1,0,2,0.9,2,2v15z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-187.5" x2="-187.5" y1="403" y2="386">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<path d="M28.5,22c0,1.1-0.9,2-2,2h-23c-1.1,0-2-0.9-2-2V7c0-1.1,0.9-2,2-2h23c1.1,0,2,0.9,2,2V22z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-187.52" x2="-187.52" y1="402.9805" y2="385.9805">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M3.5,23c-0.55,0-1-0.449-1-1v-15c0-0.55,0.45-1,1-1h23c0.55,0,1,0.45,1,1v15c0,0.551-0.45,1-1,1h-23z" fill="url(#SVGID_2_)"/>
+<path d="M3.5,23c-0.55,0-1-0.449-1-1V7c0-0.55,0.45-1,1-1h23c0.55,0,1,0.45,1,1v15c0,0.551-0.45,1-1,1H3.5z" fill="url(#SVGID_2_)"/>
<rect fill="url(#SVGID_3_)" height="3" width="3" x="3.5" y="7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-193.5" x2="-193.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-193.52" x2="-193.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="3" width="3" x="7.5" y="7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-189.5" x2="-189.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-189.52" x2="-189.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="3" width="3" x="11.5" y="7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-185.5" x2="-185.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-185.52" x2="-185.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="3" width="3" x="15.5" y="7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-181.5" x2="-181.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-181.52" x2="-181.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="3" width="3" x="19.5" y="7"/>
<rect fill="url(#SVGID_8_)" height="3" width="3" x="23.5" y="7"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-197.5" x2="-197.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-197.52" x2="-197.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="3" width="3" x="3.5" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-193.5" x2="-193.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-193.52" x2="-193.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="3" width="3" x="7.5" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-189.5" x2="-189.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-189.52" x2="-189.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="3" width="3" x="11.5" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-185.5" x2="-185.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="-185.52" x2="-185.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="3" width="3" x="15.5" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-181.5" x2="-181.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="-181.52" x2="-181.52" y1="401.9795" y2="387.0419">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_13_)" height="3" width="3" x="19.5" y="11"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-195.5" x2="-195.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_14_" x1="-195.52" x2="-195.52" y1="401.9814" y2="387.0414">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_14_)" height="3" width="7" x="3.5" y="15"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-189.5" x2="-189.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_15_" x1="-189.52" x2="-189.52" y1="401.9814" y2="387.0414">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_15_)" height="3" width="3" x="11.5" y="15"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-185.5" x2="-185.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_16_" x1="-185.52" x2="-185.52" y1="401.9814" y2="387.0414">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_16_)" height="3" width="3" x="15.5" y="15"/>
<rect fill="url(#SVGID_3_)" height="3" width="3" x="3.5" y="19"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-187.5" x2="-187.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_18_" x1="-187.52" x2="-187.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_18_)" fill-opacity="0.5" height="3" stroke-opacity="0.5" width="15" x="7.5" y="19"/>
<rect fill="url(#SVGID_8_)" height="3" width="3" x="23.5" y="19"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-179.5" x2="-179.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_20_" x1="-179.52" x2="-179.52" y1="401.9805" y2="387.0418">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<polygon fill="url(#SVGID_20_)" points="23.5,11,23.5,15,19.5,15,19.5,18,23.5,18,26.5,18,26.5,15,26.5,11"/>
+<polygon fill="url(#SVGID_20_)" points="23.5,11 23.5,15 19.5,15 19.5,18 23.5,18 26.5,18 26.5,15 26.5,11 "/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-197.5" x2="-197.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-197.52" x2="-197.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
</defs>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-177.5" x2="-177.5" y1="402" y2="387">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 202.52 408.9805)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-177.52" x2="-177.52" y1="401.9805" y2="387.0429">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,71 +1,73 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,7h-13.14c-0.447-1.721-2-3-3.858-3-1.915,0-3.517,1.354-3.906,3.155-1.21,0.387-2.094,1.509-2.094,2.845v13c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-13c0-1.654-1.35-3-3-3z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="8.164" y2="25.01">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#626262"/>
+<path d="M25,7H11.858c-0.447-1.721-2-3-3.858-3C6.085,4,4.483,5.354,4.094,7.155C2.884,7.542,2,8.664,2,10v13 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V10C28,8.346,26.654,7,25,7z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="8.1636" y2="25.0077">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
-<path d="M27,23c0,1.1-0.9,2-2,2h-20c-1.1,0-2-0.9-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v13z" fill="url(#SVGID_1_)"/>
-<path d="M25,8h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,24c2.206,0,4-1.794,4-4v-12h-8v12c0,2.21,1.794,4,4,4z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8" x2="8" y1="5.173" y2="23.01">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M27,23c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V10c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V23z" fill="url(#SVGID_1_)"/>
+<path d="M25,8H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,8.9,26.1,8,25,8z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,24c2.206,0,4-1.794,4-4V8H4v12C4,22.206,5.794,24,8,24z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8" x2="8" y1="5.1729" y2="23.0078">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<path d="M11,20c0,1.65-1.35,3-3,3s-3-1.35-3-3v-12c0-1.65,1.35-3,3-3s3,1.35,3,3v12z" fill="url(#SVGID_2_)"/>
-<path d="M8,5c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1c0-1.65-1.35-3-3-3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M10,11v11.22c0.609-0.55,1-1.337,1-2.217v-11l-1,2z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M6,22.22v-11.22l-1-2v11c0,0.88,0.391,1.67,1,2.22z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.5" x2="14.5" y1="14" y2="23.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M11,20c0,1.65-1.35,3-3,3l0,0c-1.65,0-3-1.35-3-3V8c0-1.65,1.35-3,3-3l0,0c1.65,0,3,1.35,3,3V20z" fill="url(#SVGID_2_)"/>
+<path d="M8,5C6.35,5,5,6.35,5,8v1c0-1.65,1.35-3,3-3s3,1.35,3,3V8C11,6.35,9.65,5,8,5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M10,11v11.217c0.609-0.55,1-1.337,1-2.217V9L10,11z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6,22.217V11L5,9v11C5,20.88,5.391,21.667,6,22.217z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.4995" x2="14.4995" y1="14" y2="23.9798">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="3" x="13" y="14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.5" x2="18.5" y1="14" y2="23.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="18.5" x2="18.5" y1="14" y2="23.9798">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="2" width="3" x="17" y="14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="22.5" x2="22.5" y1="14" y2="23.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="22.5" x2="22.5" y1="14" y2="23.9798">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="2" width="3" x="21" y="14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.5" x2="14.5" y1="13" y2="22.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.4995" x2="14.4995" y1="13.0005" y2="22.9802">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="3" x="13" y="17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="18.5" x2="18.5" y1="13" y2="22.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="18.5" x2="18.5" y1="13.0005" y2="22.9802">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2" width="3" x="17" y="17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="22.5" x2="22.5" y1="13" y2="22.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="22.5" x2="22.5" y1="13.0005" y2="22.9802">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_8_)" height="2" width="3" x="21" y="17"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.5" x2="14.5" y1="12" y2="21.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.4995" x2="14.4995" y1="12.0005" y2="21.9802">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_9_)" height="2" width="3" x="13" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="18.5" x2="18.5" y1="12" y2="21.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="18.5" x2="18.5" y1="12.0005" y2="21.9802">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_10_)" height="2" width="3" x="17" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="22.5" x2="22.5" y1="12" y2="21.98">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="22.5" x2="22.5" y1="12.0005" y2="21.9802">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<rect fill="url(#SVGID_11_)" height="2" width="3" x="21" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="18.5" x2="18.5" y1="10.19" y2="13.06">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="18.5" x2="18.5" y1="10.1875" y2="13.0632">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
<rect fill="url(#SVGID_12_)" height="3" width="11" x="13" y="10"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,82 +1,86 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,7.002h-13.14c-0.447-1.721-1.999-3-3.857-3-1.915,0-3.518,1.354-3.906,3.155-1.21,0.387-2.094,1.509-2.094,2.843v13c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-13c0-1.652-1.35-2.998-3-2.998z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.5" x2="297.5" y1="-383.2" y2="-400">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#626262"/>
+<g>
+<path d="M25,7.002H11.857c-0.447-1.721-1.999-3-3.857-3 c-1.915,0-3.518,1.354-3.906,3.155C2.884,7.544,2,8.666,2,10.002v13c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-13 C28,8.348,26.654,7.002,25,7.002z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-383.1855" y2="-400.0298">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
-<path d="M27,23c0,1.1-0.9,2-2,2h-20c-1.1,0-2-0.9-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v13z" fill="url(#SVGID_1_)"/>
-<path d="M25,8.002h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.098-0.9-1.998-2-1.998z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,24c2.205,0,4-1.794,4-4v-12h-8v12c0,2.21,1.795,4,4,4z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="290.5" x2="290.5" y1="-380.2" y2="-398">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M27,23.002c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V23.002z" fill="url(#SVGID_1_)"/>
+<path d="M25,8.002H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20 c1.1,0,2,0.9,2,2v-1C27,8.902,26.1,8.002,25,8.002z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,24.002c2.205,0,4-1.794,4-4v-12H4v12C4,22.208,5.795,24.002,8,24.002z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="290.4795" x2="290.4795" y1="-380.1953" y2="-398.0303">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<path d="M11,20c0,1.65-1.35,3-3,3s-3-1.35-3-3v-12c0-1.65,1.35-3,3-3s3,1.35,3,3v12z" fill="url(#SVGID_2_)"/>
-<path d="M8,5.002c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1c0-1.65-1.35-3-3-3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M10,11v11.22c0.609-0.55,1-1.337,1-2.217v-11l-1,2z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M6,22.22v-11.22l-1-2v11c0,0.88,0.391,1.67,1,2.22z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297" x2="297" y1="-389" y2="-399">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M11,20.002c0,1.65-1.35,3-3,3l0,0c-1.65,0-3-1.35-3-3v-12c0-1.65,1.35-3,3-3l0,0c1.65,0,3,1.35,3,3 V20.002z" fill="url(#SVGID_2_)"/>
+<path d="M8,5.002c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1 C11,6.352,9.65,5.002,8,5.002z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M10,11.002v11.217c0.609-0.55,1-1.337,1-2.217v-11L10,11.002z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6,22.219V11.002l-1-2v11C5,20.882,5.391,21.669,6,22.219z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="296.9795" x2="296.9795" y1="-389.0215" y2="-399.0012">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="2" width="3" x="13" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="301" x2="301" y1="-389" y2="-399">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_3_)" height="2" width="3" x="13" y="14.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="300.9795" x2="300.9795" y1="-389.0215" y2="-399.0012">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="2" width="3" x="17" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="305" x2="305" y1="-389" y2="-399">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_4_)" height="2" width="3" x="17" y="14.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="304.9795" x2="304.9795" y1="-389.0215" y2="-399.0012">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="2" width="3" x="21" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="297" x2="297" y1="-388" y2="-398">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_5_)" height="2" width="3" x="21" y="14.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="296.9795" x2="296.9795" y1="-388.0215" y2="-398.0013">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2" width="3" x="13" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="301" x2="301" y1="-388" y2="-398">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_6_)" height="2" width="3" x="13" y="17.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="300.9795" x2="300.9795" y1="-388.0215" y2="-398.0013">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="2" width="3" x="17" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="305" x2="305" y1="-388" y2="-398">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_7_)" height="2" width="3" x="17" y="17.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="304.9795" x2="304.9795" y1="-388.0215" y2="-398.0013">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="2" width="3" x="21" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="297" x2="297" y1="-387" y2="-397">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_8_)" height="2" width="3" x="21" y="17.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="296.9795" x2="296.9795" y1="-387.0215" y2="-397.0013">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2" width="3" x="13" y="20"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="301" x2="301" y1="-387" y2="-397">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_9_)" height="2" width="3" x="13" y="20.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="300.9795" x2="300.9795" y1="-387.0215" y2="-397.0013">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="2" width="3" x="17" y="20"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="305" x2="305" y1="-387" y2="-397">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_10_)" height="2" width="3" x="17" y="20.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="304.9795" x2="304.9795" y1="-387.0215" y2="-397.0013">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="2" width="3" x="21" y="20"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="301" x2="301" y1="-385.2" y2="-388.1">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<rect fill="url(#SVGID_11_)" height="2" width="3" x="21" y="20.002"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="300.9795" x2="300.9795" y1="-385.21" y2="-388.0856">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="3" width="11" x="13" y="10"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="304.5" x2="304.5" y1="-390" y2="-404.2">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<rect fill="url(#SVGID_12_)" height="3" width="11" x="13" y="10.002"/>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="304.4795" x2="304.4795" y1="-389.9883" y2="-404.1846">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_13_)" r="7"/>
-<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3"/>
-<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
-</svg>
\ No newline at end of file
+<polygon fill-opacity="0.2" points="26.34,24 21.999,19.4 17.66,24 17,23.3 21.999,18 27,23.3 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="21.999,20.857 18,25.098 18,27 21,27 21,24 23,24 23,27 26,27 26,25.098 " stroke-opacity="0.2"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="26.34,23 21.999,18.4 17.66,23 17,22.3 21.999,17 27,22.3 "/>
+<polygon fill="#FFFFFF" points="21.999,19.857 18,24.098 18,26 21,26 21,23 23,23 23,26 26,26 26,24.098 "/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_landline_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,83 +1,87 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,7.001h-13.14c-0.447-1.721-1.999-3-3.857-3-1.915,0-3.518,1.354-3.906,3.155-1.21,0.387-2.094,1.509-2.094,2.844v13c0,1.653,1.346,3,3,3h20c1.654,0,3-1.347,3-3v-13c0-1.653-1.35-2.999-3-2.999z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.5" x2="297.5" y1="-383.2" y2="-400">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#626262"/>
+<g>
+<path d="M25,7.001H11.857c-0.447-1.721-1.999-3-3.857-3 c-1.915,0-3.518,1.354-3.906,3.155C2.884,7.543,2,8.665,2,10.001v13c0,1.653,1.346,3,3,3h20c1.654,0,3-1.347,3-3v-13 C28,8.347,26.654,7.001,25,7.001z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-383.1855" y2="-400.0296">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
-<path d="M27,23c0,1.101-0.9,2-2,2h-20c-1.1,0-2-0.899-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v13z" fill="url(#SVGID_1_)"/>
-<path d="M25,8.001h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.099-0.9-1.999-2-1.999z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8,24c2.205,0,4-1.794,4-4v-12h-8v12c0,2.21,1.795,4,4,4z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="290.5" x2="290.5" y1="-380.2" y2="-398">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M27,23.001c0,1.101-0.9,2-2,2H5c-1.1,0-2-0.899-2-2v-13c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V23.001z " fill="url(#SVGID_1_)"/>
+<path d="M25,8.001H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20 c1.1,0,2,0.9,2,2v-1C27,8.901,26.1,8.001,25,8.001z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8,24.001c2.205,0,4-1.794,4-4v-12H4v12C4,22.207,5.795,24.001,8,24.001z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="290.4795" x2="290.4795" y1="-380.1943" y2="-398.0293">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<path d="M11,20c0,1.649-1.35,3-3,3s-3-1.351-3-3v-12c0-1.65,1.35-3,3-3s3,1.35,3,3v12z" fill="url(#SVGID_2_)"/>
-<path d="M8,5.001c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1c0-1.65-1.35-3-3-3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M10,11v11.22c0.609-0.55,1-1.337,1-2.217v-11l-1,2z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M6,22.22v-11.22l-1-2v11c0,0.88,0.391,1.67,1,2.22z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297" x2="297" y1="-389" y2="-399">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<path d="M11,20.001c0,1.649-1.35,3-3,3l0,0c-1.65,0-3-1.351-3-3v-12c0-1.65,1.35-3,3-3l0,0 c1.65,0,3,1.35,3,3V20.001z" fill="url(#SVGID_2_)"/>
+<path d="M8,5.001c-1.65,0-3,1.35-3,3v1c0-1.65,1.35-3,3-3s3,1.35,3,3v-1 C11,6.351,9.65,5.001,8,5.001z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M10,11.001v11.217c0.609-0.55,1-1.337,1-2.217v-11L10,11.001z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6,22.218V11.001l-1-2v11C5,20.881,5.391,21.668,6,22.218z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="296.9795" x2="296.9795" y1="-389.0205" y2="-399.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="2" width="3" x="13" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="301" x2="301" y1="-389" y2="-399">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_3_)" height="2" width="3" x="13" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="300.9795" x2="300.9795" y1="-389.0205" y2="-399.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="2" width="3" x="17" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="305" x2="305" y1="-389" y2="-399">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_4_)" height="2" width="3" x="17" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="304.9795" x2="304.9795" y1="-389.0205" y2="-399.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="2" width="3" x="21" y="14"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="297" x2="297" y1="-388" y2="-398">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_5_)" height="2" width="3" x="21" y="14.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="296.9795" x2="296.9795" y1="-388.0205" y2="-398.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2" width="3" x="13" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="301" x2="301" y1="-388" y2="-398">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_6_)" height="2" width="3" x="13" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="300.9795" x2="300.9795" y1="-388.0205" y2="-398.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="2" width="3" x="17" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="305" x2="305" y1="-388" y2="-398">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_7_)" height="2" width="3" x="17" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="304.9795" x2="304.9795" y1="-388.0205" y2="-398.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_8_)" height="2" width="3" x="21" y="17"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="297" x2="297" y1="-387" y2="-397">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_8_)" height="2" width="3" x="21" y="17.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="296.9795" x2="296.9795" y1="-387.0205" y2="-397.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_9_)" height="2" width="3" x="13" y="20"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="301" x2="301" y1="-387" y2="-397">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_9_)" height="2" width="3" x="13" y="20.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="300.9795" x2="300.9795" y1="-387.0205" y2="-397.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_10_)" height="2" width="3" x="17" y="20"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="305" x2="305" y1="-387" y2="-397">
-<stop offset="0" stop-color="#6B6C6D"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_10_)" height="2" width="3" x="17" y="20.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="304.9795" x2="304.9795" y1="-387.0205" y2="-397.0002">
+<stop offset="0" style="stop-color:#6B6C6D"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<rect fill="url(#SVGID_11_)" height="2" width="3" x="21" y="20"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="301" x2="301" y1="-385.2" y2="-388.1">
-<stop offset="0" stop-color="#67A7B1"/>
-<stop offset="1" stop-color="#3E678C"/>
+<rect fill="url(#SVGID_11_)" height="2" width="3" x="21" y="20.001"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_12_" x1="300.9795" x2="300.9795" y1="-385.209" y2="-388.0847">
+<stop offset="0" style="stop-color:#67A7B1"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<rect fill="url(#SVGID_12_)" height="3" width="11" x="13" y="10"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="304.5" x2="304.5" y1="-390" y2="-404">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<rect fill="url(#SVGID_12_)" height="3" width="11" x="13" y="10.001"/>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_13_" x1="304.4795" x2="304.4795" y1="-390.0195" y2="-404.0195">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_13_)" r="7"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="24,19,24,20,26,20,26,21,24,21,24,22,26,22,26,23,24,23,24,26,27,26,27,19"/>
-<path d="M17,19v7h2v-2h2v2h2v-9l-6,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm3,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="24,19 24,20 26,20 26,21 24,21 24,22 26,22 26,23 24,23 24,26 27,26 27,19 "/>
+<path d="M17,19v7h2v-2h2v2h2v-9L17,19z M19,23h-1v-1h1V23z M19,21h-1v-1h1V21z M22,23h-1v-1h1V23z M22,21h-1v-1h1 V21z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="24"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_link.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_link.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14 C29,22.719,22.719,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.169,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M13,16c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1s0.447-1,1-1h6c0.55,0,1,0.45,1,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M27,16c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1s0.447-1,1-1h6c0.55,0,1,0.45,1,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13,13h6c0.736,0,1.375,0.405,1.723,1h2.135c-0.445-1.721-1.998-3-3.855-3h-6c-1.858,0-3.41,1.279-3.857,3h2.136c0.34-0.6,0.98-1,1.72-1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M20.72,18c-0.348,0.596-0.984,1-1.723,1h-6c-0.737,0-1.375-0.404-1.722-1h-2.137c0.447,1.721,1.999,3,3.857,3h6c1.857,0,3.41-1.279,3.857-3h-2.137z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12,15c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1s0.447-1,1-1h6c0.55,0,1,0.45,1,1z" fill="#FFFFFF"/>
-<path d="M26,15c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1s0.447-1,1-1h6c0.55,0,1,0.45,1,1z" fill="#FFFFFF"/>
-<path d="M12,12h6c0.736,0,1.375,0.405,1.723,1h2.135c-0.445-1.721-1.998-3-3.855-3h-6c-1.858,0-3.41,1.279-3.857,3h2.136c0.34-0.6,0.98-1,1.72-1z" fill="#FFFFFF"/>
-<path d="M19.72,17c-0.348,0.596-0.984,1-1.723,1h-6c-0.737,0-1.375-0.404-1.722-1h-2.137c0.447,1.721,1.999,3,3.857,3h6c1.857,0,3.41-1.279,3.857-3h-2.137z" fill="#FFFFFF"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13C7.82,2,2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M13,16c0,0.553-0.447,1-1,1H6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6 C12.553,15,13,15.447,13,16L13,16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,16c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6 C26.553,15,27,15.447,27,16L27,16z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13,13h6c0.736,0,1.375,0.405,1.723,1h2.135c-0.445-1.721-1.998-3-3.855-3h-6 c-1.858,0-3.41,1.279-3.857,3h2.136C11.625,13.405,12.263,13,13,13z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20.723,18c-0.348,0.596-0.984,1-1.723,1h-6c-0.737,0-1.375-0.404-1.722-1H9.143 c0.447,1.721,1.999,3,3.857,3h6c1.857,0,3.41-1.279,3.857-3H20.723z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M12,15c0,0.553-0.447,1-1,1H5c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C11.553,14,12,14.447,12,15 L12,15z" fill="#FFFFFF"/>
+<path d="M26,15c0,0.553-0.447,1-1,1h-6c-0.553,0-1-0.447-1-1l0,0c0-0.553,0.447-1,1-1h6C25.553,14,26,14.447,26,15 L26,15z" fill="#FFFFFF"/>
+<path d="M12,12h6c0.736,0,1.375,0.405,1.723,1h2.135c-0.445-1.721-1.998-3-3.855-3h-6c-1.858,0-3.41,1.279-3.857,3 h2.136C10.625,12.405,11.263,12,12,12z" fill="#FFFFFF"/>
+<path d="M19.723,17c-0.348,0.596-0.984,1-1.723,1h-6c-0.737,0-1.375-0.404-1.722-1H8.143 c0.447,1.721,1.999,3,3.857,3h6c1.857,0,3.41-1.279,3.857-3H19.723z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_location.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_location.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-<ellipse cx="15.37" cy="27.28" fill="#333333" fill-opacity="0.2" rx="7.052" ry="2.721" stroke-opacity="0.2"/>
-<path d="M18.62,27.28c0,0.69-1.455,1.251-3.246,1.251-1.79,0-3.244-0.561-3.244-1.251,0-0.694,1.454-1.253,3.244-1.253s3.25,0.56,3.25,1.25z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24.59,1.348c-1.578,1.113-4.293,2.684-5.461,2.684h-0.004c-0.266-0.032-0.66-0.29-1.078-0.564-0.836-0.547-1.984-1.297-3.656-1.309-1.232,0-3.102,1.206-4.354,2.131l-0.778-2.015-5.762,2.215,1.32,3.416,0.777-0.299,6.963,18.04,3.34,2.35,0.865-3.971-1.742-4.511,0.313-0.802c0.641-1.651,2.09-4.584,3.254-5.409,0.305-0.216,1.156-0.646,1.84-0.988,0.693-0.351,1.293-0.65,1.646-0.876,2.91-1.866,3.971-8.396,4.08-9.135l0.35-2.305-1.91,1.348z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -71.0508 -951.4899)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-269.9" x2="-272.3" y1="-932.5" y2="-932.5">
-<stop offset="0" stop-color="#8D8E8E"/>
-<stop offset="0.65" stop-color="#D9D9D9"/>
-<stop offset="1" stop-color="#B0B2B1"/>
+<ellipse cx="15.37" cy="27.279" fill="#333333" fill-opacity="0.2" rx="7.052" ry="2.721" stroke-opacity="0.2"/>
+<path d="M18.615,27.279c0,0.69-1.455,1.251-3.246,1.251c-1.79,0-3.244-0.561-3.244-1.251 c0-0.694,1.454-1.253,3.244-1.253C17.16,26.026,18.615,26.586,18.615,27.279z" fill="#333333" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.592,1.348c-1.578,1.113-4.293,2.684-5.461,2.684c-0.002,0-0.002,0-0.004,0 c-0.266-0.032-0.66-0.29-1.078-0.564c-0.836-0.547-1.984-1.297-3.656-1.309c-1.232,0-3.102,1.206-4.354,2.131L9.262,2.275L3.5,4.49 l1.32,3.416l0.777-0.299l6.963,18.037L15.896,28l0.865-3.971l-1.742-4.511l0.313-0.802c0.641-1.651,2.09-4.584,3.254-5.409 c0.305-0.216,1.156-0.646,1.84-0.988c0.693-0.351,1.293-0.65,1.646-0.876c2.91-1.866,3.971-8.396,4.08-9.135L26.5,0L24.592,1.348z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -71.0508 -951.4899)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-269.8569" x2="-272.3403" y1="-932.4741" y2="-932.4741">
+<stop offset="0" style="stop-color:#8D8E8E"/>
+<stop offset="0.65" style="stop-color:#D9D9D9"/>
+<stop offset="1" style="stop-color:#B0B2B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="6.169,6.32,8.51,5.417,15.72,24.11,15.24,26.32,13.38,25.01"/>
-<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -71.0508 -951.4899)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-269.1" x2="-273.2" y1="-920.7" y2="-920.7">
-<stop offset="0" stop-color="#4F4F4F"/>
-<stop offset="0.59" stop-color="#BFBFBF"/>
-<stop offset="1" stop-color="#6B6B6B"/>
+<polygon fill="url(#SVGID_1_)" points="6.169,6.32 8.51,5.417 15.725,24.106 15.24,26.318 13.383,25.006 "/>
+<linearGradient gradientTransform="matrix(0.9331 -0.3596 -0.3596 -0.9331 -71.0508 -951.4899)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-269.0659" x2="-273.1762" y1="-920.6802" y2="-920.6802">
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="0.59" style="stop-color:#BFBFBF"/>
+<stop offset="1" style="stop-color:#6B6B6B"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="4.79,5.063,8.689,3.563,9.291,5.121,5.393,6.619"/>
+<polygon fill="url(#SVGID_2_)" points="4.79,5.063 8.689,3.563 9.291,5.121 5.393,6.619 "/>
<rect fill-opacity="0.2" height="0.834" stroke-opacity="0.2" transform="matrix(-0.933 0.3598 -0.3598 -0.933 16.7306 9.4024)" width="2.508" x="6.236" y="5.841"/>
-<path d="M9.59,5.896s3.352-2.754,4.811-2.742c2.279,0.017,3.373,1.721,4.609,1.864,1.805,0.214,6.158-2.858,6.158-2.858s-1.021,6.767-3.635,8.445c-0.688,0.437-2.859,1.419-3.523,1.891-1.844,1.307-3.609,5.862-3.609,5.862l-4.82-12.45z" fill="#4F7D5A"/>
-<path d="M14.75,4.046c2.279,0.021,3.373,1.723,4.607,1.868,1.396,0.162,4.318-1.639,5.566-2.461,0.164-0.773,0.244-1.293,0.244-1.293s-4.354,3.072-6.158,2.858c-1.234-0.144-2.328-1.849-4.607-1.864-1.46-0.011-4.81,2.742-4.81,2.742l0.346,0.896s3.344-2.754,4.814-2.746z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<path d="M9.59,5.896c0,0,3.352-2.754,4.811-2.742c2.279,0.017,3.373,1.721,4.609,1.864 c1.805,0.214,6.158-2.858,6.158-2.858s-1.021,6.767-3.635,8.445c-0.688,0.437-2.859,1.419-3.523,1.891 c-1.844,1.307-3.609,5.862-3.609,5.862L9.59,5.896z" fill="#4F7D5A"/>
+<path d="M14.746,4.046c2.279,0.021,3.373,1.723,4.607,1.868 c1.396,0.162,4.318-1.639,5.566-2.461c0.164-0.773,0.244-1.293,0.244-1.293s-4.354,3.072-6.158,2.858 c-1.234-0.144-2.328-1.849-4.607-1.864C12.939,3.143,9.59,5.896,9.59,5.896l0.346,0.896C9.936,6.792,13.285,4.038,14.746,4.046z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_lock.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_lock.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M25,13h-1v-3c0-4.963-4.037-9-9-9s-9,4.037-9,9v3h-1c-1.654,0-3,1.346-3,3v10c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3v-10c0-1.65-1.35-3-3-3zm-13-3c0-1.654,1.346-3,3-3s3,1.346,3,3v3h-6v-3z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7" x2="23" y1="14" y2="14">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="0.2083" stop-color="#F0F0F0"/>
-<stop offset="0.526" stop-color="#969696"/>
-<stop offset="0.8061" stop-color="#A1A1A1"/>
-<stop offset="1" stop-color="#BEBEBE"/>
-</linearGradient>
-<path d="M15,6c2.207,0,4,1.794,4,4v8c0,2.206-1.793,4-4,4-2.206,0-4-1.794-4-4v-8c0-2.206,1.79-4,4-4m0-4c-4.4,0-8,3.6-8,8v8c0,4.4,3.6,8,8,8s8-3.6,8-8v-8c0-4.4-3.6-8-8-8z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="23" y1="9" y2="9">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.2083" stop-color="#BDBDBD"/>
-<stop offset="0.526" stop-color="#707070"/>
-<stop offset="1" stop-color="#8F8F8F"/>
+<path d="M25,13h-1v-3c0-4.963-4.037-9-9-9c-4.963,0-9,4.037-9,9v3H5c-1.654,0-3,1.346-3,3v10 c0,1.654,1.346,3,3,3h20c1.654,0,3-1.346,3-3V16C28,14.346,26.654,13,25,13z M12,10c0-1.654,1.346-3,3-3c1.654,0,3,1.346,3,3v3h-6 V10z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="7.0005" x2="23" y1="14" y2="14">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
-<path d="M11,16v-6c0-2.206,1.794-4,4-4,2.207,0,4,1.794,4,4v6h4v-6c0-4.4-3.6-8-8-8s-8,3.6-8,8v6h4z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8" x2="22" y1="9.5" y2="9.5">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="0.2083" stop-color="#F0F0F0"/>
-<stop offset="0.526" stop-color="#969696"/>
-<stop offset="0.8061" stop-color="#A1A1A1"/>
-<stop offset="1" stop-color="#BEBEBE"/>
+<path d="M15,6c2.207,0,4,1.794,4,4v8c0,2.206-1.793,4-4,4c-2.206,0-4-1.794-4-4v-8C11,7.794,12.794,6,15,6 M15,2c-4.4,0-8,3.6-8,8v8c0,4.4,3.6,8,8,8c4.4,0,8-3.6,8-8v-8C23,5.6,19.4,2,15,2L15,2z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7.0005" x2="23" y1="9" y2="9">
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.2083" style="stop-color:#BDBDBD"/>
+<stop offset="0.526" style="stop-color:#707070"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
-<path d="M10,16v-6c0-2.757,2.243-5,5-5s5,2.243,5,5v6h2v-6c0-3.859-3.141-7-7-7s-7,3.141-7,7v6h2z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3" x2="27" y1="21" y2="21">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M11,16v-6c0-2.206,1.794-4,4-4c2.207,0,4,1.794,4,4v6h4v-6c0-4.4-3.6-8-8-8c-4.4,0-8,3.6-8,8v6H11z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.0005" x2="22" y1="9.5" y2="9.5">
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
-<path d="M27,26c0,1.1-0.9,2-2,2h-20c-1.1,0-2-0.9-2-2v-10c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v10z" fill="url(#SVGID_4_)"/>
-<path d="M25,27h-20c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1c0,1.1-0.9,2-2,2z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M25,14h-20c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M10,16v-6c0-2.757,2.243-5,5-5c2.757,0,5,2.243,5,5v6h2v-6c0-3.859-3.141-7-7-7c-3.859,0-7,3.141-7,7 v6H10z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="3.0005" x2="27" y1="21" y2="21">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#BCA162"/>
+</linearGradient>
+<path d="M27,26c0,1.1-0.9,2-2,2H5c-1.1,0-2-0.9-2-2V16c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_4_)"/>
+<path d="M25,27H5c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2v-1C27,26.1,26.1,27,25,27z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M25,14H5c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h20c1.1,0,2,0.9,2,2v-1C27,14.9,26.1,14,25,14z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="23"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="24" x="3" y="19"/>
<rect fill="none" height="30" width="30" x="0"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_meeting.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_meeting.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,47 +1,49 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27.77,5.936l-5.85,0.968,0.234,1.459c-0.145-0.002-0.285-0.004-0.4-0.004-2.36-2.289-4.49-3.359-6.69-3.359-1.342,0-2.463,0.404-3.451,0.76l-0.273,0.102c-0.482,0.221-1.266,1.016-2.053,1.916-0.309,0.018-0.621,0.023-0.914,0.07l-0.453,0.07,0.16-1.014-5.851-0.968-2.229,13.81,5.852,0.969,0.041-0.254c0.158,0.254,0.363,0.477,0.613,0.641,0.34,0.23,2.76,1.828,4.266,2.824l1.139,0.752c0.3,0.2,0.72,0.32,1.16,0.32,0.344,0,0.676-0.07,0.971-0.203,0.117-0.051,0.613-0.332,1.18-0.684,0.383,0.053,0.768,0.09,1.158,0.09h0.018l2.125-0.078c1.697-0.061,3.5-1.969,4.752-3.627,0.016,0,0.027,0.006,0.043,0.006,0.359,0,0.648-0.066,0.703-0.08l0.082-0.02,0.051,0.316,5.86-0.98-2.23-13.81z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.656" x2="22.99" y1="15.97" y2="15.97">
-<stop offset="0" stop-color="#BEAA67"/>
-<stop offset="1" stop-color="#B69656"/>
+<path d="M27.771,5.936L21.92,6.904l0.234,1.459c-0.145-0.002-0.285-0.004-0.4-0.004C19.391,6.07,17.258,5,15.063,5 c-1.342,0-2.463,0.404-3.451,0.76l-0.273,0.102c-0.482,0.221-1.266,1.016-2.053,1.916c-0.309,0.018-0.621,0.023-0.914,0.07 l-0.453,0.07L8.08,6.904L2.229,5.936L0,19.752l5.852,0.969l0.041-0.254c0.158,0.254,0.363,0.477,0.613,0.641 c0.34,0.23,2.76,1.828,4.266,2.824l1.139,0.752C12.211,24.885,12.633,25,13.066,25c0.344,0,0.676-0.07,0.971-0.203 c0.117-0.051,0.613-0.332,1.18-0.684c0.383,0.053,0.768,0.09,1.158,0.09h0.018l2.125-0.078c1.697-0.061,3.5-1.969,4.752-3.627 c0.016,0,0.027,0.006,0.043,0.006l0,0c0.359,0,0.648-0.066,0.703-0.08l0.082-0.02l0.051,0.316L30,19.752L27.771,5.936z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5.6558" x2="22.9905" y1="15.9707" y2="15.9707">
+<stop offset="0" style="stop-color:#BEAA67"/>
+<stop offset="1" style="stop-color:#B69656"/>
</linearGradient>
-<path d="M8.514,8.838c-0.539,0.078-1.084,0.168-1.418,0.215l-0.705-0.028-1.074,7.865,0.521,0.492c1.512,1.336,5.945,5.82,10.54,5.82l2.107-0.076c1.711-0.063,3.928-3.133,4.145-3.422,1.82-2.18-6.55-12.06-14.13-10.86z" fill="url(#SVGID_1_)"/>
-<path d="M10.77,14.65c-0.434-0.279-0.932-0.428-1.441-0.428-0.215,0-0.432,0.025-0.648,0.076-0.98,0.232-1.709,0.977-2.293,1.574l-0.21,0.22c-0.285,0.285-0.459,0.662-0.559,1.086l0.219,0.207c1.512,1.336,5.945,5.82,10.54,5.82l0.201-0.008c0.195-0.148,0.375-0.291,0.496-0.412,0.67-0.676,0.934-1.541,0.75-2.449-0.05-0.55-0.5-1.9-7.06-5.69z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -6 35)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.69" x2="17.69" y1="20.01" y2="-2.761">
-<stop offset="0" stop-color="#E5E2C3"/>
-<stop offset="0.1337" stop-color="#E1DAB8"/>
-<stop offset="0.3918" stop-color="#D5C69C"/>
-<stop offset="0.7449" stop-color="#C2A270"/>
-<stop offset="1" stop-color="#B3834D"/>
+<path d="M8.514,8.838C7.975,8.916,7.43,9.006,7.096,9.053L6.391,9.025l-1.074,7.865l0.521,0.492 c1.512,1.336,5.945,5.82,10.537,5.82l2.107-0.076l0,0c1.711-0.063,3.928-3.133,4.145-3.422C24.459,17.523,16.092,7.641,8.514,8.838z " fill="url(#SVGID_1_)"/>
+<path d="M10.77,14.654c-0.434-0.279-0.932-0.428-1.441-0.428c-0.215,0-0.432,0.025-0.648,0.076 c-0.98,0.232-1.709,0.977-2.293,1.574L6.178,16.09c-0.285,0.285-0.459,0.662-0.559,1.086l0.219,0.207 c1.512,1.336,5.945,5.82,10.537,5.82l0.201-0.008c0.195-0.148,0.375-0.291,0.496-0.412c0.67-0.676,0.934-1.541,0.75-2.449 C17.775,19.791,17.33,18.445,10.77,14.654z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -6 35)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="17.6895" x2="17.6895" y1="20.0127" y2="-2.761">
+<stop offset="0" style="stop-color:#E5E2C3"/>
+<stop offset="0.1337" style="stop-color:#E1DAB8"/>
+<stop offset="0.3918" style="stop-color:#D5C69C"/>
+<stop offset="0.7449" style="stop-color:#C2A270"/>
+<stop offset="1" style="stop-color:#B3834D"/>
</linearGradient>
-<path d="M10.24,15.5c-0.398-0.256-0.859-0.33-1.332-0.219-0.801,0.189-1.455,0.945-2.029,1.52-0.576,0.58-0.346,2.322-0.322,2.627,0.025,0.348,0.213,0.662,0.502,0.852,0.465,0.314,4.816,3.188,5.398,3.574,0.188,0.125,0.693,0.252,1.197,0.025,0.18-0.076,2.178-1.258,2.721-1.801,0.471-0.475,0.602-1.021,0.465-1.602-0.05-1.19-6.6-4.98-6.6-4.98z" fill="url(#SVGID_2_)"/>
-<path d="M6.877,17.8c0.574-0.574,1.229-1.33,2.029-1.52,0.473-0.111,0.934-0.037,1.332,0.219,0,0,6.221,3.602,6.568,4.879,0.094-0.287,0.105-0.59,0.031-0.902-0.047-1.186-6.6-4.977-6.6-4.977-0.398-0.256-0.859-0.33-1.332-0.219-0.801,0.189-1.455,0.945-2.029,1.52-0.418,0.42-0.41,1.445-0.367,2.098,0.035-0.45,0.133-0.87,0.365-1.1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M8.514,8.838c-0.047,0.006-0.094,0.014-0.141,0.019-0.312,0.385-0.607,0.758-0.859,1.082-0.711,1.094-0.439,1.959-0.217,2.379,0.432,0.807,1.412,1.309,2.557,1.309,0.73,0,1.459-0.197,2.104-0.574,1.033-0.6,1.846-1.178,2.461-1.754,1.135,0.576,3.246,1.908,4.084,2.779,1.008,1.049,2.641,4.008,2.949,5.154,0.121,0.443,0.4,0.773,0.779,0.99,0.207-0.26,0.35-0.455,0.396-0.518,1.83-2.19-6.54-12.07-14.12-10.87z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -6 35)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22.46" x2="22.46" y1="29.37" y2="-5.688">
-<stop offset="0" stop-color="#E5E2C3"/>
-<stop offset="0.1337" stop-color="#E1DAB8"/>
-<stop offset="0.3918" stop-color="#D5C69C"/>
-<stop offset="0.7449" stop-color="#C2A270"/>
-<stop offset="1" stop-color="#B3834D"/>
+<path d="M10.238,15.496c-0.398-0.256-0.859-0.33-1.332-0.219c-0.801,0.189-1.455,0.945-2.029,1.52 c-0.576,0.58-0.346,2.322-0.322,2.627c0.025,0.348,0.213,0.662,0.502,0.852c0.465,0.314,4.816,3.188,5.398,3.574 c0.188,0.125,0.693,0.252,1.197,0.025c0.18-0.076,2.178-1.258,2.721-1.801c0.471-0.475,0.602-1.021,0.465-1.602 C16.791,19.287,10.238,15.496,10.238,15.496z" fill="url(#SVGID_2_)"/>
+<path d="M6.877,17.797c0.574-0.574,1.229-1.33,2.029-1.52c0.473-0.111,0.934-0.037,1.332,0.219 c0,0,6.221,3.602,6.568,4.879c0.094-0.287,0.105-0.59,0.031-0.902c-0.047-1.186-6.6-4.977-6.6-4.977 c-0.398-0.256-0.859-0.33-1.332-0.219c-0.801,0.189-1.455,0.945-2.029,1.52c-0.418,0.42-0.41,1.445-0.367,2.098 C6.547,18.453,6.645,18.031,6.877,17.797z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M8.514,8.838C8.467,8.844,8.42,8.852,8.373,8.857C8.061,9.242,7.766,9.615,7.514,9.939 c-0.711,1.094-0.439,1.959-0.217,2.379c0.432,0.807,1.412,1.309,2.557,1.309c0.73,0,1.459-0.197,2.104-0.574 c1.033-0.6,1.846-1.178,2.461-1.754c1.135,0.576,3.246,1.908,4.084,2.779c1.008,1.049,2.641,4.008,2.949,5.154 c0.121,0.443,0.4,0.773,0.779,0.99c0.207-0.26,0.35-0.455,0.396-0.518C24.459,17.523,16.092,7.641,8.514,8.838z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -6 35)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="22.4619" x2="22.4619" y1="29.3672" y2="-5.6876">
+<stop offset="0" style="stop-color:#E5E2C3"/>
+<stop offset="0.1337" style="stop-color:#E1DAB8"/>
+<stop offset="0.3918" style="stop-color:#D5C69C"/>
+<stop offset="0.7449" style="stop-color:#C2A270"/>
+<stop offset="1" style="stop-color:#B3834D"/>
</linearGradient>
-<path d="M23.41,9.369c-0.021,0-1.93-0.008-2.07-0.023-4.553-4.561-7.27-3.404-9.592-2.574-0.789,0.361-3.404,3.717-3.404,3.717-1.143,1.76,1.277,2.773,3.121,1.699,1.561-0.908,2.311-1.6,2.725-2.08,0.953,0.326,3.936,2.141,5.025,3.275,1.09,1.133,2.83,4.232,3.191,5.582,0.213,0.773,1.377,0.488,1.377,0.488l1.096-0.486-1.48-9.591z" fill="url(#SVGID_3_)"/>
-<path d="M8.342,11.49s2.615-3.355,3.404-3.717c2.322-0.83,5.039-1.986,9.592,2.574,0.141,0.016,2.049,0.023,2.07,0.023l1.326,8.662,0.143-0.064-1.469-9.598c-0.021,0-1.93-0.008-2.07-0.023-4.553-4.561-7.27-3.404-9.592-2.574-0.789,0.361-3.404,3.717-3.404,3.717-0.34,0.523-0.359,0.979-0.178,1.334,0.041-0.1,0.1-0.22,0.174-0.33z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.93,19.38l0.943-0.418-1.469-9.598c-0.012,0-0.561-0.002-1.092-0.006l1.62,10.02z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(0.9869 -0.1613 0.1613 0.9869 -176.9958 -51.6826)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="189.8" x2="189.8" y1="90.92" y2="103.5">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="0.1669" stop-color="#EEEEEE"/>
-<stop offset="0.7665" stop-color="#C5C5C5"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<path d="M23.408,9.369c-0.021,0-1.93-0.008-2.07-0.023c-4.553-4.561-7.27-3.404-9.592-2.574 c-0.789,0.361-3.404,3.717-3.404,3.717c-1.143,1.76,1.277,2.773,3.121,1.699c1.561-0.908,2.311-1.6,2.725-2.08 c0.953,0.326,3.936,2.141,5.025,3.275c1.09,1.133,2.83,4.232,3.191,5.582c0.213,0.773,1.377,0.488,1.377,0.488l1.096-0.486 L23.408,9.369z" fill="url(#SVGID_3_)"/>
+<path d="M8.342,11.488c0,0,2.615-3.355,3.404-3.717c2.322-0.83,5.039-1.986,9.592,2.574 c0.141,0.016,2.049,0.023,2.07,0.023l1.326,8.662l0.143-0.064l-1.469-9.598c-0.021,0-1.93-0.008-2.07-0.023 c-4.553-4.561-7.27-3.404-9.592-2.574c-0.789,0.361-3.404,3.717-3.404,3.717c-0.34,0.523-0.359,0.979-0.178,1.334 C8.209,11.715,8.268,11.604,8.342,11.488z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.934,19.385l0.943-0.418l-1.469-9.598c-0.012,0-0.561-0.002-1.092-0.006L23.934,19.385z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(0.9869 -0.1613 0.1613 0.9869 -176.9958 -51.6826)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="189.8135" x2="189.8135" y1="90.9219" y2="103.5013">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="0.1669" style="stop-color:#EEEEEE"/>
+<stop offset="0.7665" style="stop-color:#C5C5C5"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_4_)" points="28.86,18.93,24.97,19.57,23.06,7.729,26.95,7.084"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="25.95,8.084,27.73,19.11,28.86,18.93,26.95,7.084,23.06,7.729,23.19,8.541" stroke-opacity="0.4"/>
-<path d="M7.75,8.953c-0.254,0.039-0.482,0.076-0.654,0.1l-0.705-0.028-1.074,7.865,0.521,0.492c0.135,0.119,0.301,0.271,0.482,0.436l1.43-8.867z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(-0.9869 -0.1613 -0.1613 0.9869 -641.6711 -51.6826)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-647.7" x2="-647.7" y1="-46.23" y2="-33.66">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<polygon fill="url(#SVGID_4_)" points="28.863,18.926 24.967,19.572 23.057,7.729 26.953,7.084 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="25.953,8.084 27.732,19.113 28.863,18.926 26.953,7.084 23.057,7.729 23.188,8.541 " stroke-opacity="0.4"/>
+<path d="M7.75,8.953c-0.254,0.039-0.482,0.076-0.654,0.1L6.391,9.025l-1.074,7.865l0.521,0.492 c0.135,0.119,0.301,0.271,0.482,0.436L7.75,8.953z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(-0.9869 -0.1613 -0.1613 0.9869 -641.6711 -51.6826)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-647.7456" x2="-647.7456" y1="-46.2344" y2="-33.6554">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="1.137,18.93,5.033,19.57,6.945,7.729,3.047,7.084"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="3.047,7.084,2.863,8.219,5.945,8.729,4.217,19.44,5.033,19.57,6.945,7.729" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_5_)" points="1.137,18.926 5.033,19.572 6.945,7.729 3.047,7.084 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="3.047,7.084 2.863,8.219 5.945,8.729 4.217,19.436 5.033,19.572 6.945,7.729 " stroke-opacity="0.4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_message.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_message.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,28 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="20" width="28" x="1" y="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="6.042" y2="24.04">
-<stop offset="0" stop-color="#B69656"/>
-<stop offset="0.3091" stop-color="#B69656"/>
-<stop offset="0.7879" stop-color="#C2B470"/>
-<stop offset="1" stop-color="#D6CEA0"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="6.0415" y2="24.042">
+<stop offset="0" style="stop-color:#B69656"/>
+<stop offset="0.3091" style="stop-color:#B69656"/>
+<stop offset="0.7879" style="stop-color:#C2B470"/>
+<stop offset="1" style="stop-color:#D6CEA0"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="18" width="26" x="2" y="6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="15,12.63,2.241,24,3.409,24,15,14.53,26.59,24,27.76,24" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="6" y2="24">
-<stop offset="0" stop-color="#906344"/>
-<stop offset="0.0072" stop-color="#906344"/>
-<stop offset="0.2727" stop-color="#906344"/>
-<stop offset="0.7212" stop-color="#AD955D"/>
-<stop offset="1" stop-color="#AD955D"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="15,12.633 2.241,24 3.409,24 15,14.526 26.591,24 27.759,24 " stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="6" y2="24.0005">
+<stop offset="0" style="stop-color:#906344"/>
+<stop offset="0.0072" style="stop-color:#906344"/>
+<stop offset="0.2727" style="stop-color:#906344"/>
+<stop offset="0.7212" style="stop-color:#AD955D"/>
+<stop offset="1" style="stop-color:#AD955D"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" fill-opacity="0.5" points="28,6,15.14,6.947,2,6,2,6.161,10.86,15.49,2,23.94,2,24,2.241,24,11.33,15.9,15,19.36,18.67,15.9,27.76,24,28,24,28,23.94,19.16,15.49,28,6.161" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="6.096" y2="17.29">
-<stop offset="0" stop-color="#D6D3A1"/>
-<stop offset="1" stop-color="#F4F3E5"/>
+<polygon fill="url(#SVGID_2_)" fill-opacity="0.5" points="28,6 15.137,6.947 2,6 2,6.161 10.863,15.487 2,23.941 2,24 2.241,24 11.328,15.902 15,19.365 18.672,15.902 27.759,24 28,24 28,23.941 19.162,15.487 28,6.161 " stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="6.0957" y2="17.2921">
+<stop offset="0" style="stop-color:#D6D3A1"/>
+<stop offset="1" style="stop-color:#F4F3E5"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="2.127,6,15,17.47,27.87,6"/>
+<polygon fill="url(#SVGID_3_)" points="2.127,6 15,17.47 27.873,6 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_missed_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_missed_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M18,29c-6.065,0-11-4.935-11-11v-3h-7l11-14.67,11,14.67h-8v3c0,2.206,1.795,4,4,4s4-1.794,4-4v-1h7v1c0,6.06-4.94,11-11,11z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M23,18c0,2.757-2.243,5-5,5s-5-2.243-5-5v-4h7l-9-12-9,12h6v4c0,5.5,4.5,10,10,10s10-4.5,10-10h-5z" fill="url(#SVGID_1_)"/>
-<path d="M13,18v1c0,2.757,2.243,5,5,5s5-2.243,5-5h4.949c0.03-0.33,0.05-0.66,0.05-1h-5c0,2.757-2.243,5-5,5s-5-2.24-5-5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="11,3,19.25,14,20,14,11,2,2,14,2.75,14" stroke-opacity="0.4"/>
+<path d="M18,29c-6.065,0-11-4.935-11-11v-3H0L11,0.333L22,15h-8v3c0,2.206,1.795,4,4,4s4-1.794,4-4v-1h7v1 C29,24.065,24.065,29,18,29L18,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M23,18c0,2.757-2.243,5-5,5s-5-2.243-5-5v-4h7L11,2L2,14h6v4c0,5.5,4.5,10,10,10s10-4.5,10-10H23z" fill="url(#SVGID_1_)"/>
+<path d="M13,18v1c0,2.757,2.243,5,5,5s5-2.243,5-5h4.949C27.982,18.671,28,18.338,28,18h-5 c0,2.757-2.243,5-5,5S13,20.757,13,18z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="11,3 19.25,14 20,14 11,2 2,14 2.75,14 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#5A2633"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#5A2633"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mms.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mms.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="24" stroke-opacity="0.6" width="30" y="3"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4" y2="26">
<stop offset="0" stop-color="#DFDFDF"/>
@@ -50,6 +51,8 @@
</linearGradient>
<path d="M27,13.39c-0.542,0.568-1.025,1.292-1.342,2.203-0.617,1.781,0.855,3.279,0.855,3.279s0.18-0.04,0.48-0.13v-5.352z" fill="url(#SVGID_9_)"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<path d="M20.96,28.68c-1.825,0-3.309-1.187-3.309-2.646s1.483-2.647,3.309-2.647c0.224,0,0.445,0.018,0.661,0.053v-7.245l5.735,1.537v4.111l-3.089-0.828v5.02c0,1.47-1.49,2.66-3.31,2.66z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<path d="M22.06,16.77v7.229c-0.34-0.109-0.712-0.17-1.103-0.17-1.584,0-2.868,0.987-2.868,2.206s1.284,2.206,2.868,2.206c1.583,0,2.867-0.988,2.867-2.206v-5.595l3.088,0.828v-3.198l-4.86-1.3z" fill="url(#SVGID_1__)"/>
<path d="M20.96,27.8c-1.487,0-2.709-0.871-2.854-1.985-0.009,0.072-0.014,0.146-0.014,0.221,0,1.219,1.283,2.206,2.867,2.206,1.583,0,2.867-0.988,2.867-2.206v-0.45c-0.02,1.22-1.3,2.21-2.88,2.21z" fill-opacity="0.2" stroke-opacity="0.2" style="enable-background:new;"/>
@@ -65,4 +68,5 @@
</linearGradient>
</defs>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,44 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M7.963,29.3c-1.635,0-2.963-1.33-2.963-2.96v-22.35c0-1.634,1.328-2.962,2.963-2.962h14.07c1.63,0,2.96,1.328,2.96,2.962v22.34c0,1.633-1.328,2.963-2.963,2.963h-14.08z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-4.161" y2="28.24">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<path d="M7.963,29.301C6.328,29.301,5,27.971,5,26.338V3.994C5,2.36,6.328,1.032,7.963,1.032h14.074 C23.672,1.032,25,2.36,25,3.994v22.344c0,1.633-1.328,2.963-2.963,2.963H7.963z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-4.1611" y2="28.2423">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<path d="M24,26.34c0,1.084-0.879,1.963-1.963,1.963h-14.08c-1.084,0-1.963-0.88-1.963-1.96v-22.35c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v22.34z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21.08" y2="27.38">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M24,26.338c0,1.084-0.879,1.963-1.963,1.963H7.963C6.879,28.301,6,27.422,6,26.338V3.994 C6,2.91,6.879,2.032,7.963,2.032h14.074C23.121,2.032,24,2.91,24,3.994V26.338z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="21.0811" y2="27.3765">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="23.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="23.19" y2="26.34">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="23.301"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="23.1904" y2="26.3381">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="24.3"/>
-<path d="M22.04,2.032h-14.08c-1.084,0-1.963,0.878-1.963,1.962v1c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v-1c0-1.084-0.88-1.962-1.96-1.962z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="22.25" y2="4.139">
-<stop offset="0" stop-color="#DADBDB"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="24.301"/>
+<path d="M22.037,2.032H7.963C6.879,2.032,6,2.91,6,3.994v1C6,3.91,6.879,3.032,7.963,3.032h14.074 C23.121,3.032,24,3.91,24,4.994v-1C24,2.91,23.121,2.032,22.037,2.032z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="22.2461" y2="4.1392">
+<stop offset="0" style="stop-color:#DADBDB"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="18.3" width="16" x="7" y="4.032"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="5.032" y2="21.31">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="18.301" width="16" x="7" y="4.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="5.0322" y2="21.3059">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="16.3" width="14" x="8" y="5.032"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="9" x2="9" y1="24.3" y2="26.29">
-<stop offset="0" stop-color="#33784C"/>
-<stop offset="1" stop-color="#1E4539"/>
+<rect fill="url(#SVGID_5_)" height="16.301" width="14" x="8" y="5.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="9" x2="9" y1="24.3008" y2="26.2852">
+<stop offset="0" style="stop-color:#33784C"/>
+<stop offset="1" style="stop-color:#1E4539"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="24.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21" x2="21" y1="24.3" y2="26.3">
-<stop offset="0" stop-color="#A15745"/>
-<stop offset="1" stop-color="#622A37"/>
+<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="24.301"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21" x2="21" y1="24.3008" y2="26.3008">
+<stop offset="0" style="stop-color:#A15745"/>
+<stop offset="1" style="stop-color:#622A37"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="24.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,11.16,22,5.032,8,5.032,8,12.3" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="24.301"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,11.162 22,5.032 8,5.032 8,12.301 " stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,55 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M7.963,30c-1.635,0-2.963-1.33-2.963-2.96v-24.08c0-1.634,1.328-2.962,2.963-2.962h14.07c1.63,0,2.96,1.328,2.96,2.962v24.08c0,1.63-1.33,2.96-2.96,2.96h-14.08z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.5" x2="297.5" y1="-369.4" y2="-404">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<g>
+<g>
+<path d="M7.963,30C6.328,30,5,28.671,5,27.038V2.962C5,1.328,6.328,0,7.963,0h14.074 C23.672,0,25,1.328,25,2.962v24.076C25,28.671,23.672,30,22.037,30H7.963z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-369.4189" y2="-403.9581">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<path d="M24,27.04c0,1.08-0.88,1.96-1.96,1.96h-14.08c-1.084,0-1.963-0.88-1.963-1.96v-24.08c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v24.08z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.5" x2="297.5" y1="-396.8" y2="-403.1">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M24,27.038C24,28.121,23.121,29,22.037,29H7.963C6.879,29,6,28.121,6,27.038V2.962 C6,1.878,6.879,1,7.963,1h14.074C23.121,1,24,1.878,24,2.962V27.038z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4795" x2="297.4795" y1="-396.8003" y2="-403.0957">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="24"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.5" x2="297.5" y1="-398.9" y2="-402.1">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.4795" x2="297.4795" y1="-398.9097" y2="-402.0574">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="25"/>
-<path d="M22.04,1h-14.08c-1.084,0-1.963,0.878-1.963,1.962v1c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v-1c0-1.084-0.88-1.962-1.96-1.962z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.5" x2="297.5" y1="-398" y2="-378.1">
-<stop offset="0" stop-color="#DADBDB"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<path d="M22.037,1H7.963C6.879,1,6,1.878,6,2.962v1 C6,2.878,6.879,2,7.963,2h14.074C23.121,2,24,2.878,24,3.962v-1C24,1.878,23.121,1,22.037,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.4805" x2="297.4805" y1="-397.9575" y2="-378.1375">
+<stop offset="0" style="stop-color:#DADBDB"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="20.03" width="16" x="7" y="3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5" x2="297.5" y1="-379" y2="-397">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="20.032" width="16" x="7" y="3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.4795" x2="297.4795" y1="-379.0195" y2="-397.0217">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="18.03" width="14" x="8" y="4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="291.5" x2="291.5" y1="-400" y2="-402">
-<stop offset="0" stop-color="#33784C"/>
-<stop offset="1" stop-color="#1E4539"/>
+<rect fill="url(#SVGID_5_)" height="18.032" width="14" x="8" y="4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="291.4795" x2="291.4795" y1="-400.0195" y2="-402.0039">
+<stop offset="0" style="stop-color:#33784C"/>
+<stop offset="1" style="stop-color:#1E4539"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="303.5" x2="303.5" y1="-400" y2="-402">
-<stop offset="0" stop-color="#A15745"/>
-<stop offset="1" stop-color="#622A37"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="303.4795" x2="303.4795" y1="-400.0195" y2="-402.0195">
+<stop offset="0" style="stop-color:#A15745"/>
+<stop offset="1" style="stop-color:#622A37"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="25"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,10.13,22,4,8,4,8,11.27" stroke-opacity="0.2"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="304.5" x2="304.5" y1="-390" y2="-404.2">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,10.13 22,4 8,4 8,11.269 " stroke-opacity="0.2"/>
+<path d="M22,29.998c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8 S26.411,29.998,22,29.998L22,29.998z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="304.4795" x2="304.4795" y1="-389.9863" y2="-404.1826">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
-<circle cx="22" cy="22" fill="url(#SVGID_8_)" r="7"/>
-<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.012-0.166,0.025-0.331,0.025-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3"/>
-<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
+<circle cx="22" cy="21.998" fill="url(#SVGID_8_)" r="7"/>
+<polygon fill-opacity="0.2" points="26.34,23.998 21.999,19.398 17.66,23.998 17,23.298 21.999,17.998 27,23.298 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="21.999,20.855 18,25.096 18,26.998 21,26.998 21,23.998 23,23.998 23,26.998 26,26.998 26,25.096 " stroke-opacity="0.2"/>
+<path d="M22,15.998c3.697,0,6.717,2.869,6.975,6.5 c0.012-0.166,0.025-0.331,0.025-0.5c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5 C15.283,18.867,18.303,15.998,22,15.998z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="26.34,22.998 21.999,18.398 17.66,22.998 17,22.298 21.999,16.998 27,22.298 "/>
+<polygon fill="#FFFFFF" points="21.999,19.855 18,24.096 18,25.998 21,25.998 21,22.998 23,22.998 23,25.998 26,25.998 26,24.096 "/>
+</g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_mobile_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,56 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M7.963,30c-1.635,0-2.963-1.33-2.963-2.96v-24.08c0-1.634,1.328-2.962,2.963-2.962h14.07c1.63,0,2.96,1.328,2.96,2.962v24.08c0,1.63-1.33,2.96-2.96,2.96h-14.08z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.5" x2="297.5" y1="-369.4" y2="-404">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<g>
+<g>
+<path d="M7.963,30C6.328,30,5,28.671,5,27.038V2.962C5,1.328,6.328,0,7.963,0h14.074 C23.672,0,25,1.328,25,2.962v24.076C25,28.671,23.672,30,22.037,30H7.963z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="297.4795" x2="297.4795" y1="-369.4189" y2="-403.9581">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<path d="M24,27.04c0,1.08-0.88,1.96-1.96,1.96h-14.08c-1.084,0-1.963-0.88-1.963-1.96v-24.08c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v24.08z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.5" x2="297.5" y1="-396.8" y2="-403.1">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M24,27.038C24,28.121,23.121,29,22.037,29H7.963C6.879,29,6,28.121,6,27.038V2.962 C6,1.878,6.879,1,7.963,1h14.074C23.121,1,24,1.878,24,2.962V27.038z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="297.4795" x2="297.4795" y1="-396.8003" y2="-403.0956">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="24"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.5" x2="297.5" y1="-398.9" y2="-402.1">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="297.4795" x2="297.4795" y1="-398.9097" y2="-402.0574">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="25"/>
-<path d="M22.04,1h-14.08c-1.084,0-1.963,0.878-1.963,1.962v1c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v-1c0-1.084-0.88-1.962-1.96-1.962z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.5" x2="297.5" y1="-398" y2="-378.1">
-<stop offset="0" stop-color="#DADBDB"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<path d="M22.037,1H7.963C6.879,1,6,1.878,6,2.962v1 C6,2.878,6.879,2,7.963,2h14.074C23.121,2,24,2.878,24,3.962v-1C24,1.878,23.121,1,22.037,1z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="297.4805" x2="297.4805" y1="-397.9575" y2="-378.1375">
+<stop offset="0" style="stop-color:#DADBDB"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="20.03" width="16" x="7" y="3"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.5" x2="297.5" y1="-379" y2="-397">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="20.032" width="16" x="7" y="3"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="297.4795" x2="297.4795" y1="-379.0195" y2="-397.0217">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="18.03" width="14" x="8" y="4"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="291.5" x2="291.5" y1="-400" y2="-402">
-<stop offset="0" stop-color="#33784C"/>
-<stop offset="1" stop-color="#1E4539"/>
+<rect fill="url(#SVGID_5_)" height="18.032" width="14" x="8" y="4"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="291.4795" x2="291.4795" y1="-400.0195" y2="-402.0039">
+<stop offset="0" style="stop-color:#33784C"/>
+<stop offset="1" style="stop-color:#1E4539"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="25"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="303.5" x2="303.5" y1="-400" y2="-402">
-<stop offset="0" stop-color="#A15745"/>
-<stop offset="1" stop-color="#622A37"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="303.4795" x2="303.4795" y1="-400.0195" y2="-402.0195">
+<stop offset="0" style="stop-color:#A15745"/>
+<stop offset="1" style="stop-color:#622A37"/>
</linearGradient>
<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="25"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,10.13,22,4,8,4,8,11.27" stroke-opacity="0.2"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="304.5" x2="304.5" y1="-390" y2="-404">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,10.13 22,4 8,4 8,11.269 " stroke-opacity="0.2"/>
+<path d="M22,29.999c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8 S26.411,29.999,22,29.999L22,29.999z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -282.4805 -375.0195)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="304.4795" x2="304.4795" y1="-390.0186" y2="-404.0186">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
-<circle cx="22" cy="22" fill="url(#SVGID_8_)" r="7"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.012-0.166,0.025-0.331,0.025-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="24,19,24,20,26,20,26,21,24,21,24,22,26,22,26,23,24,23,24,26,27,26,27,19"/>
-<path d="M17,19v7h2v-2h2v2h2v-9l-6,2zm2,4h-1v-1h1v0.999zm0-2h-1v-1h1v0.999zm3,2h-1v-1h1v0.999zm0-2h-1v-1h1v0.999z" fill="#FFFFFF"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="26"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="26"/>
-<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="24"/>
+<circle cx="22" cy="21.999" fill="url(#SVGID_8_)" r="7"/>
+<path d="M22,15.999c3.697,0,6.717,2.869,6.975,6.5 c0.012-0.166,0.025-0.331,0.025-0.5c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5 C15.283,18.868,18.303,15.999,22,15.999z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="24,18.999 24,19.999 26,19.999 26,20.999 24,20.999 24,21.999 26,21.999 26,22.999 24,22.999 24,25.999 27,25.999 27,18.999 "/>
+<path d="M17,18.999v7h2v-2h2v2h2v-9L17,18.999z M19,22.999h-1v-1h1V22.999z M19,20.999h-1v-1h1V20.999z M22,22.999 h-1v-1h1V22.999z M22,20.999h-1v-1h1V20.999z" fill="#FFFFFF"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="25.999"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="25.999"/>
+<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="23.999"/>
+</g>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_doc.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_doc.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect height="27" width="21.6" x="4.201" y="1.5"/>
<rect fill="#52607A" height="24.3" width="18.9" x="5.55" y="2.851"/>
<path d="M6.9,4.2v21.6h16.2v-21.6s-14.14,0-16.2,0z" fill="#FFFFFF"/>
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
<path d="M18.14,10.69v1.209l1.11-0.083-2.952,4.246,0.271-3.326v-0.838h0.793v-1.21h-9.11v1.209h0.791v0.805l-0.83,8.861h1.041l4.059-5.508-0.339,5.508h1.034l6.841-9.666h0.87v-1.2h-3.567zm-6.58,5.27l0.258-4.063h2.623l-2.88,4.06z" fill="#374574"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_pdf.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_pdf.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,12 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect height="27" width="21.6" x="4.201" y="1.5"/>
<rect fill="#B34D4D" height="24.3" width="18.9" x="5.551" y="2.85"/>
<path d="M6.901,4.199v21.6h16.2v-21.6s-14.14-0.001-16.2-0.001z" fill="#FFFFFF"/>
<rect fill="#F6F6F5" height="18.9" width="13.5" x="8.25" y="5.55"/>
<path d="M16.97,17.67c-0.629-1.442-1.301-3.105-1.503-3.802,0,0,1.54-6.305-0.319-6.305-2.705,0-0.414,6.441-0.414,6.441s-0.91,3.215-1.242,3.909c-1.168,0-5.157,2.126-3.504,3.781,0.854,0.855,2.521-0.056,4.005-3.224,0.261-0.259,2.221-0.506,2.502-0.225,0.988,1.67,2.624,4.454,3.679,3.404,1.37-1.4-1.84-3.99-3.21-3.99zm-6.49,3.55c-0.454-0.454-0.309-1.569,2.651-2.479-1.04,2.07-2.19,2.93-2.65,2.48zm4.54-12.93c1.065,0,0.202,3.646,0.022,4.391,0,0-1.21-4.388-0.02-4.388zm4.72,12.87c-0.487,0.487-1.961-2.063-2.296-2.614,1.52,0.47,2.79,2.13,2.3,2.61z" fill="#B34D4D"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_ppt.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_ppt.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect height="27" width="21.6" x="4.2" y="1.5"/>
<rect fill="#B37D57" height="24.3" width="18.9" x="5.55" y="2.85"/>
@@ -10,4 +11,5 @@
<rect fill="#B37D57" height="1.35" width="5.399" x="9.601" y="9.601"/>
<circle cx="14.32" cy="18.38" fill="#B59458" r="4.725"/>
<path d="M20.4,18.37c-0.006-3.349-2.729-6.067-6.075-6.067v6.067h6.08z" fill="#B37D57"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_rtf.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_rtf.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect height="27" width="21.6" x="4.2" y="1.5"/>
<path d="M5.55,2.85v24.3h18.9v-24.3s-16.76,0-18.9,0z"/>
@@ -9,4 +10,5 @@
<path d="M10.58,12.88c0.371-0.77,0.937-1.065,1.758-1.065,0.074,0,0.159,0,0.245,0.011v1.01c-0.14-0.008-0.266-0.008-0.396-0.008-0.938,0-1.375,0.425-1.375,1.408v3.688h-1.097v-6.056h0.619l0.26,1.01z"/>
<path d="M16.47,17.82c-0.424,0.117-0.872,0.192-1.311,0.192-0.96,0-1.364-0.438-1.364-1.384v-4.01h-0.735v-0.746h0.745l0.438-1.45h0.661v1.45h1.47v0.746h-1.47v3.817c0,0.489,0.085,0.811,0.65,0.811,0.309,0,0.617-0.075,0.915-0.149v0.718z"/>
<path d="M20.3,10.53c-0.267-0.084-0.543-0.158-0.82-0.158-0.746,0-0.788,0.468-0.788,1.503h1.107v0.746h-1.107v5.311h-1.108v-5.313h-0.736v-0.744h0.736c0-1.334,0.201-2.271,1.695-2.271,0.352,0,0.694,0.041,1.022,0.128v0.793z"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_xls.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_ms_xls.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect height="27" width="21.6" x="4.199" y="1.5"/>
<rect fill="#4F7D5A" height="24.3" width="18.9" x="5.549" y="2.85"/>
@@ -10,4 +11,5 @@
<path d="M17.5,12.25c-0.581,0.77-4.178,5.553-6.132,8.153h1.13c0.581-0.735,4.366-5.531,6.438-8.153h-1.44z" fill="#4F7D5A"/>
<polygon points="8.25,10.06,16,21.75,21.31,21.75,13.15,10.06"/>
<path d="M10.76,11.41c1.756,2.649,5.378,8.108,5.962,8.989h1.992c-1.865-2.672-5.686-8.145-6.276-8.989h-1.67z" fill="#4F7D5A"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_network.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_network.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,44 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-110.2" x2="-106.7" y1="218" y2="218">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
-</linearGradient>
-<path d="M13.24,5.375v21.01c0,0.383,0.313,0.693,0.699,0.693h2.101c0.387,0,0.7-0.31,0.7-0.693v-21h-3.504z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-108.5" x2="-108.5" y1="231.4" y2="217.7">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<g>
+<path d="M13.999,28c-0.854,0-1.762-0.701-1.762-2v-8.076L1.865,7.045c-0.407-0.339-0.678-0.942-0.804-1.8L1.05,5.164 C1.035,5.055,1.023,4.941,1.016,4.829C1.005,4.676,1.001,4.566,1.002,4.461l0.004-0.102C1.01,4.238,1.014,4.163,1.021,4.096 C1.037,3.953,1.064,3.815,1.1,3.703C1.358,2.858,2.174,2,3.228,2h23.545c1.053,0,1.868,0.857,2.129,1.705 c0.034,0.105,0.062,0.246,0.078,0.403c0.007,0.064,0.018,0.36,0.018,0.36c0,0.105-0.005,0.216-0.012,0.329l-0.013,0.203 l-0.006,0.012c-0.064,0.632-0.259,1.552-0.834,2.031L17.735,17.988V26c0,1.121-0.763,2-1.736,2H13.999z M17.735,11.553l4.728-5.043 h-4.728V11.553z M12.237,11.46V6.51H7.551L12.237,11.46z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.999" x2="14.999" y1="2.8809" y2="17.6091">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M28.95,3.791c-0.158-0.515-0.634-0.866-1.173-0.866h-25.56c-0.539,0-1.015,0.352-1.172,0.866-0.159,0.515,0.038,1.072,0.485,1.374l11.7,11.29v-4.581l-7.012-6.505h17.54l-7.036,6.612v4.537l11.72-11.36c0.46-0.307,0.65-0.864,0.5-1.379z" fill="url(#SVGID_2_)"/>
-<path d="M1.054,4.192c0.157-0.515,0.633-0.917,1.172-0.917h25.55c0.539,0,1.015,0.402,1.173,0.917,0.017,0.053,0.026,0.107,0.035,0.161,0.032-0.184,0.021-0.375-0.035-0.562-0.158-0.515-0.634-0.866-1.173-0.866h-25.54c-0.539,0-1.015,0.352-1.172,0.866-0.058,0.187-0.067,0.378-0.036,0.562,0.008-0.054,0.019-0.108,0.035-0.161z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="17.09,12.36,24.35,5.371,23.79,5.371,17.09,11.71" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="5.659,5.376,12.89,12.25,12.89,11.61,6.226,5.376" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-108.5" x2="-108.5" y1="231" y2="218.2">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
-</linearGradient>
-<path d="M17.09,12.37l7.771-7.344h-19.74l7.761,7.236v3.547l-11.15-10.93c-0.325-0.22-0.465-0.614-0.351-0.984,0.113-0.37,0.45-0.619,0.838-0.619h25.55c0.388,0,0.725,0.249,0.838,0.619s-0.027,0.764-0.347,0.981l-11.17,11.06v-3.561z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-100.6" x2="-100.6" y1="230.3" y2="218.9">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M27.946,4c-0.158-0.513-0.635-1-1.174-1H15.161H3.228C2.687,3,2.212,3.487,2.055,4 c-0.16,0.51,0.036,2.001,0.482,2.3l10.7,11.224v-3.552L5.228,5.51h19.544l-8.036,8.571v3.509L27.46,6.3 C27.906,6.001,28.103,4.51,27.946,4z" fill="url(#SVGID_1_)"/>
+<polygon points="12.237,16.475 13.237,17.523 13.237,13.971 12.237,12.915 "/>
+<polygon points="17.735,13.015 16.735,14.081 16.735,17.59 17.735,16.537 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="13.2373" x2="16.7354" y1="16.2549" y2="16.2549">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M28.57,3.801c-0.064,0.147-0.168,0.279-0.31,0.374l-11.17,11.06v0.7l11.17-11.06c0.32-0.217,0.46-0.611,0.347-0.981-0.01-0.033-0.02-0.063-0.04-0.093z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-116.3" x2="-116.3" y1="230.3" y2="218.9">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M1.426,3.8c-0.013,0.031-0.028,0.061-0.037,0.094-0.114,0.37,0.026,0.763,0.351,0.983l11.15,10.93v-0.7l-11.15-10.93c-0.144-0.097-0.249-0.229-0.314-0.377z" fill="url(#SVGID_5_)"/>
-<path d="M1.389,4.243c0.113-0.37,0.45-0.618,0.838-0.618h25.55c0.388,0,0.725,0.249,0.838,0.618,0.009,0.029,0.013,0.059,0.018,0.087,0.031-0.142,0.027-0.291-0.018-0.437-0.114-0.37-0.45-0.619-0.838-0.619h-25.54c-0.387,0-0.725,0.249-0.838,0.619-0.045,0.146-0.049,0.295-0.019,0.437,0.005-0.028,0.009-0.058,0.019-0.087z" fill="#FFFFFF"/>
-<path d="M16.04,26.72h-2.101c-0.386,0-0.699-0.311-0.699-0.694v0.351c0,0.383,0.313,0.693,0.699,0.693h2.101c0.387,0,0.7-0.311,0.7-0.693v-0.351c0,0.39-0.32,0.69-0.7,0.69z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M16.04,26.37h-2.101c-0.386,0-0.699-0.311-0.699-0.693v0.35c0,0.383,0.313,0.693,0.699,0.693h2.101c0.387,0,0.7-0.311,0.7-0.693v-0.35c0,0.38-0.32,0.69-0.7,0.69z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.35" stroke-opacity="0.3" width="3.5" x="13.24" y="5.375"/>
-<rect fill-opacity="0.2" height="0.35" stroke-opacity="0.2" width="3.5" x="13.24" y="5.725"/>
-<rect fill-opacity="0.1" height="1.4" stroke-opacity="0.1" width="3.5" x="13.24" y="5.375"/>
+<path d="M13.237,5.51V26c0,0.656,0.375,1,0.762,1h2c0.386,0,0.736-0.406,0.736-1V5.51H13.237z" fill="url(#SVGID_2_)"/>
+<path d="M2.055,5c0.157-0.513,0.632-1,1.173-1h11.934h11.611c0.539,0,1.016,0.487,1.174,1 c0.004,0.013,0.005,0.032,0.008,0.046C28.012,4.631,28.015,4.222,27.946,4c-0.158-0.513-0.635-1-1.174-1H15.161H3.228 C2.687,3,2.212,3.487,2.055,4c-0.07,0.224-0.068,0.637-0.011,1.055C2.049,5.038,2.05,5.015,2.055,5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_network_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_network_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,46 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-110.2" x2="-106.7" y1="218" y2="218">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
-</linearGradient>
-<path d="M13.24,5.375v21.01c0,0.383,0.313,0.693,0.699,0.693h2.101c0.387,0,0.7-0.31,0.7-0.693v-21h-3.504z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-108.5" x2="-108.5" y1="231.4" y2="217.7">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<g>
+<path d="M13.999,28c-0.854,0-1.762-0.701-1.762-2v-8.076L1.865,7.045c-0.407-0.339-0.678-0.942-0.804-1.8L1.05,5.164 C1.035,5.055,1.023,4.941,1.016,4.829C1.005,4.676,1.001,4.566,1.002,4.461l0.004-0.102C1.01,4.238,1.014,4.163,1.021,4.096 C1.037,3.953,1.064,3.815,1.1,3.703C1.358,2.858,2.174,2,3.228,2h23.545c1.053,0,1.868,0.857,2.129,1.705 c0.034,0.105,0.062,0.246,0.078,0.403c0.007,0.064,0.018,0.36,0.018,0.36c0,0.105-0.005,0.216-0.012,0.329l-0.013,0.203 l-0.006,0.012c-0.064,0.632-0.259,1.552-0.834,2.031L17.735,17.988V26c0,1.121-0.763,2-1.736,2H13.999z M17.735,11.553l4.728-5.043 h-4.728V11.553z M12.237,11.46V6.51H7.551L12.237,11.46z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.999" x2="14.999" y1="2.8809" y2="17.6091">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M28.95,3.791c-0.158-0.515-0.634-0.866-1.173-0.866h-25.56c-0.539,0-1.015,0.352-1.172,0.866-0.159,0.515,0.038,1.072,0.485,1.374l11.7,11.29v-4.581l-7.012-6.505h17.54l-7.036,6.612v4.537l11.72-11.36c0.46-0.307,0.65-0.864,0.5-1.379z" fill="url(#SVGID_2_)"/>
-<path d="M1.054,4.192c0.157-0.515,0.633-0.917,1.172-0.917h25.55c0.539,0,1.015,0.402,1.173,0.917,0.017,0.053,0.026,0.107,0.035,0.161,0.032-0.184,0.021-0.375-0.035-0.562-0.158-0.515-0.634-0.866-1.173-0.866h-25.54c-0.539,0-1.015,0.352-1.172,0.866-0.058,0.187-0.067,0.378-0.036,0.562,0.008-0.054,0.019-0.108,0.035-0.161z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="17.09,12.36,24.35,5.371,23.79,5.371,17.09,11.71" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="5.659,5.376,12.89,12.25,12.89,11.61,6.226,5.376" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-108.5" x2="-108.5" y1="231" y2="218.2">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
+<path d="M27.946,4c-0.158-0.513-0.635-1-1.174-1H15.161H3.228C2.687,3,2.212,3.487,2.055,4 c-0.16,0.51,0.036,2.001,0.482,2.3l10.7,11.224v-3.552L5.228,5.51h19.544l-8.036,8.571v3.509L27.46,6.3 C27.906,6.001,28.103,4.51,27.946,4z" fill="url(#SVGID_1_)"/>
+<polygon points="12.237,16.475 13.237,17.523 13.237,13.971 12.237,12.915 "/>
+<polygon points="17.735,13.015 16.735,14.081 16.735,17.59 17.735,16.537 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="13.2373" x2="16.7354" y1="16.2549" y2="16.2549">
+<stop offset="0" style="stop-color:#F5F5F5"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M17.09,12.37l7.771-7.344h-19.74l7.761,7.236v3.547l-11.15-10.93c-0.325-0.22-0.465-0.614-0.351-0.984,0.113-0.37,0.45-0.619,0.838-0.619h25.55c0.388,0,0.725,0.249,0.838,0.619s-0.027,0.764-0.347,0.981l-11.17,11.06v-3.561z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-100.6" x2="-100.6" y1="230.3" y2="218.9">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M28.57,3.801c-0.064,0.147-0.168,0.279-0.31,0.374l-11.17,11.06v0.7l11.17-11.06c0.32-0.217,0.46-0.611,0.347-0.981-0.01-0.033-0.02-0.063-0.04-0.093z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-116.3" x2="-116.3" y1="230.3" y2="218.9">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M1.426,3.8c-0.013,0.031-0.028,0.061-0.037,0.094-0.114,0.37,0.026,0.763,0.351,0.983l11.15,10.93v-0.7l-11.15-10.93c-0.144-0.097-0.249-0.229-0.314-0.377z" fill="url(#SVGID_5_)"/>
-<path d="M1.389,4.243c0.113-0.37,0.45-0.618,0.838-0.618h25.55c0.388,0,0.725,0.249,0.838,0.618,0.009,0.029,0.013,0.059,0.018,0.087,0.031-0.142,0.027-0.291-0.018-0.437-0.114-0.37-0.45-0.619-0.838-0.619h-25.54c-0.387,0-0.725,0.249-0.838,0.619-0.045,0.146-0.049,0.295-0.019,0.437,0.005-0.028,0.009-0.058,0.019-0.087z" fill="#FFFFFF"/>
-<path d="M16.04,26.72h-2.101c-0.386,0-0.699-0.311-0.699-0.694v0.351c0,0.383,0.313,0.693,0.699,0.693h2.101c0.387,0,0.7-0.311,0.7-0.693v-0.351c0,0.39-0.32,0.69-0.7,0.69z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M16.04,26.37h-2.101c-0.386,0-0.699-0.311-0.699-0.693v0.35c0,0.383,0.313,0.693,0.699,0.693h2.101c0.387,0,0.7-0.311,0.7-0.693v-0.35c0,0.38-0.32,0.69-0.7,0.69z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.35" stroke-opacity="0.3" width="3.5" x="13.24" y="5.375"/>
-<rect fill-opacity="0.2" height="0.35" stroke-opacity="0.2" width="3.5" x="13.24" y="5.725"/>
-<rect fill-opacity="0.1" height="1.4" stroke-opacity="0.1" width="3.5" x="13.24" y="5.375"/>
+<path d="M13.237,5.51V26c0,0.656,0.375,1,0.762,1h2c0.386,0,0.736-0.406,0.736-1V5.51H13.237z" fill="url(#SVGID_2_)"/>
+<path d="M2.055,5c0.157-0.513,0.632-1,1.173-1h11.934h11.611c0.539,0,1.016,0.487,1.174,1 c0.004,0.013,0.005,0.032,0.008,0.046C28.012,4.631,28.015,4.222,27.946,4c-0.158-0.513-0.635-1-1.174-1H15.161H3.228 C2.687,3,2.212,3.487,2.055,4c-0.07,0.224-0.068,0.637-0.011,1.055C2.049,5.038,2.05,5.015,2.055,5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -51,4 +29,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_chat.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_chat.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M6.924,27.14c-0.451,0-1.213-0.316-1.213-1.512v-3.766c-3.001-2.06-4.711-5-4.711-8.13,0-5.998,6.28-10.87,14-10.87,7.721,0,14,4.875,14,10.87,0,5.993-6.279,10.87-14,10.87-1.54,0-3.052-0.191-4.501-0.574l-2.41,2.53c-0.365,0.38-0.769,0.58-1.166,0.58z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -945.9609 -1319.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="961" x2="961" y1="1323" y2="1345">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M6.924,27.143c-0.451,0-1.213-0.316-1.213-1.512v-3.766C2.71,19.805,1,16.859,1,13.726 C1,7.732,7.28,2.857,15,2.857c7.721,0,14,4.875,14,10.868c0,5.993-6.279,10.869-14,10.869c-1.54,0-3.052-0.191-4.501-0.574 L8.09,26.555C7.725,26.939,7.321,27.143,6.924,27.143L6.924,27.143z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -945.9609 -1319.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="960.9609" x2="960.9609" y1="1323.0518" y2="1345.0404">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M6.924,26.14c-0.131,0-0.213-0.199-0.213-0.512v-4.305l-0.077-0.049c-2.946-1.87-4.634-4.63-4.634-7.54,0-5.44,5.831-9.868,13-9.868,7.168,0,13,4.428,13,9.868,0,5.442-5.832,9.87-13,9.87-1.618,0-3.201-0.227-4.706-0.67l-0.105-0.031-2.824,2.973c-0.156,0.17-0.321,0.27-0.432,0.27z" fill="url(#SVGID_1_)"/>
-<path d="M15,4.785c6.961,0,12.65,4.18,12.97,9.405,0.01-0.15,0.03-0.31,0.03-0.46,0-5.44-5.832-9.868-13-9.868-7.169,0-13,4.428-13,9.868,0,0.149,0.023,0.296,0.033,0.446,0.335-5.224,6.014-9.395,12.97-9.395z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6.924,26.143c-0.131,0-0.213-0.199-0.213-0.512v-4.305l-0.077-0.049C3.688,19.395,2,16.643,2,13.726 c0-5.44,5.831-9.868,13-9.868c7.168,0,13,4.428,13,9.868c0,5.442-5.832,9.87-13,9.87c-1.618,0-3.201-0.227-4.706-0.67l-0.105-0.031 l-2.824,2.973C7.2,26.039,7.035,26.143,6.924,26.143L6.924,26.143z" fill="url(#SVGID_1_)"/>
+<path d="M15,4.785c6.961,0,12.646,4.18,12.969,9.405 C27.979,14.035,28,13.883,28,13.726c0-5.44-5.832-9.868-13-9.868c-7.169,0-13,4.428-13,9.868c0,0.149,0.023,0.296,0.033,0.446 C2.368,8.956,8.047,4.785,15,4.785z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="8.688"/>
<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="9.771"/>
-<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="12.69"/>
-<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="13.77"/>
-<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="16.69"/>
-<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="17.77"/>
+<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="12.688"/>
+<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="13.771"/>
+<rect fill="#FFFFFF" height="1.084" width="13" x="8.5" y="16.688"/>
+<rect fill-opacity="0.2" height="0.541" stroke-opacity="0.2" width="13" x="8.5" y="17.771"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill="none" height="15" width="15" x="15"/>
<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
@@ -32,4 +35,5 @@
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_email_event.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_email_event.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814" y2="840.3">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M15,29C7.28,29,1,22.721,1,15C1,7.28,7.28,1,15,1c7.721,0,14,6.28,14,14 C29,22.721,22.721,29,15,29L15,29z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.9805" y2="840.3448">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.179-5.82-13-13-13s-13,5.821-13,13c0,0.169,0.02,0.333,0.025,0.5,0.265-6.945,5.963-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24.75,16.23c0,1.563-0.314,2.916-0.943,4.06-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.578,0-2.121-0.768-3.929-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.455,0,2.139,0.75,3.963,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.05c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.914-2.861-4.217-2.861-6.9,0-2.671,0.955-4.962,2.865-6.873,1.907-1.911,4.197-2.867,6.877-2.867,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M24.75,14.98c0,1.563-0.314,2.916-0.943,4.059-0.762,1.408-1.863,2.115-3.307,2.115-1.4,0-2.413-0.707-3.045-2.115-0.762,0.824-1.744,1.237-2.948,1.237-1.415,0-2.546-0.543-3.401-1.621-0.792-1.001-1.189-2.217-1.189-3.66,0-1.451,0.397-2.662,1.189-3.638,0.844-1.053,1.979-1.574,3.401-1.574,1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068,0.782,0,1.387-0.541,1.809-1.619,0.311-0.806,0.467-1.66,0.467-2.579,0-2.12-0.768-3.93-2.289-5.438-1.523-1.509-3.354-2.26-5.484-2.26-2.144,0-3.965,0.748-5.463,2.244-1.498,1.498-2.248,3.313-2.248,5.453,0,2.139,0.75,3.962,2.258,5.467,1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865-1.907-1.912-2.861-4.216-2.861-6.899,0-2.673,0.955-4.964,2.865-6.873,1.907-1.921,4.197-2.877,6.877-2.877,2.688,0,4.986,0.95,6.893,2.856,1.91,1.904,2.86,4.194,2.86,6.874zm-7.87-0.07c0-2.074-0.793-3.113-2.378-3.113-0.794,0-1.409,0.354-1.839,1.061-0.374,0.599-0.557,1.312-0.557,2.146,0,2.183,0.797,3.271,2.394,3.271,1.6-0.01,2.39-1.13,2.39-3.37z" fill="#FFFFFF"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.333,28,15.169,28,15c0-7.179-5.82-13-13-13C7.82,2,2,7.821,2,15c0,0.169,0.02,0.333,0.025,0.5C2.29,8.555,7.988,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.75,16.234c0,1.563-0.314,2.916-0.943,4.06 c-0.762,1.408-1.863,2.115-3.307,2.115c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237 c-1.415,0-2.546-0.543-3.401-1.621c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638 c0.844-1.053,1.979-1.574,3.401-1.574c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068 c0.782,0,1.387-0.541,1.809-1.619c0.311-0.806,0.467-1.66,0.467-2.578c0-2.121-0.768-3.929-2.289-5.438 c-1.523-1.509-3.354-2.26-5.484-2.26c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.455 c0,2.139,0.75,3.963,2.258,5.467c1.503,1.512,3.32,2.263,5.453,2.263V26c-2.688,0-4.987-0.956-6.891-2.865 c-1.907-1.914-2.861-4.217-2.861-6.9c0-2.671,0.955-4.962,2.865-6.873C10.027,7.456,12.319,6.5,15,6.5 c2.688,0,4.986,0.95,6.893,2.856C23.796,11.257,24.75,13.552,24.75,16.234z M16.885,16.157c0-2.074-0.793-3.113-2.378-3.113 c-0.794,0-1.409,0.354-1.839,1.061c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271 C16.092,19.521,16.885,18.4,16.885,16.157z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M24.75,14.985c0,1.563-0.314,2.916-0.943,4.059c-0.762,1.408-1.863,2.115-3.307,2.115 c-1.4,0-2.413-0.707-3.045-2.115c-0.762,0.824-1.744,1.237-2.948,1.237c-1.415,0-2.546-0.543-3.401-1.621 c-0.792-1.001-1.189-2.217-1.189-3.66c0-1.451,0.397-2.662,1.189-3.638c0.844-1.053,1.979-1.574,3.401-1.574 c1.06,0,1.894,0.286,2.503,0.863v-0.635h2.055v7.097c0,1.378,0.479,2.068,1.438,2.068c0.782,0,1.387-0.541,1.809-1.619 c0.311-0.806,0.467-1.66,0.467-2.579c0-2.12-0.768-3.93-2.289-5.438c-1.523-1.509-3.354-2.26-5.484-2.26 c-2.144,0-3.965,0.748-5.463,2.244c-1.498,1.498-2.248,3.313-2.248,5.453c0,2.139,0.75,3.962,2.258,5.467 c1.503,1.512,3.32,2.263,5.453,2.263v2.035c-2.688,0-4.987-0.956-6.891-2.865c-1.907-1.912-2.861-4.216-2.861-6.899 c0-2.673,0.955-4.964,2.865-6.873C10.027,6.206,12.319,5.25,15,5.25c2.688,0,4.986,0.95,6.893,2.856 C23.796,10.007,24.75,12.302,24.75,14.985z M16.885,14.907c0-2.074-0.793-3.113-2.378-3.113c-0.794,0-1.409,0.354-1.839,1.061 c-0.374,0.599-0.557,1.312-0.557,2.146c0,2.183,0.797,3.271,2.394,3.271C16.092,18.271,16.885,17.15,16.885,14.907z" fill="#FFFFFF"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill="none" height="15" width="15" x="15"/>
<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
@@ -28,4 +31,5 @@
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_event.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_event.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<rect fill-opacity="0.6" height="9.111" transform="matrix(-0.2588 0.9659 -0.9659 -0.2588 20.7431 4.1604)" width="16.22" x="0.664" y="5.483"/>
-<linearGradient gradientTransform="matrix(0.9659 0.2588 -0.2588 0.9659 -33.6532 76.8338)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.64" x2="22.67" y1="-83.01" y2="-67.3">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<rect fill-opacity="0.6" height="9.111" transform="matrix(-0.2588 0.9659 -0.9659 -0.2588 20.7431 4.1604)" width="16.223" x="0.664" y="5.483"/>
+<linearGradient gradientTransform="matrix(0.9659 0.2588 -0.2588 0.9659 -33.6532 76.8338)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="24.6367" x2="22.6711" y1="-83.0146" y2="-67.3022">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="10.37,17.83,3.5,15.99,7.182,2.249,14.05,4.09"/>
-<rect fill-opacity="0.6" height="9.11" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 45.0957 18.5742)" width="19.78" x="8.812" y="14.07"/>
-<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.4365 187.3474)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-4.907" x2="-7.335" y1="-241.8" y2="-222.4">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="0.2606" stop-color="#A86F5F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<polygon fill="url(#SVGID_1_)" points="10.369,17.828 3.5,15.987 7.182,2.249 14.05,4.09 "/>
+<rect fill-opacity="0.6" height="9.11" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 45.0957 18.5742)" width="19.778" x="8.812" y="14.072"/>
+<linearGradient gradientTransform="matrix(0.7071 0.7071 -0.7071 0.7071 -141.4365 187.3474)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-4.9067" x2="-7.3346" y1="-241.8184" y2="-222.4105">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="0.2606" style="stop-color:#A86F5F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="14.93,27.43,9.902,22.4,22.47,9.827,27.5,14.86"/>
+<polygon fill="url(#SVGID_2_)" points="14.93,27.427 9.902,22.398 22.473,9.827 27.5,14.855 "/>
<rect fill="none" height="30" width="30" x="0"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_tip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_new_tip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,43 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M23.73,4.574c-1.38-1.63-4.01-3.574-8.73-3.574-4.721,0-7.355,1.944-8.734,3.576-1.873,2.214-2.637,5.319-2.096,8.514,0.518,3.071,1.816,6.16,3.828,8.404v6.013l1.608,1.5h10.79l1.61-1.49v-6.005c2.013-2.244,3.313-5.336,3.832-8.411,0.54-3.196-0.23-6.302-2.1-8.516z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="8.998,21.5,8.998,27.07,9.999,28,20,28,21,27.07,21,21.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.071" y2="20.57">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="0.503" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#BEA069"/>
+<path d="M23.732,4.574C22.354,2.944,19.719,1,15,1c-4.721,0-7.355,1.944-8.734,3.576 C4.393,6.79,3.629,9.895,4.17,13.091c0.518,3.071,1.816,6.16,3.828,8.404v6.013L9.606,29h10.786L22,27.507v-6.005 c2.013-2.244,3.313-5.336,3.832-8.411C26.369,9.894,25.605,6.788,23.732,4.574z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.0713" y2="20.5717">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="0.503" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#BEA069"/>
</linearGradient>
-<path d="M15,2c-7.545,0-10.78,5.377-9.844,10.92,0.936,5.544,4.402,10.85,9.826,10.92h0.018,0.02c5.424-0.076,8.89-5.38,9.824-10.92,0.94-5.543-2.3-10.92-9.84-10.92z" fill="url(#SVGID_2_)"/>
-<polygon fill="url(#SVGID_1_)" points="8.998,21.5,8.998,27.07,9.999,28,20,28,21,27.07,21,21.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.998" x2="21" y1="24.29" y2="24.29">
-<stop offset="0" stop-color="#A4A8A8"/>
-<stop offset="0.1212" stop-color="#BFC2C1"/>
-<stop offset="0.2848" stop-color="#ECEFED"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="0.8182" stop-color="#DBDFDD"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M15,2C7.455,2,4.219,7.377,5.156,12.925c0.936,5.544,4.402,10.848,9.826,10.924l0,0 c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0c5.424-0.076,8.89-5.38,9.824-10.924C25.779,7.377,22.544,2,15,2z" fill="url(#SVGID_2_)"/>
+<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
+<stop offset="0" style="stop-color:#A4A8A8"/>
+<stop offset="0.1212" style="stop-color:#BFC2C1"/>
+<stop offset="0.2848" style="stop-color:#ECEFED"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="0.8182" style="stop-color:#DBDFDD"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="5.571" width="12" x="8.998" y="21.5"/>
-<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349h0.018,0.02c2.682-0.039,4.884-1.357,6.539-3.349h-13.12z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.998" x2="21" y1="24.29" y2="24.29">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.4" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#6A6C6E"/>
+<rect fill="url(#SVGID_4_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
+<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349l0,0c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0 c2.682-0.039,4.884-1.357,6.539-3.349H8.443z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#6A6C6E"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="5.571" width="12" x="8.998" y="21.5"/>
-<rect fill-opacity="0.25" height="0.929" stroke-opacity="0.25" width="12" x="8.998" y="22.63"/>
-<rect fill-opacity="0.25" height="0.927" stroke-opacity="0.25" width="12" x="8.998" y="24.49"/>
-<path d="M6.23,9.388c2.184,0.992,5.3,1.612,8.77,1.612,3.475,0,6.592-0.624,8.775-1.615-0.779-3.471-3.676-6.199-8.771-6.199-5.102,0-8.002,2.728-8.78,6.202z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<rect fill="url(#SVGID_5_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
+<rect fill-opacity="0.25" height="0.929" stroke-opacity="0.25" width="12.002" x="8.998" y="22.633"/>
+<rect fill-opacity="0.25" height="0.927" stroke-opacity="0.25" width="12.002" x="8.998" y="24.491"/>
+<path d="M6.23,9.388C8.414,10.377,11.529,11,15,11c3.475,0,6.592-0.624,8.775-1.615 c-0.779-3.471-3.676-6.199-8.771-6.199C9.908,3.186,7.008,5.914,6.23,9.388z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.164" y1="24.75" y2="24.75">
-<stop offset="0" stop-color="#969696"/>
-<stop offset="0.6242" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
+<stop offset="0" style="stop-color:#969696"/>
+<stop offset="0.6242" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
</defs>
+</g>
+<g>
<rect fill="none" height="15" width="15" x="15"/>
<rect fill-opacity="0.6" height="4.412" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(-0.2587 0.9659 -0.9659 -0.2587 29.2728 -12.3701)" width="7.941" x="15.41" y="2.841"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-70.19" x2="-73.15" y1="114.9" y2="107.7">
@@ -54,4 +57,5 @@
</linearGradient>
<polygon fill="url(#SVGID_2__)" points="22.44,13.68,19.94,11.18,26.18,4.942,28.68,7.438"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_nfc_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_nfc_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M19.5,29c-1.203,0-2.192-0.547-2.674-1.015-0.225-0.218-4.875-4.538-6.402-5.958l-0.627-0.583c-1.946-1.55-3.094-3.91-3.094-6.44,0-4.572,3.72-8.292,8.291-8.292,4.572,0,8.291,3.72,8.291,8.292,0,3.096-1.771,5.946-4.492,7.357l1.079,0.985c0.216,0.206,0.865,0.699,1.468,0.699h1.211c0.818,0,1.486-0.667,1.486-1.487v-15.11c0-0.82-0.668-1.487-1.486-1.487h-15.12c-0.82,0-1.487,0.667-1.487,1.487v11.8c0,0.593,0.331,0.995,0.527,1.183,0.208,0.199,5.013,4.608,6.822,6.269l2.51,2.3h-11.34c-1.917,0-3.477-1.56-3.477-3.48v-21.04c0-1.917,1.56-3.477,3.477-3.477h21.05c1.92,0,3.48,1.56,3.48,3.477v21.05c0,1.92-1.56,3.48-3.48,3.48h-6.016zm-4.5-16.63c-1.449,0-2.628,1.18-2.628,2.629s1.179,2.628,2.628,2.628,2.629-1.179,2.629-2.628-1.18-2.63-2.63-2.63z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M19.5,28c-0.969,0-1.717-0.479-1.977-0.731-0.281-0.272-6.77-6.299-7.045-6.556-1.769-1.41-2.771-3.49-2.771-5.71,0-4.021,3.271-7.292,7.291-7.292,4.021,0,7.291,3.271,7.291,7.292,0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239,2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211c1.371,0,2.486-1.116,2.486-2.487v-15.11c0-1.371-1.115-2.487-2.486-2.487h-15.12c-1.371,0-2.487,1.116-2.487,2.487v11.8c0,0.966,0.524,1.609,0.838,1.907,0.233,0.224,5.935,5.453,7.452,6.846h-8.773c-1.366-0.01-2.477-1.12-2.477-2.49v-21.04c0-1.367,1.111-2.477,2.477-2.477h21.05c1.37,0,2.48,1.11,2.48,2.477v21.05c0,1.37-1.11,2.48-2.48,2.48h-6.016zm-4.5-16.63c-2,0-3.628,1.628-3.628,3.629s1.63,3.63,3.63,3.63,3.629-1.627,3.629-3.628-1.63-3.63-3.63-3.63z" fill="url(#SVGID_1_)"/>
-<path d="M19.5,28c-0.969,0-1.717-0.479-1.977-0.731-0.281-0.272-6.77-6.299-7.045-6.556-1.769-1.41-2.771-3.49-2.771-5.71,0-4.021,3.271-7.292,7.291-7.292,4.021,0,7.291,3.271,7.291,7.292,0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239,2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211c1.371,0,2.486-1.116,2.486-2.487v-15.11c0-1.371-1.115-2.487-2.486-2.487h-15.12c-1.371,0-2.487,1.116-2.487,2.487v11.8c0,0.966,0.524,1.609,0.838,1.907,0.233,0.224,5.935,5.453,7.452,6.846h-8.773c-1.366-0.01-2.477-1.12-2.477-2.49v-21.04c0-1.367,1.111-2.477,2.477-2.477h21.05c1.37,0,2.48,1.11,2.48,2.477v21.05c0,1.37-1.11,2.48-2.48,2.48h-6.016zm-4.5-16.63c-2,0-3.628,1.628-3.628,3.629s1.63,3.63,3.63,3.63,3.629-1.627,3.629-3.628-1.63-3.63-3.63-3.63z" fill="url(#SVGID_1_)"/>
-<path d="M22.26,15.39c0.007-0.132,0.03-0.261,0.03-0.394,0-4.021-3.271-7.292-7.291-7.292s-7.291,3.271-7.291,7.292c0,0.159,0.018,0.315,0.027,0.474,0.272-3.77,3.424-6.762,7.264-6.762,3.82,0,6.95,2.952,7.26,6.682z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M15,19.63c2,0,3.629-1.627,3.629-3.628,0-0.171-0.027-0.335-0.051-0.5-0.246,1.763-1.749,3.128-3.578,3.128s-3.331-1.365-3.577-3.128c-0.023,0.165-0.051,0.329-0.051,0.5,0,2,1.63,3.63,3.63,3.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M4.958,19.25v1c0,0.966,0.524,1.609,0.838,1.907,0.194,0.18,4.154,3.82,6.364,5.84h1.09c-1.518-1.393-7.219-6.622-7.452-6.846-0.316-0.29-0.84-0.94-0.84-1.9z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M25.52,2h-21.04c-1.366,0-2.477,1.11-2.477,2.477v1c0-1.367,1.111-2.477,2.477-2.477h21.05c1.37,0,2.48,1.11,2.48,2.477v-1c0-1.367-1.11-2.477-2.48-2.477z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M21.35,26.04h1.211c1.371,0,2.486-1.116,2.486-2.487v-1c0,1.371-1.115,2.487-2.486,2.487h-1.211c-1.145,0-2.111-0.932-2.143-0.961l-1.47-1.343c-0.048,0.02-0.089,0.047-0.138,0.065l-0.624,0.239,2.231,2.038c0.02,0.03,0.99,0.96,2.14,0.96z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19.504,29c-1.203,0-2.192-0.547-2.674-1.015c-0.225-0.218-4.875-4.538-6.402-5.958l-0.627-0.583 C7.857,19.894,6.709,17.527,6.709,15c0-4.572,3.72-8.292,8.291-8.292c4.572,0,8.291,3.72,8.291,8.292 c0,3.096-1.771,5.946-4.492,7.357l1.079,0.985c0.216,0.206,0.865,0.699,1.468,0.699h1.211c0.818,0,1.486-0.667,1.486-1.487V7.444 c0-0.82-0.668-1.487-1.486-1.487H7.445c-0.82,0-1.487,0.667-1.487,1.487v11.803c0,0.593,0.331,0.995,0.527,1.183 c0.208,0.199,5.013,4.608,6.822,6.269L15.816,29H4.477C2.56,29,1,27.44,1,25.523V4.477C1,2.56,2.56,1,4.477,1h21.047 C27.44,1,29,2.56,29,4.477v21.047C29,27.44,27.44,29,25.523,29H19.504z M15,12.371c-1.449,0-2.628,1.18-2.628,2.629 s1.179,2.628,2.628,2.628s2.629-1.179,2.629-2.628S16.449,12.371,15,12.371L15,12.371z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M19.504,28c-0.969,0-1.717-0.479-1.977-0.731c-0.281-0.272-6.77-6.299-7.045-6.556 C8.711,19.297,7.709,17.222,7.709,15c0-4.021,3.271-7.292,7.291-7.292c4.021,0,7.291,3.271,7.291,7.292 c0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239l2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211 c1.371,0,2.486-1.116,2.486-2.487V7.444c0-1.371-1.115-2.487-2.486-2.487H7.445c-1.371,0-2.487,1.116-2.487,2.487v11.803 c0,0.966,0.524,1.609,0.838,1.907c0.233,0.224,5.935,5.453,7.452,6.846H4.477C3.111,28,2,26.89,2,25.523V4.477 C2,3.11,3.111,2,4.477,2h21.047C26.889,2,28,3.11,28,4.477v21.047C28,26.89,26.889,28,25.523,28H19.504z M15,11.371 c-2,0-3.628,1.628-3.628,3.629S13,18.628,15,18.628s3.629-1.627,3.629-3.628S17,11.371,15,11.371L15,11.371z" fill="url(#SVGID_1_)"/>
+<path d="M19.504,28c-0.969,0-1.717-0.479-1.977-0.731c-0.281-0.272-6.77-6.299-7.045-6.556 C8.711,19.297,7.709,17.222,7.709,15c0-4.021,3.271-7.292,7.291-7.292c4.021,0,7.291,3.271,7.291,7.292 c0,2.994-1.887,5.729-4.695,6.804l-0.624,0.239l2.231,2.038c0.031,0.029,0.998,0.961,2.143,0.961h1.211 c1.371,0,2.486-1.116,2.486-2.487V7.444c0-1.371-1.115-2.487-2.486-2.487H7.445c-1.371,0-2.487,1.116-2.487,2.487v11.803 c0,0.966,0.524,1.609,0.838,1.907c0.233,0.224,5.935,5.453,7.452,6.846H4.477C3.111,28,2,26.89,2,25.523V4.477 C2,3.11,3.111,2,4.477,2h21.047C26.889,2,28,3.11,28,4.477v21.047C28,26.89,26.889,28,25.523,28H19.504z M15,11.371 c-2,0-3.628,1.628-3.628,3.629S13,18.628,15,18.628s3.629-1.627,3.629-3.628S17,11.371,15,11.371L15,11.371z" fill="url(#SVGID_1_)"/>
+<path d="M22.261,15.394c0.007-0.132,0.03-0.261,0.03-0.394c0-4.021-3.271-7.292-7.291-7.292 c-4.02,0-7.291,3.271-7.291,7.292c0,0.159,0.018,0.315,0.027,0.474C8.008,11.698,11.158,8.708,15,8.708 C18.816,8.708,21.951,11.656,22.261,15.394z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,19.628c2,0,3.629-1.627,3.629-3.628c0-0.171-0.027-0.335-0.051-0.5 c-0.246,1.763-1.749,3.128-3.578,3.128s-3.331-1.365-3.577-3.128c-0.023,0.165-0.051,0.329-0.051,0.5 C11.372,18.001,13,19.628,15,19.628z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M4.958,19.247v1c0,0.966,0.524,1.609,0.838,1.907C5.99,22.34,9.95,25.975,12.158,28h1.09 c-1.518-1.393-7.219-6.622-7.452-6.846C5.482,20.856,4.958,20.213,4.958,19.247z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.523,2H4.477C3.111,2,2,3.11,2,4.477v1C2,4.11,3.111,3,4.477,3h21.047 C26.889,3,28,4.11,28,5.477v-1C28,3.11,26.889,2,25.523,2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21.346,26.042h1.211c1.371,0,2.486-1.116,2.486-2.487v-1c0,1.371-1.115,2.487-2.486,2.487 h-1.211c-1.145,0-2.111-0.932-2.143-0.961l-1.47-1.343c-0.048,0.02-0.089,0.047-0.138,0.065l-0.624,0.239l2.231,2.038 C19.234,25.11,20.201,26.042,21.346,26.042z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -27,4 +30,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_no_signal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_no_signal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="4" y2="25.94">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="3.9995" y2="25.9389">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="2,16,2,20,8,26,8,20.34,3.656,16" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="2,16 2,20 8,26 8,20.344 3.656,16 " stroke-opacity="0.3"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="4" y2="25.94">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="4" y2="25.939">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,12.39,18,10,15.61,10" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,17.7,18,23.7,18,18.05,12,12.05" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,23.36,12,26,14.64,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,12.39 18,10 15.609,10 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,17.703 18,23.703 18,18.047 12,12.047 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,23.36 12,26 14.639,26 " stroke-opacity="0.3"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.94">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.9388">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64,28,4,22.36,4" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.95,28,20.95,28,15.3,22,9.297" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61,22,26,27.39,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64 28,4 22.359,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61 22,26 27.389,26 " stroke-opacity="0.3"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_note.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_note.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="28,28,28,2,2,2,2,21.41,8.586,28"/>
-<polygon fill="url(#SVGID_1_)" points="27,3,27,27,9,27,3,21,3,3"/>
-<polygon fill="#DCD6AD" points="3,21,9,21,9,27"/>
+<g>
+<polygon fill-opacity="0.6" points="28,28 28,2 2,2 2,21.414 8.586,28 "/>
+<polygon fill="url(#SVGID_1_)" points="27,3 27,27 9,27 3,21 3,3 "/>
+<polygon fill="#DCD6AD" points="3,21 9,21 9,27 "/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="20" x="5" y="8.5"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="20" x="5" y="12.5"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="14" x="5" y="16.5"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 854 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="839" x2="839" y1="3" y2="27">
-<stop offset="0" stop-color="#C3B474"/>
-<stop offset="1" stop-color="#AC8A4A"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 854 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="839" x2="839" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#C3B474"/>
+<stop offset="1" style="stop-color:#AC8A4A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.995,0-14.5-6.5-14.5-14.5s6.505-14.5,14.5-14.5,14.5,6.505,14.5,14.5-6.5,14.5-14.5,14.5z" fill-opacity="0.6"/>
-<radialGradient cx="15" cy="11.07" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.37">
-<stop offset="0" stop-color="#DCDCDC"/>
-<stop offset="1" stop-color="#787878"/>
+<path d="M15,29.5C7.005,29.5,0.5,22.995,0.5,15S7.005,0.5,15,0.5S29.5,7.005,29.5,15S22.995,29.5,15,29.5 L15,29.5z" fill-opacity="0.6"/>
+<radialGradient cx="15" cy="11.0723" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="16.3651">
+<stop offset="0" style="stop-color:#DCDCDC"/>
+<stop offset="1" style="stop-color:#787878"/>
</radialGradient>
-<path d="M15,28.5c-7.444,0-13.5-6.06-13.5-13.5,0-7.443,6.056-13.5,13.5-13.5,7.443,0,13.5,6.057,13.5,13.5,0,7.44-6.06,13.5-13.5,13.5z" fill="url(#SVGID_1_)"/>
-<path d="M15,1.5c-7.444,0-13.5,6.057-13.5,13.5,0,7.445,6.056,13.5,13.5,13.5,7.443,0,13.5-6.055,13.5-13.5,0-7.443-6.06-13.5-13.5-13.5zm0,24.54c-6.767,0-12.27-4.27-12.27-11.04,0-6.767,5.505-12.27,12.27-12.27s12.27,5.505,12.27,12.27c0,6.77-5.5,11.04-12.27,11.04z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,19.91c-5.414,0-9.818-3.579-9.818-7.978s4.404-7.975,9.818-7.975c5.414,0,9.818,3.578,9.818,7.977s-4.41,7.98-9.82,7.98z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,28.5C7.556,28.5,1.5,22.445,1.5,15C1.5,7.557,7.556,1.5,15,1.5c7.443,0,13.5,6.057,13.5,13.5 C28.5,22.445,22.443,28.5,15,28.5L15,28.5z" fill="url(#SVGID_1_)"/>
+<path d="M15,1.5C7.556,1.5,1.5,7.557,1.5,15c0,7.445,6.056,13.5,13.5,13.5 c7.443,0,13.5-6.055,13.5-13.5C28.5,7.557,22.443,1.5,15,1.5z M15,26.045C8.233,26.045,2.728,21.768,2.728,15 C2.728,8.233,8.233,2.728,15,2.728S27.273,8.233,27.273,15C27.273,21.768,21.767,26.045,15,26.045z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,19.909c-5.414,0-9.818-3.579-9.818-7.978S9.586,3.955,15,3.955 c5.414,0,9.818,3.578,9.818,7.977S20.414,19.909,15,19.909L15,19.909z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="28.5" y2="1.5">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#B4B4B4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="28.5" y2="1.5005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B4B4B4"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_online.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_online.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29.5c-7.995,0-14.5-6.5-14.5-14.5s6.505-14.5,14.5-14.5,14.5,6.505,14.5,14.5-6.5,14.5-14.5,14.5z" fill-opacity="0.6"/>
-<radialGradient cx="15" cy="11.48" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="19.58">
-<stop offset="0" stop-color="#B7CC97"/>
-<stop offset="0.4" stop-color="#638F57"/>
-<stop offset="1" stop-color="#1C3837"/>
+<path d="M15,29.5C7.005,29.5,0.5,22.995,0.5,15S7.005,0.5,15,0.5S29.5,7.005,29.5,15S22.995,29.5,15,29.5 L15,29.5z" fill-opacity="0.6"/>
+<radialGradient cx="15" cy="11.4824" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="19.5752">
+<stop offset="0" style="stop-color:#B7CC97"/>
+<stop offset="0.4" style="stop-color:#638F57"/>
+<stop offset="1" style="stop-color:#1C3837"/>
</radialGradient>
-<path d="M15,28.5c-7.444,0-13.5-6.06-13.5-13.5,0-7.443,6.056-13.5,13.5-13.5,7.443,0,13.5,6.057,13.5,13.5,0,7.44-6.06,13.5-13.5,13.5z" fill="url(#SVGID_1_)"/>
-<path d="M15,1.5c-7.444,0-13.5,6.057-13.5,13.5,0,7.445,6.056,13.5,13.5,13.5,7.443,0,13.5-6.055,13.5-13.5,0-7.443-6.06-13.5-13.5-13.5zm0,24.54c-6.767,0-12.27-4.27-12.27-11.04,0-6.767,5.505-12.27,12.27-12.27s12.27,5.505,12.27,12.27c0,6.77-5.5,11.04-12.27,11.04z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M15,19.91c-5.414,0-9.818-3.579-9.818-7.978s4.404-7.975,9.818-7.975c5.414,0,9.818,3.578,9.818,7.977s-4.41,7.98-9.82,7.98z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M15,28.5C7.556,28.5,1.5,22.445,1.5,15C1.5,7.557,7.556,1.5,15,1.5c7.443,0,13.5,6.057,13.5,13.5 C28.5,22.445,22.443,28.5,15,28.5L15,28.5z" fill="url(#SVGID_1_)"/>
+<path d="M15,1.5C7.556,1.5,1.5,7.557,1.5,15c0,7.445,6.056,13.5,13.5,13.5 c7.443,0,13.5-6.055,13.5-13.5C28.5,7.557,22.443,1.5,15,1.5z M15,26.045C8.233,26.045,2.728,21.768,2.728,15 C2.728,8.233,8.233,2.728,15,2.728S27.273,8.233,27.273,15C27.273,21.768,21.767,26.045,15,26.045z" fill="url(#SVGID_2_)" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,19.909c-5.414,0-9.818-3.579-9.818-7.978S9.586,3.955,15,3.955 c5.414,0,9.818,3.578,9.818,7.977S20.414,19.909,15,19.909L15,19.909z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="28.5" y2="1.5">
-<stop offset="0" stop-color="#DDE3D4"/>
-<stop offset="1" stop-color="#638F57"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="28.5" y2="1.5005">
+<stop offset="0" style="stop-color:#DDE3D4"/>
+<stop offset="1" style="stop-color:#638F57"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_operator.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_operator.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,39 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="3,29,3,1,19.41,1,27,8.586,27,29"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#B1B1B1"/>
+<polygon fill-opacity="0.6" points="3,29 3,1 19.414,1 27,8.586 27,29 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="26,9,26,28,4,28,4,2,19,2"/>
-<polygon fill="#FFFFFF" points="19,2,4,2,4,3,18.59,3,26,10.48,26,9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="25" y2="12">
-<stop offset="0" stop-color="#666666"/>
-<stop offset="1" stop-color="#282828"/>
+<polygon fill="url(#SVGID_1_)" points="26,9 26,28 4,28 4,2 19,2 "/>
+<polygon fill="#FFFFFF" points="19,2 4,2 4,3 18.586,3 26,10.484 26,9 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="25" y2="12.0005">
+<stop offset="0" style="stop-color:#666666"/>
+<stop offset="1" style="stop-color:#282828"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="13" width="16" x="7" y="12"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="13" y2="23.97">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="13" y2="23.9727">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="18,13,18,16,17,16,17,13,13,13,13,16,12,16,12,13,8,13,8,18,22,18,22,13"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10" x2="10" y1="13" y2="23.97">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="1" stop-color="#B3964D"/>
+<polygon fill="url(#SVGID_3_)" points="18,13 18,16 17,16 17,13 13,13 13,16 12,16 12,13 8,13 8,18 22,18 22,13 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10" x2="10" y1="13.0005" y2="23.9721">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="5" width="4" x="8" y="19"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="13" y2="23.97">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="13.0005" y2="23.9721">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="5" width="4" x="13" y="19"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="13" y2="23.97">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20" x2="20" y1="13.0005" y2="23.9721">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="5" width="4" x="18" y="19"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="14" x="8" y="13"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_outbox.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_outbox.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,28 +1,30 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="11,19,11,12,7,12,15,1.333,23,12,19,12,19,19" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.76" y2="18.09">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<polygon fill-opacity="0.6" points="11,19 11,12 7,12 15,1.333 23,12 19,12 19,19 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2.7603" y2="18.0948">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="15,3,9,11,12,11,12,18,18,18,18,11,21,11"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2.76" y2="18.09">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="0.7576" stop-color="#367E3C"/>
-<stop offset="1" stop-color="#97AF87"/>
+<polygon fill="url(#SVGID_1_)" points="15,3 9,11 12,11 12,18 18,18 18,11 21,11 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.7603" y2="18.0948">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="0.7576" style="stop-color:#367E3C"/>
+<stop offset="1" style="stop-color:#97AF87"/>
</linearGradient>
-<path d="M15,3l-6,8h3v7h6v-7h3l-6-8zm2,7v7h-4v-7h-2l4-5.333,4,5.333h-2z" fill="url(#SVGID_2_)"/>
-<polygon fill-opacity="0.6" points="1,28,1,19,5,19,5,22,25,22,25,19,29,19,29,28" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="19.89" y2="27.04">
-<stop offset="0" stop-color="#83CABF"/>
-<stop offset="1" stop-color="#3E678C"/>
+<path d="M15,3l-6,8h3v7h6v-7h3L15,3z M17,10v7h-4v-7h-2l4-5.333L19,10H17z" fill="url(#SVGID_2_)"/>
+<polygon fill-opacity="0.6" points="1,28 1,19 5,19 5,22 25,22 25,19 29,19 29,28 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="19.8877" y2="27.0436">
+<stop offset="0" style="stop-color:#83CABF"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="26,20,26,23,4,23,4,20,2,20,2,23,2,26,2,27,28,27,28,26,28,23,28,20"/>
+<polygon fill="url(#SVGID_3_)" points="26,20 26,23 4,23 4,20 2,20 2,23 2,26 2,27 28,27 28,26 28,23 28,20 "/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="26"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="2" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="26" y="20"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="22" x="4" y="23"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pager.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pager.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M4,25c-1.654,0-3-1.346-3-3v-14c0-1.654,1.346-3,3-3h22c1.654,0,3,1.346,3,3v14c0,1.654-1.346,3-3,3h-22z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="6.2" y2="23.82">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.5" stop-color="#636363"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<path d="M4,25c-1.654,0-3-1.346-3-3V8c0-1.654,1.346-3,3-3h22c1.654,0,3,1.346,3,3v14c0,1.654-1.346,3-3,3H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="6.2002" y2="23.8229">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<path d="M28,22c0,1.1-0.9,2-2,2h-22c-1.1,0-2-0.9-2-2v-14c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v14z" fill="url(#SVGID_1_)"/>
-<path d="M26,6h-22c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="8.111" y2="17.9">
-<stop offset="0" stop-color="#4F4F4F"/>
-<stop offset="1" stop-color="#9E9E9E"/>
+<path d="M28,22c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V8c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V22z" fill="url(#SVGID_1_)"/>
+<path d="M26,6H4C2.9,6,2,6.9,2,8v1c0-1.1,0.9-2,2-2h22c1.1,0,2,0.9,2,2V8C28,6.9,27.1,6,26,6z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="8.1113" y2="17.9019">
+<stop offset="0" style="stop-color:#4F4F4F"/>
+<stop offset="1" style="stop-color:#9E9E9E"/>
</linearGradient>
-<path d="M4,18c-0.55,0-1-0.45-1-1v-8c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v8c0,0.55-0.45,1-1,1h-22z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="9.089" y2="16.92">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#506992"/>
+<path d="M4,18c-0.55,0-1-0.45-1-1V9c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v8c0,0.55-0.45,1-1,1H4z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="9.0889" y2="16.9214">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#506992"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="8" width="22" x="4" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="24.5" x2="24.5" y1="20.02" y2="21.98">
-<stop offset="0" stop-color="#859F5C"/>
-<stop offset="0.3939" stop-color="#859F5C"/>
-<stop offset="1" stop-color="#2A6138"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="24.5" x2="24.5" y1="20.0225" y2="21.9805">
+<stop offset="0" style="stop-color:#859F5C"/>
+<stop offset="0.3939" style="stop-color:#859F5C"/>
+<stop offset="1" style="stop-color:#2A6138"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="2" width="3" x="23" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.5" x2="19.5" y1="20.02" y2="21.98">
-<stop offset="0" stop-color="#C0C0C0"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="19.5" x2="19.5" y1="20.0225" y2="21.9805">
+<stop offset="0" style="stop-color:#C0C0C0"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="2" width="3" x="18" y="20"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.5" x2="12.5" y1="20.02" y2="21.98">
-<stop offset="0" stop-color="#9B6643"/>
-<stop offset="1" stop-color="#78333F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="12.5" x2="12.5" y1="20.0225" y2="21.9805">
+<stop offset="0" style="stop-color:#9B6643"/>
+<stop offset="1" style="stop-color:#78333F"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="2" width="3" x="11" y="20"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="26,12,4,13,4,9,26,9" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="26,12 4,13 4,9 26,9 " stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pair.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pair.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,20 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.37" x2="10.37" y1="1" y2="24.49">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.2143" stop-color="#72B9C3"/>
-<stop offset="0.5879" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10.3721" x2="10.3721" y1="1" y2="24.4868">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.2143" style="stop-color:#72B9C3"/>
+<stop offset="0.5879" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M16.39,8.041l-6.876-7.041v9.274l-3.78-3.863-1.379,1.408,4.75,4.871-4.75,4.869,1.377,1.406,3.781-3.865v9.274l6.875-7.037-4.541-4.647,4.54-4.639zm-2.75,0.015l-2.195,2.243-0.004-4.49,2.2,2.246zm0,9.264l-2.199,2.241,0.004-4.49,2.2,2.25z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19.63" x2="19.63" y1="5.629" y2="29.12">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="0.2143" stop-color="#72B9C3"/>
-<stop offset="0.5879" stop-color="#546F9F"/>
-<stop offset="1" stop-color="#5A82A7"/>
+<path d="M16.389,8.041L9.514,1v9.274L5.734,6.407L4.355,7.815l4.75,4.871l-4.75,4.869l1.377,1.406 l3.781-3.865v9.274l6.875-7.037l-4.541-4.647L16.389,8.041z M13.645,8.056l-2.195,2.243l-0.004-4.49L13.645,8.056z M13.645,17.321 l-2.199,2.241l0.004-4.49L13.645,17.321z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="19.6279" x2="19.6279" y1="5.6289" y2="29.1157">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="0.2143" style="stop-color:#72B9C3"/>
+<stop offset="0.5879" style="stop-color:#546F9F"/>
+<stop offset="1" style="stop-color:#5A82A7"/>
</linearGradient>
-<path d="M25.64,12.67l-6.873-7.041v9.274l-3.779-3.867-1.381,1.408,4.752,4.871-4.752,4.869,1.377,1.406,3.783-3.865v9.28l6.873-7.039-4.539-4.646,4.54-4.64zm-2.74,0.01l-2.195,2.245-0.002-4.492,2.2,2.25zm0,9.27l-2.197,2.241,0.002-4.49,2.2,2.25z" fill="url(#SVGID_2_)"/>
+<path d="M25.645,12.67l-6.873-7.041v9.274l-3.779-3.867l-1.381,1.408l4.752,4.871l-4.752,4.869l1.377,1.406 l3.783-3.865V29l6.873-7.039l-4.539-4.646L25.645,12.67z M22.9,12.683l-2.195,2.245l-0.002-4.492L22.9,12.683z M22.9,21.95 l-2.197,2.241l0.002-4.49L22.9,21.95z" fill="url(#SVGID_2_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pd_wcdma.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pd_wcdma.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,80 +1,33 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-107.9" x2="-104.9" y1="219.2" y2="219.2">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
-</linearGradient>
-<path d="M15.6,5.888v17.73c0,0.323,0.263,0.584,0.59,0.584h1.772c0.326,0,0.591-0.261,0.591-0.584v-17.73h-2.954z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-106.4" x2="-106.4" y1="230.5" y2="218.9">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<g>
+<path d="M15.651,25.153c-0.706,0-1.455-0.579-1.455-1.65v-6.666 L5.636,7.857C5.3,7.578,5.076,7.08,4.972,6.372L4.963,6.305c-0.012-0.09-0.022-0.184-0.028-0.276 C4.926,5.902,4.922,5.812,4.923,5.725l0.003-0.084C4.93,5.54,4.934,5.479,4.939,5.424C4.952,5.306,4.975,5.191,5.004,5.1 c0.213-0.698,0.886-1.406,1.756-1.406h19.434c0.869,0,1.543,0.707,1.758,1.407c0.027,0.087,0.051,0.203,0.064,0.333 C28.022,5.486,28.03,5.73,28.03,5.73c0,0.087-0.004,0.179-0.01,0.271l-0.01,0.168l-0.006,0.01c-0.053,0.521-0.213,1.281-0.688,1.676 l-8.582,9.035v6.612c0,0.925-0.629,1.65-1.434,1.65H15.651z M18.735,11.578l3.902-4.162h-3.902V11.578z M14.196,11.502V7.416h-3.868 L14.196,11.502z" fill="#020202" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-106.9878" x2="-106.9878" y1="200.0684" y2="187.9122">
+<stop offset="0" style="stop-color:#F5F6F6"/>
+<stop offset="1" style="stop-color:#A6A6A5"/>
</linearGradient>
-<path d="M28.86,4.552c-0.134-0.435-0.536-0.731-0.99-0.731h-21.57c-0.455,0-0.856,0.297-0.99,0.731-0.135,0.433,0.032,0.905,0.408,1.158l9.874,9.531v-3.866l-5.92-5.482h14.81l-5.938,5.581v3.829l9.896-9.588c0.37-0.256,0.54-0.727,0.41-1.16z" fill="url(#SVGID_2_)"/>
-<path d="M5.313,4.889c0.133-0.435,0.534-0.773,0.99-0.773h21.56c0.454,0,0.856,0.339,0.99,0.773,0.013,0.045,0.021,0.091,0.029,0.137,0.026-0.156,0.019-0.318-0.029-0.475-0.134-0.435-0.536-0.731-0.99-0.731h-21.56c-0.455,0-0.856,0.297-0.99,0.731-0.049,0.157-0.057,0.319-0.031,0.474,0.008-0.045,0.017-0.091,0.031-0.136z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="18.85,11.78,24.97,5.885,24.5,5.885,18.85,11.24" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="9.199,5.889,15.3,11.69,15.3,11.15,9.677,5.889" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-106.4" x2="-106.4" y1="230.2" y2="219.4">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
-</linearGradient>
-<path d="M18.84,11.79l6.56-6.199h-16.65l6.55,6.109v2.993l-9.408-9.221c-0.275-0.187-0.392-0.519-0.297-0.831,0.095-0.313,0.38-0.522,0.708-0.522h21.56c0.327,0,0.611,0.21,0.707,0.522,0.095,0.313-0.023,0.645-0.293,0.827l-9.435,9.33v-3.008z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-99.74" x2="-99.74" y1="229.5" y2="220">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M28.54,4.56c-0.054,0.125-0.143,0.234-0.261,0.315l-9.436,9.329v0.591l9.436-9.33c0.27-0.182,0.388-0.515,0.293-0.827-0.01-0.023-0.02-0.048-0.03-0.073z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-113" x2="-113" y1="229.5" y2="220">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M27.163,5.345c-0.131-0.424-0.523-0.826-0.969-0.826H16.61h-9.85c-0.446,0-0.839,0.402-0.968,0.826 C5.661,5.765,5.822,6.996,6.19,7.242l8.831,9.264v-2.931l-6.61-6.984h16.132l-6.633,7.074v2.896l8.85-9.318 C27.13,6.996,27.292,5.765,27.163,5.345z" fill="url(#SVGID_1_)"/>
+<polygon fill="#020202" points="14.196,15.641 15.021,16.506 15.021,13.574 14.196,12.702 "/>
+<polygon fill="#020202" points="18.735,12.785 17.909,13.665 17.909,16.561 18.735,15.692 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-108.4434" x2="-105.5557" y1="189.0283" y2="189.0283">
+<stop offset="0" style="stop-color:#F5F6F6"/>
+<stop offset="1" style="stop-color:#A6A6A5"/>
</linearGradient>
-<path d="M5.627,4.559c-0.011,0.026-0.023,0.051-0.032,0.079-0.095,0.312,0.022,0.644,0.297,0.831l9.408,9.226v-0.592l-9.408-9.233c-0.122-0.082-0.21-0.193-0.265-0.318z" fill="url(#SVGID_5_)"/>
-<path d="M5.595,4.933c0.095-0.313,0.38-0.522,0.708-0.522h21.56c0.327,0,0.611,0.209,0.707,0.522,0.007,0.024,0.01,0.049,0.015,0.073,0.025-0.119,0.023-0.245-0.015-0.368-0.096-0.313-0.38-0.522-0.707-0.522h-21.57c-0.328,0-0.613,0.21-0.708,0.522-0.038,0.122-0.041,0.248-0.016,0.367,0.005-0.023,0.009-0.047,0.016-0.072z" fill="#FFFFFF"/>
-<path d="M17.96,23.91h-1.772c-0.326,0-0.59-0.261-0.59-0.584v0.295c0,0.323,0.263,0.584,0.59,0.584h1.772c0.326,0,0.591-0.261,0.591-0.584v-0.295c0,0.33-0.27,0.59-0.59,0.59z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M17.96,23.61h-1.772c-0.326,0-0.59-0.262-0.59-0.584v0.294c0,0.324,0.263,0.587,0.59,0.587h1.772c0.326,0,0.591-0.263,0.591-0.587v-0.294c0,0.31-0.27,0.58-0.59,0.58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.296" stroke-opacity="0.3" width="2.953" x="15.6" y="5.888"/>
-<rect fill-opacity="0.2" height="0.294" stroke-opacity="0.2" width="2.953" x="15.6" y="6.184"/>
-<rect fill-opacity="0.1" height="1.182" stroke-opacity="0.1" width="2.953" x="15.6" y="5.888"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-119.5" x2="-119.5" y1="217.1" y2="208.1">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M5.667,21.39c0.566-0.438,0.892-1.049,0.892-1.769,0-0.61-0.238-1.171-0.67-1.58-0.47-0.448-1.152-0.683-1.964-0.683-0.987,0-1.842,0.363-2.275,0.674l-0.265,0.187,0.593,1.582,0.451-0.32c0.277-0.198,0.787-0.43,1.298-0.43,0.424,0,0.931,0.129,0.931,0.74,0,0.725-0.941,0.883-1.301,0.883h-1.008v1.63h1.008c0.257,0,1.559,0.055,1.569,1.125,0.004,0.131-0.02,0.459-0.271,0.716-0.229,0.229-0.584,0.347-1.05,0.347-0.634,0-1.237-0.26-1.491-0.414l-0.444-0.27-0.569,1.598,0.277,0.182c0.414,0.274,1.252,0.593,2.24,0.593,2.223,0,3.235-1.421,3.235-2.739,0.004-0.88-0.453-1.63-1.186-2.05z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-119.5" x2="-119.5" y1="216.7" y2="208.3">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M15.021,6.591v16.912c0,0.541,0.309,0.825,0.629,0.825h1.651c0.318,0,0.607-0.335,0.607-0.825V6.591 H15.021z" fill="url(#SVGID_2_)"/>
+<path d="M5.793,6.17c0.129-0.424,0.521-0.825,0.968-0.825h9.85h9.584 c0.445,0,0.838,0.401,0.969,0.825c0.004,0.011,0.004,0.026,0.008,0.037c0.047-0.342,0.049-0.68-0.008-0.862 c-0.131-0.424-0.523-0.826-0.969-0.826H16.61h-9.85c-0.446,0-0.839,0.402-0.968,0.826c-0.058,0.185-0.057,0.525-0.01,0.87 C5.787,6.201,5.788,6.182,5.793,6.17z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M5.575,21.8c0.51-0.396,0.802-0.943,0.802-1.592 c0-0.55-0.215-1.054-0.603-1.423c-0.423-0.402-1.038-0.614-1.768-0.614c-0.888,0-1.659,0.326-2.048,0.607L1.72,18.946l0.533,1.423 l0.406-0.288c0.25-0.179,0.708-0.387,1.168-0.387c0.382,0,0.838,0.116,0.838,0.666c0,0.651-0.847,0.794-1.172,0.794H2.588v1.468 h0.906c0.232,0,1.404,0.049,1.413,1.014c0.003,0.117-0.018,0.413-0.244,0.645c-0.207,0.206-0.525,0.313-0.946,0.313 c-0.57,0-1.113-0.235-1.341-0.375l-0.4-0.239l-0.513,1.438l0.251,0.165c0.373,0.246,1.127,0.533,2.016,0.533 c2.001,0,2.913-1.278,2.913-2.465C6.646,22.857,6.234,22.184,5.575,21.8z" fill="#020202" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-119.3687" x2="-119.3687" y1="186.0469" y2="178.8539">
+<stop offset="0" style="stop-color:#8D9F71"/>
+<stop offset="1" style="stop-color:#557A68"/>
</linearGradient>
-<path d="M3.617,26c-0.95,0-1.745-0.304-2.138-0.562l-0.158-0.11,0.446-1.25,0.253,0.15c0.271,0.164,0.91,0.441,1.585,0.441,0.515,0,0.912-0.134,1.178-0.4,0.316-0.323,0.33-0.734,0.326-0.853-0.009-0.961-0.95-1.303-1.752-1.303h-0.825v-1.263h0.824c0.596,0,1.485-0.284,1.485-1.067,0-0.587-0.406-0.923-1.115-0.923-0.557,0-1.104,0.25-1.405,0.465l-0.257,0.17-0.46-1.226,0.152-0.106c0.41-0.296,1.225-0.64,2.168-0.64,0.768,0,1.403,0.219,1.838,0.632,0.395,0.375,0.612,0.89,0.612,1.448,0,0.646-0.284,1.207-0.819,1.622l-0.216,0.167,0.234,0.137c0.699,0.408,1.099,1.099,1.094,1.896,0.002,1.23-0.953,2.56-3.05,2.56z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-119.4" x2="-119.4" y1="216.7" y2="208.5">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M3.617,25.81c-0.91,0-1.666-0.288-2.037-0.532l-0.037-0.026,0.322-0.903,0.06,0.035c0.287,0.175,0.965,0.469,1.68,0.469,0.566,0,1.007-0.153,1.309-0.454,0.367-0.377,0.383-0.852,0.379-0.988-0.01-1.093-1.049-1.481-1.936-1.481h-0.64v-0.897h0.64c0.67,0,1.668-0.332,1.668-1.25,0-0.692-0.485-1.105-1.298-1.105-0.6,0-1.188,0.269-1.511,0.498l-0.061,0.044-0.326-0.87,0.034-0.024c0.389-0.281,1.164-0.607,2.063-0.607,0.719,0,1.312,0.201,1.712,0.582,0.357,0.34,0.554,0.807,0.554,1.314,0,0.588-0.26,1.098-0.749,1.478l-0.43,0.333,0.47,0.273c0.641,0.374,1.006,1.007,1.004,1.738,0,1.15-0.898,2.38-2.87,2.38z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-112.6" x2="-112.6" y1="218.4" y2="208.8">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M3.729,25.689c-0.822,0-1.472-0.271-1.751-0.444l0.226-0.631c0.339,0.193,0.92,0.406,1.514,0.406 c0.536,0,0.956-0.147,1.247-0.438c0.35-0.359,0.375-0.791,0.369-0.961c-0.009-1.051-0.997-1.427-1.84-1.427H3.015v-0.613h0.479 c0.643,0,1.599-0.326,1.599-1.222c0-0.528-0.333-1.093-1.266-1.093c-0.535,0-1.048,0.218-1.369,0.434l-0.223-0.596 c0.375-0.257,1.054-0.507,1.771-0.507c0.622,0,1.132,0.172,1.474,0.496c0.303,0.288,0.47,0.684,0.47,1.113 c0,0.497-0.221,0.932-0.636,1.253L4.813,21.85l0.547,0.319c0.546,0.318,0.858,0.857,0.855,1.479 C6.215,24.665,5.446,25.689,3.729,25.689L3.729,25.689z" fill="url(#SVGID_3_)"/>
+<path d="M10.504,20.48v1.51h1.453v1.482 c-0.191,0.051-0.455,0.097-0.86,0.097c-1.502,0-2.396-0.944-2.396-2.526c0-0.775,0.232-1.416,0.677-1.853 c0.437-0.435,1.073-0.663,1.836-0.663c0.582,0,1.035,0.088,1.432,0.274l0.396,0.188l0.462-1.493l-0.295-0.144 c-0.352-0.169-1.079-0.369-1.974-0.369c-2.562,0-4.282,1.649-4.282,4.101c0,1.192,0.41,2.271,1.121,2.958 c0.746,0.712,1.712,1.059,2.959,1.059c1.174,0,2.102-0.321,2.36-0.42l0.246-0.095V20.48H10.504L10.504,20.48z" fill="#020202" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-113.1685" x2="-113.1685" y1="187.2207" y2="179.5252">
+<stop offset="0" style="stop-color:#8D9F71"/>
+<stop offset="1" style="stop-color:#557A68"/>
</linearGradient>
-<path d="M11.14,19.92v1.678h1.613v1.646c-0.212,0.057-0.504,0.107-0.955,0.107-1.669,0-2.662-1.049-2.662-2.806,0-0.862,0.259-1.575,0.753-2.058,0.486-0.483,1.191-0.736,2.04-0.736,0.645,0,1.148,0.098,1.589,0.305l0.441,0.208,0.512-1.657-0.326-0.16c-0.391-0.188-1.199-0.409-2.192-0.409-2.847,0-4.757,1.831-4.757,4.554,0,1.325,0.455,2.523,1.245,3.286,0.828,0.791,1.903,1.175,3.287,1.175,1.305,0,2.334-0.357,2.622-0.467l0.271-0.104v-4.561h-3.467z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-112.6" x2="-112.6" y1="218.1" y2="209.4">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
-</linearGradient>
-<path d="M11.73,24.87c-1.334,0-2.367-0.368-3.16-1.125-0.755-0.729-1.188-1.878-1.188-3.152,0-2.615,1.838-4.371,4.574-4.371,0.963,0,1.74,0.211,2.111,0.393l0.187,0.09-0.404,1.305-0.26-0.11c-0.467-0.219-0.998-0.322-1.668-0.322-0.901,0-1.651,0.272-2.169,0.788-0.526,0.518-0.807,1.274-0.807,2.189,0,1.872,1.064,2.988,2.846,2.988,0.393,0,0.72-0.036,1.001-0.112l0.136-0.036v-1.97h-1.614v-1.312h3.116v4.251l-0.155,0.059c-0.38,0.13-1.35,0.45-2.57,0.45z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-112.6" x2="-112.6" y1="218" y2="209.2">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M11.73,24.68c-1.284,0-2.275-0.352-3.033-1.074-0.719-0.694-1.132-1.795-1.132-3.021,0-2.504,1.765-4.187,4.391-4.187,0.931,0,1.677,0.2,2.032,0.373l0.045,0.021-0.295,0.951-0.059-0.027c-0.492-0.23-1.049-0.34-1.746-0.34-0.95,0-1.745,0.292-2.299,0.843-0.563,0.551-0.86,1.354-0.86,2.318,0,1.986,1.133,3.172,3.029,3.172,0.41,0,0.752-0.039,1.049-0.119l0.272-0.073v-2.28h-1.61v-0.945h2.747v3.943l-0.036,0.013c-0.35,0.15-1.3,0.45-2.49,0.45z" fill="url(#SVGID_11_)"/>
-<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+<path d="M11.032,24.674c-1.13,0-2.001-0.308-2.664-0.939c-0.628-0.605-0.988-1.572-0.988-2.649 c0-2.231,1.513-3.674,3.855-3.674c0.838,0,1.477,0.188,1.751,0.312l-0.208,0.67c-0.446-0.199-0.945-0.292-1.565-0.292 c-0.881,0-1.62,0.271-2.138,0.786c-0.525,0.514-0.803,1.261-0.803,2.156c0,1.821,1.082,2.952,2.824,2.952 c0.379,0,0.688-0.035,0.97-0.109l0.317-0.085v-2.237h-1.453v-0.656h2.281v3.386C12.935,24.395,12.083,24.674,11.032,24.674 L11.032,24.674z" fill="url(#SVGID_4_)"/>
+<rect fill="none" height="30" width="30.001"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pd_wcdma_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_pd_wcdma_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,82 +1,36 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-107.9" x2="-104.9" y1="219.2" y2="219.2">
-<stop offset="0" stop-color="#6A6C6E"/>
-<stop offset="0.0788" stop-color="#ABB0AF"/>
-<stop offset="0.3152" stop-color="#FFFFFF"/>
-<stop offset="0.7333" stop-color="#9A9C9C"/>
-<stop offset="1" stop-color="#C8CAC9"/>
-</linearGradient>
-<path d="M15.6,5.888v17.73c0,0.323,0.263,0.584,0.59,0.584h1.772c0.326,0,0.591-0.261,0.591-0.584v-17.73h-2.954z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-106.4" x2="-106.4" y1="230.5" y2="218.9">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="1" stop-color="#222021"/>
+<g>
+<path d="M15.651,25.153c-0.706,0-1.455-0.579-1.455-1.65v-6.666 L5.636,7.857C5.3,7.578,5.076,7.08,4.972,6.372L4.963,6.305c-0.012-0.09-0.022-0.184-0.028-0.276 C4.926,5.902,4.922,5.812,4.923,5.725l0.003-0.084C4.93,5.54,4.934,5.479,4.939,5.424C4.952,5.306,4.975,5.191,5.004,5.1 c0.213-0.698,0.886-1.406,1.756-1.406h19.434c0.869,0,1.543,0.707,1.758,1.407c0.027,0.087,0.051,0.203,0.064,0.333 C28.022,5.486,28.03,5.73,28.03,5.73c0,0.087-0.004,0.179-0.01,0.271l-0.01,0.168l-0.006,0.01c-0.053,0.521-0.213,1.281-0.688,1.676 l-8.582,9.035v6.612c0,0.925-0.629,1.65-1.434,1.65H15.651z M18.735,11.578l3.902-4.162h-3.902V11.578z M14.196,11.502V7.416h-3.868 L14.196,11.502z" fill="#020202" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-106.9878" x2="-106.9878" y1="200.0684" y2="187.9122">
+<stop offset="0" style="stop-color:#F5F6F6"/>
+<stop offset="1" style="stop-color:#A6A6A5"/>
</linearGradient>
-<path d="M28.86,4.552c-0.134-0.435-0.536-0.731-0.99-0.731h-21.57c-0.455,0-0.856,0.297-0.99,0.731-0.135,0.433,0.032,0.905,0.408,1.158l9.874,9.531v-3.866l-5.92-5.482h14.81l-5.938,5.581v3.829l9.896-9.588c0.37-0.256,0.54-0.727,0.41-1.16z" fill="url(#SVGID_2_)"/>
-<path d="M5.313,4.889c0.133-0.435,0.534-0.773,0.99-0.773h21.56c0.454,0,0.856,0.339,0.99,0.773,0.013,0.045,0.021,0.091,0.029,0.137,0.026-0.156,0.019-0.318-0.029-0.475-0.134-0.435-0.536-0.731-0.99-0.731h-21.56c-0.455,0-0.856,0.297-0.99,0.731-0.049,0.157-0.057,0.319-0.031,0.474,0.008-0.045,0.017-0.091,0.031-0.136z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="18.85,11.78,24.97,5.885,24.5,5.885,18.85,11.24" stroke-opacity="0.6"/>
-<polygon fill="#FFFFFF" fill-opacity="0.6" points="9.199,5.889,15.3,11.69,15.3,11.15,9.677,5.889" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-106.4" x2="-106.4" y1="230.2" y2="219.4">
-<stop offset="0" stop-color="#EDEFEE"/>
-<stop offset="0.5" stop-color="#BCBEBE"/>
-<stop offset="0.5" stop-color="#A5A6A7"/>
-<stop offset="1" stop-color="#C9CBCA"/>
-</linearGradient>
-<path d="M18.84,11.79l6.56-6.199h-16.65l6.55,6.109v2.993l-9.408-9.221c-0.275-0.187-0.392-0.519-0.297-0.831,0.095-0.313,0.38-0.522,0.708-0.522h21.56c0.327,0,0.611,0.21,0.707,0.522,0.095,0.313-0.023,0.645-0.293,0.827l-9.435,9.33v-3.008z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-99.74" x2="-99.74" y1="229.5" y2="220">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
-</linearGradient>
-<path d="M28.54,4.56c-0.054,0.125-0.143,0.234-0.261,0.315l-9.436,9.329v0.591l9.436-9.33c0.27-0.182,0.388-0.515,0.293-0.827-0.01-0.023-0.02-0.048-0.03-0.073z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-113" x2="-113" y1="229.5" y2="220">
-<stop offset="0" stop-color="#69696A"/>
-<stop offset="1" stop-color="#000000"/>
+<path d="M27.163,5.345c-0.131-0.424-0.523-0.826-0.969-0.826H16.61h-9.85c-0.446,0-0.839,0.402-0.968,0.826 C5.661,5.765,5.822,6.996,6.19,7.242l8.831,9.264v-2.931l-6.61-6.984h16.132l-6.633,7.074v2.896l8.85-9.318 C27.13,6.996,27.292,5.765,27.163,5.345z" fill="url(#SVGID_1_)"/>
+<polygon fill="#020202" points="14.196,15.641 15.021,16.506 15.021,13.574 14.196,12.702 "/>
+<polygon fill="#020202" points="18.735,12.785 17.909,13.665 17.909,16.561 18.735,15.692 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-108.4434" x2="-105.5557" y1="189.0283" y2="189.0283">
+<stop offset="0" style="stop-color:#F5F6F6"/>
+<stop offset="1" style="stop-color:#A6A6A5"/>
</linearGradient>
-<path d="M5.627,4.559c-0.011,0.026-0.023,0.051-0.032,0.079-0.095,0.312,0.022,0.644,0.297,0.831l9.408,9.226v-0.592l-9.408-9.233c-0.122-0.082-0.21-0.193-0.265-0.318z" fill="url(#SVGID_5_)"/>
-<path d="M5.595,4.933c0.095-0.313,0.38-0.522,0.708-0.522h21.56c0.327,0,0.611,0.209,0.707,0.522,0.007,0.024,0.01,0.049,0.015,0.073,0.025-0.119,0.023-0.245-0.015-0.368-0.096-0.313-0.38-0.522-0.707-0.522h-21.57c-0.328,0-0.613,0.21-0.708,0.522-0.038,0.122-0.041,0.248-0.016,0.367,0.005-0.023,0.009-0.047,0.016-0.072z" fill="#FFFFFF"/>
-<path d="M17.96,23.91h-1.772c-0.326,0-0.59-0.261-0.59-0.584v0.295c0,0.323,0.263,0.584,0.59,0.584h1.772c0.326,0,0.591-0.261,0.591-0.584v-0.295c0,0.33-0.27,0.59-0.59,0.59z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M17.96,23.61h-1.772c-0.326,0-0.59-0.262-0.59-0.584v0.294c0,0.324,0.263,0.587,0.59,0.587h1.772c0.326,0,0.591-0.263,0.591-0.587v-0.294c0,0.31-0.27,0.58-0.59,0.58z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<rect fill-opacity="0.3" height="0.296" stroke-opacity="0.3" width="2.953" x="15.6" y="5.888"/>
-<rect fill-opacity="0.2" height="0.294" stroke-opacity="0.2" width="2.953" x="15.6" y="6.184"/>
-<rect fill-opacity="0.1" height="1.182" stroke-opacity="0.1" width="2.953" x="15.6" y="5.888"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-119.5" x2="-119.5" y1="217.1" y2="208.1">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M5.667,21.39c0.566-0.438,0.892-1.049,0.892-1.769,0-0.61-0.238-1.171-0.67-1.58-0.47-0.448-1.152-0.683-1.964-0.683-0.987,0-1.842,0.363-2.275,0.674l-0.265,0.187,0.593,1.582,0.451-0.32c0.277-0.198,0.787-0.43,1.298-0.43,0.424,0,0.931,0.129,0.931,0.74,0,0.725-0.941,0.883-1.301,0.883h-1.008v1.63h1.008c0.257,0,1.559,0.055,1.569,1.125,0.004,0.131-0.02,0.459-0.271,0.716-0.229,0.229-0.584,0.347-1.05,0.347-0.634,0-1.237-0.26-1.491-0.414l-0.444-0.27-0.569,1.598,0.277,0.182c0.414,0.274,1.252,0.593,2.24,0.593,2.223,0,3.235-1.421,3.235-2.739,0.004-0.88-0.453-1.63-1.186-2.05z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="-119.5" x2="-119.5" y1="216.7" y2="208.3">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
+<path d="M15.021,6.591v16.912c0,0.541,0.309,0.825,0.629,0.825h1.651c0.318,0,0.607-0.335,0.607-0.825V6.591 H15.021z" fill="url(#SVGID_2_)"/>
+<path d="M5.793,6.17c0.129-0.424,0.521-0.825,0.968-0.825h9.85h9.584 c0.445,0,0.838,0.401,0.969,0.825c0.004,0.011,0.004,0.026,0.008,0.037c0.047-0.342,0.049-0.68-0.008-0.862 c-0.131-0.424-0.523-0.826-0.969-0.826H16.61h-9.85c-0.446,0-0.839,0.402-0.968,0.826c-0.058,0.185-0.057,0.525-0.01,0.87 C5.787,6.201,5.788,6.182,5.793,6.17z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M5.575,21.8c0.51-0.396,0.802-0.943,0.802-1.592 c0-0.55-0.215-1.054-0.603-1.423c-0.423-0.402-1.038-0.614-1.768-0.614c-0.888,0-1.659,0.326-2.048,0.607L1.72,18.946l0.533,1.423 l0.406-0.288c0.25-0.179,0.708-0.387,1.168-0.387c0.382,0,0.838,0.116,0.838,0.666c0,0.651-0.847,0.794-1.172,0.794H2.588v1.468 h0.906c0.232,0,1.404,0.049,1.413,1.014c0.003,0.117-0.018,0.413-0.244,0.645c-0.207,0.206-0.525,0.313-0.946,0.313 c-0.57,0-1.113-0.235-1.341-0.375l-0.4-0.239l-0.513,1.438l0.251,0.165c0.373,0.246,1.127,0.533,2.016,0.533 c2.001,0,2.913-1.278,2.913-2.465C6.646,22.857,6.234,22.184,5.575,21.8z" fill="#020202" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-119.3687" x2="-119.3687" y1="186.0469" y2="178.8539">
+<stop offset="0" style="stop-color:#8D9F71"/>
+<stop offset="1" style="stop-color:#557A68"/>
</linearGradient>
-<path d="M3.617,26c-0.95,0-1.745-0.304-2.138-0.562l-0.158-0.11,0.446-1.25,0.253,0.15c0.271,0.164,0.91,0.441,1.585,0.441,0.515,0,0.912-0.134,1.178-0.4,0.316-0.323,0.33-0.734,0.326-0.853-0.009-0.961-0.95-1.303-1.752-1.303h-0.825v-1.263h0.824c0.596,0,1.485-0.284,1.485-1.067,0-0.587-0.406-0.923-1.115-0.923-0.557,0-1.104,0.25-1.405,0.465l-0.257,0.17-0.46-1.226,0.152-0.106c0.41-0.296,1.225-0.64,2.168-0.64,0.768,0,1.403,0.219,1.838,0.632,0.395,0.375,0.612,0.89,0.612,1.448,0,0.646-0.284,1.207-0.819,1.622l-0.216,0.167,0.234,0.137c0.699,0.408,1.099,1.099,1.094,1.896,0.002,1.23-0.953,2.56-3.05,2.56z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-119.4" x2="-119.4" y1="216.7" y2="208.5">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M3.617,25.81c-0.91,0-1.666-0.288-2.037-0.532l-0.037-0.026,0.322-0.903,0.06,0.035c0.287,0.175,0.965,0.469,1.68,0.469,0.566,0,1.007-0.153,1.309-0.454,0.367-0.377,0.383-0.852,0.379-0.988-0.01-1.093-1.049-1.481-1.936-1.481h-0.64v-0.897h0.64c0.67,0,1.668-0.332,1.668-1.25,0-0.692-0.485-1.105-1.298-1.105-0.6,0-1.188,0.269-1.511,0.498l-0.061,0.044-0.326-0.87,0.034-0.024c0.389-0.281,1.164-0.607,2.063-0.607,0.719,0,1.312,0.201,1.712,0.582,0.357,0.34,0.554,0.807,0.554,1.314,0,0.588-0.26,1.098-0.749,1.478l-0.43,0.333,0.47,0.273c0.641,0.374,1.006,1.007,1.004,1.738,0,1.15-0.898,2.38-2.87,2.38z" fill="url(#SVGID_8_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="-112.6" x2="-112.6" y1="218.4" y2="208.8">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M3.729,25.689c-0.822,0-1.472-0.271-1.751-0.444l0.226-0.631c0.339,0.193,0.92,0.406,1.514,0.406 c0.536,0,0.956-0.147,1.247-0.438c0.35-0.359,0.375-0.791,0.369-0.961c-0.009-1.051-0.997-1.427-1.84-1.427H3.015v-0.613h0.479 c0.643,0,1.599-0.326,1.599-1.222c0-0.528-0.333-1.093-1.266-1.093c-0.535,0-1.048,0.218-1.369,0.434l-0.223-0.596 c0.375-0.257,1.054-0.507,1.771-0.507c0.622,0,1.132,0.172,1.474,0.496c0.303,0.288,0.47,0.684,0.47,1.113 c0,0.497-0.221,0.932-0.636,1.253L4.813,21.85l0.547,0.319c0.546,0.318,0.858,0.857,0.855,1.479 C6.215,24.665,5.446,25.689,3.729,25.689L3.729,25.689z" fill="url(#SVGID_3_)"/>
+<path d="M10.504,20.48v1.51h1.453v1.482 c-0.191,0.051-0.455,0.097-0.86,0.097c-1.502,0-2.396-0.944-2.396-2.526c0-0.775,0.232-1.416,0.677-1.853 c0.437-0.435,1.073-0.663,1.836-0.663c0.582,0,1.035,0.088,1.432,0.274l0.396,0.188l0.462-1.493l-0.295-0.144 c-0.352-0.169-1.079-0.369-1.974-0.369c-2.562,0-4.282,1.649-4.282,4.101c0,1.192,0.41,2.271,1.121,2.958 c0.746,0.712,1.712,1.059,2.959,1.059c1.174,0,2.102-0.321,2.36-0.42l0.246-0.095V20.48H10.504L10.504,20.48z" fill="#020202" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 204.4883)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-113.1685" x2="-113.1685" y1="187.2207" y2="179.5252">
+<stop offset="0" style="stop-color:#8D9F71"/>
+<stop offset="1" style="stop-color:#557A68"/>
</linearGradient>
-<path d="M11.14,19.92v1.678h1.613v1.646c-0.212,0.057-0.504,0.107-0.955,0.107-1.669,0-2.662-1.049-2.662-2.806,0-0.862,0.259-1.575,0.753-2.058,0.486-0.483,1.191-0.736,2.04-0.736,0.645,0,1.148,0.098,1.589,0.305l0.441,0.208,0.512-1.657-0.326-0.16c-0.391-0.188-1.199-0.409-2.192-0.409-2.847,0-4.757,1.831-4.757,4.554,0,1.325,0.455,2.523,1.245,3.286,0.828,0.791,1.903,1.175,3.287,1.175,1.305,0,2.334-0.357,2.622-0.467l0.271-0.104v-4.561h-3.467z" fill="url(#SVGID_9_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_10_" x1="-112.6" x2="-112.6" y1="218.1" y2="209.4">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
-</linearGradient>
-<path d="M11.73,24.87c-1.334,0-2.367-0.368-3.16-1.125-0.755-0.729-1.188-1.878-1.188-3.152,0-2.615,1.838-4.371,4.574-4.371,0.963,0,1.74,0.211,2.111,0.393l0.187,0.09-0.404,1.305-0.26-0.11c-0.467-0.219-0.998-0.322-1.668-0.322-0.901,0-1.651,0.272-2.169,0.788-0.526,0.518-0.807,1.274-0.807,2.189,0,1.872,1.064,2.988,2.846,2.988,0.393,0,0.72-0.036,1.001-0.112l0.136-0.036v-1.97h-1.614v-1.312h3.116v4.251l-0.155,0.059c-0.38,0.13-1.35,0.45-2.57,0.45z" fill="url(#SVGID_10_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_11_" x1="-112.6" x2="-112.6" y1="218" y2="209.2">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M11.73,24.68c-1.284,0-2.275-0.352-3.033-1.074-0.719-0.694-1.132-1.795-1.132-3.021,0-2.504,1.765-4.187,4.391-4.187,0.931,0,1.677,0.2,2.032,0.373l0.045,0.021-0.295,0.951-0.059-0.027c-0.492-0.23-1.049-0.34-1.746-0.34-0.95,0-1.745,0.292-2.299,0.843-0.563,0.551-0.86,1.354-0.86,2.318,0,1.986,1.133,3.172,3.029,3.172,0.41,0,0.752-0.039,1.049-0.119l0.272-0.073v-2.28h-1.61v-0.945h2.747v3.943l-0.036,0.013c-0.35,0.15-1.3,0.45-2.49,0.45z" fill="url(#SVGID_11_)"/>
-<rect fill="none" height="30" width="30"/>
+<path d="M11.032,24.674c-1.13,0-2.001-0.308-2.664-0.939c-0.628-0.605-0.988-1.572-0.988-2.649 c0-2.231,1.513-3.674,3.855-3.674c0.838,0,1.477,0.188,1.751,0.312l-0.208,0.67c-0.446-0.199-0.945-0.292-1.565-0.292 c-0.881,0-1.62,0.271-2.138,0.786c-0.525,0.514-0.803,1.261-0.803,2.156c0,1.821,1.082,2.952,2.824,2.952 c0.379,0,0.688-0.035,0.97-0.109l0.317-0.085v-2.237h-1.453v-0.656h2.281v3.386C12.935,24.395,12.083,24.674,11.032,24.674 L11.032,24.674z" fill="url(#SVGID_4_)"/>
+<rect fill="none" height="30" width="30.001"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -87,4 +41,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_person.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_person.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M1,29v-1c0-2.974,1.324-5.258,3.83-6.606,0.602-0.324,1.942-0.849,3.771-1.554,0.68-0.262,1.493-0.576,1.889-0.743,0.147-0.423,0.11-1.146,0.001-1.362,0,0-1.105-2.003-1.146-2.088-0.909-0.094-1.778-0.873-2.203-1.998-0.457-1.209-0.286-2.413,0.373-3.094-0.589-2.53-0.458-4.477,0.393-5.793,0.506-0.787,1.268-1.333,2.173-1.572,0.93-1.129,2.25-2.195,4.68-2.195,2.838,0.096,5.041,1.074,6.405,2.831,1.341,1.728,1.776,4.13,1.23,6.78,0.621,0.697,0.759,1.895,0.283,3.083-0.411,1.032-1.173,1.747-2.007,1.916-0.046,0.097-1.174,2.138-1.174,2.138-0.121,0.24-0.136,1.033,0.023,1.416,0.333,0.133,0.99,0.381,1.586,0.605,1.942,0.73,3.475,1.314,4.054,1.619,0.65,0.33,3.85,2.24,3.85,6.6v1h-28z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="24.16" y2="17.24">
-<stop offset="0" stop-color="#DDC4B0"/>
-<stop offset="0.2" stop-color="#DDC4B0"/>
-<stop offset="0.9628" stop-color="#A57665"/>
-<stop offset="1" stop-color="#A57665"/>
+<path d="M1,29v-1c0-2.974,1.324-5.258,3.83-6.606c0.602-0.324,1.942-0.849,3.771-1.554 c0.68-0.262,1.493-0.576,1.889-0.743c0.147-0.423,0.11-1.146,0.001-1.362c0,0-1.105-2.003-1.146-2.088 c-0.909-0.094-1.778-0.873-2.203-1.998c-0.457-1.209-0.286-2.413,0.373-3.094c-0.589-2.53-0.458-4.477,0.393-5.793 C8.413,3.98,9.175,3.434,10.08,3.195C11.014,2.066,12.33,1,14.762,1c2.838,0.096,5.041,1.074,6.405,2.831 c1.341,1.728,1.776,4.13,1.23,6.78c0.621,0.697,0.759,1.895,0.283,3.083c-0.411,1.032-1.173,1.747-2.007,1.916 c-0.046,0.097-1.174,2.138-1.174,2.138c-0.121,0.24-0.136,1.033,0.023,1.416c0.333,0.133,0.99,0.381,1.586,0.605 c1.942,0.73,3.475,1.314,4.054,1.619C25.804,21.728,29,23.636,29,28v1H1z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0024" x2="15.0024" y1="24.1553" y2="17.2445">
+<stop offset="0" style="stop-color:#DDC4B0"/>
+<stop offset="0.2" style="stop-color:#DDC4B0"/>
+<stop offset="0.9628" style="stop-color:#A57665"/>
+<stop offset="1" style="stop-color:#A57665"/>
</linearGradient>
-<path d="M19.17,20.2c-0.92-0.404-0.89-2.39-0.512-2.99,0.066-0.105,0.127-0.209,0.191-0.314h-7.693c0.064,0.105,0.124,0.209,0.19,0.314,0.379,0.601,0.408,2.586-0.511,2.99-0.92,0.405,4.274,3.932,4.274,3.932s4.98-3.52,4.06-3.93z" fill="url(#SVGID_1_)"/>
-<path d="M11.34,17.21c0.154,0.244,0.245,0.721,0.243,1.225,0.866,0.945,2.058,1.894,3.355,1.894,1.663,0,2.726-0.854,3.475-1.778-0.02-0.546,0.072-1.076,0.238-1.34,0.066-0.105,0.127-0.209,0.191-0.314h-7.693c0.06,0.1,0.12,0.21,0.18,0.31z" fill-opacity="0.1" stroke-opacity="0.1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="19.84" y2="28">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="1" stop-color="#88444B"/>
+<path d="M19.167,20.203c-0.92-0.404-0.89-2.39-0.512-2.99c0.066-0.105,0.127-0.209,0.191-0.314h-7.693 c0.064,0.105,0.124,0.209,0.19,0.314c0.379,0.601,0.408,2.586-0.511,2.99c-0.92,0.405,4.274,3.932,4.274,3.932 S20.087,20.608,19.167,20.203z" fill="url(#SVGID_1_)"/>
+<path d="M11.344,17.213c0.154,0.244,0.245,0.721,0.243,1.225c0.866,0.945,2.058,1.894,3.355,1.894 c1.663,0,2.726-0.854,3.475-1.778c-0.02-0.546,0.072-1.076,0.238-1.34c0.066-0.105,0.127-0.209,0.191-0.314h-7.693 C11.218,17.004,11.277,17.107,11.344,17.213z" fill-opacity="0.1" stroke-opacity="0.1"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="19.8359" y2="28">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="1" style="stop-color:#88444B"/>
</linearGradient>
-<path d="M24.7,22.27c-0.968-0.51-5.761-2.212-5.852-2.318l-3.662,3.086-3.935-3.205c-0.12,0.16-4.86,1.84-5.956,2.43-1.255,0.68-3.304,2.23-3.304,5.73h26c0-3.5-2.34-5.22-3.3-5.73z" fill="url(#SVGID_2_)"/>
-<path d="M24.23,23.16c-0.513-0.271-2.506-1.021-3.825-1.518-0.627-0.236-1.068-0.402-1.385-0.525l-0.312,0.263c0.204,0.077,0.43,0.163,0.696,0.263,1.319,0.496,3.313,1.247,3.825,1.518,0.411,0.217,2.283,1.334,2.691,3.842h1c-0.42-2.51-2.29-3.62-2.7-3.84z" fill="#CCA089"/>
-<path d="M6.777,23.15c0.538-0.289,2.28-0.961,3.552-1.451,0.441-0.17,0.802-0.309,1.104-0.427l-0.328-0.267c-0.384,0.157-0.942,0.373-1.775,0.693-1.271,0.49-3.014,1.162-3.552,1.451-1.55,0.85-2.459,2.14-2.705,3.86h1c0.246-1.72,1.155-3.01,2.709-3.85z" fill="#CCA089"/>
-<radialGradient cx="-108" cy="23.22" gradientTransform="matrix(0.9352 0 0 0.9448 112.9225 -13.3229)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="14.03">
-<stop offset="0" stop-color="#F4EDE4"/>
-<stop offset="0.5091" stop-color="#E8D9CA"/>
-<stop offset="0.7636" stop-color="#DDC4B0"/>
-<stop offset="1" stop-color="#BF9C89"/>
+<path d="M24.696,22.273c-0.968-0.51-5.761-2.212-5.852-2.318l-3.662,3.086l-3.935-3.205 C11.14,20,6.4,21.684,5.304,22.273C4.049,22.949,2,24.501,2,28h26C28,24.501,25.662,22.783,24.696,22.273z" fill="url(#SVGID_2_)"/>
+<path d="M24.229,23.158c-0.513-0.271-2.506-1.021-3.825-1.518c-0.627-0.236-1.068-0.402-1.385-0.525l-0.312,0.263 c0.204,0.077,0.43,0.163,0.696,0.263c1.319,0.496,3.313,1.247,3.825,1.518c0.411,0.217,2.283,1.334,2.691,3.842h1 C26.513,24.492,24.641,23.375,24.229,23.158z" fill="#CCA089"/>
+<path d="M6.777,23.154c0.538-0.289,2.28-0.961,3.552-1.451c0.441-0.17,0.802-0.309,1.104-0.427l-0.328-0.267 c-0.384,0.157-0.942,0.373-1.775,0.693c-1.271,0.49-3.014,1.162-3.552,1.451C4.223,23.991,3.314,25.282,3.068,27h1 C4.314,25.282,5.223,23.991,6.777,23.154z" fill="#CCA089"/>
+<radialGradient cx="-107.9609" cy="23.2217" gradientTransform="matrix(0.9352 0 0 0.9448 112.9225 -13.3229)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="14.0323">
+<stop offset="0" style="stop-color:#F4EDE4"/>
+<stop offset="0.5091" style="stop-color:#E8D9CA"/>
+<stop offset="0.7636" style="stop-color:#DDC4B0"/>
+<stop offset="1" style="stop-color:#BF9C89"/>
</radialGradient>
-<path d="M21.38,11.08c-0.033-0.016-0.069-0.019-0.104-0.029v-0.001c-0.006-0.001-0.012-0.003-0.02-0.004-0.05-0.013-0.101-0.024-0.153-0.028-6.421-1.133-9.367-4.738-9.59-3.783-0.176,0.76-1.977,2.402-2.919,3.223,0.008,0.036,0.013,0.069,0.02,0.105,0,0,0.034,0.169,0.105,0.455-0.075,0.008-0.148,0.023-0.22,0.055-0.6,0.256-0.788,1.254-0.42,2.227,0.368,0.975,1.152,1.557,1.751,1.302,0.038-0.017,0.069-0.044,0.103-0.065,0.35,0.795,0.777,1.646,1.302,2.5,0.878,1.059,2.224,2.3,3.709,2.3,1.797,0,2.897-0.997,3.653-2.002,0.019-0.042,0.039-0.082,0.06-0.116,0.561-0.888,1.015-1.778,1.383-2.607,0.587,0.207,1.341-0.346,1.714-1.283,0.39-0.98,0.22-1.98-0.37-2.25z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.89" x2="14.89" y1="2.122" y2="10.4">
-<stop offset="0" stop-color="#725B53"/>
-<stop offset="0.3758" stop-color="#451F1E"/>
-<stop offset="1" stop-color="#261013"/>
+<path d="M21.378,11.076c-0.033-0.016-0.069-0.019-0.104-0.029v-0.001c-0.006-0.001-0.012-0.003-0.02-0.004 c-0.05-0.013-0.101-0.024-0.153-0.028c-6.421-1.133-9.367-4.738-9.59-3.783c-0.176,0.76-1.977,2.402-2.919,3.223 c0.008,0.036,0.013,0.069,0.02,0.105c0,0,0.034,0.169,0.105,0.455c-0.075,0.008-0.148,0.023-0.22,0.055 c-0.6,0.256-0.788,1.254-0.42,2.227c0.368,0.975,1.152,1.557,1.751,1.302c0.038-0.017,0.069-0.044,0.103-0.065 c0.35,0.795,0.777,1.646,1.302,2.5c0.878,1.059,2.224,2.3,3.709,2.3c1.797,0,2.897-0.997,3.653-2.002 c0.019-0.042,0.039-0.082,0.06-0.116c0.561-0.888,1.015-1.778,1.383-2.607c0.587,0.207,1.341-0.346,1.714-1.283 C22.14,12.354,21.972,11.348,21.378,11.076z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.8901" x2="14.8901" y1="2.1216" y2="10.4031">
+<stop offset="0" style="stop-color:#725B53"/>
+<stop offset="0.3758" style="stop-color:#451F1E"/>
+<stop offset="1" style="stop-color:#261013"/>
</linearGradient>
-<path d="M14.76,2c-2.226,0-3.297,1.026-4.123,2.099-1.345,0.21-3.476,1.46-1.971,6.933,0.942-0.82,2.668-3.041,2.844-3.801,0.225-0.964,3.221,2.719,9.763,3.815,0.077-0.306,0.112-0.487,0.112-0.487,1.03-4.663-1.2-8.367-6.62-8.55z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.06" x2="15.06" y1="20.19" y2="25.63">
-<stop offset="0" stop-color="#8C4C54"/>
-<stop offset="1" stop-color="#53343E"/>
+<path d="M14.762,2c-2.226,0-3.297,1.026-4.123,2.099c-1.345,0.21-3.476,1.46-1.971,6.933 c0.942-0.82,2.668-3.041,2.844-3.801c0.225-0.964,3.221,2.719,9.763,3.815c0.077-0.306,0.112-0.487,0.112-0.487 C22.414,5.887,20.179,2.183,14.762,2z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15.0591" x2="15.0591" y1="20.1875" y2="25.6254">
+<stop offset="0" style="stop-color:#8C4C54"/>
+<stop offset="1" style="stop-color:#53343E"/>
</linearGradient>
-<path d="M20.96,20.78c-1.13-0.426-2.075-0.779-2.115-0.826l-3.662,3.086-3.935-3.205c-0.047,0.071-0.971,0.43-2.09,0.861l6.046,4.939,5.76-4.86z" fill="url(#SVGID_5_)"/>
+<path d="M20.96,20.781c-1.13-0.426-2.075-0.779-2.115-0.826l-3.662,3.086l-3.935-3.205 c-0.047,0.071-0.971,0.43-2.09,0.861l6.046,4.939L20.96,20.781z" fill="url(#SVGID_5_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phone_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phone_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,46 +1,49 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M7.963,29.3c-1.635,0-2.963-1.33-2.963-2.96v-22.35c0-1.634,1.328-2.962,2.963-2.962h14.07c1.63,0,2.96,1.328,2.96,2.962v22.34c0,1.633-1.328,2.963-2.963,2.963h-14.08z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="-4.161" y2="28.24">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<path d="M7.963,29.301C6.328,29.301,5,27.971,5,26.338V3.994C5,2.36,6.328,1.032,7.963,1.032h14.074 C23.672,1.032,25,2.36,25,3.994v22.344c0,1.633-1.328,2.963-2.963,2.963H7.963z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="-4.1611" y2="28.2423">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<path d="M24,26.34c0,1.084-0.879,1.963-1.963,1.963h-14.08c-1.084,0-1.963-0.88-1.963-1.96v-22.35c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v22.34z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21.08" y2="27.38">
-<stop offset="0" stop-color="#A8A9AA"/>
-<stop offset="0.703" stop-color="#59595A"/>
-<stop offset="1" stop-color="#818283"/>
+<path d="M24,26.338c0,1.084-0.879,1.963-1.963,1.963H7.963C6.879,28.301,6,27.422,6,26.338V3.994 C6,2.91,6.879,2.032,7.963,2.032h14.074C23.121,2.032,24,2.91,24,3.994V26.338z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="21.0811" y2="27.3765">
+<stop offset="0" style="stop-color:#A8A9AA"/>
+<stop offset="0.703" style="stop-color:#59595A"/>
+<stop offset="1" style="stop-color:#818283"/>
</linearGradient>
-<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="23.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="23.19" y2="26.34">
-<stop offset="0" stop-color="#F0F0F0"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<rect fill="url(#SVGID_2_)" height="4" width="4" x="13" y="23.301"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="23.1904" y2="26.3381">
+<stop offset="0" style="stop-color:#F0F0F0"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="24.3"/>
-<path d="M22.04,2.032h-14.08c-1.084,0-1.963,0.878-1.963,1.962v1c0-1.084,0.879-1.962,1.963-1.962h14.07c1.08,0,1.96,0.878,1.96,1.962v-1c0-1.084-0.88-1.962-1.96-1.962z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="22.25" y2="4.139">
-<stop offset="0" stop-color="#DADBDB"/>
-<stop offset="1" stop-color="#9C9D9D"/>
+<rect fill="url(#SVGID_3_)" height="2" width="2" x="14" y="24.301"/>
+<path d="M22.037,2.032H7.963C6.879,2.032,6,2.91,6,3.994v1C6,3.91,6.879,3.032,7.963,3.032h14.074 C23.121,3.032,24,3.91,24,4.994v-1C24,2.91,23.121,2.032,22.037,2.032z" fill="#FFFFFF" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15.0005" x2="15.0005" y1="22.2461" y2="4.1392">
+<stop offset="0" style="stop-color:#DADBDB"/>
+<stop offset="1" style="stop-color:#9C9D9D"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="18.3" width="16" x="7" y="4.032"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="5.032" y2="21.31">
-<stop offset="0" stop-color="#70B4B6"/>
-<stop offset="1" stop-color="#455188"/>
+<rect fill="url(#SVGID_4_)" height="18.301" width="16" x="7" y="4.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="5.0322" y2="21.3059">
+<stop offset="0" style="stop-color:#70B4B6"/>
+<stop offset="1" style="stop-color:#455188"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="16.3" width="14" x="8" y="5.032"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="9" x2="9" y1="24.3" y2="26.29">
-<stop offset="0" stop-color="#33784C"/>
-<stop offset="1" stop-color="#1E4539"/>
+<rect fill="url(#SVGID_5_)" height="16.301" width="14" x="8" y="5.032"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="9" x2="9" y1="24.3008" y2="26.2852">
+<stop offset="0" style="stop-color:#33784C"/>
+<stop offset="1" style="stop-color:#1E4539"/>
</linearGradient>
-<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="24.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21" x2="21" y1="24.3" y2="26.3">
-<stop offset="0" stop-color="#A15745"/>
-<stop offset="1" stop-color="#622A37"/>
+<rect fill="url(#SVGID_6_)" height="2" width="4" x="7" y="24.301"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21" x2="21" y1="24.3008" y2="26.3008">
+<stop offset="0" style="stop-color:#A15745"/>
+<stop offset="1" style="stop-color:#622A37"/>
</linearGradient>
-<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="24.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,11.16,22,5.032,8,5.032,8,12.3" stroke-opacity="0.2"/>
+<rect fill="url(#SVGID_7_)" height="2" width="4" x="19" y="24.301"/>
+<polygon fill="#FFFFFF" fill-opacity="0.2" points="22,11.162 22,5.032 8,5.032 8,12.301 " stroke-opacity="0.2"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -51,4 +54,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phonebook.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_phonebook.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M4,1v5c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v4h24v-28h-24z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="18" x2="18" y1="2" y2="28">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M4,1v5C2.896,6,2,6.897,2,8s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v1c-1.104,0-2,0.897-2,2 s0.896,2,2,2v1c-1.104,0-2,0.897-2,2s0.896,2,2,2v4h24V1H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="18" x2="18" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="26" width="18" x="9" y="2"/>
-<path d="M19.13,16.86c-0.005-0.08,0-0.161,0.002-0.242,0.532-0.371,0.993-0.9,1.274-1.472,0.52-1.056,0.389-3.753,0.389-3.753,0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391,0,0-0.098,2.688,0.39,3.753,0.267,0.582,0.736,1.116,1.281,1.487,0.001,0.075,0.007,0.151,0.002,0.227-0.066,1.08-3.579,2.914-3.751,3.148v2.98h10v-2.992c-0.15-0.24-3.66-2.07-3.73-3.15z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="7" y1="2" y2="28">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<path d="M19.134,16.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V23h10v-2.992C22.713,19.772,19.2,17.938,19.134,16.857z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="7" x2="7" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="26" width="4" x="5" y="2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="5" x2="5" y1="6.75" y2="8.75">
-<stop offset="0" stop-color="#ABABAB"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<path d="M7,8c0,0.55-0.45,1-1,1h-2c-0.55,0-1-0.45-1-1s0.45-1,1-1h2c0.55,0,1,0.45,1,1z" fill="url(#SVGID_3_)"/>
+<path d="M7,8c0,0.55-0.45,1-1,1H4C3.45,9,3,8.55,3,8l0,0c0-0.55,0.45-1,1-1h2C6.55,7,7,7.45,7,8L7,8z" fill="url(#SVGID_3_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="5" x2="5" y1="11.75" y2="13.75">
-<stop offset="0" stop-color="#ABABAB"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<path d="M7,13c0,0.55-0.45,1-1,1h-2c-0.55,0-1-0.45-1-1s0.45-1,1-1h2c0.55,0,1,0.45,1,1z" fill="url(#SVGID_4_)"/>
+<path d="M7,13c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,12,7,12.45,7,13L7,13z" fill="url(#SVGID_4_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="5" x2="5" y1="16.75" y2="18.75">
-<stop offset="0" stop-color="#ABABAB"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<path d="M7,18c0,0.55-0.45,1-1,1h-2c-0.55,0-1-0.45-1-1s0.45-1,1-1h2c0.55,0,1,0.45,1,1z" fill="url(#SVGID_5_)"/>
+<path d="M7,18c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,17,7,17.45,7,18L7,18z" fill="url(#SVGID_5_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="5" x2="5" y1="21.75" y2="23.75">
-<stop offset="0" stop-color="#ABABAB"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<stop offset="0" style="stop-color:#ABABAB"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
-<path d="M7,23c0,0.55-0.45,1-1,1h-2c-0.55,0-1-0.45-1-1s0.45-1,1-1h2c0.55,0,1,0.45,1,1z" fill="url(#SVGID_6_)"/>
-<path d="M19.13,15.86c-0.005-0.08,0-0.161,0.002-0.242,0.532-0.371,0.993-0.9,1.274-1.472,0.52-1.056,0.389-3.753,0.389-3.753,0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391,0,0-0.098,2.688,0.39,3.753,0.267,0.582,0.736,1.116,1.281,1.487,0.001,0.075,0.007,0.151,0.002,0.227-0.066,1.08-3.579,2.914-3.751,3.148v2.98h10v-2.992c-0.15-0.24-3.66-2.07-3.73-3.15z" fill="#FFFFFF"/>
+<path d="M7,23c0,0.55-0.45,1-1,1H4c-0.55,0-1-0.45-1-1l0,0c0-0.55,0.45-1,1-1h2C6.55,22,7,22.45,7,23L7,23z" fill="url(#SVGID_6_)"/>
+<path d="M19.134,15.857c-0.005-0.08,0-0.161,0.002-0.242c0.532-0.371,0.993-0.9,1.274-1.472 c0.52-1.056,0.389-3.753,0.389-3.753c0-1.102-1.65-2.391-2.725-2.391h-0.386c-1.075,0-2.726,1.289-2.726,2.391 c0,0-0.098,2.688,0.39,3.753c0.267,0.582,0.736,1.116,1.281,1.487c0.001,0.075,0.007,0.151,0.002,0.227 c-0.066,1.08-3.579,2.914-3.751,3.148V22h10v-2.992C22.713,18.772,19.2,16.938,19.134,15.857z" fill="#FFFFFF"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="22" x="5" y="2"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_play.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_play.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M5.294,26.47c-0.156,0-0.313-0.043-0.45-0.125-0.268-0.16-0.432-0.449-0.432-0.76v-21.17c0-0.312,0.164-0.6,0.432-0.759,0.138-0.082,0.294-0.123,0.45-0.123,0.146,0,0.291,0.036,0.423,0.107l19.41,10.59c0.283,0.154,0.46,0.452,0.46,0.775s-0.177,0.62-0.46,0.773l-19.41,10.59c-0.135,0.08-0.28,0.11-0.426,0.11z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="5.294,4.412,24.71,15,5.294,25.59"/>
-<polygon fill="#522523" fill-opacity="0.1" points="5.294,24.71,5.294,25.59,24.71,15,23.9,14.56" stroke-opacity="0.1"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="24.71,15,5.294,4.412,5.294,5.294,23.9,15.44" stroke-opacity="0.4"/>
+<g>
+<path d="M5.294,26.471c-0.156,0-0.313-0.043-0.45-0.125 c-0.268-0.16-0.432-0.449-0.432-0.76V4.406c0-0.312,0.164-0.6,0.432-0.759c0.138-0.082,0.294-0.123,0.45-0.123 c0.146,0,0.291,0.036,0.423,0.107l19.41,10.59c0.283,0.154,0.46,0.452,0.46,0.775c0,0.323-0.177,0.62-0.46,0.773l-19.41,10.59 C5.585,26.439,5.44,26.471,5.294,26.471z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="5.294,4.412 24.71,15 5.294,25.59 "/>
+<polygon fill="#522523" fill-opacity="0.1" points="5.294,24.71 5.294,25.59 24.71,15 23.9,14.56 " stroke-opacity="0.1"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="24.71,15 5.294,4.412 5.294,5.294 23.9,15.44 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -862.1367 -1160.3917)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="994" x2="994" y1="-1320" y2="-1344">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(0.8824 0 0 -0.8824 -862.1367 -1160.3917)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="994.0371" x2="994.0371" y1="-1320.041" y2="-1344.041">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_playlist.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_playlist.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="27,28,27,2,3,2,3,21.41,9.586,28"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="3" y2="27">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<g>
+<polygon fill-opacity="0.6" points="27,28 27,2 3,2 3,21.414 9.586,28 "/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="26,3,26,27,10,27,4,21,4,3"/>
-<polygon fill="#FFFFFF" points="4,21,10,21,10,27"/>
+<polygon fill="url(#SVGID_1_)" points="26,3 26,27 10,27 4,21 4,3 "/>
+<polygon fill="#FFFFFF" points="4,21 10,21 10,27 "/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="7"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="11"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="12" x="6" y="15"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<path d="M20.96,28.68c-1.825,0-3.309-1.187-3.309-2.646s1.483-2.647,3.309-2.647c0.224,0,0.445,0.018,0.661,0.053v-7.245l5.735,1.537v4.111l-3.089-0.828v5.02c0,1.47-1.49,2.66-3.31,2.66z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<path d="M22.06,16.77v7.229c-0.34-0.109-0.712-0.17-1.103-0.17-1.584,0-2.868,0.987-2.868,2.206s1.284,2.206,2.868,2.206c1.583,0,2.867-0.988,2.867-2.206v-5.595l3.088,0.828v-3.198l-4.86-1.3z" fill="url(#SVGID_1__)"/>
<path d="M20.96,27.8c-1.487,0-2.709-0.871-2.854-1.985-0.009,0.072-0.014,0.146-0.014,0.221,0,1.219,1.283,2.206,2.867,2.206,1.583,0,2.867-0.988,2.867-2.206v-0.45c-0.02,1.22-1.3,2.21-2.88,2.21z" fill-opacity="0.2" stroke-opacity="0.2" style="enable-background:new;"/>
@@ -27,4 +30,5 @@
</linearGradient>
</defs>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_presentation.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_presentation.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="29,8,29,2,1,2,1,8,2,8,2,24,1,24,1,28,29,28,29,24,28,24,28,8"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="3" y2="7">
-<stop offset="0" stop-color="#B2B2B2"/>
-<stop offset="1" stop-color="#666666"/>
+<polygon fill-opacity="0.6" points="29,8 29,2 1,2 1,8 2,8 2,24 1,24 1,28 29,28 29,24 28,24 28,8 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="3" y2="7">
+<stop offset="0" style="stop-color:#B2B2B2"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="4" width="26" x="2" y="3"/>
<rect fill="#FFFFFF" height="18" width="24" x="3" y="7"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="8" y2="24">
-<stop offset="0" stop-color="#E6E7E6"/>
-<stop offset="1" stop-color="#999999"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="8" y2="24.0005">
+<stop offset="0" style="stop-color:#E6E7E6"/>
+<stop offset="1" style="stop-color:#999999"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="22" x="4" y="8"/>
-<polygon fill="#FFFFFF" fill-opacity="0.7" points="20,10,20,13,15,13,15,17,10,17,10,15,5,15,5,23,25,23,25,10" stroke-opacity="0.7"/>
+<polygon fill="#FFFFFF" fill-opacity="0.7" points="20,10 20,13 15,13 15,17 10,17 10,15 5,15 5,23 25,23 25,10 " stroke-opacity="0.7"/>
<rect fill="#808080" height="2" width="26" x="2" y="25"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="26" x="2" y="3"/>
<rect fill="#FFFFFF" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="25"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="26" x="2" y="6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.5" x2="7.5" y1="11" y2="21.89">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.5" x2="7.5" y1="10.9995" y2="21.8879">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="6" width="3" x="6" y="16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.5" x2="12.5" y1="11" y2="21.89">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="12.5" x2="12.5" y1="11.0005" y2="21.888">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_4_)" height="4" width="3" x="11" y="18"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.5" x2="17.5" y1="11" y2="21.89">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="17.5" x2="17.5" y1="11" y2="21.8882">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_5_)" height="8" width="3" x="16" y="14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="22.5" x2="22.5" y1="11" y2="21.89">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="22.5" x2="22.5" y1="11" y2="21.888">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_6_)" height="11" width="3" x="21" y="11"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="6" y="16"/>
@@ -44,8 +45,9 @@
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="16" y="14"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3" x="21" y="11"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="5" x2="19" y1="12.5" y2="12.5">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
-<polygon fill="url(#SVGID_7_)" points="19,9,15.56,9,11.39,13.17,10.22,12,5,12,5,14,9.394,14,11.39,16,16.39,11,19,11"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_7_)" points="19,9 15.564,9 11.394,13.172 10.223,12 5,12 5,14 9.394,14 11.394,16 16.394,11 19,11 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_high.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_high.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="11.12,18,8.867,1,21.13,1,18.88,18"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="27">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#5A2633"/>
+<g>
+<polygon fill-opacity="0.6" points="11.117,18 8.867,1 21.133,1 18.883,18 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="27.0027">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#5A2633"/>
</linearGradient>
-<path d="M20,2l-2,15h-6l-2-15h10z" fill="url(#SVGID_1_)"/>
-<path d="M15,29c-2.757,0-5-2.243-5-5s2.243-5,5-5,5,2.243,5,5-2.24,5-5,5z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="20.33" y2="27.9">
-<stop offset="0" stop-color="#B36B4D"/>
-<stop offset="1" stop-color="#5A2633"/>
+<path d="M20,2l-2,15h-6L10,2H20z" fill="url(#SVGID_1_)"/>
+<path d="M15,29c-2.757,0-5-2.243-5-5s2.243-5,5-5s5,2.243,5,5S17.757,29,15,29L15,29z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="20.333" y2="27.8994">
+<stop offset="0" style="stop-color:#B36B4D"/>
+<stop offset="1" style="stop-color:#5A2633"/>
</linearGradient>
<circle cx="15" cy="24" fill="url(#SVGID_2_)" r="4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="19.87,3,20,2,10,2,10.13,3" stroke-opacity="0.4"/>
-<path d="M15,21c2.036,0,3.7,1.53,3.95,3.5,0.02-0.17,0.05-0.33,0.05-0.5,0-2.208-1.792-4-4-4-2.21,0-4,1.792-4,4,0,0.172,0.029,0.334,0.05,0.5,0.25-1.97,1.91-3.5,3.95-3.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="19.866,3 20,2 10,2 10.134,3 " stroke-opacity="0.4"/>
+<path d="M15,21c2.036,0,3.7,1.53,3.95,3.5C18.971,24.334,19,24.172,19,24c0-2.208-1.792-4-4-4 c-2.21,0-4,1.792-4,4c0,0.172,0.029,0.334,0.05,0.5C11.299,22.53,12.962,21,15,21z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_low.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_priority_low.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,18 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="2.865,15,10,15,10,1,20,1,20,15,27.14,15,15,29.56"/>
-<polygon fill="url(#SVGID_1_)" points="19,16,19,2,11,2,11,16,5,16,15,28,25,16"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="19,16,19,17,24.17,17,25,16" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="11,17,11,16,5,16,5.833,17" stroke-opacity="0.4"/>
+<polygon fill-opacity="0.6" points="2.865,15 10,15 10,1 20,1 20,15 27.135,15 15,29.563 "/>
+<polygon fill="url(#SVGID_1_)" points="19,16 19,2 11,2 11,16 5,16 15,28 25,16 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="19,16 19,17 24.167,17 25,16 " stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="11,17 11,16 5,16 5.833,17 " stroke-opacity="0.4"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="8" x="11" y="2"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="813.9" y2="840">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.8945" y2="840.0411">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
@@ -24,4 +25,5 @@
<stop offset="1" stop-color="#679942"/>
</linearGradient>
<path d="M15,8c3.859,0,7,3.141,7,7s-3.141,7-7,7-7-3.141-7-7,3.14-7,7-7m0-1c-4.411,0-8,3.59-8,8s3.589,8,8,8,8-3.59,8-8-3.59-8-8-8z" fill="url(#SVGID_3_)"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,10 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill="#B4B4B4"/>
-<path d="M15,28c-7.169,0-13-5.83-13-13s5.831-13,13-13,13,5.832,13,13-5.83,13-13,13z" fill="#DCDCDC"/>
-<path d="M15,23c-4.411,0-8-3.59-8-8s3.589-8,8-8,8,3.59,8,8-3.59,8-8,8z" fill="#B4B4B4"/>
-</svg>
\ No newline at end of file
+<path d="M15,30C6.729,30,0,23.271,0,15S6.729,0,15,0s15,6.729,15,15S23.271,30,15,30L15,30z" fill="#B4B4B4"/>
+<path d="M15,28C7.831,28,2,22.168,2,15S7.831,2,15,2s13,5.832,13,13S22.169,28,15,28L15,28z" fill="#DCDCDC"/>
+<path d="M15,23c-4.411,0-8-3.59-8-8s3.589-8,8-8s8,3.59,8,8S19.411,23,15,23L15,23z" fill="#B4B4B4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_selected_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,30 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15c0,8.27-6.73,15-15,15z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.5" x2="304.5" y1="-384.2" y2="-412.5">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<g>
+<path d="M15,30C6.729,30,0,23.27,0,15C0,6.73,6.729,0,15,0c8.271,0,15,6.729,15,15C30,23.271,23.27,30,15,30z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.4795" x2="304.4795" y1="-384.2393" y2="-412.4603">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.5" x2="304.5" y1="-386.2" y2="-410.4">
-<stop offset="0" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M15,29C7.28,29,1,22.721,1,15C1,7.28,7.28,1,15,1c7.721,0,14,6.28,14,14C29,22.721,22.721,29,15,29z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.4795" x2="304.4795" y1="-386.209" y2="-410.401">
+<stop offset="0" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M15,27c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)"/>
-<path d="M15,4c6.447,0,11.71,5.115,11.98,11.5,0-0.17,0.02-0.33,0.02-0.5,0-6.617-5.383-12-12-12s-12,5.383-12,12c0,0.169,0.019,0.333,0.025,0.5,0.265-6.385,5.527-11.5,11.98-11.5z" fill-opacity="0.2"/>
-<path d="M15,24c-4.963,0-9-4.038-9-9s4.037-9,9-9,9,4.038,9,9-4.04,9-9,9z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="304.5" x2="304.5" y1="-390.1" y2="-406.3">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M15,27C8.383,27,3,21.62,3,15S8.383,3,15,3s12,5.383,12,12S21.62,27,15,27z" fill="url(#SVGID_2_)"/>
+<path d="M15,4c6.447,0,11.71,5.115,11.98,11.5c0-0.17,0.02-0.33,0.02-0.5c0-6.617-5.383-12-12-12S3,8.383,3,15 c0,0.169,0.019,0.333,0.025,0.5C3.29,9.115,8.552,4,15.005,4H15z" fill-opacity="0.2"/>
+<path d="M15,24c-4.963,0-9-4.038-9-9s4.037-9,9-9s9,4.038,9,9S19.96,24,15,24z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="304.4795" x2="304.4795" y1="-390.1455" y2="-406.2705">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M15,23c-4.411,0-8-3.59-8-8s3.589-8,8-8,8,3.59,8,8-3.59,8-8,8z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="304.5" x2="304.5" y1="-390" y2="-406">
-<stop offset="0" stop-color="#D1DDAF"/>
-<stop offset="0.3394" stop-color="#5B9841"/>
-<stop offset="0.6182" stop-color="#3D863A"/>
-<stop offset="1" stop-color="#679942"/>
+<path d="M15,23c-4.411,0-8-3.59-8-8s3.589-8,8-8s8,3.59,8,8S19.41,23,15,23z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="304.4795" x2="304.4795" y1="-390.0195" y2="-406.0195">
+<stop offset="0" style="stop-color:#D1DDAF"/>
+<stop offset="0.3394" style="stop-color:#5B9841"/>
+<stop offset="0.6182" style="stop-color:#3D863A"/>
+<stop offset="1" style="stop-color:#679942"/>
</linearGradient>
-<path d="M15,8c3.859,0,7,3.141,7,7s-3.141,7-7,7-7-3.141-7-7c0-3.86,3.14-7,7-7m0-1c-4.411,0-8,3.59-8,8s3.589,8,8,8,8-3.59,8-8-3.59-8-8-8z" fill="url(#SVGID_4_)"/>
+<path d="M15,8c3.859,0,7,3.141,7,7c0,3.859-3.141,7-7,7c-3.859,0-7-3.141-7-7C8,11.141,11.14,8,15,8 M15,7 c-4.411,0-8,3.59-8,8s3.589,8,8,8s8-3.59,8-8S19.41,7,15,7z" fill="url(#SVGID_4_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill-opacity="0.6" stroke-opacity="0.6"/>
<path d="M15,29c-7.721,0-14-6.28-14-14s6.279-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
@@ -12,4 +13,5 @@
<stop offset="1" stop-color="#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15-6.73,15-15,15z" fill="#B4B4B4"/>
-<path d="M15,28c-7.169,0-13-5.83-13-13s5.831-13,13-13,13,5.832,13,13-5.83,13-13,13z" fill="#DCDCDC"/>
-</svg>
\ No newline at end of file
+<path d="M15,30C6.729,30,0,23.271,0,15S6.729,0,15,0s15,6.729,15,15S23.271,30,15,30L15,30z" fill="#B4B4B4"/>
+<path d="M15,28C7.831,28,2,22.168,2,15S7.831,2,15,2s13,5.832,13,13S22.169,28,15,28L15,28z" fill="#DCDCDC"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_radio_unselected_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M15,30c-8.271,0-15-6.73-15-15s6.729-15,15-15,15,6.729,15,15c0,8.27-6.73,15-15,15z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.5" x2="304.5" y1="-384.2" y2="-412.5">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<g>
+<path d="M15,30C6.729,30,0,23.27,0,15C0,6.73,6.729,0,15,0c8.271,0,15,6.729,15,15C30,23.271,23.27,30,15,30z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.4795" x2="304.4795" y1="-384.2393" y2="-412.4603">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14c7.721,0,14,6.28,14,14s-6.28,14-14,14z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.5" x2="304.5" y1="-386.2" y2="-410.4">
-<stop offset="0" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M15,29C7.28,29,1,22.721,1,15C1,7.28,7.28,1,15,1c7.721,0,14,6.28,14,14C29,22.721,22.721,29,15,29z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.4795" x2="304.4795" y1="-386.209" y2="-410.401">
+<stop offset="0" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M15,27c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)"/>
-<path d="M15,3c-6.617,0-12,5.383-12,12,0,6.238,4.785,11.37,10.88,11.94-5.543-0.56-9.88-5.25-9.88-10.94,0-6.065,4.935-11,11-11,6.064,0,11,4.935,11,11,0,5.688-4.337,10.38-9.877,10.94,6.1-0.569,10.88-5.699,10.88-11.94,0-6.617-5.38-12-12-12z" fill-opacity="0.1"/>
-<path d="M15,4c6.447,0,11.71,5.115,11.98,11.5,0-0.17,0.02-0.33,0.02-0.5,0-6.617-5.383-12-12-12s-12,5.383-12,12c0,0.169,0.019,0.333,0.025,0.5,0.265-6.385,5.527-11.5,11.98-11.5z" fill-opacity="0.1"/>
+<path d="M15,27C8.383,27,3,21.62,3,15S8.383,3,15,3s12,5.383,12,12S21.62,27,15,27z" fill="url(#SVGID_2_)"/>
+<path d="M15,3C8.383,3,3,8.383,3,15c0,6.238,4.785,11.37,10.88,11.939C8.337,26.38,4,21.689,4,16 C4,9.935,8.935,5,15,5c6.064,0,11,4.935,11,11c0,5.688-4.337,10.38-9.877,10.939c6.1-0.569,10.88-5.699,10.88-11.939 c0-6.617-5.38-12-12-12H15z" fill-opacity="0.1"/>
+<path d="M15,4c6.447,0,11.71,5.115,11.98,11.5c0-0.17,0.02-0.33,0.02-0.5c0-6.617-5.383-12-12-12S3,8.383,3,15 c0,0.169,0.019,0.333,0.025,0.5C3.29,9.115,8.552,4,15.005,4H15z" fill-opacity="0.1"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reboot.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reboot.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#C39072"/>
-<stop offset="0.7939" stop-color="#88444B"/>
-<stop offset="1" stop-color="#AF7563"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29L15,29 z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#C39072"/>
+<stop offset="0.7939" style="stop-color:#88444B"/>
+<stop offset="1" style="stop-color:#AF7563"/>
</linearGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3c7.011,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.169,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M20.63,8.973c-0.419-0.315-0.917-0.481-1.439-0.481-0.691,0-1.345,0.313-1.796,0.83v-1.926c0.01-1.322-1.07-2.396-2.39-2.396s-2.396,1.074-2.396,2.396v1.924c-0.452-0.516-1.105-0.83-1.796-0.83-0.522,0-1.021,0.166-1.438,0.48-2.385,1.79-3.752,4.525-3.752,7.505,0,5.173,4.209,9.382,9.383,9.382s9.383-4.209,9.383-9.382c0.01-2.98-1.35-5.72-3.74-7.507zm-5.63,12.09c-2.529,0-4.587-2.059-4.587-4.59,0-1.457,0.669-2.796,1.834-3.672,0.132-0.099,0.25-0.209,0.356-0.329v2.255c0,1.322,1.075,2.398,2.396,2.398s2.396-1.076,2.396-2.398v-2.254c0.106,0.119,0.225,0.229,0.355,0.327,1.167,0.878,1.836,2.217,1.836,3.673-0.01,2.54-2.07,4.59-4.6,4.59z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="8.819" y2="38.46">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5273" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDD1CF"/>
+<path d="M15,3c7.011,0,12.71,5.555,12.975,12.5C27.981,15.332,28,15.169,28,15c0-7.18-5.82-13-13-13 S2,7.82,2,15c0,0.169,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.632,8.973c-0.419-0.315-0.917-0.481-1.439-0.481c-0.691,0-1.345,0.313-1.796,0.83V7.396 C17.396,6.074,16.321,5,15,5s-2.396,1.074-2.396,2.396V9.32c-0.452-0.516-1.105-0.83-1.796-0.83c-0.522,0-1.021,0.166-1.438,0.48 c-2.385,1.79-3.752,4.525-3.752,7.505c0,5.173,4.209,9.382,9.383,9.382s9.383-4.209,9.383-9.382 C24.383,13.497,23.016,10.762,20.632,8.973z M15,21.065c-2.529,0-4.587-2.059-4.587-4.59c0-1.457,0.669-2.796,1.834-3.672 c0.132-0.099,0.25-0.209,0.356-0.329v2.255c0,1.322,1.075,2.398,2.396,2.398s2.396-1.076,2.396-2.398v-2.254 c0.106,0.119,0.225,0.229,0.355,0.327c1.167,0.878,1.836,2.217,1.836,3.673C19.588,19.007,17.529,21.065,15,21.065z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="8.8188" y2="38.4606">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDD1CF"/>
</linearGradient>
-<path d="M20.03,9.343c-0.616-0.464-1.492-0.34-1.955,0.277-0.463,0.616-0.341,1.494,0.278,1.955,1.42,1.068,2.234,2.698,2.234,4.472,0,3.083-2.507,5.59-5.588,5.59s-5.587-2.507-5.587-5.59c0-1.773,0.814-3.404,2.234-4.473,0.618-0.463,0.74-1.338,0.277-1.955-0.463-0.616-1.339-0.74-1.955-0.277-2.131,1.6-3.353,4.045-3.353,6.705,0,4.623,3.762,8.382,8.383,8.382s8.383-3.759,8.383-8.382c0-2.66-1.22-5.11-3.35-6.707z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="5.411" y2="24.95">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="0.5273" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#CDD1CF"/>
+<path d="M20.03,9.343c-0.616-0.464-1.492-0.34-1.955,0.277c-0.463,0.616-0.341,1.494,0.278,1.955 c1.42,1.068,2.234,2.698,2.234,4.472c0,3.083-2.507,5.59-5.588,5.59s-5.587-2.507-5.587-5.59c0-1.773,0.814-3.404,2.234-4.473 c0.618-0.463,0.74-1.338,0.277-1.955c-0.463-0.616-1.339-0.74-1.955-0.277c-2.131,1.6-3.353,4.045-3.353,6.705 c0,4.623,3.762,8.382,8.383,8.382s8.383-3.759,8.383-8.382C23.383,13.387,22.161,10.942,20.03,9.343z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.4111" y2="24.9469">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="0.5273" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#CDD1CF"/>
</linearGradient>
-<path d="M15,15.7c0.771,0,1.396-0.626,1.396-1.398v-7.333c0-0.772-0.625-1.396-1.396-1.396s-1.396,0.623-1.396,1.396v7.334c0,0.77,0.63,1.4,1.4,1.4z" fill="url(#SVGID_3_)"/>
-</svg>
\ No newline at end of file
+<path d="M15,15.699c0.771,0,1.396-0.626,1.396-1.398V6.967c0-0.772-0.625-1.396-1.396-1.396 s-1.396,0.623-1.396,1.396v7.334C13.604,15.073,14.229,15.699,15,15.699z" fill="url(#SVGID_3_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_received.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_received.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="2.865,15,10,15,10,1,20,1,20,15,27.14,15,15,29.56" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.854" y2="28">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="0.7576" stop-color="#367E3C"/>
-<stop offset="1" stop-color="#97AF87"/>
+<polygon fill-opacity="0.6" points="2.865,15 10,15 10,1 20,1 20,15 27.135,15 15,29.563 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="1.8545" y2="28.0011">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="0.7576" style="stop-color:#367E3C"/>
+<stop offset="1" style="stop-color:#97AF87"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="19,16,19,2,11,2,11,16,5,16,15,28,25,16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2.869" y2="26.44">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<polygon fill="url(#SVGID_1_)" points="19,16 19,2 11,2 11,16 5,16 15,28 25,16 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.8687" y2="26.4384">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="7.135,17,12,17,12,3,18,3,18,17,22.86,17,15,26.44"/>
+<polygon fill="url(#SVGID_2_)" points="7.135,17 12,17 12,3 18,3 18,17 22.865,17 15,26.438 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_record.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_record.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill-opacity="0.6"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15,3.182c6.98,0,12.66,5.505,12.97,12.41,0.01-0.2,0.03-0.39,0.03-0.59,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.199,0.021,0.394,0.03,0.591,0.312-6.903,5.99-12.41,12.97-12.41z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,3.182c6.98,0,12.659,5.505,12.97,12.409C27.979,15.394,28,15.199,28,15 c0-7.18-5.82-13-13-13S2,7.82,2,15c0,0.199,0.021,0.394,0.03,0.591C2.342,8.687,8.02,3.182,15,3.182z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2" y2="28">
-<stop offset="0" stop-color="#A8715F"/>
-<stop offset="1" stop-color="#974441"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#A8715F"/>
+<stop offset="1" style="stop-color:#974441"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_refresh.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_refresh.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M27.8,26.38l-4.348-4.349c1.65-1.97,2.55-4.43,2.55-7.03,0-5.405-4.033-10.08-9.382-10.87l-1.033-0.153,0.183-1.766-13.57,1.404,4.348,4.348c-1.651,1.974-2.549,4.437-2.549,7.037,0,5.405,4.033,10.08,9.382,10.87l1.033,0.153-0.183,1.766,13.57-1.41zm-13.8-5.47c-2.9-0.49-5-2.97-5-5.91,0-1.251,0.395-2.45,1.125-3.462l4.239,4.241,0.708-6.845,0.925,0.156c2.9,0.488,5,2.969,5,5.909,0,1.256-0.392,2.458-1.117,3.469l-4.247-4.247-0.708,6.844-0.92-0.15z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.045" x2="24.92" y1="5.455" y2="26.33">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M27.799,26.385l-4.348-4.349C25.102,20.063,26,17.6,26,15c0-5.405-4.033-10.077-9.382-10.869l-1.033-0.153 l0.183-1.766L2.201,3.615l4.348,4.348C4.898,9.937,4,12.4,4,15c0,5.405,4.033,10.077,9.382,10.869l1.033,0.153l-0.183,1.766 L27.799,26.385z M14.004,20.909C11.104,20.421,9,17.936,9,15c0-1.251,0.395-2.45,1.125-3.462l4.239,4.241l0.708-6.845l0.925,0.156 C18.896,9.579,21,12.063,21,15c0,1.256-0.392,2.458-1.117,3.469l-4.247-4.247l-0.708,6.844L14.004,20.909z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="4.0454" x2="24.9205" y1="5.4551" y2="26.3301">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M8,15c0-1.931,0.799-3.666,2.068-4.932l3.518,3.518,1.061-10.25-10.26,1.054,3.538,3.538c-1.81,1.809-2.932,4.308-2.932,7.068,0,5.021,3.705,9.166,8.528,9.88l0.309-2.984c-3.31-0.56-5.84-3.44-5.84-6.9z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.456" x2="26.33" y1="4.046" y2="24.92">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M8,15c0-1.931,0.799-3.666,2.068-4.932l3.518,3.518l1.061-10.253L4.394,4.394l3.538,3.538 C6.122,9.741,5,12.239,5,15c0,5.021,3.705,9.166,8.528,9.88l0.309-2.984C10.53,21.338,8,18.462,8,15z" fill="url(#SVGID_1_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="5.4556" x2="26.3306" y1="4.0459" y2="24.921">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M16.41,16.41l-1.061,10.25,10.25-1.061-3.538-3.539c1.82-1.8,2.94-4.3,2.94-7.06,0-5.021-3.705-9.166-8.528-9.88l-0.309,2.984c3.31,0.557,5.84,3.436,5.84,6.896,0,1.93-0.793,3.673-2.061,4.939l-3.53-3.53z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.51,4.681,14.65,3.333,4.394,4.394,5.602,5.602" stroke-opacity="0.4"/>
-<path d="M8.033,15.68c-0.019,0.21-0.033,0.43-0.033,0.65,0,3.414,2.463,6.254,5.702,6.866l0.135-1.304c-3.09-0.52-5.502-3.07-5.807-6.22z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M19.94,21.27c1.27-1.26,2.06-3.01,2.06-4.94,0-0.228-0.012-0.452-0.033-0.674-0.158,1.665-0.905,3.16-2.027,4.28l-3.525-3.525-0.123,1.193,3.64,3.66z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M7.297,8.63c-1.434,1.73-2.297,3.95-2.297,6.37,0,0.235,0.016,0.467,0.032,0.698,0.158-2.506,1.23-4.765,2.899-6.434l-0.634-0.636z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M22.7,22.7c-0.201,0.243-0.412,0.476-0.635,0.698l2.33,2.331,1.208-0.125-2.9-2.9z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M16.47,6.453c4.597,0.681,8.171,4.479,8.496,9.182,0.01-0.22,0.03-0.43,0.03-0.64,0-5.021-3.705-9.166-8.528-9.88l-0.135,1.305,0.13,0.028z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<path d="M16.414,16.414l-1.061,10.253l10.253-1.061l-3.538-3.539C23.878,20.259,25,17.762,25,15 c0-5.021-3.705-9.166-8.528-9.88l-0.309,2.984C19.47,8.661,22,11.538,22,15c0,1.93-0.793,3.673-2.061,4.939L16.414,16.414z" fill="url(#SVGID_2_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.507,4.681 14.646,3.333 4.394,4.394 5.602,5.602 " stroke-opacity="0.4"/>
+<path d="M8.033,15.676C8.014,15.893,8,16.111,8,16.333c0,3.414,2.463,6.254,5.702,6.866l0.135-1.304 C10.748,21.375,8.338,18.83,8.033,15.676z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19.939,21.272C21.207,20.006,22,18.263,22,16.333c0-0.228-0.012-0.452-0.033-0.674 c-0.158,1.665-0.905,3.16-2.027,4.28l-3.525-3.525l-0.123,1.193L19.939,21.272z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7.297,8.63C5.863,10.359,5,12.578,5,15c0,0.235,0.016,0.467,0.032,0.698 c0.158-2.506,1.23-4.765,2.899-6.434L7.297,8.63z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.703,22.702c-0.201,0.243-0.412,0.476-0.635,0.698l2.33,2.331l1.208-0.125L22.703,22.702z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M16.472,6.453c4.597,0.681,8.171,4.479,8.496,9.182C24.981,15.424,25,15.214,25,15 c0-5.021-3.705-9.166-8.528-9.88l-0.135,1.305L16.472,6.453z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reminder.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reminder.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,39 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M4.97,9.928c1.073-1.074,2.104-1.602,3.937-1.109l3.82-3.82c2.777-2.777,6.931-3.346,10.28-1.727,1.171-0.836,2.809-0.737,3.858,0.313,1.051,1.051,1.149,2.688,0.313,3.859,1.619,3.353,1.05,7.506-1.728,10.28l-3.819,3.82c0.493,1.833-0.035,2.863-1.109,3.937l-2.143,2.143-4.456-4.456c-1.745,0.771-3.913,0.33-5.443-1.201-1.53-1.529-1.972-3.697-1.2-5.442l-4.45-4.45,2.143-2.142z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1608" x2="-1605" y1="-670.5" y2="-670.5">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M4.97,9.928c1.073-1.074,2.104-1.602,3.937-1.109l3.82-3.82c2.777-2.777,6.931-3.346,10.283-1.727 c1.171-0.836,2.809-0.737,3.858,0.313c1.051,1.051,1.149,2.688,0.313,3.859c1.619,3.353,1.05,7.506-1.728,10.283l-3.819,3.82 c0.493,1.833-0.035,2.863-1.109,3.937l-2.143,2.143l-4.456-4.456c-1.745,0.771-3.913,0.33-5.443-1.201 c-1.53-1.529-1.972-3.697-1.2-5.442L2.827,12.07L4.97,9.928z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1608.3745" x2="-1605.019" y1="-670.4932" y2="-670.4932">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M22.63,4.998l0.707-0.707c0.777-0.777,2.051-0.777,2.828,0,0.778,0.779,0.777,2.051,0,2.829l-0.707,0.707-2.83-2.829z" fill="url(#SVGID_1_)"/>
-<path d="M23.33,4.291c0.205-0.205,0.445-0.352,0.702-0.449,0.502,0.33,0.978,0.716,1.419,1.156,0.441,0.441,0.826,0.918,1.157,1.42-0.098,0.256-0.245,0.497-0.45,0.702l-0.707,0.707-2.828-2.829,0.71-0.707z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1614" x2="-1600" y1="-662" y2="-662">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M22.626,4.998l0.707-0.707c0.777-0.777,2.051-0.777,2.828,0c0.778,0.779,0.777,2.051,0,2.829 l-0.707,0.707L22.626,4.998z" fill="url(#SVGID_1_)"/>
+<path d="M23.333,4.291c0.205-0.205,0.445-0.352,0.702-0.449c0.502,0.33,0.978,0.716,1.419,1.156 c0.441,0.441,0.826,0.918,1.157,1.42c-0.098,0.256-0.245,0.497-0.45,0.702l-0.707,0.707l-2.828-2.829L23.333,4.291z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-1613.5698" x2="-1600.1477" y1="-661.9927" y2="-661.9927">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M19.09,22.68l5.657-5.656c3.119-3.119,3.119-8.195,0-11.31s-8.194-3.119-11.31,0l-5.657,5.658,11.31,11.31z" fill="url(#SVGID_2_)"/>
-<path d="M24.75,5.705c3.119,3.119,3.119,8.195,0,11.31l-0.707,0.707c3.119-3.119,3.119-8.194,0-11.31s-8.194-3.119-11.31,0l0.707-0.708c3.11-3.126,8.19-3.126,11.31-0.007z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1615" x2="-1599" y1="-653.5" y2="-653.5">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#BCA162"/>
+<path d="M19.09,22.676l5.657-5.656c3.119-3.119,3.119-8.195,0-11.314s-8.194-3.119-11.313,0l-5.657,5.658 L19.09,22.676z" fill="url(#SVGID_2_)"/>
+<path d="M24.747,5.705c3.119,3.119,3.119,8.195,0,11.314l-0.707,0.707 c3.119-3.119,3.119-8.194,0-11.313s-8.194-3.119-11.313,0l0.707-0.708C16.553,2.586,21.628,2.586,24.747,5.705z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-1615.3008" x2="-1598.524" y1="-653.4927" y2="-653.4927">
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M9.19,9.949l11.31,11.31c0.685,1.913,0.191,2.637-0.687,3.515l-1.436,1.436-14.13-14.15,1.436-1.436c0.878-0.874,1.601-1.366,3.513-0.681z" fill="url(#SVGID_3_)"/>
-<rect fill="#5E2D29" fill-opacity="0.2" height="1" stroke-opacity="0.2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 15.1665 36.7847)" width="16" x="7.201" y="14.75"/>
-<rect fill="#522523" fill-opacity="0.1" height="1" stroke-opacity="0.1" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 6.6295 40.3212)" width="20" x="1.666" y="18.29"/>
-<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1607" x2="-1607" y1="-648" y2="-650.9">
-<stop offset="0" stop-color="#AB704A"/>
-<stop offset="1" stop-color="#A75648"/>
+<path d="M9.19,9.949l11.314,11.313c0.685,1.913,0.191,2.637-0.687,3.515l-1.436,1.436L4.241,12.07 l1.436-1.436C6.555,9.756,7.278,9.264,9.19,9.949z" fill="url(#SVGID_3_)"/>
+<rect fill="#5E2D29" fill-opacity="0.2" height="1" stroke-opacity="0.2" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 15.1665 36.7847)" width="16" x="7.201" y="14.752"/>
+<rect fill="#522523" fill-opacity="0.1" height="1" stroke-opacity="0.1" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 6.6295 40.3212)" width="19.999" x="1.666" y="18.288"/>
+<linearGradient gradientTransform="matrix(-0.7071 -0.7071 -0.7071 0.7071 -1585.0613 -656.5991)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1606.6431" x2="-1606.6431" y1="-647.9927" y2="-650.8915">
+<stop offset="0" style="stop-color:#AB704A"/>
+<stop offset="1" style="stop-color:#A75648"/>
</linearGradient>
-<path d="M14.1,21.93c-1.396,1.001-3.485,0.757-4.909-0.667-1.423-1.424-1.667-3.514-0.666-4.908l5.575,5.58z" fill="url(#SVGID_4_)"/>
-<path d="M8.071,17.31c0.101-0.342,0.243-0.668,0.453-0.961l5.575,5.575c-0.293,0.21-0.62,0.353-0.961,0.453l-5.069-5.06z" fill="#522523" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M20.82,22.99l-13.36-13.36c0.456-0.035,1.008,0.054,1.728,0.314l11.31,11.31c0.26,0.72,0.35,1.28,0.32,1.73z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M14.1,21.929c-1.396,1.001-3.485,0.757-4.909-0.667c-1.423-1.424-1.667-3.514-0.666-4.908 L14.1,21.929z" fill="url(#SVGID_4_)"/>
+<path d="M8.071,17.314c0.101-0.342,0.243-0.668,0.453-0.961l5.575,5.575 c-0.293,0.21-0.62,0.353-0.961,0.453L8.071,17.314z" fill="#522523" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.818,22.99L7.462,9.635C7.918,9.6,8.47,9.689,9.19,9.949l11.314,11.313 C20.763,21.983,20.853,22.535,20.818,22.99z" fill="#EFEDD9" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30" x="0.453"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.05,28.78c-3.378,0-6.554-1.315-8.942-3.704-4.692-4.693-4.918-12.19-0.68-17.15l-4.923-4.924,15.26-1.578-1.578,15.26-4.847-4.847c-0.931,1.231-1.434,2.727-1.434,4.302,0,1.913,0.743,3.709,2.092,5.058,1.348,1.348,3.145,2.091,5.058,2.091s3.709-0.743,5.058-2.091c2.788-2.789,2.788-7.327,0-10.12l-0.707-0.707,3.884-3.887,0.707,0.708c4.931,4.931,4.931,12.96,0,17.89-2.39,2.39-5.56,3.7-8.94,3.7z" fill-opacity="0.6"/>
-<path d="M23.28,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.53-3.179,3.178-8.352,3.178-11.53,0-3.18-3.179-3.18-8.352,0-11.53l4.117,4.117,1.235-11.94-11.94,1.234,4.117,4.117c-4.549,4.55-4.549,11.92,0,16.47,4.549,4.548,11.92,4.548,16.47,0,4.55-4.55,4.55-11.92,0-16.47z" fill="url(#SVGID_1_)"/>
-<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174,0.22-2.649,1.338-5.237,3.365-7.266l-0.909-0.909z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.28,9.843c2.027,2.028,3.146,4.616,3.366,7.266,0.272-3.296-0.844-6.686-3.366-9.207l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059l1.59-1.597z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M6.966,17.11c-0.284,2.397,0.483,4.898,2.32,6.735,3.178,3.178,8.351,3.178,11.53,0,1.836-1.837,2.604-4.338,2.319-6.735-0.21,1.753-0.978,3.452-2.319,4.794-3.179,3.178-8.352,3.178-11.53,0-1.347-1.33-2.115-3.03-2.324-4.78z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.44,4.511,14.64,2.549,2.697,3.784,4.456,5.544" stroke-opacity="0.4"/>
+<path d="M15.05,28.784c-3.378,0-6.554-1.315-8.942-3.704c-4.692-4.693-4.918-12.188-0.68-17.151L0.505,3.006 L15.76,1.428l-1.578,15.255l-4.847-4.847c-0.931,1.231-1.434,2.727-1.434,4.302c0,1.913,0.743,3.709,2.092,5.058 c1.348,1.348,3.145,2.091,5.058,2.091s3.709-0.743,5.058-2.091c2.788-2.789,2.788-7.327,0-10.115l-0.707-0.707l3.884-3.887 l0.707,0.708c4.931,4.931,4.931,12.955,0,17.886C21.604,27.469,18.428,28.784,15.05,28.784L15.05,28.784z" fill-opacity="0.6"/>
+<path d="M23.285,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.529c-3.179,3.178-8.352,3.178-11.529,0 c-3.18-3.179-3.18-8.352,0-11.529l4.117,4.117l1.235-11.941L2.697,3.784l4.117,4.117c-4.549,4.55-4.549,11.922,0,16.472 c4.549,4.548,11.922,4.548,16.471,0C27.834,19.823,27.834,12.451,23.285,7.901z" fill="url(#SVGID_1_)"/>
+<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174c0.22-2.649,1.338-5.237,3.365-7.266 L5.905,8.935z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.285,9.843c2.027,2.028,3.146,4.616,3.366,7.266c0.272-3.296-0.844-6.686-3.366-9.207 l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059L23.285,9.843z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.966,17.108c-0.284,2.397,0.483,4.898,2.32,6.735c3.178,3.178,8.351,3.178,11.529,0 c1.836-1.837,2.604-4.338,2.319-6.735c-0.21,1.753-0.978,3.452-2.319,4.794c-3.179,3.178-8.352,3.178-11.529,0 C7.943,20.561,7.175,18.861,6.966,17.108z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.436,4.511 14.639,2.549 2.697,3.784 4.456,5.544 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="2.698" x2="23.29" y1="3.785" y2="24.37">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="2.6978" x2="23.286" y1="3.7852" y2="24.3734">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat_exception.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_repeat_exception.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.05,28.78c-3.378,0-6.554-1.315-8.942-3.704-4.692-4.693-4.918-12.19-0.68-17.15l-4.923-4.924,15.26-1.578-1.578,15.26-4.847-4.847c-0.931,1.231-1.434,2.727-1.434,4.302,0,1.913,0.743,3.709,2.092,5.058,1.348,1.348,3.145,2.091,5.058,2.091s3.709-0.743,5.058-2.091c2.788-2.789,2.788-7.327,0-10.12l-0.707-0.707,3.884-3.887,0.707,0.708c4.931,4.931,4.931,12.96,0,17.89-2.39,2.39-5.56,3.7-8.94,3.7z" fill-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="2.698" x2="23.29" y1="3.785" y2="24.37">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M15.05,28.784c-3.378,0-6.554-1.315-8.942-3.704c-4.692-4.693-4.918-12.188-0.68-17.151L0.505,3.006 L15.76,1.428l-1.578,15.255l-4.847-4.847c-0.931,1.231-1.434,2.727-1.434,4.302c0,1.913,0.743,3.709,2.092,5.058 c1.348,1.348,3.145,2.091,5.058,2.091s3.709-0.743,5.058-2.091c2.788-2.789,2.788-7.327,0-10.115l-0.707-0.707l3.884-3.887 l0.707,0.708c4.931,4.931,4.931,12.955,0,17.886C21.604,27.469,18.428,28.784,15.05,28.784L15.05,28.784z" fill-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="2.6978" x2="23.286" y1="3.7852" y2="24.3734">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M23.28,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.53-3.179,3.178-8.352,3.178-11.53,0-3.18-3.179-3.18-8.352,0-11.53l4.117,4.117,1.235-11.94-11.94,1.234,4.117,4.117c-4.549,4.55-4.549,11.92,0,16.47,4.549,4.548,11.92,4.548,16.47,0,4.55-4.55,4.55-11.92,0-16.47z" fill="url(#SVGID_1_)"/>
-<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174,0.22-2.649,1.338-5.237,3.365-7.266l-0.909-0.909z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.28,9.843c2.027,2.028,3.146,4.616,3.366,7.266,0.272-3.296-0.844-6.686-3.366-9.207l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059l1.59-1.597z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M6.966,17.11c-0.284,2.397,0.483,4.898,2.32,6.735,3.178,3.178,8.351,3.178,11.53,0,1.836-1.837,2.604-4.338,2.319-6.735-0.21,1.753-0.978,3.452-2.319,4.794-3.179,3.178-8.352,3.178-11.53,0-1.347-1.33-2.115-3.03-2.324-4.78z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.44,4.511,14.64,2.549,2.697,3.784,4.456,5.544" stroke-opacity="0.4"/>
+<path d="M23.285,7.901l-2.47,2.472c3.178,3.178,3.178,8.351,0,11.529c-3.179,3.178-8.352,3.178-11.529,0 c-3.18-3.179-3.18-8.352,0-11.529l4.117,4.117l1.235-11.941L2.697,3.784l4.117,4.117c-4.549,4.55-4.549,11.922,0,16.472 c4.549,4.548,11.922,4.548,16.471,0C27.834,19.823,27.834,12.451,23.285,7.901z" fill="url(#SVGID_1_)"/>
+<path d="M5.905,8.935c-1.874,2.376-2.694,5.308-2.456,8.174c0.22-2.649,1.338-5.237,3.365-7.266 L5.905,8.935z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.285,9.843c2.027,2.028,3.146,4.616,3.366,7.266c0.272-3.296-0.844-6.686-3.366-9.207 l-2.47,2.472c0.331,0.331,0.62,0.689,0.883,1.059L23.285,9.843z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.966,17.108c-0.284,2.397,0.483,4.898,2.32,6.735c3.178,3.178,8.351,3.178,11.529,0 c1.836-1.837,2.604-4.338,2.319-6.735c-0.21,1.753-0.978,3.452-2.319,4.794c-3.179,3.178-8.352,3.178-11.529,0 C7.943,20.561,7.175,18.861,6.966,17.108z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="14.436,4.511 14.639,2.549 2.697,3.784 4.456,5.544 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -23,4 +26,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="0.438,15,15,2.865,15,10,29,10,29,20,15,20,15,27.14"/>
-<polygon fill="url(#SVGID_1_)" points="14,19,28,19,28,11,14,11,14,5,2,15,14,25"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="14,6.135,14,5,2,15,2.681,15.57" stroke-opacity="0.5"/>
+<polygon fill-opacity="0.6" points="0.438,15 15,2.865 15,10 29,10 29,20 15,20 15,27.135 "/>
+<polygon fill="url(#SVGID_1_)" points="14,19 28,19 28,11 14,11 14,5 2,15 14,25 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="14,6.135 14,5 2,15 2.681,15.567 " stroke-opacity="0.5"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="1.135" stroke-opacity="0.5" width="14" x="14" y="11"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="4.885" y2="25.26">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="4.8848" y2="25.2603">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply_all.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_reply_all.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill="none" height="30" width="30"/>
<polygon fill-opacity="0.6" points="17.81,7.626,17.81,0.938,4.161,12.31,6.692,14.42,1.348,18.88,15,30.25,15,23.56,28.12,23.56,28.12,15.13,28.12,14.19,28.12,7.626" stroke-opacity="0.6"/>
@@ -17,4 +18,5 @@
<polygon fill="#FFFFFF" fill-opacity="0.5" points="14.06,10.56,14.06,9.501,2.813,18.88,3.451,19.41" stroke-opacity="0.5"/>
<rect fill="#FFFFFF" fill-opacity="0.5" height="1.064" stroke-opacity="0.5" width="13.12" x="14.06" y="15.13"/>
<rect fill-opacity="0.2" height="0.938" stroke-opacity="0.2" width="12.19" x="15" y="13.25"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_rgb.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_rgb.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,13 +1,15 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,15c-3.859,0-7-3.141-7-7s3.141-7,7-7c3.859,0,7,3.141,7,7s-3.14,7-7,7z" fill-opacity="0.6"/>
-<path d="M15,14c-3.309,0-6-2.691-6-6s2.691-6,6-6c3.31,0,6,2.691,6,6s-2.69,6-6,6z" fill="#B34D4D"/>
-<path d="M8,28c-3.859,0-7-3.141-7-7s3.141-7,7-7,7,3.141,7,7-3.14,7-7,7z" fill-opacity="0.6"/>
+<path d="M15,15c-3.859,0-7-3.141-7-7s3.141-7,7-7c3.859,0,7,3.141,7,7S18.859,15,15,15L15,15z" fill-opacity="0.6"/>
+<path d="M15,14c-3.309,0-6-2.691-6-6s2.691-6,6-6c3.31,0,6,2.691,6,6S18.311,14,15,14L15,14z" fill="#B34D4D"/>
+<path d="M8,28c-3.859,0-7-3.141-7-7s3.141-7,7-7s7,3.141,7,7S11.86,28,8,28L8,28z" fill-opacity="0.6"/>
<circle cx="8" cy="21" fill="#4DB34D" r="6"/>
-<path d="M22,28c-3.859,0-7-3.141-7-7s3.14-7,7-7,7,3.141,7,7-3.14,7-7,7z" fill-opacity="0.6"/>
+<path d="M22,28c-3.859,0-7-3.141-7-7s3.14-7,7-7s7,3.141,7,7S25.859,28,22,28L22,28z" fill-opacity="0.6"/>
<circle cx="22" cy="21" fill="#4D4DB3" r="6"/>
<rect fill="none" height="30" width="30" x="0"/>
<rect fill="none" height="30" width="30" x="0"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" fill-opacity="0.5" height="30" stroke-opacity="0.5" width="30"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
<stop offset="0" stop-color="#E1E1E1"/>
@@ -18,4 +19,5 @@
</linearGradient>
<polygon fill="url(#SVGID_2_)" points="24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,12.54,22.22,12.54,22.21,12.55,22.22"/>
<polygon fill="#FFFFFF" fill-opacity="0.4" points="8.303,13.63,12.54,17.88,21.7,8.724,23.87,10.9,24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,6.127,15.81" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="#B4B4B4" height="30" width="30"/>
-<polyline fill="#DCDCDC" points="28,11,28,28,2,28,2,2,28,2,28,11"/>
-<polygon fill="#B4B4B4" points="24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,12.54,22.22,12.54,22.21,12.55,22.22"/>
-</svg>
\ No newline at end of file
+<polyline fill="#DCDCDC" points="28,11 28,28 2,28 2,2 28,2 28,11 "/>
+<polygon fill="#B4B4B4" points="24.371,10.399 21.695,7.724 12.545,16.876 8.303,12.634 5.627,15.31 12.54,22.22 12.545,22.212 12.551,22.22 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,25 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.5" x2="304.5" y1="-384.2" y2="-412.5">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.4795" x2="304.4795" y1="-384.2393" y2="-412.4603">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.5" x2="304.5" y1="-386.2" y2="-410.4">
-<stop offset="0" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.4795" x2="304.4795" y1="-386.209" y2="-410.401">
+<stop offset="0" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="24" width="24" x="3" y="3"/>
-<path d="M3,3v24h2v-20c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v20h2v-24h-24z" fill-opacity="0.05"/>
-<path d="M3,3v24h1v-21c0-0.55,0.45-1,1-1h20c0.55,0,1,0.45,1,1v21h1v-24h-24z" fill-opacity="0.1"/>
+<path d="M3,3v24h2V7c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v20h2V3H3z" fill-opacity="0.05"/>
+<path d="M3,3v24h1V6c0-0.55,0.45-1,1-1h20c0.55,0,1,0.45,1,1v21h1V3H3z" fill-opacity="0.1"/>
<rect fill-opacity="0.1" height="1" width="24" x="3" y="3"/>
-<polygon fill-opacity="0.6" points="11.89,22.98,4.213,15.31,8.303,11.22,12.54,15.46,21.7,6.31,25.79,10.4,12.49,23.69"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="304.5" x2="304.5" y1="-390" y2="-406.7">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<polygon fill-opacity="0.6" points="11.89,22.98 4.213,15.31 8.303,11.22 12.54,15.46 21.7,6.31 25.79,10.4 12.49,23.689 "/>
+<linearGradient gradientTransform="matrix(1 0 0 -1 -289.4805 -383.0195)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="304.4785" x2="304.4785" y1="-389.9922" y2="-406.6607">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<polygon fill="url(#SVGID_3_)" points="24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,12.54,22.22,12.54,22.21,12.55,22.22"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="8.303,13.63,12.54,17.88,21.7,8.724,23.87,10.9,24.37,10.4,21.7,7.724,12.54,16.88,8.303,12.63,5.627,15.31,6.127,15.81"/>
-</svg>
\ No newline at end of file
+<polygon fill="url(#SVGID_3_)" points="24.37,10.4 21.7,7.724 12.54,16.88 8.303,12.63 5.627,15.31 12.54,22.221 12.54,22.21 12.55,22.221 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="8.303,13.63 12.54,17.88 21.7,8.724 23.87,10.9 24.37,10.4 21.7,7.724 12.54,16.88 8.303,12.63 5.627,15.31 6.127,15.811 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_partial.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_selected_partial.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="1.219" y2="29.44">
<stop offset="0" stop-color="#E1E1E1"/>
<stop offset="1" stop-color="#FFFFFF"/>
@@ -23,4 +24,5 @@
<stop offset="1" stop-color="#679942"/>
</linearGradient>
<path d="M22,8v14h-14v-14h14m1-1h-16v16h16v-16z" fill="url(#SVGID_3_)"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sent.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sent.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="10,29,10,15,2.865,15,15,0.438,27.14,15,20,15,20,29" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -289.4805 252.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.5" x2="304.5" y1="-251.1" y2="-225">
-<stop offset="0" stop-color="#65AEBD"/>
-<stop offset="1" stop-color="#526085"/>
+<polygon fill-opacity="0.6" points="10,29 10,15 2.865,15 15,0.438 27.135,15 20,15 20,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -289.4805 252.9805)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="304.4805" x2="304.4805" y1="-251.1265" y2="-224.9803">
+<stop offset="0" style="stop-color:#65AEBD"/>
+<stop offset="1" style="stop-color:#526085"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="19,14,19,28,11,28,11,14,5,14,15,2,25,14"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -289.4805 252.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.5" x2="304.5" y1="-249.5" y2="-226">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<polygon fill="url(#SVGID_1_)" points="19,14 19,28 11,28 11,14 5,14 15,2 25,14 "/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -289.4805 252.9805)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="304.4805" x2="304.4805" y1="-249.5488" y2="-225.9795">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="7.135,13,12,13,12,27,18,27,18,13,22.86,13,15,3.563"/>
+<polygon fill="url(#SVGID_2_)" points="7.135,13 12,13 12,27 18,27 18,13 22.865,13 15,3.563 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_shuffle.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_shuffle.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,24 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="0.149,23.03,10.74,16.23,10.74,20.37,20.56,20.37,20.56,14,26,14,26,25.69,10.74,25.69,10.74,29.83"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y1="2.374" y2="28.13">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<g>
+<polygon fill-opacity="0.6" points="0.149,23.029 10.737,16.228 10.737,20.374 20.562,20.374 20.562,14 26,14 26,25.687 10.737,25.687 10.737,29.831 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.4995" x2="13.4995" y1="2.3745" y2="28.1255">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="21.56,15,21.56,21.37,9.737,21.37,9.737,18.06,2,23.03,9.737,28,9.737,24.69,25,24.69,25,15"/>
-<polygon fill-opacity="0.6" points="4,16,4,4.313,19.26,4.313,19.26,0.169,29.85,6.971,19.26,13.77,19.26,9.626,9.438,9.626,9.438,16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16.5" x2="16.5" y1="2.375" y2="28.12">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<polygon fill="url(#SVGID_1_)" points="21.562,15 21.562,21.374 9.737,21.374 9.737,18.059 2,23.029 9.737,28 9.737,24.687 25,24.687 25,15 "/>
+<polygon fill-opacity="0.6" points="4,16 4,4.313 19.263,4.313 19.263,0.169 29.851,6.971 19.263,13.772 19.263,9.626 9.438,9.626 9.438,16 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16.5" x2="16.5" y1="2.375" y2="28.125">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="8.438,15,8.438,8.626,20.26,8.626,20.26,11.94,28,6.971,20.26,2,20.26,5.313,5,5.313,5,15"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3.438" x="21.56" y="15"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="11.82" x="9.737" y="21.37"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="9.737,19.06,9.737,18.06,2,23.03,2.778,23.53" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="28,6.971,20.26,2,20.26,3,27.22,7.471" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="15.26" x="5" y="5.313"/>
+<polygon fill="url(#SVGID_2_)" points="8.438,15 8.438,8.626 20.263,8.626 20.263,11.941 28,6.971 20.263,2 20.263,5.313 5,5.313 5,15 "/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3.438" x="21.562" y="15"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="11.824" x="9.737" y="21.374"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="9.737,19.059 9.737,18.059 2,23.029 2.778,23.529 " stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="28,6.971 20.263,2 20.263,3 27.222,7.471 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="15.263" x="5" y="5.313"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_shuffle_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_shuffle_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="0.149,23.03,10.74,16.23,10.74,20.37,20.56,20.37,20.56,14,26,14,26,25.69,10.74,25.69,10.74,29.83"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.5" x2="13.5" y1="2.374" y2="28.13">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<g>
+<polygon fill-opacity="0.6" points="0.149,23.029 10.737,16.228 10.737,20.374 20.562,20.374 20.562,14 26,14 26,25.687 10.737,25.687 10.737,29.831 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.4995" x2="13.4995" y1="2.3745" y2="28.1255">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="21.56,15,21.56,21.37,9.737,21.37,9.737,18.06,2,23.03,9.737,28,9.737,24.69,25,24.69,25,15"/>
-<polygon fill-opacity="0.6" points="4,16,4,4.313,19.26,4.313,19.26,0.169,29.85,6.971,19.26,13.77,19.26,9.626,9.438,9.626,9.438,16"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16.5" x2="16.5" y1="2.375" y2="28.12">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<polygon fill="url(#SVGID_1_)" points="21.562,15 21.562,21.374 9.737,21.374 9.737,18.059 2,23.029 9.737,28 9.737,24.687 25,24.687 25,15 "/>
+<polygon fill-opacity="0.6" points="4,16 4,4.313 19.263,4.313 19.263,0.169 29.851,6.971 19.263,13.772 19.263,9.626 9.438,9.626 9.438,16 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16.5" x2="16.5" y1="2.375" y2="28.125">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="8.438,15,8.438,8.626,20.26,8.626,20.26,11.94,28,6.971,20.26,2,20.26,5.313,5,5.313,5,15"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3.438" x="21.56" y="15"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="11.82" x="9.737" y="21.37"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="9.737,19.06,9.737,18.06,2,23.03,2.778,23.53" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="28,6.971,20.26,2,20.26,3,27.22,7.471" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="15.26" x="5" y="5.313"/>
+<polygon fill="url(#SVGID_2_)" points="8.438,15 8.438,8.626 20.263,8.626 20.263,11.941 28,6.971 20.263,2 20.263,5.313 5,5.313 5,15 "/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="3.438" x="21.562" y="15"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="11.824" x="9.737" y="21.374"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="9.737,19.059 9.737,18.059 2,23.029 2.778,23.529 " stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="28,6.971 20.263,2 20.263,3 27.222,7.471 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="15.263" x="5" y="5.313"/>
<g fill-opacity="0.5" stroke-opacity="0.5">
<rect fill="none" height="30" width="30"/>
</g>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -31,4 +34,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_good.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_good.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,27 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="4" y2="25.75">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="3.9995" y2="25.752">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="4" y2="25.75">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="4" y2="25.752">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.75">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.7519">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_low.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_low.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,33 +1,35 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="16" y2="26.14">
-<stop offset="0" stop-color="#A8835F"/>
-<stop offset="1" stop-color="#9A5047"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="16" y2="26.1378">
+<stop offset="0" style="stop-color:#A8835F"/>
+<stop offset="1" style="stop-color:#9A5047"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="4" y2="26">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="4" y2="26.0007">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,12.39,18,10,15.61,10" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,17.7,18,23.7,18,18.05,12,12.05" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,23.36,12,26,14.64,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="18,12.39 18,10 15.61,10 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,17.703 18,23.703 18,18.047 12,12.047 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="12,23.36 12,26 14.64,26 " stroke-opacity="0.3"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="26">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="26.0005">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64,28,4,22.36,4" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.95,28,20.95,28,15.3,22,9.297" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61,22,26,27.39,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64 28,4 22.36,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61 22,26 27.39,26 " stroke-opacity="0.3"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_medium.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_signal_medium.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,30 +1,32 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="12" width="8" x="1" y="15"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.75" y2="25.5">
-<stop offset="0" stop-color="#CEBF8E"/>
-<stop offset="1" stop-color="#B38C4D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="5" x2="5" y1="9.7495" y2="25.5003">
+<stop offset="0" style="stop-color:#CEBF8E"/>
+<stop offset="1" style="stop-color:#B38C4D"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="10" width="6" x="2" y="16"/>
<rect fill-opacity="0.6" height="18" width="8" x="11" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="9.75" y2="25.5">
-<stop offset="0" stop-color="#CEBF8E"/>
-<stop offset="1" stop-color="#B38C4D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="9.75" y2="25.5005">
+<stop offset="0" style="stop-color:#CEBF8E"/>
+<stop offset="1" style="stop-color:#B38C4D"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="16" width="6" x="12" y="10"/>
<rect fill-opacity="0.6" height="24" width="8" x="21" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.75">
-<stop offset="0" stop-color="#C4C4C4"/>
-<stop offset="1" stop-color="#4F4F4F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="25" x2="25" y1="4" y2="25.7519">
+<stop offset="0" style="stop-color:#C4C4C4"/>
+<stop offset="1" style="stop-color:#4F4F4F"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="22" width="6" x="22" y="4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64,28,4,22.36,4" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.95,28,20.95,28,15.3,22,9.297" stroke-opacity="0.3"/>
-<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61,22,26,27.39,26" stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="28,9.64 28,4 22.36,4 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,14.953 28,20.953 28,15.297 22,9.297 " stroke-opacity="0.3"/>
+<polygon fill="#FFFFFF" fill-opacity="0.3" points="22,20.61 22,26 27.39,26 " stroke-opacity="0.3"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="2" y="16"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="12" y="10"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="6" x="22" y="4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sisx.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sisx.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.78,24v-3.441l0.494-0.29c1.05-0.61,1.73-1.06,1.73-1.72,0-1.41-1.64-2.55-3-2.55-1.359,0-3,1.137-3,2.548,0,0.666,0.684,1.114,1.728,1.722l0.497,0.289v3.44h-3.23c-1.654,0-3-1.346-3-3h-0.063c-0.597,0.972-1.407,2-2.832,2-2.419,0-4.105-2.37-4.105-4.5s1.686-4.5,4.104-4.5c1.438,0,2.249,1.052,2.83,2h0.066v-4c0-1.654,1.346-3,3-3h1v-0.063c-0.971-0.597-2-1.406-2-2.832,0-2.419,2.37-4.105,4.5-4.105s4.5,1.686,4.5,4.104c0,1.438-1.051,2.249-2,2.83v0.066h7c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3h-8.219z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14" x2="14" y1="2.891" y2="23.52">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#A5A5A5"/>
+<path d="M15.781,24v-3.441l0.494-0.29C17.316,19.659,18,19.209,18,18.548C18,17.137,16.358,16,15,16 c-1.359,0-3,1.137-3,2.548c0,0.666,0.684,1.114,1.728,1.722l0.497,0.289V24H11c-1.654,0-3-1.346-3-3H7.937 c-0.597,0.972-1.407,2-2.832,2C2.686,23,1,20.629,1,18.5S2.686,14,5.104,14c1.438,0,2.249,1.052,2.83,2H8v-4c0-1.654,1.346-3,3-3h1 V8.937c-0.971-0.597-2-1.406-2-2.832C10,3.686,12.371,2,14.5,2S19,3.686,19,6.104c0,1.438-1.051,2.249-2,2.83V9h7 c1.654,0,3,1.346,3,3v9c0,1.654-1.346,3-3,3H15.781z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="13.9995" x2="13.9995" y1="2.8911" y2="23.5236">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#A5A5A5"/>
</linearGradient>
-<path d="M24,10h-8v-1.635c0.943-0.553,2-1.146,2-2.261,0-1.712-1.78-3.104-3.5-3.104s-3.5,1.392-3.5,3.104c0,1.115,1.053,1.711,2,2.263v1.633h-2c-1.1,0-2,0.9-2,2v5h-1.635c-0.553-0.943-1.146-2-2.261-2-1.712,0-3.104,1.78-3.104,3.5s1.392,3.5,3.104,3.5c1.115,0,1.711-1.053,2.263-2h1.633v1c0,1.1,0.9,2,2,2h2.225v-1.866c-1.08-0.63-2.22-1.31-2.22-2.58,0-1.96,2.04-3.55,4-3.55,1.961,0,4,1.591,4,3.548,0,1.273-1.141,1.952-2.219,2.584v1.87h7.22c1.1,0,2-0.9,2-2v-9c0-1.1-0.9-2-2-2z" fill="url(#SVGID_1_)"/>
-<path d="M16.78,21.13v1c1.08-0.63,2.22-1.31,2.22-2.58,0-0.175-0.034-0.342-0.065-0.51-0.26,0.96-1.23,1.55-2.16,2.09z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559,0.04-0.143,0.07-0.291,0.07-0.455,0-1.712-1.78-3.104-3.5-3.104s-3.5,1.392-3.5,3.104c0,0.163,0.028,0.313,0.07,0.455,0.33-1.452,1.9-2.559,3.43-2.559z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2h1.635v-1h-1.635c-0.553-0.943-1.146-2-2.261-2-1.712,0-3.104,1.78-3.104,3.5,0,0.167,0.023,0.334,0.049,0.5,0.235-1.55,1.51-3,3.055-3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M11.06,19.04c-0.03,0.17-0.06,0.33-0.06,0.51,0,1.274,1.141,1.955,2.225,2.586v-1c-0.93-0.55-1.9-1.13-2.16-2.1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,10h-8V8.365c0.943-0.553,2-1.146,2-2.261C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104 c0,1.115,1.053,1.711,2,2.263V10h-2c-1.1,0-2,0.9-2,2v5H7.365c-0.553-0.943-1.146-2-2.261-2C3.392,15,2,16.783,2,18.5 C2,20.218,3.392,22,5.104,22c1.115,0,1.711-1.053,2.263-2H9v1c0,1.1,0.9,2,2,2h2.225v-1.866C12.141,20.503,11,19.822,11,18.548 C11,16.591,13.037,15,15,15c1.961,0,4,1.591,4,3.548c0,1.273-1.141,1.952-2.219,2.584V23H24c1.1,0,2-0.9,2-2v-9 C26,10.9,25.1,10,24,10z" fill="url(#SVGID_1_)"/>
+<path d="M16.781,21.132v1C17.859,21.5,19,20.821,19,19.548c0-0.175-0.034-0.342-0.065-0.51 C18.684,20.005,17.711,20.587,16.781,21.132z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11,11h2v-1h-2c-1.1,0-2,0.9-2,2v1C9,11.9,9.9,11,11,11z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M14.5,4c1.529,0,3.104,1.106,3.43,2.559C17.972,6.416,18,6.268,18,6.104 C18,4.392,16.217,3,14.5,3C12.782,3,11,4.392,11,6.104c0,0.163,0.028,0.313,0.07,0.455C11.396,5.107,12.969,4,14.5,4z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24,10h-8v1h8c1.1,0,2,0.9,2,2v-1C26,10.9,25.1,10,24,10z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M5.104,16c1.114,0,1.708,1.057,2.261,2H9v-1H7.365c-0.553-0.943-1.146-2-2.261-2 C3.392,15,2,16.783,2,18.5c0,0.167,0.023,0.334,0.049,0.5C2.284,17.454,3.559,16,5.104,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11.065,19.038C11.034,19.206,11,19.373,11,19.548c0,1.274,1.141,1.955,2.225,2.586v-1 C12.289,20.59,11.316,20.006,11.065,19.038z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill-opacity="0.6" height="12" stroke-opacity="0.6" width="12" x="17" y="16"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="23" x2="23" y1="17" y2="27">
-<stop offset="0" stop-color="#A87A5F"/>
-<stop offset="1" stop-color="#9C564C"/>
+<stop offset="0" style="stop-color:#A87A5F"/>
+<stop offset="1" style="stop-color:#9C564C"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="10" width="10" x="18" y="17"/>
<rect fill="#FFFFFF" fill-opacity="0.4" height="1" stroke-opacity="0.4" width="10" x="18" y="17"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="10" x="18" y="26"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_angry.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_angry.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,55 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="14.82" cy="9.704" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="18.14">
-<stop offset="0" stop-color="#CC9A88"/>
-<stop offset="1" stop-color="#914145"/>
+<radialGradient cx="14.8193" cy="9.7041" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="18.1413">
+<stop offset="0" style="stop-color:#CC9A88"/>
+<stop offset="1" style="stop-color:#914145"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="10.38" y2="16.8">
-<stop offset="0" stop-color="#9A5047"/>
-<stop offset="1" stop-color="#E7DBCC"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="10.3823" y2="16.7968">
+<stop offset="0" style="stop-color:#9A5047"/>
+<stop offset="1" style="stop-color:#E7DBCC"/>
</linearGradient>
-<path d="M8.5,17c-1.426,0-2.5-1.5-2.5-3.5s1.074-3.5,2.5-3.5,2.5,1.505,2.5,3.5-1.074,3.5-2.5,3.5z" fill="url(#SVGID_2_)"/>
+<path d="M8.5,17C7.074,17,6,15.495,6,13.5S7.074,10,8.5,10s2.5,1.505,2.5,3.5S9.926,17,8.5,17L8.5,17z" fill="url(#SVGID_2_)"/>
<ellipse cx="8.5" cy="13.5" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.583" x2="8.583" y1="12.97" y2="16.15">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.583" x2="8.583" y1="12.9707" y2="16.1465">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M7.166,14.62c0.248,0.82,0.749,1.38,1.334,1.38,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.154-0.03-0.311-0.05-0.473-0.05-1.07,0-1.978,0.68-2.334,1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.952" y2="17.11">
-<stop offset="0" stop-color="#9A5047"/>
-<stop offset="1" stop-color="#E7DBCC"/>
+<path d="M7.166,14.623C7.414,15.437,7.915,16,8.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C9.819,13.018,9.662,13,9.5,13C8.43,13,7.522,13.677,7.166,14.623z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.9517" y2="17.1103">
+<stop offset="0" style="stop-color:#9A5047"/>
+<stop offset="1" style="stop-color:#E7DBCC"/>
</linearGradient>
-<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5,2.5,1.505,2.5,3.5-1.07,3.5-2.5,3.5z" fill="url(#SVGID_4_)"/>
+<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5S22.926,17,21.5,17L21.5,17 z" fill="url(#SVGID_4_)"/>
<ellipse cx="21.5" cy="13.5" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.58" x2="21.58" y1="13.09" y2="16.27">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.583" x2="21.583" y1="13.0908" y2="16.2688">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M20.17,14.62c0.24,0.82,0.75,1.38,1.33,1.38,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.15-0.03-0.31-0.05-0.47-0.05-1.07,0-1.98,0.68-2.33,1.62z" fill="url(#SVGID_5_)"/>
-<ellipse cx="8.258" cy="11.35" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.8993 -2.2783)"/>
+<path d="M20.166,14.623C20.414,15.437,20.915,16,21.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C22.819,13.018,22.662,13,22.5,13C21.43,13,20.522,13.677,20.166,14.623z" fill="url(#SVGID_5_)"/>
+<ellipse cx="8.258" cy="11.352" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.8993 -2.2783)"/>
<ellipse cx="8.26" cy="10.89" fill="#2F2021" rx="4.361" ry="1" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.7258 -2.3134)"/>
-<ellipse cx="21.92" cy="11.35" fill-opacity="0.2" rx="4.36" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 46.5039 13.5832)"/>
-<ellipse cx="21.92" cy="10.89" fill="#2F2021" rx="4.36" ry="1" transform="matrix(-0.9259 0.3778 -0.3778 -0.9259 46.3259 12.6935)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="18.1" y2="25.12">
-<stop offset="0" stop-color="#693134"/>
-<stop offset="1" stop-color="#CEB28D"/>
+<ellipse cx="21.92" cy="11.352" fill-opacity="0.2" rx="4.36" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 46.5039 13.5832)"/>
+<ellipse cx="21.918" cy="10.89" fill="#2F2021" rx="4.36" ry="1" transform="matrix(-0.9259 0.3778 -0.3778 -0.9259 46.3259 12.6935)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="18.0986" y2="25.1188">
+<stop offset="0" style="stop-color:#693134"/>
+<stop offset="1" style="stop-color:#CEB28D"/>
</linearGradient>
-<path d="M24,22.9c0,1.933-4.029,2.1-9,2.1s-9-0.167-9-2.1c0-1.934,4.029-4.9,9-4.9s9,2.97,9,4.9z" fill="url(#SVGID_6_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="15" x2="15" y1="19.14" y2="23.94">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M24,22.9c0,1.933-4.029,2.1-9,2.1s-9-0.167-9-2.1c0-1.934,4.029-4.9,9-4.9S24,20.967,24,22.9z" fill="url(#SVGID_6_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="14.9995" x2="14.9995" y1="19.1426" y2="23.9429">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M24,22.5c0,1.381-4.029,1.5-9,1.5s-9-0.119-9-1.5,4.029-3.5,9-3.5,9,2.12,9,3.5z" fill="url(#SVGID_7_)"/>
-<path d="M14,19.03v4.968h1v-5c-0.34,0-0.67,0.01-1,0.03z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M16,19.03c-0.33-0.02-0.66-0.03-1-0.03v5c0.338,0,0.672-0.001,1-0.002v-4.97z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M9,23.81c0.316,0.033,0.646,0.062,1,0.084v-4.156c-0.354,0.109-0.684,0.229-1,0.353v3.727z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10,23.89c0.318,0.021,0.654,0.037,1,0.051v-4.475c-0.346,0.082-0.682,0.17-1,0.268v4.161z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M19,23.94c0.346-0.014,0.682-0.029,1-0.051v-4.156c-0.318-0.098-0.654-0.186-1-0.268v4.481z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M20,23.89c0.354-0.022,0.684-0.051,1-0.084v-3.72c-0.316-0.124-0.646-0.243-1-0.353v4.151z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M15,20c4.664,0,8.498,1.426,8.954,2.742,0.03-0.07,0.05-0.15,0.05-0.24,0-1.381-4.029-3.5-9-3.5s-9,2.119-9,3.5c0,0.086,0.016,0.166,0.046,0.242,0.456-1.31,4.294-2.74,8.954-2.74z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M24,22.5c0,1.381-4.029,1.5-9,1.5s-9-0.119-9-1.5s4.029-3.5,9-3.5S24,21.119,24,22.5z" fill="url(#SVGID_7_)"/>
+<path d="M14,19.03v4.968C14.328,23.999,14.662,24,15,24v-5C14.662,19,14.328,19.012,14,19.03z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M16,19.03C15.672,19.012,15.338,19,15,19v5c0.338,0,0.672-0.001,1-0.002V19.03z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M9,23.807c0.316,0.033,0.646,0.062,1,0.084v-4.156c-0.354,0.109-0.684,0.229-1,0.353V23.807z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10,23.891c0.318,0.021,0.654,0.037,1,0.051v-4.475c-0.346,0.082-0.682,0.17-1,0.268V23.891z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19,23.941c0.346-0.014,0.682-0.029,1-0.051v-4.156c-0.318-0.098-0.654-0.186-1-0.268V23.941z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20,23.891c0.354-0.022,0.684-0.051,1-0.084v-3.72c-0.316-0.124-0.646-0.243-1-0.353V23.891z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M15,20c4.664,0,8.498,1.426,8.954,2.742C23.984,22.666,24,22.586,24,22.5c0-1.381-4.029-3.5-9-3.5 s-9,2.119-9,3.5c0,0.086,0.016,0.166,0.046,0.242C6.502,21.426,10.336,20,15,20z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_bigsmile.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_bigsmile.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,48 +1,54 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="30" width="30"/>
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
+<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.75" x2="8.75" y1="7.935" y2="14.9">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
-</linearGradient>
-<path d="M11,15c-0.754,0-1.394-0.564-1.487-1.313-0.213-1.69-0.639-1.69-0.822-1.69-0.134,0-0.49,0-0.703,1.688-0.094,0.75-0.734,1.31-1.488,1.31h-0.057l-0.118-0.01c-0.41-0.052-0.765-0.253-1.01-0.57-0.246-0.317-0.354-0.71-0.304-1.108,0.413-3.27,1.882-5.31,3.835-5.31,1.111,0,3.063,0.69,3.644,5.313,0.05,0.396-0.058,0.79-0.304,1.107-0.245,0.316-0.6,0.518-0.997,0.568l-0.063,0.008h-0.13z" fill="url(#SVGID_2_)"/>
-<path d="M11,14c-0.248,0-0.464-0.185-0.495-0.438-0.29-2.31-1.129-2.56-1.809-2.56s-1.404,0.249-1.695,2.563c-0.034,0.273-0.273,0.466-0.559,0.434-0.273-0.035-0.468-0.285-0.434-0.559,0.34-2.69,1.455-4.43,2.843-4.43s2.313,1.742,2.651,4.438c0.034,0.274-0.16,0.524-0.434,0.559h-0.07z" fill="#22243E"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-587.7" x2="-587.7" y1="7.935" y2="14.9">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.7505" x2="8.7505" y1="7.9351" y2="14.8952">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M19,15c0.754,0,1.394-0.564,1.487-1.313,0.21-1.69,0.64-1.69,0.82-1.69,0.134,0,0.49,0,0.703,1.688,0.1,0.75,0.74,1.31,1.49,1.31h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57,0.246-0.317,0.354-0.71,0.304-1.108-0.41-3.27-1.88-5.31-3.84-5.31-1.111,0-3.063,0.69-3.644,5.313-0.05,0.396,0.058,0.79,0.304,1.107,0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008h0.13z" fill="url(#SVGID_3_)"/>
-<path d="M19,14c0.248,0,0.464-0.185,0.495-0.438,0.29-2.31,1.13-2.56,1.81-2.56s1.404,0.249,1.695,2.563c0.034,0.273,0.273,0.466,0.559,0.434,0.273-0.035,0.468-0.285,0.434-0.559-0.33-2.69-1.45-4.43-2.84-4.43s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559h0.07z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="15.9" y2="27.15">
-<stop offset="0" stop-color="#946C40"/>
-<stop offset="1" stop-color="#EAE6CD"/>
+<path d="M11,15c-0.754,0-1.394-0.564-1.487-1.313C9.3,12,8.874,12,8.691,12c-0.134,0-0.49,0-0.703,1.688 C7.894,14.436,7.254,15,6.5,15H6.443l-0.118-0.01c-0.41-0.052-0.765-0.253-1.01-0.57c-0.246-0.317-0.354-0.71-0.304-1.108 C5.424,10.036,6.893,8,8.846,8c1.111,0,3.063,0.69,3.644,5.313c0.05,0.396-0.058,0.79-0.304,1.107 c-0.245,0.316-0.6,0.518-0.997,0.568l-0.063,0.008L11,15z" fill="url(#SVGID_2_)"/>
+<path d="M11,14c-0.248,0-0.464-0.185-0.495-0.438C10.214,11.249,9.371,11,8.691,11s-1.404,0.249-1.695,2.563 c-0.034,0.273-0.273,0.466-0.559,0.434c-0.273-0.035-0.468-0.285-0.434-0.559C6.343,10.742,7.458,9,8.846,9s2.313,1.742,2.651,4.438 c0.034,0.274-0.16,0.524-0.434,0.559C11.042,13.999,11.021,14,11,14L11,14z" fill="#22243E"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-587.7495" x2="-587.7495" y1="7.9351" y2="14.8952">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M15,16c-6,0-10.94,1-10.94,1,0.501,5.6,5.205,10,10.94,10,5.734,0,10.44-4.395,10.94-10,0,0-4.94-1-10.94-1z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="16.92" y2="26.12">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M19,15c0.754,0,1.394-0.564,1.487-1.313C20.7,12,21.126,12,21.309,12c0.134,0,0.49,0,0.703,1.688 C22.106,14.436,22.746,15,23.5,15h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57c0.246-0.317,0.354-0.71,0.304-1.108 C24.576,10.036,23.107,8,21.154,8c-1.111,0-3.063,0.69-3.644,5.313c-0.05,0.396,0.058,0.79,0.304,1.107 c0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008L19,15z" fill="url(#SVGID_3_)"/>
+<path d="M19,14c0.248,0,0.464-0.185,0.495-0.438C19.786,11.249,20.629,11,21.309,11s1.404,0.249,1.695,2.563 c0.034,0.273,0.273,0.466,0.559,0.434c0.273-0.035,0.468-0.285,0.434-0.559C23.657,10.742,22.542,9,21.154,9 s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559C18.958,13.999,18.979,14,19,14L19,14z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="15.9014" y2="27.1496">
+<stop offset="0" style="stop-color:#946C40"/>
+<stop offset="1" style="stop-color:#EAE6CD"/>
</linearGradient>
-<path d="M4.055,17c0.506,5.04,5.21,9,10.94,9,5.734,0,10.44-3.955,10.94-9h-21.88z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6.334" x2="23.5" y1="19" y2="19">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.5333" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#E6E6E6"/>
+<path d="M15,16c-6,0-10.945,1-10.945,1C4.561,22.605,9.265,27,15,27c5.734,0,10.439-4.395,10.945-10 C25.945,17,21,16,15,16z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="16.9189" y2="26.1216">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<polygon fill="url(#SVGID_6_)" points="23,20,7,20,6,18,24,18"/>
-<polygon fill-opacity="0.2" points="23.5,19,24,18,6,18,6.5,19" stroke-opacity="0.2"/>
-<radialGradient cx="14.97" cy="20.08" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="5.158">
-<stop offset="0" stop-color="#8F3E3D"/>
-<stop offset="1" stop-color="#6A3039"/>
+<path d="M4.055,17C4.561,22.045,9.265,26,15,26c5.734,0,10.439-3.955,10.945-9H4.055z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="6.3335" x2="23.505" y1="19" y2="19">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.5333" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#E6E6E6"/>
+</linearGradient>
+<polygon fill="url(#SVGID_6_)" points="23,20 7,20 6,18 24,18 "/>
+<polygon fill-opacity="0.2" points="23.5,19 24,18 6,18 6.5,19 " stroke-opacity="0.2"/>
+<radialGradient cx="14.9717" cy="20.0801" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="5.1583">
+<stop offset="0" style="stop-color:#8F3E3D"/>
+<stop offset="1" style="stop-color:#6A3039"/>
</radialGradient>
<ellipse cx="15" cy="23.5" fill="url(#SVGID_7_)" rx="5" ry="1.5"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_cry.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_cry.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
<ellipse cx="22.92" cy="7.352" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.4746 -8.1124)"/>
-<ellipse cx="22.92" cy="6.89" fill="#2F2021" rx="4.361" ry="1" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.3011 -8.1483)"/>
+<ellipse cx="22.922" cy="6.89" fill="#2F2021" rx="4.361" ry="1" transform="matrix(0.9259 0.3777 -0.3777 0.9259 4.3011 -8.1483)"/>
<ellipse cx="6.92" cy="7.173" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 16.0374 11.2006)"/>
<ellipse cx="6.918" cy="6.711" fill="#2F2021" rx="4.361" ry="1" transform="matrix(-0.9259 0.3777 -0.3777 -0.9259 15.8594 10.3117)"/>
-<path d="M23.5,23c-0.169,0-0.335-0.086-0.429-0.241-1.38-2.28-4.36-2.76-7.59-2.76s-6.216,0.476-7.597,2.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687c1.577-2.62,4.813-4.24,8.453-4.24s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687-0.08,0.05-0.17,0.07-0.26,0.07z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.5,22c-0.169,0-0.335-0.086-0.429-0.241-1.38-2.28-4.36-3.76-7.59-3.76s-6.216,1.476-7.597,3.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687c1.577-2.62,4.813-4.24,8.453-4.24s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687-0.08,0.05-0.17,0.07-0.26,0.07z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M6.563,13.69c-0.396,0.724-1.43,1.504-1.656,3.094-0.167,1.178,0.756,3.182,0.438,4.438-0.815,3.219-0.67,4.492,0.438,4.719,1.219,0.25,2.622-2.725,3-4.906,0.215-1.24-0.438-2.92-0.158-4.03,0.275-1.088,1.746-2.412,2.438-3.752,1-1.94,0.94-2.25,0.94-2.25l-4.918,0.872s0.07,0.74-0.519,1.82z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.48" x2="15.48" y1="17.57" y2="22.67">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M23.501,23c-0.169,0-0.335-0.086-0.429-0.241C21.691,20.476,18.71,20,15.476,20 s-6.216,0.476-7.597,2.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687C8.604,19.625,11.844,18,15.476,18 s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687C23.678,22.977,23.589,23,23.501,23L23.501,23z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.501,22c-0.169,0-0.335-0.086-0.429-0.241C21.691,19.476,18.71,18,15.476,18s-6.216,1.476-7.597,3.759 c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687C8.604,18.625,11.844,17,15.476,17s6.871,1.625,8.452,4.241 c0.144,0.236,0.068,0.544-0.168,0.687C23.678,21.977,23.589,22,23.501,22L23.501,22z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.563,13.688c-0.396,0.724-1.43,1.504-1.656,3.094c-0.167,1.178,0.756,3.182,0.438,4.438 c-0.815,3.219-0.67,4.492,0.438,4.719c1.219,0.25,2.622-2.725,3-4.906C8.998,19.787,8.345,18.11,8.625,17 c0.275-1.088,1.746-2.412,2.438-3.752C12.063,11.311,12,11,12,11l-4.918,0.872C7.082,11.872,7.152,12.612,6.563,13.688z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.4756" x2="15.4756" y1="17.5723" y2="22.6656">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M23.5,22.5c-0.169,0-0.335-0.086-0.429-0.241-1.381-2.283-4.362-3.759-7.597-3.759s-6.216,1.476-7.597,3.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687c1.581-2.616,4.82-4.241,8.452-4.241s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687-0.07,0.05-0.16,0.07-0.25,0.07z" fill="url(#SVGID_2_)"/>
-<path d="M23.44,13.69c0.396,0.724,1.43,1.504,1.656,3.094,0.168,1.178-0.756,3.182-0.438,4.438,0.816,3.219,0.67,4.492-0.438,4.719-1.219,0.25-2.621-2.725-3-4.906-0.216-1.244,0.438-2.921,0.156-4.031-0.275-1.088-1.746-2.412-2.438-3.752-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872s-0.07,0.74,0.52,1.82z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.413" x2="7.413" y1="12.04" y2="25.84">
-<stop offset="0" stop-color="#83CABF"/>
-<stop offset="1" stop-color="#3E678C"/>
+<path d="M23.501,22.5c-0.169,0-0.335-0.086-0.429-0.241c-1.381-2.283-4.362-3.759-7.597-3.759 s-6.216,1.476-7.597,3.759c-0.144,0.235-0.451,0.312-0.688,0.169s-0.312-0.45-0.168-0.687c1.581-2.616,4.82-4.241,8.452-4.241 s6.871,1.625,8.452,4.241c0.144,0.236,0.068,0.544-0.168,0.687C23.678,22.477,23.589,22.5,23.501,22.5L23.501,22.5z" fill="url(#SVGID_2_)"/>
+<path d="M23.443,13.688c0.396,0.724,1.43,1.504,1.656,3.094c0.168,1.178-0.756,3.182-0.438,4.438 c0.816,3.219,0.67,4.492-0.438,4.719c-1.219,0.25-2.621-2.725-3-4.906c-0.216-1.244,0.438-2.921,0.156-4.031 c-0.275-1.088-1.746-2.412-2.438-3.752c-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872C22.925,11.872,22.854,12.612,23.443,13.688z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="7.4126" x2="7.4126" y1="12.042" y2="25.838">
+<stop offset="0" style="stop-color:#83CABF"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<path d="M5.563,13.69c-0.396,0.724-1.43,1.504-1.656,3.094-0.167,1.178,0.756,3.182,0.438,4.438-0.815,3.219-0.67,4.492,0.438,4.719,1.219,0.25,2.622-2.725,3-4.906,0.215-1.24-0.438-2.92-0.158-4.03,0.275-1.088,1.746-2.412,2.438-3.752,1-1.94,0.94-2.25,0.94-2.25l-4.918,0.872s0.07,0.74-0.519,1.82z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1800.1367 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1823" x2="-1823" y1="12.04" y2="25.84">
-<stop offset="0" stop-color="#83CABF"/>
-<stop offset="1" stop-color="#3E678C"/>
+<path d="M5.563,13.688c-0.396,0.724-1.43,1.504-1.656,3.094c-0.167,1.178,0.756,3.182,0.438,4.438 c-0.815,3.219-0.67,4.492,0.438,4.719c1.219,0.25,2.622-2.725,3-4.906C7.998,19.787,7.345,18.11,7.625,17 c0.275-1.088,1.746-2.412,2.438-3.752C11.063,11.311,11,11,11,11l-4.918,0.872C6.082,11.872,6.152,12.612,5.563,13.688z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1800.1367 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-1822.73" x2="-1822.73" y1="12.042" y2="25.838">
+<stop offset="0" style="stop-color:#83CABF"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<path d="M24.44,13.69c0.396,0.724,1.43,1.504,1.656,3.094,0.168,1.178-0.756,3.182-0.438,4.438,0.816,3.219,0.67,4.492-0.438,4.719-1.219,0.25-2.621-2.725-3-4.906-0.216-1.244,0.438-2.921,0.156-4.031-0.275-1.088-1.746-2.412-2.438-3.752-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872s-0.07,0.74,0.52,1.82z" fill="url(#SVGID_4_)"/>
-<path d="M11.81,9.888c0.119,0.54,0.023,1.019-0.213,1.07l-5.984,1.309c-0.236,0.052-0.522-0.343-0.641-0.883-0.118-0.54-0.022-1.019,0.213-1.07l5.984-1.309c0.24-0.058,0.53,0.337,0.64,0.877z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M24.85,12.26c-0.102,0.543-0.376,0.947-0.613,0.902l-6.021-1.128c-0.237-0.045-0.347-0.521-0.245-1.063,0.102-0.543,0.377-0.947,0.613-0.902l6.021,1.128c0.23,0.04,0.34,0.52,0.24,1.06z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M25.03,11.28c-0.103,0.543-0.377,0.947-0.615,0.902l-6.02-1.128c-0.238-0.044-0.348-0.521-0.246-1.064s0.377-0.946,0.615-0.902l6.02,1.128c0.24,0.05,0.36,0.52,0.25,1.07z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M24.94,11.77c-0.051,0.272-0.284,0.456-0.522,0.411l-6.02-1.128c-0.238-0.044-0.389-0.3-0.338-0.572,0.051-0.271,0.285-0.456,0.521-0.411l6.021,1.128c0.24,0.04,0.39,0.3,0.34,0.57z" fill="#2F2021"/>
-<path d="M12.03,10.86c0.118,0.54,0.022,1.019-0.214,1.07l-5.983,1.309c-0.243,0.06-0.53-0.34-0.649-0.88-0.117-0.54-0.021-1.019,0.215-1.07l5.982-1.309c0.24-0.051,0.53,0.339,0.65,0.879z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M11.92,10.38c0.059,0.27-0.084,0.53-0.32,0.582l-5.984,1.309c-0.236,0.052-0.475-0.125-0.533-0.395-0.06-0.27,0.084-0.53,0.32-0.582l5.982-1.309c0.24-0.061,0.48,0.119,0.54,0.389z" fill="#2F2021"/>
-</svg>
\ No newline at end of file
+<path d="M24.443,13.688c0.396,0.724,1.43,1.504,1.656,3.094c0.168,1.178-0.756,3.182-0.438,4.438 c0.816,3.219,0.67,4.492-0.438,4.719c-1.219,0.25-2.621-2.725-3-4.906c-0.216-1.244,0.438-2.921,0.156-4.031 c-0.275-1.088-1.746-2.412-2.438-3.752c-1-1.938-0.938-2.248-0.938-2.248l4.919,0.872C23.925,11.872,23.854,12.612,24.443,13.688z" fill="url(#SVGID_4_)"/>
+<path d="M11.813,9.888c0.119,0.54,0.023,1.019-0.213,1.07l-5.984,1.309 c-0.236,0.052-0.522-0.343-0.641-0.883l0,0c-0.118-0.54-0.022-1.019,0.213-1.07l5.984-1.309C11.408,8.953,11.695,9.348,11.813,9.888 L11.813,9.888z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M24.848,12.26c-0.102,0.543-0.376,0.947-0.613,0.902l-6.021-1.128c-0.237-0.045-0.347-0.521-0.245-1.063l0,0 c0.102-0.543,0.377-0.947,0.613-0.902l6.021,1.128C24.84,11.241,24.95,11.717,24.848,12.26L24.848,12.26z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M25.033,11.277c-0.103,0.543-0.377,0.947-0.615,0.902l-6.02-1.128 c-0.238-0.044-0.348-0.521-0.246-1.064l0,0c0.102-0.543,0.377-0.946,0.615-0.902l6.02,1.128 C25.024,10.259,25.135,10.734,25.033,11.277L25.033,11.277z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M24.94,11.769c-0.051,0.272-0.284,0.456-0.522,0.411l-6.02-1.128c-0.238-0.044-0.389-0.3-0.338-0.572l0,0 c0.051-0.271,0.285-0.456,0.521-0.411l6.021,1.128C24.84,11.241,24.992,11.497,24.94,11.769L24.94,11.769z" fill="#2F2021"/>
+<path d="M12.026,10.865c0.118,0.54,0.022,1.019-0.214,1.07l-5.983,1.309C5.594,13.295,5.307,12.9,5.188,12.36l0,0 c-0.117-0.54-0.021-1.019,0.215-1.07l5.982-1.309C11.621,9.93,11.908,10.325,12.026,10.865L12.026,10.865z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M11.92,10.376c0.059,0.27-0.084,0.53-0.32,0.582l-5.984,1.309c-0.236,0.052-0.475-0.125-0.533-0.395l0,0 c-0.06-0.27,0.084-0.53,0.32-0.582l5.982-1.309C11.621,9.93,11.861,10.106,11.92,10.376L11.92,10.376z" fill="#2F2021"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_evil.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_evil.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,34 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M26.83,7.531l1.61-5.531-4.335,2.378c-2.44-2.101-5.62-3.378-9.1-3.378s-6.655,1.277-9.104,3.378l-4.336-2.378,1.613,5.531c-1.369,2.163-2.173,4.719-2.173,7.469,0,7.732,6.268,14,14,14s14-6.268,14-14c0-2.75-0.8-5.306-2.17-7.469z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.49" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.37">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+</g>
+<path d="M26.827,7.531L28.439,2l-4.335,2.378C21.655,2.277,18.479,1,15,1S8.345,2.277,5.896,4.378L1.56,2l1.613,5.531 C1.804,9.694,1,12.25,1,15c0,7.732,6.268,14,14,14c7.732,0,14-6.268,14-14C29,12.25,28.196,9.694,26.827,7.531z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="15" cy="3.4897" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.3695">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-2.45,0.698-4.848,2.019-6.935l0.241-0.381-1.064-3.646,2.826,1.55,0.525-0.451c2.358-2.023,5.363-3.137,8.453-3.137,3.093,0,6.096,1.114,8.453,3.137l0.525,0.451,2.825-1.55-1.063,3.646,0.241,0.381c1.32,2.085,2.02,4.485,2.02,6.935,0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M6.022,6.587l0.525-0.451c2.358-2.022,5.363-3.136,8.453-3.136,3.093,0,6.096,1.114,8.453,3.137l0.525,0.451,2.479-1.36,0.347-1.19-2.825,1.55-0.525-0.451c-2.36-2.023-5.37-3.137-8.46-3.137-3.093,0-6.095,1.114-8.453,3.137l-0.525,0.45-2.826-1.55,0.347,1.19,2.479,1.36z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15.08,24.83c-5.617,0-9.75-2.753-11.06-7.363-0.075-0.266,0.079-0.543,0.345-0.618,0.262-0.075,0.542,0.079,0.617,0.345,1.176,4.15,4.874,5.63,10.02,5.63,5.143,0,8.993-1.481,10.17-5.637,0.074-0.266,0.355-0.42,0.617-0.345,0.266,0.075,0.42,0.353,0.344,0.618-1.3,4.62-5.44,7.37-11.05,7.37z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M27,19.8l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707-0.262-0.09-0.542,0.092-0.617,0.408-1.177,4.936-4.949,7.068-10.09,7.068-5.144,0-8.917-2.133-10.1-7.068-0.075-0.316-0.355-0.498-0.617-0.408-0.259,0.086-0.408,0.4-0.346,0.707l-0.937,2.24c0.497,0,0.957-0.506,1.293-1.015,1.595,4.76,5.514,7.05,10.71,7.05,5.189,0,9.107-2.295,10.7-7.039,0.29,0.39,0.71,0.78,1.3,1.01z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27,19.33l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597-0.262-0.075-0.542,0.079-0.617,0.345-1.177,4.155-4.95,6.637-10.09,6.637s-8.917-2.481-10.09-6.637c-0.075-0.266-0.355-0.42-0.617-0.345-0.259,0.073-0.408,0.338-0.346,0.597l-0.947,1.89c0.497,0,0.957-0.426,1.293-0.854,1.595,4,5.514,6.35,10.71,6.35,5.189,0,9.107-2.354,10.7-6.348,0.29,0.33,0.71,0.66,1.3,0.85z" fill="url(#SVGID_2_)"/>
-<path d="M12.7,14.15l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294c-0.188,0.895-0.137,2.118,0.393,3.214,0.519,1.075,1.408,1.851,2.57,2.246,0.377,0.13,0.764,0.19,1.148,0.19,1.561,0,3.104-0.955,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043,0.192,0,0.375-0.11,0.458-0.297,0.12-0.25,0.01-0.54-0.25-0.65zm-5.457,1.72c-0.916-0.311-1.585-0.894-1.991-1.734-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688c-0.67,0.97-2.276,1.88-3.707,1.4z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M12.7,13.04l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254-0.109,0.256,0.004,0.551,0.257,0.664,0,0,9.135,4.043,9.203,4.043,0.192,0,0.375-0.11,0.458-0.297,0.11-0.25,0-0.54-0.26-0.66z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M4.555,10.5c-0.5,1.4-0.205,4.357,2.527,5.285,1.889,0.641,4.044-0.755,4.563-2.133l-7.085-3.15z" fill="#FFFFFF"/>
-<circle cx="7.985" cy="13.23" fill="#22243E" r="1.5"/>
-<path d="M4.365,11.53l6.729,2.99c0.239-0.273,0.434-0.561,0.546-0.852l-7.088-3.15c-0.101,0.28-0.166,0.63-0.187,1.01z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12.7,13.6l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294c-0.188,0.895-0.137,2.118,0.393,3.214,0.519,1.075,1.408,1.852,2.57,2.247,0.375,0.127,0.761,0.185,1.146,0.185,1.561,0,3.104-0.956,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043,0.192,0,0.375-0.11,0.458-0.297,0.12-0.24,0.01-0.53-0.25-0.64zm-5.457,1.72c-0.916-0.311-1.585-0.894-1.991-1.734-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688c-0.67,0.96-2.276,1.88-3.707,1.4z" fill="#2F2021"/>
-<path d="M17.04,14.81c0.083,0.187,0.266,0.297,0.457,0.297,0.068,0,0.137-0.014,0.203-0.043l0.424-0.188c0.71,1.16,2.25,2.12,3.81,2.12,0.385,0,0.771-0.059,1.146-0.186,1.162-0.395,2.051-1.171,2.57-2.246,0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66-0.112-0.252-0.408-0.366-0.66-0.254l-9,4c-0.25,0.11-0.36,0.4-0.25,0.66zm2.01-0.35l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361-0.406,0.84-1.076,1.423-1.991,1.734-1.43,0.49-3.04-0.42-3.71-1.4z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M17.04,13.7c0.09,0.19,0.27,0.3,0.46,0.3,0.068,0,9.203-4.043,9.203-4.043,0.252-0.112,0.365-0.408,0.254-0.66-0.112-0.252-0.408-0.366-0.66-0.254l-9,4c-0.25,0.12-0.36,0.41-0.25,0.66z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M25.44,10.5c0.501,1.4,0.205,4.357-2.526,5.285-1.889,0.641-4.045-0.755-4.563-2.133l7.09-3.15z" fill="#FFFFFF"/>
-<circle cx="22.02" cy="13.23" fill="#22243E" r="1.5"/>
-<path d="M25.64,11.53l-6.729,2.99c-0.238-0.273-0.434-0.561-0.545-0.852l7.087-3.15c0.1,0.28,0.16,0.63,0.19,1.01z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M17.04,14.26c0.083,0.187,0.266,0.297,0.457,0.297,0.068,0,0.137-0.014,0.203-0.043l0.424-0.188c0.702,1.172,2.244,2.128,3.806,2.128,0.385,0,0.771-0.058,1.146-0.185,1.162-0.395,2.051-1.172,2.57-2.247,0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66-0.112-0.252-0.408-0.366-0.66-0.254l-9,4c-0.25,0.09-0.36,0.38-0.25,0.64zm2.01-0.35l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361-0.406,0.84-1.076,1.423-1.991,1.734-1.43,0.49-3.04-0.43-3.71-1.4z" fill="#2F2021"/>
+<path d="M15,28C7.832,28,2,22.168,2,15c0-2.45,0.698-4.848,2.019-6.935L4.26,7.684L3.196,4.038l2.826,1.55 l0.525-0.451C8.905,3.114,11.907,2,15,2c3.093,0,6.096,1.114,8.453,3.137l0.525,0.451l2.825-1.55l-1.063,3.646l0.241,0.381 C27.303,10.151,28,12.549,28,15C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M6.022,6.587l0.525-0.451C8.905,4.114,11.907,3,15,3c3.093,0,6.096,1.114,8.453,3.137 l0.525,0.451l2.479-1.36l0.347-1.19l-2.825,1.55l-0.525-0.451C21.096,3.114,18.093,2,15,2c-3.093,0-6.095,1.114-8.453,3.137 L6.022,5.587l-2.826-1.55l0.347,1.19L6.022,6.587z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15.075,24.834c-5.617,0-9.75-2.753-11.056-7.363c-0.075-0.266,0.079-0.543,0.345-0.618 c0.262-0.075,0.542,0.079,0.617,0.345C6.158,21.353,9.856,22.834,15,22.834c5.143,0,8.993-1.481,10.17-5.637 c0.074-0.266,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.353,0.344,0.618C24.826,22.081,20.692,24.834,15.075,24.834L15.075,24.834z " fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,19.803l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.092-0.617,0.408c-1.177,4.936-4.949,7.068-10.093,7.068c-5.144,0-8.917-2.133-10.095-7.068 c-0.075-0.316-0.355-0.498-0.617-0.408c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.803c0.497,0,0.957-0.506,1.293-1.015 C5.888,23.535,9.807,25.834,15,25.834c5.189,0,9.107-2.295,10.704-7.039C25.994,19.178,26.407,19.568,27,19.803z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27,19.334l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597c-0.262-0.075-0.542,0.079-0.617,0.345 c-1.177,4.155-4.95,6.637-10.094,6.637s-8.917-2.481-10.094-6.637c-0.075-0.266-0.355-0.42-0.617-0.345 c-0.259,0.073-0.408,0.338-0.346,0.597L3,19.334c0.497,0,0.957-0.426,1.293-0.854C5.888,22.478,9.807,24.834,15,24.834 c5.189,0,9.107-2.354,10.704-6.348C25.994,18.807,26.407,19.137,27,19.334z" fill="url(#SVGID_2_)"/>
+<path d="M12.703,14.146l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254c-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294 c-0.188,0.895-0.137,2.118,0.393,3.214c0.519,1.075,1.408,1.851,2.57,2.246C7.296,16.941,7.683,17,8.067,17 c1.561,0,3.104-0.955,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043c0.192,0,0.375-0.11,0.458-0.297 C13.069,14.554,12.956,14.259,12.703,14.146z M7.243,15.868c-0.916-0.311-1.585-0.894-1.991-1.734 c-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688C10.283,15.437,8.674,16.354,7.243,15.868z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12.703,13.043l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254C2.931,9.55,3.044,9.845,3.297,9.958 c0,0,9.135,4.043,9.203,4.043c0.192,0,0.375-0.11,0.458-0.297C13.069,13.451,12.956,13.156,12.703,13.043z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M4.555,10.505c-0.5,1.4-0.205,4.357,2.527,5.285c1.889,0.641,4.044-0.755,4.563-2.133L4.555,10.505z" fill="#FFFFFF"/>
+<circle cx="7.985" cy="13.228" fill="#22243E" r="1.5"/>
+<path d="M4.365,11.53l6.729,2.99c0.239-0.273,0.434-0.561,0.546-0.852l-7.088-3.15 C4.451,10.802,4.386,11.15,4.365,11.53z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M12.703,13.595l-9-4c-0.252-0.112-0.548,0.001-0.66,0.254c-0.112,0.252,0.001,0.548,0.254,0.66l0.662,0.294 c-0.188,0.895-0.137,2.118,0.393,3.214c0.519,1.075,1.408,1.852,2.57,2.247c0.375,0.127,0.761,0.185,1.146,0.185 c1.561,0,3.104-0.956,3.806-2.128l0.423,0.188c0.066,0.029,0.135,0.043,0.203,0.043c0.192,0,0.375-0.11,0.458-0.297 C13.069,14.002,12.956,13.707,12.703,13.595z M7.243,15.316c-0.916-0.311-1.585-0.894-1.991-1.734 c-0.385-0.796-0.451-1.684-0.353-2.361l6.049,2.688C10.283,14.885,8.674,15.802,7.243,15.316z" fill="#2F2021"/>
+<path d="M17.043,14.807c0.083,0.187,0.266,0.297,0.457,0.297c0.068,0,0.137-0.014,0.203-0.043l0.424-0.188 C18.829,16.045,20.371,17,21.933,17c0.385,0,0.771-0.059,1.146-0.186c1.162-0.395,2.051-1.171,2.57-2.246 c0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4 C17.045,14.259,16.932,14.554,17.043,14.807z M19.052,14.461l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361 c-0.406,0.84-1.076,1.423-1.991,1.734C21.326,16.354,19.717,15.437,19.052,14.461z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M17.043,13.704C17.126,13.89,17.309,14,17.5,14c0.068,0,9.203-4.043,9.203-4.043 c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4C17.045,13.156,16.932,13.451,17.043,13.704z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M25.444,10.505c0.501,1.4,0.205,4.357-2.526,5.285c-1.889,0.641-4.045-0.755-4.563-2.133L25.444,10.505z" fill="#FFFFFF"/>
+<circle cx="22.015" cy="13.228" fill="#22243E" r="1.5"/>
+<path d="M25.635,11.53l-6.729,2.99c-0.238-0.273-0.434-0.561-0.545-0.852l7.087-3.15 C25.549,10.802,25.613,11.15,25.635,11.53z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M17.043,14.255c0.083,0.187,0.266,0.297,0.457,0.297c0.068,0,0.137-0.014,0.203-0.043l0.424-0.188 c0.702,1.172,2.244,2.128,3.806,2.128c0.385,0,0.771-0.058,1.146-0.185c1.162-0.395,2.051-1.172,2.57-2.247 c0.529-1.096,0.58-2.32,0.393-3.214l0.662-0.294c0.252-0.112,0.365-0.408,0.254-0.66c-0.112-0.252-0.408-0.366-0.66-0.254l-9,4 C17.045,13.707,16.932,14.002,17.043,14.255z M19.052,13.909l6.049-2.688c0.098,0.677,0.032,1.565-0.353,2.361 c-0.406,0.84-1.076,1.423-1.991,1.734C21.326,15.802,19.717,14.885,19.052,13.909z" fill="#2F2021"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="16.98" y2="24.88">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="16.9766" y2="24.878">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_eyebrows.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_eyebrows.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,65 +1,69 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,2c7.563,0,13.71,6.002,13.98,13.5,0-0.17,0.02-0.33,0.02-0.5,0-7.732-6.268-14-14-14s-14,6.268-14,14c0,0.169,0.02,0.333,0.025,0.5,0.266-7.498,6.412-13.5,13.98-13.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="22.5" y2="26.25">
-<stop offset="0" stop-color="#946C40"/>
-<stop offset="1" stop-color="#EAE6CD"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,2c7.563,0,13.709,6.002,13.975,13.5C28.98,15.333,29,15.169,29,15c0-7.732-6.268-14-14-14 C7.268,1,1,7.268,1,15c0,0.169,0.02,0.333,0.025,0.5C1.291,8.002,7.437,2,15,2z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="22.5" y2="26.25">
+<stop offset="0" style="stop-color:#946C40"/>
+<stop offset="1" style="stop-color:#EAE6CD"/>
</linearGradient>
<ellipse cx="15" cy="24" fill="url(#SVGID_2_)" rx="4" ry="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="23.25" y2="25.12">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="23.25" y2="25.125">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
<ellipse cx="15" cy="24" fill="url(#SVGID_3_)" rx="4" ry="1"/>
-<path d="M11.56,24.5c0.69-0.3,1.96-0.5,3.44-0.5,1.477,0,2.752,0.202,3.445,0.5,0.35-0.15,0.56-0.32,0.56-0.5,0-0.553-1.791-1-4-1s-4,0.447-4,1c0,0.18,0.21,0.35,0.56,0.5z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<ellipse cx="20.94" cy="5.254" fill-opacity="0.2" rx="4.36" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.3997 8.5257)"/>
+<path d="M11.555,24.5C12.248,24.202,13.523,24,15,24c1.477,0,2.752,0.202,3.445,0.5C18.789,24.353,19,24.184,19,24 c0-0.553-1.791-1-4-1c-2.209,0-4,0.447-4,1C11,24.184,11.211,24.353,11.555,24.5z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<ellipse cx="20.936" cy="5.254" fill-opacity="0.2" rx="4.36" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.3997 8.5257)"/>
<ellipse cx="20.61" cy="4.926" fill="#2F2021" rx="4.361" ry="1" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.2983 8.373)"/>
<ellipse cx="8.446" cy="6.419" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9963 -0.0858 0.0858 -0.9963 16.31 13.5396)"/>
<ellipse cx="8.655" cy="6.007" fill="#2F2021" rx="4.361" ry="1" transform="matrix(-0.9963 -0.0858 0.0858 -0.9963 16.7619 12.7348)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.5" x2="8.5" y1="7.542" y2="19.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.5" x2="8.5" y1="7.5415" y2="19.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M8.5,19c-3.033,0-5.5-2.47-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.467,5.5,5.5c0,3.03-2.47,5.5-5.5,5.5z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5" x2="8.5" y1="8.625" y2="18.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M8.5,19C5.467,19,3,16.533,3,13.5C3,10.467,5.467,8,8.5,8s5.5,2.467,5.5,5.5 C14,16.533,11.533,19,8.5,19L8.5,19z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.5" x2="8.5" y1="8.625" y2="18.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="13.5" fill="url(#SVGID_5_)" r="4.5"/>
-<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4,0.019-0.166,0.05-0.329,0.05-0.5,0-2.48-2.02-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.032,0.334,0.05,0.5,0.252-2.25,2.136-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9.5,15c-1.378,0-2.5-1.12-2.5-2.5s1.122-2.5,2.5-2.5,2.5,1.122,2.5,2.5-1.12,2.5-2.5,2.5z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="10" x2="10" y1="12" y2="14.13">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#9EBFC0"/>
+<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.985,9,8.5,9 S4,11.015,4,13.5c0,0.171,0.032,0.334,0.05,0.5C4.302,11.753,6.186,10,8.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9.5,15C8.122,15,7,13.878,7,12.5S8.122,10,9.5,10s2.5,1.122,2.5,2.5S10.878,15,9.5,15L9.5,15z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="10.0005" x2="10.0005" y1="12.0034" y2="14.1348">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#9EBFC0"/>
</linearGradient>
<circle cx="10" cy="13" fill="url(#SVGID_6_)" r="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21.5" x2="21.5" y1="7.542" y2="19.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21.5" x2="21.5" y1="7.5415" y2="19.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,19c-3.033,0-5.5-2.467-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.467,5.5,5.5c0,3.03-2.47,5.5-5.5,5.5z" fill="url(#SVGID_7_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="21.5" x2="21.5" y1="8.625" y2="18.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M21.5,19c-3.033,0-5.5-2.467-5.5-5.5c0-3.033,2.467-5.5,5.5-5.5s5.5,2.467,5.5,5.5 C27,16.533,24.533,19,21.5,19L21.5,19z" fill="url(#SVGID_7_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="21.5" x2="21.5" y1="8.625" y2="18.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="13.5" fill="url(#SVGID_8_)" r="4.5"/>
-<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4,0.02-0.17,0.05-0.33,0.05-0.5,0-2.485-2.015-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.031,0.334,0.051,0.5,0.25-2.25,2.14-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M22.5,15c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5,2.5,1.122,2.5,2.5-1.12,2.5-2.5,2.5z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="23" x2="23" y1="12" y2="14.14">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#9EBFC0"/>
+<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4C25.969,13.834,26,13.671,26,13.5c0-2.485-2.015-4.5-4.5-4.5 S17,11.015,17,13.5c0,0.171,0.031,0.334,0.051,0.5C17.303,11.753,19.186,10,21.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M22.5,15c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5S23.879,15,22.5,15L22.5,15z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="23" x2="23" y1="12.0039" y2="14.1352">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#9EBFC0"/>
</linearGradient>
<circle cx="23" cy="13" fill="url(#SVGID_9_)" r="1"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_heart.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_heart.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,12 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M14.05,27.27c-0.25-0.904-2.137-3.52-5.009-5.513-0.451-0.313-0.938-0.623-1.437-0.942-2.957-1.9-6.637-4.25-6.604-9.3,0.042-6.251,3.802-9.52,7.495-9.52,2.596,0,4.931,1.478,6.507,4.038,1.564-2.464,3.938-3.929,6.52-3.929,3.572,0,7.437,2.926,7.479,9.351,0.032,4.867-3.461,7.167-6.267,9.017-0.61,0.402-1.204,0.793-1.744,1.198-2.774,2.083-4.815,4.783-5.003,5.56l-0.91,1.76-1.03-1.73z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="30.85" cy="15.9" gradientTransform="matrix(0.9286 0 0 0.984 -13.6423 -6.1737)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="13.84">
-<stop offset="0" stop-color="#CC9A88"/>
-<stop offset="1" stop-color="#914145"/>
+</g>
+<path d="M14.05,27.266c-0.25-0.904-2.137-3.52-5.009-5.513 c-0.451-0.313-0.938-0.623-1.437-0.942C4.647,18.923,0.967,16.572,1,11.517C1.042,5.269,4.802,2,8.495,2 c2.596,0,4.931,1.478,6.507,4.038c1.564-2.464,3.938-3.929,6.52-3.929c3.572,0,7.437,2.926,7.479,9.351 c0.032,4.867-3.461,7.167-6.267,9.017c-0.61,0.402-1.204,0.793-1.744,1.198c-2.774,2.083-4.815,4.783-5.003,5.56L15.08,29 L14.05,27.266z" fill-opacity="0.6" fill-rule="evenodd" stroke-opacity="0.6"/>
+<radialGradient cx="30.8457" cy="15.8979" gradientTransform="matrix(0.9286 0 0 0.984 -13.6423 -6.1737)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="13.8351">
+<stop offset="0" style="stop-color:#CC9A88"/>
+<stop offset="1" style="stop-color:#914145"/>
</radialGradient>
-<path d="M14.99,8.245c-3.36-8.322-12.93-6.381-12.99,3.275-0.035,5.305,4.555,7.288,7.611,9.408,2.963,2.057,5.072,4.87,5.403,6.068,0.283-1.174,2.632-4.066,5.375-6.125,3-2.252,7.646-4.104,7.611-9.409-0.05-9.687-9.79-11.22-13-3.225z" fill="url(#SVGID_1_)"/>
-<path d="M14.99,9.245c3.146-7.832,12.55-6.514,12.98,2.659,0.006-0.146,0.022-0.286,0.021-0.438-0.063-9.683-9.795-11.21-13.01-3.221-3.35-8.316-12.92-6.375-12.98,3.281,0,0.16,0.015,0.3,0.021,0.44,0.427-9.164,9.679-10.87,12.97-2.715z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-</svg>
\ No newline at end of file
+<path d="M14.994,8.245C11.629-0.077,2.064,1.864,2,11.523 c-0.035,5.305,4.555,7.288,7.611,9.408c2.963,2.057,5.072,4.87,5.403,6.068c0.283-1.174,2.632-4.066,5.375-6.125 c3-2.252,7.646-4.104,7.611-9.409C27.937,1.783,18.205,0.255,14.994,8.245z" fill="url(#SVGID_1_)" fill-rule="evenodd"/>
+<path d="M14.994,9.245 c3.146-7.832,12.552-6.514,12.984,2.659c0.006-0.146,0.022-0.286,0.021-0.438c-0.063-9.683-9.795-11.211-13.006-3.221 C11.629-0.077,2.064,1.864,2,11.523C2,11.675,2.015,11.815,2.021,11.962C2.448,2.796,11.696,1.088,14.994,9.245z" fill="#FFFFFF" fill-opacity="0.3" fill-rule="evenodd" stroke-opacity="0.3"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_irritated.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_irritated.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,26 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M24.85,22.15l-3-3c-0.195-0.195-0.512-0.195-0.707,0l-2.64,2.64-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-2.64,2.65-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3c-0.195,0.195-0.195,0.512,0,0.707,0.097,0.1,0.225,0.15,0.353,0.15s0.256-0.049,0.354-0.146l2.646-2.64,2.646,2.646c0.09,0.09,0.22,0.14,0.35,0.14s0.256-0.049,0.354-0.146l2.646-2.646,2.646,2.646c0.09,0.1,0.22,0.15,0.35,0.15s0.256-0.049,0.354-0.146l2.646-2.646,2.646,2.646c0.09,0.1,0.22,0.15,0.35,0.15s0.256-0.049,0.354-0.146c0.2-0.19,0.2-0.51,0-0.7z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M24.85,20.15l-3-3c-0.195-0.195-0.512-0.195-0.707,0l-2.64,2.64-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-2.64,2.65-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3c-0.195,0.195-0.195,0.512,0,0.707,0.097,0.1,0.225,0.15,0.353,0.15s0.256-0.049,0.354-0.146l2.646-2.64,2.646,2.646c0.09,0.09,0.22,0.14,0.35,0.14s0.256-0.049,0.354-0.146l2.646-2.646,2.646,2.646c0.09,0.1,0.22,0.15,0.35,0.15s0.256-0.049,0.354-0.146l2.646-2.646,2.646,2.646c0.09,0.1,0.22,0.15,0.35,0.15s0.256-0.049,0.354-0.146c0.2-0.19,0.2-0.51,0-0.7z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M24.85,21.15l-3-3c-0.195-0.195-0.512-0.195-0.707,0l-2.64,2.64-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-2.64,2.65-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3c-0.195,0.195-0.195,0.512,0,0.707,0.097,0.1,0.225,0.15,0.353,0.15s0.256-0.049,0.354-0.146l2.646-2.64,2.646,2.646c0.09,0.09,0.22,0.14,0.35,0.14s0.256-0.049,0.354-0.146l2.646-2.646,2.646,2.646c0.09,0.1,0.22,0.15,0.35,0.15s0.256-0.049,0.354-0.146l2.646-2.646,2.646,2.646c0.09,0.1,0.22,0.15,0.35,0.15s0.256-0.049,0.354-0.146c0.2-0.19,0.2-0.51,0-0.7z" fill="#2F2021"/>
-<path d="M6.5,16c-0.198,0-0.386-0.118-0.464-0.314-0.103-0.256,0.022-0.547,0.279-0.65l3.839-2.536-3.839-0.535c-0.256-0.103-0.381-0.394-0.279-0.65,0.103-0.257,0.395-0.382,0.65-0.279l6.161,1.464-6.161,3.465c-0.054,0.03-0.117,0.04-0.179,0.04z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M6.5,14c-0.198,0-0.386-0.119-0.464-0.314-0.103-0.256,0.022-0.547,0.279-0.65l3.839-0.536-3.836-2.535c-0.256-0.103-0.381-0.394-0.279-0.65,0.103-0.257,0.395-0.382,0.65-0.279l6.161,3.464-6.161,1.465c-0.064,0.03-0.127,0.04-0.189,0.04z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M6.5,15c-0.198,0-0.386-0.119-0.464-0.314-0.103-0.256,0.022-0.547,0.279-0.65l3.839-1.536-3.839-1.536c-0.256-0.103-0.381-0.394-0.279-0.65,0.103-0.257,0.395-0.382,0.65-0.279l6.161,2.464-6.161,2.464c-0.054,0.04-0.117,0.05-0.179,0.05z" fill="#2F2021"/>
-<path d="M23.35,16c0.199,0,0.387-0.118,0.465-0.314,0.103-0.256-0.022-0.547-0.279-0.65l-3.85-2.54,3.839-0.535c0.257-0.103,0.382-0.394,0.279-0.65-0.103-0.257-0.395-0.382-0.65-0.279l-6.16,1.47,6.16,3.465c0.06,0.03,0.12,0.04,0.19,0.04z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.35,14c0.199,0,0.387-0.119,0.465-0.314,0.103-0.256-0.022-0.547-0.279-0.65l-3.85-0.54,3.839-2.535c0.257-0.103,0.382-0.394,0.279-0.65-0.103-0.257-0.395-0.382-0.65-0.279l-6.16,3.464,6.16,1.465c0.06,0.03,0.12,0.04,0.19,0.04z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M23.35,15c0.199,0,0.387-0.119,0.465-0.314,0.103-0.256-0.022-0.547-0.279-0.65l-3.85-1.54,3.839-1.536c0.257-0.103,0.382-0.394,0.279-0.65-0.103-0.257-0.395-0.382-0.65-0.279l-6.16,2.47,6.16,2.464c0.06,0.03,0.12,0.04,0.19,0.04z" fill="#2F2021"/>
-</svg>
\ No newline at end of file
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M24.854,22.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,21.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,21.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,22.951,6.372,23,6.5,23s0.256-0.049,0.354-0.146L9.5,20.207l2.646,2.646 C12.244,22.951,12.372,23,12.5,23s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,22.951,18.372,23,18.5,23 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,22.951,24.372,23,24.5,23s0.256-0.049,0.354-0.146 C25.049,22.658,25.049,22.342,24.854,22.146z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M24.854,20.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,19.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,19.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,20.951,6.372,21,6.5,21s0.256-0.049,0.354-0.146L9.5,18.207l2.646,2.646 C12.244,20.951,12.372,21,12.5,21s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,20.951,18.372,21,18.5,21 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,20.951,24.372,21,24.5,21s0.256-0.049,0.354-0.146 C25.049,20.658,25.049,20.342,24.854,20.146z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M24.854,21.146l-3-3c-0.195-0.195-0.512-0.195-0.707,0L18.5,20.793l-2.646-2.646 c-0.195-0.195-0.512-0.195-0.707,0L12.5,20.793l-2.646-2.646c-0.195-0.195-0.512-0.195-0.707,0l-3,3 c-0.195,0.195-0.195,0.512,0,0.707C6.244,21.951,6.372,22,6.5,22s0.256-0.049,0.354-0.146L9.5,19.207l2.646,2.646 C12.244,21.951,12.372,22,12.5,22s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C18.244,21.951,18.372,22,18.5,22 s0.256-0.049,0.354-0.146l2.646-2.646l2.646,2.646C24.244,21.951,24.372,22,24.5,22s0.256-0.049,0.354-0.146 C25.049,21.658,25.049,21.342,24.854,21.146z" fill="#2F2021"/>
+<path d="M6.5,16c-0.198,0-0.386-0.118-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-2.536l-3.839-0.535 c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,1.464l-6.161,3.465C6.625,15.989,6.562,16,6.5,16 L6.5,16z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M6.5,14c-0.198,0-0.386-0.119-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-0.536 L6.314,9.965c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,3.464l-6.161,1.465 C6.625,13.989,6.562,14,6.5,14L6.5,14z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M6.5,15c-0.198,0-0.386-0.119-0.464-0.314c-0.103-0.256,0.022-0.547,0.279-0.65l3.839-1.536l-3.839-1.536 c-0.256-0.103-0.381-0.394-0.279-0.65c0.103-0.257,0.395-0.382,0.65-0.279l6.161,2.464l-6.161,2.464C6.625,14.989,6.562,15,6.5,15 L6.5,15z" fill="#2F2021"/>
+<path d="M23.346,16c0.199,0,0.387-0.118,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5l3.839-0.535 c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,3.465C23.221,15.989,23.284,16,23.346,16 L23.346,16z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.346,14c0.199,0,0.387-0.119,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5 l3.839-2.535c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,1.465 C23.221,13.989,23.284,14,23.346,14L23.346,14z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M23.346,15c0.199,0,0.387-0.119,0.465-0.314c0.103-0.256-0.022-0.547-0.279-0.65L19.692,12.5l3.839-1.536 c0.257-0.103,0.382-0.394,0.279-0.65c-0.103-0.257-0.395-0.382-0.65-0.279L17,12.5l6.16,2.464C23.221,14.989,23.284,15,23.346,15 L23.346,15z" fill="#2F2021"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_kissing.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_kissing.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,38 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="6" cy="-65.72" gradientTransform="matrix(1 0 0 1.1014 0 84.2272)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="5.191">
-<stop offset="0" stop-color="#B67F64"/>
-<stop offset="1" stop-color="#B3964D"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="6" cy="-65.7227" gradientTransform="matrix(1 0 0 1.1014 0 84.2272)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="5.1913">
+<stop offset="0" style="stop-color:#B67F64"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</radialGradient>
-<ellipse cx="6" cy="14.75" fill="url(#SVGID_2_)" rx="4" ry="2.746"/>
-<radialGradient cx="24" cy="-65.72" gradientTransform="matrix(1 0 0 1.1014 0 84.2272)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="5.191">
-<stop offset="0" stop-color="#B67F64"/>
-<stop offset="1" stop-color="#B3964D"/>
+<ellipse cx="6" cy="14.746" fill="url(#SVGID_2_)" rx="4" ry="2.746"/>
+<radialGradient cx="24" cy="-65.7227" gradientTransform="matrix(1 0 0 1.1014 0 84.2272)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="5.1913">
+<stop offset="0" style="stop-color:#B67F64"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</radialGradient>
-<ellipse cx="24" cy="14.75" fill="url(#SVGID_3_)" rx="4" ry="2.746"/>
-<path d="M17.39,16c-1.181,0-1.919,0.746-2.386,1.25-0.47-0.5-1.21-1.25-2.39-1.25-2.61,0-2.61,2.5-6.36,3.75,2.5,0,1.25,6.25,8.75,6.25s6.25-6.25,8.75-6.25c-3.75-1.25-3.18-3.75-6.36-3.75z" fill="#2F2021" fill-opacity="0.4" stroke-opacity="0.4"/>
-<radialGradient cx="15.14" cy="19.48" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="7.694">
-<stop offset="0" stop-color="#CC9A88"/>
-<stop offset="1" stop-color="#914145"/>
+<ellipse cx="24" cy="14.746" fill="url(#SVGID_3_)" rx="4" ry="2.746"/>
+<path d="M17.387,16c-1.181,0-1.919,0.746-2.386,1.25C14.534,16.746,13.794,16,12.613,16 C10,16,10,18.5,6.25,19.75C8.75,19.75,7.5,26,15,26s6.25-6.25,8.75-6.25C20,18.5,20.568,16,17.387,16z" fill="#2F2021" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="15.1372" cy="19.4775" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="7.6943">
+<stop offset="0" style="stop-color:#CC9A88"/>
+<stop offset="1" style="stop-color:#914145"/>
</radialGradient>
-<path d="M17.39,16c-1.181,0-1.919,0.746-2.386,1.25-0.47-0.5-1.21-1.25-2.39-1.25-2.61,0-2.61,2.5-6.36,3.75,2.5,0,2.5,5,8.75,5s6.25-5,8.75-5c-3.75-1.25-3.18-3.75-6.36-3.75z" fill="url(#SVGID_4_)"/>
-<ellipse cx="14.94" cy="19.75" fill="#60323D" fill-opacity="0.9" rx="2.441" ry="0.625" stroke-opacity="0.9"/>
-<ellipse cx="11.75" cy="21.62" fill="#FFFFFF" fill-opacity="0.5" rx="1.754" ry="0.625" stroke-opacity="0.5"/>
-<ellipse cx="18.63" cy="21.62" fill="#FFFFFF" fill-opacity="0.5" rx="1.129" ry="0.625" stroke-opacity="0.5"/>
-<path d="M9.016,11.61c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675c-0.195,0.195-0.512,0.195-0.707,0s-0.195-0.512,0-0.707l1.408-1.41,0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209c0.182-0.209,0.498-0.23,0.706-0.047,0.208,0.182,0.229,0.498,0.047,0.706-0.87,0.99-2.1,1.55-3.384,1.55z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M20.98,11.61c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0s0.195-0.512,0-0.707l-1.41-1.41-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209c-0.183-0.209-0.498-0.23-0.706-0.047-0.208,0.182-0.229,0.498-0.048,0.706,0.86,0.99,2.09,1.55,3.37,1.55z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M9.016,13.12c-1.108,0-2.177-0.421-3.002-1.17l-0.676,0.68c-0.195,0.195-0.512,0.195-0.707,0s-0.195-0.512,0-0.707l1.409-1.409,0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209c0.182-0.209,0.498-0.23,0.706-0.047,0.208,0.182,0.229,0.498,0.047,0.706-0.87,0.99-2.1,1.55-3.384,1.55z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M20.98,13.12c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0s0.195-0.512,0-0.707l-1.409-1.409-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209c-0.183-0.209-0.498-0.23-0.706-0.047-0.208,0.182-0.229,0.498-0.048,0.706,0.86,1,2.09,1.56,3.37,1.56z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M9.016,12.31c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675c-0.195,0.195-0.512,0.195-0.707,0s-0.195-0.512,0-0.707l1.408-1.409,0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209c0.182-0.209,0.498-0.23,0.706-0.047,0.208,0.182,0.229,0.498,0.047,0.706-0.87,0.99-2.1,1.55-3.384,1.55z" fill="#2F2021"/>
-<path d="M20.98,12.31c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0s0.195-0.512,0-0.707l-1.41-1.409-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209c-0.183-0.209-0.498-0.23-0.706-0.047-0.208,0.182-0.229,0.498-0.048,0.706,0.86,0.99,2.09,1.55,3.37,1.55z" fill="#2F2021"/>
-</svg>
\ No newline at end of file
+<path d="M17.387,16c-1.181,0-1.919,0.746-2.386,1.25C14.534,16.746,13.794,16,12.613,16 C10,16,10,18.5,6.25,19.75c2.5,0,2.5,5,8.75,5s6.25-5,8.75-5C20,18.5,20.568,16,17.387,16z" fill="url(#SVGID_4_)"/>
+<ellipse cx="14.941" cy="19.75" fill="#60323D" fill-opacity="0.9" rx="2.441" ry="0.625" stroke-opacity="0.9"/>
+<ellipse cx="11.754" cy="21.625" fill="#FFFFFF" fill-opacity="0.5" rx="1.754" ry="0.625" stroke-opacity="0.5"/>
+<ellipse cx="18.629" cy="21.625" fill="#FFFFFF" fill-opacity="0.5" rx="1.129" ry="0.625" stroke-opacity="0.5"/>
+<path d="M9.016,11.611c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675 c-0.195,0.195-0.512,0.195-0.707,0s-0.195-0.512,0-0.707L6.04,9l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209 s1.952-0.44,2.624-1.209c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706 C11.53,11.046,10.3,11.611,9.016,11.611L9.016,11.611z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M20.984,11.611c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707L23.96,9l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,11.046,19.7,11.611,20.984,11.611L20.984,11.611z " fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M9.016,13.125c-1.108,0-2.177-0.421-3.002-1.17L5.338,12.63c-0.195,0.195-0.512,0.195-0.707,0 s-0.195-0.512,0-0.707l1.409-1.409l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209 c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706C11.53,12.56,10.3,13.125,9.016,13.125L9.016,13.125z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.984,13.125c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707l-1.409-1.409l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,12.56,19.7,13.125,20.984,13.125L20.984,13.125z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M9.016,12.313c-1.108,0-2.177-0.421-3.002-1.17l-0.675,0.675c-0.195,0.195-0.512,0.195-0.707,0 s-0.195-0.512,0-0.707L6.04,9.701l0.352,0.402c0.672,0.769,1.628,1.209,2.624,1.209s1.952-0.44,2.624-1.209 c0.182-0.209,0.498-0.23,0.706-0.047c0.208,0.182,0.229,0.498,0.047,0.706C11.53,11.747,10.3,12.313,9.016,12.313L9.016,12.313z" fill="#2F2021"/>
+<path d="M20.984,12.313c1.108,0,2.177-0.421,3.002-1.17l0.676,0.675c0.195,0.195,0.512,0.195,0.707,0 s0.195-0.512,0-0.707L23.96,9.701l-0.353,0.402c-0.672,0.769-1.627,1.209-2.623,1.209s-1.951-0.44-2.623-1.209 c-0.183-0.209-0.498-0.23-0.706-0.047c-0.208,0.182-0.229,0.498-0.048,0.706C18.47,11.747,19.7,12.313,20.984,12.313L20.984,12.313z " fill="#2F2021"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_nerd.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_nerd.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M27,13.5c0-0.537-0.08-1.055-0.225-1.545,0.07,0.01,0.14,0.04,0.22,0.04h1.67c-0.15-0.688-0.357-1.354-0.605-2h-1.06c-0.383,0-0.703,0.222-0.871,0.536-0.98-1.527-2.69-2.54-4.63-2.54-2.517,0-4.634,1.692-5.287,4h-2.425c-0.65-2.308-2.76-4-5.28-4-1.945,0-3.651,1.013-4.628,2.537-0.169-0.32-0.49-0.54-0.872-0.54h-1.064c-0.248,0.646-0.455,1.312-0.605,2h1.669c0.08,0,0.15-0.028,0.224-0.045-0.143,0.48-0.224,1-0.224,1.54,0,3.04,2.462,5.5,5.5,5.5,2.869,0,5.222-2.197,5.475-5h2.051c0.253,2.803,2.605,5,5.475,5,3.04,0,5.5-2.46,5.5-5.5zm-14,0c0,2.48-2.02,4.5-4.5,4.5-2.481,0-4.5-2.02-4.5-4.5s2.019-4.5,4.5-4.5c2.48,0,4.497,2.016,4.5,4.495v0.005zm8.5,4.5c-2.481,0-4.5-2.019-4.5-4.5s2.02-4.5,4.5-4.5,4.5,2.019,4.5,4.5-2.02,4.5-4.5,4.5z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M27,13.5c0-0.537-0.08-1.055-0.225-1.545C26.85,11.972,26.92,12,27,12h1.67c-0.15-0.688-0.357-1.354-0.605-2 H27c-0.383,0-0.703,0.222-0.871,0.536C25.15,9.013,23.445,8,21.5,8c-2.517,0-4.634,1.692-5.287,4h-2.425 C13.134,9.692,11.017,8,8.5,8c-1.945,0-3.651,1.013-4.628,2.537C3.703,10.222,3.382,10,3,10H1.936c-0.248,0.646-0.455,1.312-0.605,2 H3c0.08,0,0.15-0.028,0.224-0.045C3.081,12.445,3,12.963,3,13.5C3,16.537,5.462,19,8.5,19c2.869,0,5.222-2.197,5.475-5h2.051 c0.253,2.803,2.605,5,5.475,5C24.537,19,27,16.537,27,13.5z M13,13.505C12.997,15.984,10.98,18,8.5,18C6.019,18,4,15.981,4,13.5 S6.019,9,8.5,9c2.48,0,4.497,2.016,4.5,4.495V13.505z M21.5,18c-2.481,0-4.5-2.019-4.5-4.5S19.019,9,21.5,9s4.5,2.019,4.5,4.5 S23.981,18,21.5,18z" fill-opacity="0.4" stroke-opacity="0.4"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="4" x2="13" y1="12.5" y2="12.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
-<path d="M8.5,17c-2.481,0-4.5-2.02-4.5-4.5s2.019-4.5,4.5-4.5,4.5,2.019,4.5,4.5-2.02,4.5-4.5,4.5z" fill="url(#SVGID_2_)"/>
-<path d="M8.5,7c-3.038,0-5.5,2.462-5.5,5.5s2.462,5.5,5.5,5.5,5.5-2.462,5.5-5.5-2.46-5.5-5.5-5.5zm0,10c-2.481,0-4.5-2.02-4.5-4.5s2.019-4.5,4.5-4.5,4.5,2.019,4.5,4.5-2.02,4.5-4.5,4.5z" fill="#2F2021"/>
+<path d="M8.5,17C6.019,17,4,14.981,4,12.5S6.019,8,8.5,8s4.5,2.019,4.5,4.5S10.981,17,8.5,17L8.5,17z" fill="url(#SVGID_2_)"/>
+<path d="M8.5,7C5.462,7,3,9.462,3,12.5S5.462,18,8.5,18s5.5-2.462,5.5-5.5S11.538,7,8.5,7z M8.5,17 C6.019,17,4,14.981,4,12.5S6.019,8,8.5,8s4.5,2.019,4.5,4.5S10.981,17,8.5,17z" fill="#2F2021"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="17" x2="26" y1="12.5" y2="12.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
-<path d="M21.5,17c-2.481,0-4.5-2.019-4.5-4.5s2.02-4.5,4.5-4.5,4.5,2.019,4.5,4.5-2.02,4.5-4.5,4.5z" fill="url(#SVGID_3_)"/>
-<path d="M21.5,7c-3.04,0-5.5,2.462-5.5,5.5s2.463,5.5,5.5,5.5,5.5-2.462,5.5-5.5-2.46-5.5-5.5-5.5zm0,10c-2.481,0-4.5-2.019-4.5-4.5s2.02-4.5,4.5-4.5,4.5,2.019,4.5,4.5-2.02,4.5-4.5,4.5z" fill="#2F2021"/>
+<path d="M21.5,17c-2.481,0-4.5-2.019-4.5-4.5S19.019,8,21.5,8s4.5,2.019,4.5,4.5S23.981,17,21.5,17L21.5,17z" fill="url(#SVGID_3_)"/>
+<path d="M21.5,7C18.463,7,16,9.462,16,12.5s2.463,5.5,5.5,5.5s5.5-2.462,5.5-5.5S24.537,7,21.5,7z M21.5,17 c-2.481,0-4.5-2.019-4.5-4.5S19.019,8,21.5,8s4.5,2.019,4.5,4.5S23.981,17,21.5,17z" fill="#2F2021"/>
<rect fill="#2F2021" height="2" width="4" x="13" y="11"/>
-<path d="M30,10c0,0.552-0.448,1-1,1h-2c-0.553,0-1-0.448-1-1s0.447-1,1-1h2c0.55,0,1,0.448,1,1z" fill="#2F2021"/>
-<path d="M4,10c0,0.552-0.448,1-1,1h-2c-0.552,0-1-0.448-1-1s0.448-1,1-1h2c0.552,0,1,0.448,1,1z" fill="#2F2021"/>
-<path d="M8.5,9c2.31,0,4.197,1.756,4.449,4,0.02-0.17,0.05-0.33,0.05-0.5,0-2.48-2.02-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.032,0.334,0.051,0.5,0.252-2.24,2.139-4,4.449-4z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M21.5,9c2.311,0,4.197,1.756,4.449,4,0.02-0.17,0.05-0.33,0.05-0.5,0-2.481-2.019-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.031,0.334,0.051,0.5,0.25-2.24,2.14-4,4.45-4z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15.08,25c-5.617,0-9.75-2.752-11.06-7.363-0.075-0.266,0.079-0.542,0.345-0.617,0.262-0.075,0.542,0.078,0.617,0.345,1.176,4.16,4.874,5.64,10.02,5.64,5.143,0,8.993-1.48,10.17-5.636,0.074-0.267,0.355-0.42,0.617-0.345,0.266,0.075,0.42,0.352,0.344,0.617-1.3,4.61-5.44,7.36-11.05,7.36z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M27,19.97l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707-0.262-0.09-0.542,0.093-0.617,0.409-1.17,4.94-4.95,7.07-10.09,7.07-5.144,0-8.917-2.133-10.1-7.067-0.075-0.316-0.355-0.499-0.617-0.409-0.259,0.086-0.408,0.4-0.346,0.707l-0.937,2.24c0.497,0,0.957-0.505,1.293-1.014,1.595,4.74,5.514,7.04,10.71,7.04,5.189,0,9.107-2.295,10.7-7.038,0.29,0.38,0.71,0.77,1.3,1.01z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="17.14" y2="25.04">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M30,10c0,0.552-0.448,1-1,1h-2c-0.553,0-1-0.448-1-1l0,0c0-0.552,0.447-1,1-1h2C29.552,9,30,9.448,30,10 L30,10z" fill="#2F2021"/>
+<path d="M4,10c0,0.552-0.448,1-1,1H1c-0.552,0-1-0.448-1-1l0,0c0-0.552,0.448-1,1-1h2C3.552,9,4,9.448,4,10L4,10z" fill="#2F2021"/>
+<path d="M8.5,9c2.31,0,4.197,1.756,4.449,4C12.968,12.834,13,12.671,13,12.5C13,10.019,10.981,8,8.5,8 S4,10.019,4,12.5c0,0.171,0.032,0.334,0.051,0.5C4.303,10.756,6.19,9,8.5,9z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M21.5,9c2.311,0,4.197,1.756,4.449,4C25.969,12.834,26,12.671,26,12.5c0-2.481-2.019-4.5-4.5-4.5 S17,10.019,17,12.5c0,0.171,0.031,0.334,0.051,0.5C17.303,10.756,19.189,9,21.5,9z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15.075,25c-5.617,0-9.75-2.752-11.056-7.363c-0.075-0.266,0.079-0.542,0.345-0.617 c0.262-0.075,0.542,0.078,0.617,0.345C6.158,21.52,9.856,23,15,23c5.143,0,8.993-1.48,10.17-5.636 c0.074-0.267,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.352,0.344,0.617C24.826,22.248,20.692,25,15.075,25L15.075,25z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,19.969l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.093-0.617,0.409C23.917,22.367,20.145,24.5,15,24.5c-5.144,0-8.917-2.133-10.095-7.067 c-0.075-0.316-0.355-0.499-0.617-0.409c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.969c0.497,0,0.957-0.505,1.293-1.014 C5.888,23.702,9.807,26,15,26c5.189,0,9.107-2.295,10.704-7.038C25.994,19.344,26.407,19.734,27,19.969z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="17.1426" y2="25.0441">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M27,19.5l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596-0.262-0.075-0.542,0.078-0.617,0.345-1.17,4.16-4.95,6.64-10.09,6.64s-8.917-2.48-10.09-6.636c-0.075-0.267-0.355-0.42-0.617-0.345-0.259,0.073-0.408,0.338-0.346,0.596l-0.947,1.88c0.497,0,0.957-0.426,1.293-0.854,1.595,3.99,5.514,6.35,10.71,6.35,5.189,0,9.107-2.354,10.7-6.348,0.29,0.32,0.71,0.65,1.3,0.85z" fill="url(#SVGID_4_)"/>
+<path d="M27,19.5l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.542,0.078-0.617,0.345 C23.917,21.52,20.144,24,15,24s-8.917-2.48-10.094-6.636c-0.075-0.267-0.355-0.42-0.617-0.345c-0.259,0.073-0.408,0.338-0.346,0.596 L3,19.5c0.497,0,0.957-0.426,1.293-0.854C5.888,22.645,9.807,25,15,25c5.189,0,9.107-2.354,10.704-6.348 C25.994,18.974,26.407,19.303,27,19.5z" fill="url(#SVGID_4_)"/>
<circle cx="8.5" cy="12.5" fill="#22243E" r="1.5"/>
<circle cx="21.5" cy="12.5" fill="#22243E" r="1.5"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_neutral.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_neutral.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,52 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="7.542" y2="19.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="7.5415" y2="19.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M8.5,19c-3.033,0-5.5-2.47-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.467,5.5,5.5c0,3.03-2.47,5.5-5.5,5.5z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="8.625" y2="18.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M8.5,19C5.467,19,3,16.533,3,13.5C3,10.467,5.467,8,8.5,8s5.5,2.467,5.5,5.5 C14,16.533,11.533,19,8.5,19L8.5,19z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="8.625" y2="18.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="13.5" fill="url(#SVGID_3_)" r="4.5"/>
-<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4,0.019-0.166,0.05-0.329,0.05-0.5,0-2.48-2.02-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.032,0.334,0.05,0.5,0.252-2.25,2.136-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8.5,16c-1.378,0-2.5-1.12-2.5-2.5s1.122-2.5,2.5-2.5,2.5,1.122,2.5,2.5-1.122,2.5-2.5,2.5z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9" x2="9" y1="13" y2="15.13">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#B9E1D5"/>
+<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.985,9,8.5,9 S4,11.015,4,13.5c0,0.171,0.032,0.334,0.05,0.5C4.302,11.753,6.186,10,8.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8.5,16C7.122,16,6,14.878,6,13.5S7.122,11,8.5,11s2.5,1.122,2.5,2.5S9.878,16,8.5,16L8.5,16z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="9.0005" x2="9.0005" y1="13.0034" y2="15.1348">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#B9E1D5"/>
</linearGradient>
<circle cx="9" cy="14" fill="url(#SVGID_4_)" r="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="7.542" y2="19.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="7.5415" y2="19.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,19c-3.033,0-5.5-2.467-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.467,5.5,5.5c0,3.03-2.47,5.5-5.5,5.5z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="8.625" y2="18.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M21.5,19c-3.033,0-5.5-2.467-5.5-5.5c0-3.033,2.467-5.5,5.5-5.5s5.5,2.467,5.5,5.5 C27,16.533,24.533,19,21.5,19L21.5,19z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="8.625" y2="18.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="13.5" fill="url(#SVGID_6_)" r="4.5"/>
-<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4,0.02-0.17,0.05-0.33,0.05-0.5,0-2.485-2.015-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.031,0.334,0.051,0.5,0.25-2.25,2.14-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M21.5,16c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5,2.5,1.122,2.5,2.5-1.12,2.5-2.5,2.5z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="22" x2="22" y1="13" y2="15.14">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#B9E1D5"/>
+<path d="M21.5,10c2.314,0,4.197,1.753,4.449,4C25.969,13.834,26,13.671,26,13.5c0-2.485-2.015-4.5-4.5-4.5 S17,11.015,17,13.5c0,0.171,0.031,0.334,0.051,0.5C17.303,11.753,19.186,10,21.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21.5,16c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5S22.879,16,21.5,16L21.5,16z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="22" x2="22" y1="13.0039" y2="15.1352">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#B9E1D5"/>
</linearGradient>
<circle cx="22" cy="14" fill="url(#SVGID_7_)" r="1"/>
-<path d="M21,23c0,0.553-0.224,1-0.5,1h-11c-0.276,0-0.5-0.45-0.5-1,0-0.553,0.224-1,0.5-1h11c0.28,0,0.5,0.45,0.5,1z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M21,22c0,0.553-0.224,1-0.5,1h-11c-0.276,0-0.5-0.45-0.5-1,0-0.553,0.224-1,0.5-1h11c0.28,0,0.5,0.45,0.5,1z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M21,22.5c0,0.276-0.224,0.5-0.5,0.5h-11c-0.276,0-0.5-0.22-0.5-0.5s0.224-0.5,0.5-0.5h11c0.28,0,0.5,0.22,0.5,0.5z" fill="#2F2021"/>
-</svg>
\ No newline at end of file
+<path d="M21,23c0,0.553-0.224,1-0.5,1h-11C9.224,24,9,23.553,9,23l0,0c0-0.553,0.224-1,0.5-1h11 C20.776,22,21,22.447,21,23L21,23z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21,22c0,0.553-0.224,1-0.5,1h-11C9.224,23,9,22.553,9,22l0,0c0-0.553,0.224-1,0.5-1h11 C20.776,21,21,21.447,21,22L21,22z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M21,22.5c0,0.276-0.224,0.5-0.5,0.5h-11C9.224,23,9,22.776,9,22.5l0,0C9,22.224,9.224,22,9.5,22h11 C20.776,22,21,22.224,21,22.5L21,22.5z" fill="#2F2021"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,60 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<ellipse cx="21.94" cy="4.792" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9218 -0.3877 0.3877 0.9218 -0.1423 8.8784)"/>
-<ellipse cx="21.61" cy="4.464" fill="#2F2021" rx="4.361" ry="1" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.041 8.7248)"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<ellipse cx="21.936" cy="4.792" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(0.9218 -0.3877 0.3877 0.9218 -0.1423 8.8784)"/>
+<ellipse cx="21.611" cy="4.464" fill="#2F2021" rx="4.361" ry="1" transform="matrix(0.9218 -0.3876 0.3876 0.9218 -0.041 8.7248)"/>
<ellipse cx="7.636" cy="4.792" fill-opacity="0.2" rx="4.361" ry="1.541" stroke-opacity="0.2" transform="matrix(-0.9218 -0.3877 0.3877 -0.9218 12.8176 12.1696)"/>
<ellipse cx="7.961" cy="4.464" fill="#2F2021" rx="4.361" ry="1" transform="matrix(-0.9218 -0.3876 0.3876 -0.9218 13.5697 11.665)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="6.542" y2="18.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="6.5415" y2="18.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M8.5,18c-3.033,0-5.5-2.47-5.5-5.5s2.467-5.5,5.5-5.5,5.5,2.467,5.5,5.5-2.47,5.5-5.5,5.5z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="7.625" y2="17.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M8.5,18C5.467,18,3,15.533,3,12.5S5.467,7,8.5,7S14,9.467,14,12.5S11.533,18,8.5,18L8.5,18z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="7.625" y2="17.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="12.5" fill="url(#SVGID_3_)" r="4.5"/>
-<path d="M8.5,9c2.314,0,4.198,1.753,4.45,4,0.019-0.166,0.05-0.329,0.05-0.5,0-2.48-2.02-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.032,0.334,0.05,0.5,0.252-2.25,2.136-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9.5,14c-1.378,0-2.5-1.12-2.5-2.5s1.122-2.5,2.5-2.5,2.5,1.122,2.5,2.5-1.12,2.5-2.5,2.5z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10" x2="10" y1="11" y2="13.13">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#9EBFC0"/>
+<path d="M8.5,9c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,10.015,10.985,8,8.5,8 S4,10.015,4,12.5c0,0.171,0.032,0.334,0.05,0.5C4.302,10.753,6.186,9,8.5,9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9.5,14C8.122,14,7,12.878,7,11.5S8.122,9,9.5,9s2.5,1.122,2.5,2.5S10.878,14,9.5,14L9.5,14z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="10.0005" x2="10.0005" y1="11.0034" y2="13.1348">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#9EBFC0"/>
</linearGradient>
<circle cx="10" cy="12" fill="url(#SVGID_4_)" r="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="6.542" y2="18.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="6.5415" y2="18.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,18c-3.033,0-5.5-2.467-5.5-5.5s2.47-5.5,5.5-5.5,5.5,2.467,5.5,5.5-2.47,5.5-5.5,5.5z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="7.625" y2="17.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M21.5,18c-3.033,0-5.5-2.467-5.5-5.5S18.467,7,21.5,7S27,9.467,27,12.5S24.533,18,21.5,18L21.5,18z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="7.625" y2="17.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="12.5" fill="url(#SVGID_6_)" r="4.5"/>
-<path d="M21.5,9c2.314,0,4.197,1.753,4.449,4,0.02-0.17,0.05-0.33,0.05-0.5,0-2.485-2.015-4.5-4.5-4.5s-4.5,2.02-4.5,4.5c0,0.171,0.031,0.334,0.051,0.5,0.25-2.25,2.14-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M22.5,14c-1.379,0-2.5-1.122-2.5-2.5s1.12-2.5,2.5-2.5,2.5,1.122,2.5,2.5-1.12,2.5-2.5,2.5z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23" x2="23" y1="11" y2="13.14">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#9EBFC0"/>
+<path d="M21.5,9c2.314,0,4.197,1.753,4.449,4C25.969,12.834,26,12.671,26,12.5c0-2.485-2.015-4.5-4.5-4.5 S17,10.015,17,12.5c0,0.171,0.031,0.334,0.051,0.5C17.303,10.753,19.186,9,21.5,9z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M22.5,14c-1.379,0-2.5-1.122-2.5-2.5S21.121,9,22.5,9s2.5,1.122,2.5,2.5S23.879,14,22.5,14L22.5,14z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="23" x2="23" y1="11.0039" y2="13.1352">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#9EBFC0"/>
</linearGradient>
<circle cx="23" cy="12" fill="url(#SVGID_7_)" r="1"/>
-<path d="M13.55,23.92c0.495,0.051,1.007,0.077,1.523,0.077,5.144,0,8.917-1.481,10.1-5.636,0.074-0.267,0.354-0.423,0.617-0.346,0.266,0.076,0.42,0.352,0.344,0.617-0.007,0.026-0.018,0.05-0.024,0.076l0.89,1.79c-0.475,0-0.91-0.389-1.242-0.796-1.609,3.963-5.59,6.827-10.76,6.827-0.551,0-0.339-0.041-0.871-0.025-1.126,0.033-1.155-1.863-1.126-2.137,0.03-0.27,0.28-0.47,0.55-0.44z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M13.55,22.92c0.495,0.051,1.007,0.077,1.523,0.077,5.144,0,8.917-2.481,10.1-6.636,0.074-0.267,0.354-0.423,0.617-0.346,0.266,0.076,0.42,0.352,0.344,0.617-0.007,0.026-0.018,0.05-0.024,0.076l0.89,2.79c-0.475,0-0.91-1.389-1.242-1.796-1.609,3.963-5.352,6.79-10.52,6.79-0.551,0-1.098-0.027-1.627-0.083-0.275-0.028-0.608-0.042-0.608-1.042,0-0.28,0.28-0.48,0.55-0.45z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.552,23.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-1.481,10.095-5.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,20.5 c-0.475,0-0.91-0.389-1.242-0.796c-1.609,3.963-5.59,6.827-10.758,6.827c-0.551,0-0.339-0.041-0.871-0.025 c-1.126,0.033-1.155-1.863-1.126-2.137C13.032,24.094,13.278,23.893,13.552,23.924z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M13.552,22.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-2.481,10.095-6.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,19.5 c-0.475,0-0.91-1.389-1.242-1.796c-1.609,3.963-5.352,6.79-10.52,6.79c-0.551,0-1.098-0.027-1.627-0.083 c-0.275-0.028-0.608-0.042-0.608-1.042C13.003,23.092,13.278,22.893,13.552,22.924z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientTransform="matrix(-1 0 0 1 -454 0)" gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="-481" x2="-467" y1="21" y2="21">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M13.55,23.92c0.495,0.051,1.007,0.077,1.523,0.077,5.144,0,8.917-2.481,10.1-6.636,0.074-0.267,0.354-0.423,0.617-0.346,0.266,0.076,0.42,0.352,0.344,0.617-0.007,0.026-0.018,0.05-0.024,0.076l0.89,1.79c-0.475,0-0.91-0.389-1.242-0.796-1.609,3.963-5.515,6.297-10.68,6.297-0.551,0-1.098-0.028-1.627-0.083-0.275-0.029-0.474-0.275-0.445-0.549,0.03-0.28,0.28-0.48,0.55-0.45z" fill="url(#SVGID_8_)"/>
-</svg>
\ No newline at end of file
+<path d="M13.552,23.924c0.495,0.051,1.007,0.077,1.523,0.077c5.144,0,8.917-2.481,10.095-6.636 c0.074-0.267,0.354-0.423,0.617-0.346c0.266,0.076,0.42,0.352,0.344,0.617c-0.007,0.026-0.018,0.05-0.024,0.076L27,19.5 c-0.475,0-0.91-0.389-1.242-0.796c-1.609,3.963-5.515,6.297-10.683,6.297c-0.551,0-1.098-0.028-1.627-0.083 c-0.275-0.029-0.474-0.275-0.445-0.549C13.032,24.094,13.278,23.893,13.552,23.924z" fill="url(#SVGID_8_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic_mad.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_sarcastic_mad.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="9.917" y2="17.13">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="9.917" y2="17.1255">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M8.5,17c-1.425,0-2.5-1.5-2.5-3.5s1.075-3.5,2.5-3.5,2.5,1.505,2.5,3.5-1.075,3.5-2.5,3.5z" fill="url(#SVGID_2_)"/>
+<path d="M8.5,17C7.075,17,6,15.495,6,13.5S7.075,10,8.5,10s2.5,1.505,2.5,3.5S9.925,17,8.5,17L8.5,17z" fill="url(#SVGID_2_)"/>
<ellipse cx="8.5" cy="13.5" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.584" x2="8.584" y1="12.97" y2="16.15">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5835" x2="8.5835" y1="12.9707" y2="16.1465">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M7.167,14.62c0.247,0.82,0.748,1.38,1.333,1.38,0.829,0,1.5-1.119,1.5-2.5,0-0.155-0.011-0.305-0.027-0.452-0.154-0.03-0.311-0.05-0.473-0.05-1.071,0-1.978,0.68-2.333,1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.952" y2="17.11">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M7.167,14.623C7.414,15.437,7.915,16,8.5,16c0.829,0,1.5-1.119,1.5-2.5 c0-0.155-0.011-0.305-0.027-0.452C9.819,13.018,9.662,13,9.5,13C8.429,13,7.522,13.677,7.167,14.623z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.9517" y2="17.1103">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5,2.5,1.505,2.5,3.5-1.07,3.5-2.5,3.5z" fill="url(#SVGID_4_)"/>
+<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5S22.926,17,21.5,17L21.5,17 z" fill="url(#SVGID_4_)"/>
<ellipse cx="21.5" cy="13.5" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.58" x2="21.58" y1="13.09" y2="16.27">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.583" x2="21.583" y1="13.0908" y2="16.2688">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M20.17,14.62c0.24,0.82,0.75,1.38,1.33,1.38,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.15-0.03-0.31-0.05-0.47-0.05-1.07,0-1.98,0.68-2.33,1.62z" fill="url(#SVGID_5_)"/>
-<path d="M19,21c-2.243,0-3.165,1.107-4,2.5-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5c0-0.28-0.224-0.5-0.5-0.5s-0.5,0.22-0.5,0.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5c0-1.4-1.76-2.5-4-2.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M19,19c-2.243,0-3.165,1.107-4,2.5-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5c0-0.28-0.224-0.5-0.5-0.5s-0.5,0.22-0.5,0.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5c0-1.4-1.76-2.5-4-2.5z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.5" x2="15.5" y1="20" y2="24.89">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M20.166,14.623C20.414,15.437,20.915,16,21.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C22.819,13.018,22.662,13,22.5,13C21.43,13,20.522,13.677,20.166,14.623z" fill="url(#SVGID_5_)"/>
+<path d="M19,21c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5 C9,23.224,8.776,23,8.5,23S8,23.224,8,23.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5 c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5C23,22.098,21.243,21,19,21z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19,19c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5C9,21.224,8.776,21,8.5,21 S8,21.224,8,21.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5c0,0.276,0.224,0.5,0.5,0.5 s0.5-0.224,0.5-0.5C23,20.098,21.243,19,19,19z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15.4995" x2="15.4995" y1="20" y2="24.8928">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M19,20c-2.243,0-3.165,1.107-4,2.5-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5c0-0.28-0.224-0.5-0.5-0.5s-0.5,0.22-0.5,0.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5c0-1.4-1.76-2.5-4-2.5z" fill="url(#SVGID_6_)"/>
-</svg>
\ No newline at end of file
+<path d="M19,20c-2.243,0-3.165,1.107-4,2.5c-0.365,0.608-1.232,1.5-3,1.5s-3-0.791-3-1.5 C9,22.224,8.776,22,8.5,22S8,22.224,8,22.5c0,1.402,1.757,2.5,4,2.5s3-1.061,4-2.5c0.404-0.582,1.232-1.5,3-1.5s3,0.791,3,1.5 c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5C23,21.098,21.243,20,19,20z" fill="url(#SVGID_6_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_smile.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_smile.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,32 +1,36 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c7,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.975-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.75" x2="8.75" y1="7.935" y2="14.9">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2c7.168,0,13,5.832,13,13 C28,22.168,22.168,28,15,28L15,28z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c7,0,12.709,5.564,12.975,12.5C27.98,15.333,28,15.169,28,15c0-7.168-5.832-13-13-13 C7.832,2,2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.7505" x2="8.7505" y1="7.9351" y2="14.8952">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M11,15c-0.754,0-1.394-0.564-1.487-1.313-0.213-1.69-0.639-1.69-0.822-1.69-0.134,0-0.49,0-0.703,1.688-0.094,0.75-0.734,1.31-1.488,1.31h-0.057l-0.118-0.01c-0.41-0.052-0.765-0.253-1.01-0.57-0.246-0.317-0.354-0.71-0.304-1.108,0.413-3.27,1.882-5.31,3.835-5.31,1.111,0,3.063,0.69,3.644,5.313,0.05,0.396-0.058,0.79-0.304,1.107-0.245,0.316-0.6,0.518-0.997,0.568l-0.063,0.008h-0.13z" fill="url(#SVGID_2_)"/>
-<path d="M11,14c-0.248,0-0.464-0.185-0.495-0.438-0.29-2.31-1.129-2.56-1.809-2.56s-1.404,0.249-1.695,2.563c-0.034,0.273-0.273,0.466-0.559,0.434-0.273-0.035-0.468-0.285-0.434-0.559,0.34-2.69,1.455-4.43,2.843-4.43s2.313,1.742,2.651,4.438c0.034,0.274-0.16,0.524-0.434,0.559h-0.07z" fill="#22243E"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-587.7" x2="-587.7" y1="7.935" y2="14.9">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M11,15c-0.754,0-1.394-0.564-1.487-1.313C9.3,12,8.874,12,8.691,12c-0.134,0-0.49,0-0.703,1.688 C7.894,14.436,7.254,15,6.5,15H6.443l-0.118-0.01c-0.41-0.052-0.765-0.253-1.01-0.57c-0.246-0.317-0.354-0.71-0.304-1.108 C5.424,10.036,6.893,8,8.846,8c1.111,0,3.063,0.69,3.644,5.313c0.05,0.396-0.058,0.79-0.304,1.107 c-0.245,0.316-0.6,0.518-0.997,0.568l-0.063,0.008L11,15z" fill="url(#SVGID_2_)"/>
+<path d="M11,14c-0.248,0-0.464-0.185-0.495-0.438C10.214,11.249,9.371,11,8.691,11s-1.404,0.249-1.695,2.563 c-0.034,0.273-0.273,0.466-0.559,0.434c-0.273-0.035-0.468-0.285-0.434-0.559C6.343,10.742,7.458,9,8.846,9s2.313,1.742,2.651,4.438 c0.034,0.274-0.16,0.524-0.434,0.559C11.042,13.999,11.021,14,11,14L11,14z" fill="#22243E"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-587.7495" x2="-587.7495" y1="7.9351" y2="14.8952">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M19,15c0.754,0,1.394-0.564,1.487-1.313,0.21-1.69,0.64-1.69,0.82-1.69,0.134,0,0.49,0,0.703,1.688,0.1,0.75,0.74,1.31,1.49,1.31h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57,0.246-0.317,0.354-0.71,0.304-1.108-0.41-3.27-1.88-5.31-3.84-5.31-1.111,0-3.063,0.69-3.644,5.313-0.05,0.396,0.058,0.79,0.304,1.107,0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008h0.13z" fill="url(#SVGID_3_)"/>
-<path d="M19,14c0.248,0,0.464-0.185,0.495-0.438,0.29-2.31,1.13-2.56,1.81-2.56s1.404,0.249,1.695,2.563c0.034,0.273,0.273,0.466,0.559,0.434,0.273-0.035,0.468-0.285,0.434-0.559-0.33-2.69-1.45-4.43-2.84-4.43s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559h0.07z" fill="#22243E"/>
-<path d="M15.08,25c-5.617,0-9.75-2.753-11.06-7.363-0.075-0.266,0.079-0.543,0.345-0.618,0.262-0.075,0.542,0.079,0.617,0.345,1.176,4.16,4.874,5.64,10.02,5.64,5.143,0,8.992-1.481,10.17-5.637,0.074-0.266,0.355-0.42,0.617-0.345,0.266,0.075,0.42,0.353,0.344,0.618-1.3,4.61-5.44,7.36-11.05,7.36z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M27,19.97l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707-0.262-0.09-0.542,0.092-0.617,0.408-1.17,4.94-4.95,7.07-10.09,7.07-5.143,0-8.917-2.133-10.09-7.068-0.075-0.316-0.355-0.498-0.617-0.408-0.259,0.086-0.408,0.4-0.346,0.707l-0.947,2.24c0.497,0,0.957-0.506,1.293-1.015,1.595,4.74,5.514,7.04,10.71,7.04,5.189,0,9.107-2.295,10.7-7.039,0.29,0.38,0.71,0.77,1.3,1.01z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="17.14" y2="25.04">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M19,15c0.754,0,1.394-0.564,1.487-1.313C20.7,12,21.126,12,21.309,12c0.134,0,0.49,0,0.703,1.688 C22.106,14.436,22.746,15,23.5,15h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57c0.246-0.317,0.354-0.71,0.304-1.108 C24.576,10.036,23.107,8,21.154,8c-1.111,0-3.063,0.69-3.644,5.313c-0.05,0.396,0.058,0.79,0.304,1.107 c0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008L19,15z" fill="url(#SVGID_3_)"/>
+<path d="M19,14c0.248,0,0.464-0.185,0.495-0.438C19.786,11.249,20.629,11,21.309,11s1.404,0.249,1.695,2.563 c0.034,0.273,0.273,0.466,0.559,0.434c0.273-0.035,0.468-0.285,0.434-0.559C23.657,10.742,22.542,9,21.154,9 s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559C18.958,13.999,18.979,14,19,14L19,14z" fill="#22243E"/>
+<path d="M15.075,25c-5.617,0-9.75-2.753-11.056-7.363c-0.075-0.266,0.079-0.543,0.345-0.618 c0.262-0.075,0.542,0.079,0.617,0.345C6.158,21.519,9.856,23,15,23c5.143,0,8.992-1.481,10.17-5.637 c0.074-0.266,0.355-0.42,0.617-0.345c0.266,0.075,0.42,0.353,0.344,0.618C24.826,22.247,20.692,25,15.075,25L15.075,25z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M27,19.969l-0.942-2.238c0.062-0.307-0.087-0.621-0.347-0.707 c-0.262-0.09-0.542,0.092-0.617,0.408C23.917,22.367,20.145,24.5,15,24.5c-5.143,0-8.917-2.133-10.094-7.068 c-0.075-0.316-0.355-0.498-0.617-0.408c-0.259,0.086-0.408,0.4-0.346,0.707L3,19.969c0.497,0,0.957-0.506,1.293-1.015 C5.888,23.701,9.807,26,15,26c5.189,0,9.107-2.295,10.704-7.039C25.994,19.344,26.407,19.734,27,19.969z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="17.1426" y2="25.0441">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M27,19.5l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597-0.262-0.075-0.542,0.079-0.617,0.345-1.17,4.16-4.95,6.64-10.09,6.64s-8.917-2.481-10.09-6.637c-0.075-0.266-0.355-0.42-0.617-0.345-0.259,0.073-0.408,0.338-0.346,0.597l-0.947,1.88c0.497,0,0.957-0.426,1.293-0.854,1.595,3.99,5.514,6.35,10.71,6.35,5.189,0,9.107-2.354,10.7-6.348,0.29,0.32,0.71,0.65,1.3,0.85z" fill="url(#SVGID_4_)"/>
-</svg>
\ No newline at end of file
+<path d="M27,19.5l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597c-0.262-0.075-0.542,0.079-0.617,0.345 C23.917,21.519,20.144,24,15,24s-8.917-2.481-10.094-6.637c-0.075-0.266-0.355-0.42-0.617-0.345 c-0.259,0.073-0.408,0.338-0.346,0.597L3,19.5c0.497,0,0.957-0.426,1.293-0.854C5.888,22.644,9.807,25,15,25 c5.189,0,9.107-2.354,10.704-6.348C25.994,18.973,26.407,19.303,27,19.5z" fill="url(#SVGID_4_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_surprised.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_surprised.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,60 +1,64 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="7.542" y2="19.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="7.5415" y2="19.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M8.5,19c-3.032,0-5.5-2.47-5.5-5.5s2.468-5.5,5.5-5.5c3.033,0,5.5,2.467,5.5,5.5,0,3.03-2.47,5.5-5.5,5.5z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="8.625" y2="18.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M8.5,19C5.468,19,3,16.533,3,13.5C3,10.467,5.468,8,8.5,8c3.033,0,5.5,2.467,5.5,5.5 C14,16.533,11.533,19,8.5,19L8.5,19z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.5" x2="8.5" y1="8.625" y2="18.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="8.5" cy="13.5" fill="url(#SVGID_3_)" r="4.5"/>
-<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4,0.019-0.166,0.05-0.329,0.05-0.5,0-2.48-2.01-4.5-4.5-4.5-2.484,0-4.5,2.02-4.5,4.5,0,0.171,0.032,0.334,0.051,0.5,0.252-2.25,2.136-4,4.449-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8.5,15.5c-1.102,0-2-0.897-2-2s0.898-2,2-2c1.104,0,2,0.897,2,2s-0.896,2-2,2z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.5" x2="8.5" y1="13" y2="15.13">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#B9E1D5"/>
+<path d="M8.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5C13,11.015,10.986,9,8.5,9 C6.016,9,4,11.015,4,13.5c0,0.171,0.032,0.334,0.051,0.5C4.303,11.753,6.187,10,8.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8.5,15.5c-1.102,0-2-0.897-2-2s0.898-2,2-2c1.104,0,2,0.897,2,2S9.604,15.5,8.5,15.5L8.5,15.5z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.5" x2="8.5" y1="13.0034" y2="15.1348">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#B9E1D5"/>
</linearGradient>
<circle cx="8.5" cy="14" fill="url(#SVGID_4_)" r="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="7.542" y2="19.61">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.5" x2="21.5" y1="7.5415" y2="19.6124">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,19c-3.032,0-5.5-2.467-5.5-5.5s2.468-5.5,5.5-5.5c3.033,0,5.5,2.467,5.5,5.5,0,3.03-2.47,5.5-5.5,5.5z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="8.625" y2="18.5">
-<stop offset="0" stop-color="#CCCCCC"/>
-<stop offset="0.2" stop-color="#EEEEEE"/>
-<stop offset="1" stop-color="#FCFCFC"/>
+<path d="M21.5,19c-3.032,0-5.5-2.467-5.5-5.5c0-3.033,2.468-5.5,5.5-5.5c3.033,0,5.5,2.467,5.5,5.5 C27,16.533,24.533,19,21.5,19L21.5,19z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="21.5" x2="21.5" y1="8.625" y2="18.5013">
+<stop offset="0" style="stop-color:#CCCCCC"/>
+<stop offset="0.2" style="stop-color:#EEEEEE"/>
+<stop offset="1" style="stop-color:#FCFCFC"/>
</linearGradient>
<circle cx="21.5" cy="13.5" fill="url(#SVGID_6_)" r="4.5"/>
-<path d="M21.5,10c2.314,0,4.198,1.753,4.45,4,0.019-0.166,0.05-0.329,0.05-0.5,0-2.485-2.014-4.5-4.5-4.5-2.484,0-4.5,2.015-4.5,4.5,0,0.171,0.032,0.334,0.051,0.5,0.25-2.25,2.14-4,4.45-4z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M21.5,15.5c-1.102,0-2-0.897-2-2s0.898-2,2-2c1.104,0,2,0.897,2,2s-0.9,2-2,2z" fill="#22243E"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21.5" x2="21.5" y1="13" y2="15.14">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#B9E1D5"/>
+<path d="M21.5,10c2.314,0,4.198,1.753,4.45,4c0.019-0.166,0.05-0.329,0.05-0.5c0-2.485-2.014-4.5-4.5-4.5 c-2.484,0-4.5,2.015-4.5,4.5c0,0.171,0.032,0.334,0.051,0.5C17.303,11.753,19.187,10,21.5,10z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21.5,15.5c-1.102,0-2-0.897-2-2s0.898-2,2-2c1.104,0,2,0.897,2,2S22.604,15.5,21.5,15.5L21.5,15.5z" fill="#22243E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_7_" x1="21.5" x2="21.5" y1="13.0039" y2="15.1352">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#B9E1D5"/>
</linearGradient>
<circle cx="21.5" cy="14" fill="url(#SVGID_7_)" r="1"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="15" x2="15" y1="17.4" y2="28.21">
-<stop offset="0" stop-color="#946C40"/>
-<stop offset="1" stop-color="#EAE6CD"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_8_" x1="14.9995" x2="14.9995" y1="17.3955" y2="28.2055">
+<stop offset="0" style="stop-color:#946C40"/>
+<stop offset="1" style="stop-color:#EAE6CD"/>
</linearGradient>
<ellipse cx="15" cy="22.5" fill="url(#SVGID_8_)" rx="4.5" ry="5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="15" x2="15" y1="18.53" y2="26.94">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_9_" x1="14.9995" x2="14.9995" y1="18.5303" y2="26.9376">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
<ellipse cx="15" cy="22.5" fill="url(#SVGID_9_)" rx="4.5" ry="3.889"/>
-<path d="M15,19.72c2.266,0,4.121,1.451,4.436,3.333,0.03-0.18,0.06-0.36,0.06-0.55,0-2.147-2.014-3.889-4.5-3.889-2.484,0-4.5,1.741-4.5,3.889,0,0.19,0.035,0.373,0.064,0.556,0.32-1.89,2.18-3.34,4.44-3.34z" fill-opacity="0.4" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<path d="M15,19.723c2.266,0,4.121,1.451,4.436,3.333C19.467,22.873,19.5,22.69,19.5,22.5 c0-2.147-2.014-3.889-4.5-3.889c-2.484,0-4.5,1.741-4.5,3.889c0,0.19,0.035,0.373,0.064,0.556C10.88,21.174,12.736,19.723,15,19.723 z" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_tongue.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_tongue.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,45 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M27,18.31l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597-0.262-0.075-0.398,0.175-0.617,0.346-2.09,1.64-4.95,3.14-10.09,3.14s-8-1.5-10.09-3.136c-0.076-0.267-0.355-0.42-0.617-0.346-0.26,0.074-0.408,0.338-0.347,0.597l-0.946,1.89c0.497,0,0.957-0.426,1.293-0.854,2.707,1.35,5.707,2.85,10.71,2.85s9-1.5,10.7-2.849c0.29,0.32,0.71,0.65,1.3,0.85z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27,18.02l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596-0.262-0.075-0.398,0.175-0.617,0.345-2.09,1.64-4.95,2.18-10.09,2.18s-8-0.54-10.09-2.18c-0.076-0.267-0.355-0.42-0.617-0.345-0.26,0.074-0.408,0.338-0.347,0.596l-0.942,1.88c0.497,0,0.957-0.426,1.293-0.854,2.707,1.35,5.707,2.35,10.71,2.35s9-1,10.7-2.348c0.29,0.32,0.71,0.65,1.3,0.85z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M9.84,18.58c-1.49,1.831-2.932,6.933,1.082,7.394,4.174,0.479,4.881-5.217,8.221-6.91,0.16-0.08-9.3-0.48-9.3-0.48z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<radialGradient cx="-109.7" cy="-18.45" gradientTransform="matrix(1.1747 0 0 1.1055 140.4372 39.6372)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="4.887">
-<stop offset="0" stop-color="#CC9A88"/>
-<stop offset="1" stop-color="#914145"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M27,18.308l-0.942-1.885c0.062-0.259-0.087-0.523-0.347-0.597 c-0.262-0.075-0.398,0.175-0.617,0.346C23,17.808,20.144,19.308,15,19.308s-8-1.5-10.094-3.136c-0.076-0.267-0.355-0.42-0.617-0.346 c-0.26,0.074-0.408,0.338-0.347,0.597L3,18.308c0.497,0,0.957-0.426,1.293-0.854C7,18.808,10,20.308,15,20.308s9-1.5,10.704-2.849 C25.994,17.781,26.407,18.11,27,18.308z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27,18.016l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.398,0.175-0.617,0.345 C23,17.516,20.144,18.058,15,18.058S7,17.516,4.906,15.88c-0.076-0.267-0.355-0.42-0.617-0.345c-0.26,0.074-0.408,0.338-0.347,0.596 L3,18.016c0.497,0,0.957-0.426,1.293-0.854C7,18.516,10,19.516,15,19.516s9-1,10.704-2.348C25.994,17.489,26.407,17.818,27,18.016z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9.84,18.578c-1.49,1.831-2.932,6.933,1.082,7.394c4.174,0.479,4.881-5.217,8.221-6.91 C19.304,18.98,9.84,18.578,9.84,18.578z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<radialGradient cx="-109.7007" cy="-18.4487" gradientTransform="matrix(1.1747 0 0 1.1055 140.4372 39.6372)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="4.8868">
+<stop offset="0" style="stop-color:#CC9A88"/>
+<stop offset="1" style="stop-color:#914145"/>
</radialGradient>
-<path d="M9.145,18.58c-1.489,1.831-1.379,6.046,1.777,6.287,4.191,0.322,4.186-4.11,7.525-5.804,0.17-0.09-9.295-0.49-9.295-0.49z" fill="url(#SVGID_2_)"/>
-<path d="M13.2,18.76c-0.479-0.021-0.943-0.043-1.385-0.063-0.565,1.258-0.637,2.821-0.637,2.821s0.6-1.55,2.02-2.76z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="15.59" y2="19.54">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M9.145,18.578c-1.489,1.831-1.379,6.046,1.777,6.287c4.191,0.322,4.186-4.11,7.525-5.804 C18.609,18.98,9.145,18.578,9.145,18.578z" fill="url(#SVGID_2_)"/>
+<path d="M13.201,18.758c-0.479-0.021-0.943-0.043-1.385-0.063c-0.565,1.258-0.637,2.821-0.637,2.821 S11.781,19.969,13.201,18.758z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="15.5869" y2="19.5381">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M27,18.02l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596-0.262-0.075-0.398,0.175-0.617,0.345-2.09,1.64-4.95,2.64-10.09,2.64s-8-1-10.09-2.636c-0.076-0.267-0.355-0.42-0.617-0.345-0.26,0.074-0.408,0.338-0.347,0.596l-0.946,1.88c0.497,0,0.957-0.426,1.293-0.854,2.707,1.35,5.707,2.35,10.71,2.35s9-1,10.7-2.348c0.29,0.32,0.71,0.65,1.3,0.85z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20.5" x2="20.5" y1="8.786" y2="15.94">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M27,18.016l-0.942-1.885c0.062-0.258-0.087-0.522-0.347-0.596c-0.262-0.075-0.398,0.175-0.617,0.345 C23,17.516,20.144,18.516,15,18.516s-8-1-10.094-2.636c-0.076-0.267-0.355-0.42-0.617-0.345c-0.26,0.074-0.408,0.338-0.347,0.596 L3,18.016c0.497,0,0.957-0.426,1.293-0.854C7,18.516,10,19.516,15,19.516s9-1,10.704-2.348C25.994,17.489,26.407,17.818,27,18.016z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="20.5" x2="20.5" y1="8.7856" y2="15.9438">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M20.5,15.83c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5,2.5,1.505,2.5,3.5-1.07,3.5-2.5,3.5z" fill="url(#SVGID_4_)"/>
-<ellipse cx="20.5" cy="12.33" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.58" x2="20.58" y1="11.92" y2="15.1">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<path d="M20.5,15.834c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5 S21.926,15.834,20.5,15.834L20.5,15.834z" fill="url(#SVGID_4_)"/>
+<ellipse cx="20.5" cy="12.334" fill="#22243E" rx="1.5" ry="2.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.583" x2="20.583" y1="11.9248" y2="15.1028">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M19.17,13.46c0.248,0.813,0.749,1.377,1.334,1.377,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.153-0.03-0.311-0.048-0.473-0.048-1.07-0.01-1.98,0.67-2.33,1.62z" fill="url(#SVGID_5_)"/>
-<path d="M12,14.83c-0.209,0-0.404-0.132-0.475-0.34-0.041-0.121-0.932-2.159-4.49-2.159-0.277,0-0.535-0.724-0.535-1s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341,0.087,0.262-0.055,0.545-0.316,0.632-0.05,0.02-0.1,0.03-0.15,0.03z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M12,14.02c-0.209,0-0.404-0.132-0.475-0.34-0.041-0.121-0.992-3.066-4.552-3.066-0.276,0-0.474-0.503-0.474-0.78s0.225-0.5,0.5-0.5c4.312,0,5.429,3.892,5.475,4.028,0.087,0.262-0.055,0.545-0.316,0.632-0.053,0.018-0.105-0.661-0.158-0.661v0.691z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M12,14.33c-0.209,0-0.404-0.132-0.475-0.34-0.041-0.121-0.965-2.659-4.525-2.659-0.275,0-0.5-0.224-0.5-0.5s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341,0.087,0.262-0.055,0.545-0.316,0.632-0.05,0.03-0.1,0.03-0.15,0.03z" fill="#22243E"/>
-</svg>
\ No newline at end of file
+<path d="M19.166,13.457c0.248,0.813,0.749,1.377,1.334,1.377c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452c-0.153-0.03-0.311-0.048-0.473-0.048C20.43,11.834,19.522,12.511,19.166,13.457z" fill="url(#SVGID_5_)"/>
+<path d="M12,14.833c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.932-2.159-4.49-2.159 c-0.277,0-0.535-0.724-0.535-1s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341c0.087,0.262-0.055,0.545-0.316,0.632 C12.105,14.825,12.053,14.833,12,14.833L12,14.833z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12,14.021c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.992-3.066-4.552-3.066 c-0.276,0-0.474-0.503-0.474-0.78s0.225-0.5,0.5-0.5c4.312,0,5.429,3.892,5.475,4.028c0.087,0.262-0.055,0.545-0.316,0.632 c-0.053,0.018-0.105-0.661-0.158-0.661V14.021z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M12,14.334c-0.209,0-0.404-0.132-0.475-0.34c-0.041-0.121-0.965-2.659-4.525-2.659 c-0.275,0-0.5-0.224-0.5-0.5s0.225-0.5,0.5-0.5c4.312,0,5.429,3.205,5.475,3.341c0.087,0.262-0.055,0.545-0.316,0.632 C12.105,14.326,12.053,14.334,12,14.334L12,14.334z" fill="#22243E"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_unhappy.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_unhappy.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,42 +1,46 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="9.917" y2="17.13">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5" x2="8.5" y1="9.917" y2="17.1255">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M8.5,17c-1.426,0-2.5-1.5-2.5-3.5s1.074-3.5,2.5-3.5c1.425,0,2.5,1.505,2.5,3.5s-1.075,3.5-2.5,3.5z" fill="url(#SVGID_2_)"/>
+<path d="M8.5,17C7.074,17,6,15.495,6,13.5S7.074,10,8.5,10c1.425,0,2.5,1.505,2.5,3.5S9.925,17,8.5,17L8.5,17 z" fill="url(#SVGID_2_)"/>
<ellipse cx="8.5" cy="13.5" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.583" x2="8.583" y1="12.97" y2="16.15">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="8.583" x2="8.583" y1="12.9707" y2="16.1465">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M7.166,14.62c0.248,0.82,0.748,1.38,1.334,1.38,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.155-0.03-0.311-0.05-0.473-0.05-1.071,0-1.979,0.68-2.334,1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.952" y2="17.11">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M7.166,14.623C7.414,15.437,7.914,16,8.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C9.818,13.018,9.662,13,9.5,13C8.429,13,7.521,13.677,7.166,14.623z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="21.5" x2="21.5" y1="9.9517" y2="17.1103">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5c1.425,0,2.5,1.505,2.5,3.5s-1.08,3.5-2.5,3.5z" fill="url(#SVGID_4_)"/>
+<path d="M21.5,17c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5c1.425,0,2.5,1.505,2.5,3.5S22.925,17,21.5,17 L21.5,17z" fill="url(#SVGID_4_)"/>
<ellipse cx="21.5" cy="13.5" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.58" x2="21.58" y1="13.09" y2="16.27">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="21.583" x2="21.583" y1="13.0908" y2="16.2688">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M20.17,14.62c0.24,0.82,0.74,1.38,1.33,1.38,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.15-0.03-0.31-0.05-0.47-0.05-1.07,0-1.98,0.68-2.33,1.62z" fill="url(#SVGID_5_)"/>
-<path d="M23.02,24c-0.17,0-0.335-0.086-0.429-0.241-1.37-2.28-4.36-2.76-7.59-2.76s-6.217,0.476-7.598,2.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687c1.583-2.62,4.824-4.24,8.454-4.24,3.631,0,6.871,1.625,8.453,4.241,0.143,0.236,0.066,0.544-0.17,0.687-0.08,0.05-0.17,0.07-0.26,0.07z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.02,23c-0.17,0-0.335-0.086-0.429-0.241-1.37-2.28-4.36-3.76-7.59-3.76s-6.217,1.476-7.598,3.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687c1.583-2.62,4.824-4.24,8.454-4.24,3.631,0,6.871,1.625,8.453,4.241,0.143,0.236,0.066,0.544-0.17,0.687-0.08,0.05-0.17,0.07-0.26,0.07z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="15" x2="15" y1="18.57" y2="23.67">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M20.166,14.623C20.414,15.437,20.914,16,21.5,16c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452C22.818,13.018,22.662,13,22.5,13C21.429,13,20.521,13.677,20.166,14.623z" fill="url(#SVGID_5_)"/>
+<path d="M23.025,24c-0.17,0-0.335-0.086-0.429-0.241C21.216,21.476,18.234,21,15,21 s-6.217,0.476-7.598,2.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,20.625,11.367,19,15,19 c3.631,0,6.871,1.625,8.453,4.241c0.143,0.236,0.066,0.544-0.17,0.687C23.203,23.977,23.113,24,23.025,24L23.025,24z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23.025,23c-0.17,0-0.335-0.086-0.429-0.241C21.216,20.476,18.234,19,15,19s-6.217,1.476-7.598,3.759 c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,19.625,11.367,18,15,18c3.631,0,6.871,1.625,8.453,4.241 c0.143,0.236,0.066,0.544-0.17,0.687C23.203,22.977,23.113,23,23.025,23L23.025,23z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9995" x2="14.9995" y1="18.5723" y2="23.6656">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M23.02,23.5c-0.17,0-0.335-0.086-0.429-0.241-1.37-2.28-4.36-3.76-7.59-3.76s-6.217,1.476-7.598,3.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687c1.583-2.62,4.824-4.24,8.454-4.24,3.631,0,6.871,1.625,8.453,4.241,0.143,0.236,0.066,0.544-0.17,0.687-0.08,0.05-0.17,0.07-0.26,0.07z" fill="url(#SVGID_6_)"/>
-</svg>
\ No newline at end of file
+<path d="M23.025,23.5c-0.17,0-0.335-0.086-0.429-0.241C21.216,20.976,18.234,19.5,15,19.5 s-6.217,1.476-7.598,3.759c-0.143,0.235-0.45,0.312-0.687,0.169s-0.312-0.45-0.169-0.687C8.129,20.125,11.367,18.5,15,18.5 c3.631,0,6.871,1.625,8.453,4.241c0.143,0.236,0.066,0.544-0.17,0.687C23.203,23.477,23.113,23.5,23.025,23.5L23.025,23.5z" fill="url(#SVGID_6_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_very_cool.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_very_cool.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,50 +1,54 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M28,9c0-0.552-0.415-1-0.929-1h-24.14c-0.513,0-0.928,0.448-0.928,1v3c0,4,2.785,5,6.498,5,3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6,3.714,0,6.506-1,6.506-5-0.01-0.5-0.01-3-0.01-3z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M28,8c0-0.552-0.415-1-0.929-1h-24.14c-0.513,0-0.928,0.448-0.928,1v3c0,4,2.785,5,6.498,5,3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6,3.714,0,6.506-1,6.506-5-0.01-0.5-0.01-3-0.01-3z"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.578" x2="8.578" y1="8" y2="14.94">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#737474"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M28.004,9c0-0.552-0.415-1-0.929-1h-0.498H15H4.359H2.932C2.419,8,2.004,8.448,2.004,9c0,0,0,2.501,0,3 c0,4,2.785,5,6.498,5c3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6c3.714,0,6.506-1,6.506-5 C28.004,11.501,28.004,9,28.004,9z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M28.004,8c0-0.552-0.415-1-0.929-1h-0.498H15H4.359H2.932C2.419,7,2.004,7.448,2.004,8c0,0,0,2.501,0,3c0,4,2.785,5,6.498,5 c3.021,0,5.229-3.359,6.165-6h0.667c0.936,2.641,3.143,6,6.164,6c3.714,0,6.506-1,6.506-5C28.004,10.501,28.004,8,28.004,8z"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="8.5781" x2="8.5781" y1="8" y2="14.9378">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#737474"/>
</linearGradient>
-<path d="M8.502,15c-3.601,0-5.57-0.897-5.57-4,0-1.084,1.259-2.135,1.864-3h9.429c-0.105,0.908-0.663,2.754-1.867,4.466-0.81,1.15-2.13,2.53-3.848,2.53z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -656.8359 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-678.3" x2="-678.3" y1="8" y2="14.94">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#737474"/>
+<path d="M8.502,15c-3.601,0-5.57-0.897-5.57-4c0-1.084,1.259-2.135,1.864-3h9.429 c-0.105,0.908-0.663,2.754-1.867,4.466C11.545,13.622,10.216,15,8.502,15L8.502,15z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -656.8359 0)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-678.2617" x2="-678.2617" y1="8" y2="14.9378">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#737474"/>
</linearGradient>
-<path d="M21.5,15c3.602,0,5.577-0.897,5.577-4,0-1.084-0.329-2.135-0.936-3h-10.36c0.104,0.908,0.663,2.754,1.866,4.466,0.82,1.15,2.14,2.53,3.86,2.53z" fill="url(#SVGID_3_)"/>
-<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="10.21" x="2.932" y="9"/>
-<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="10.22" x="16.86" y="9"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.94" x2="14.94" y1="15.9" y2="27.15">
-<stop offset="0" stop-color="#946C40"/>
-<stop offset="1" stop-color="#EAE6CD"/>
+<path d="M21.498,15c3.602,0,5.577-0.897,5.577-4c0-1.084-0.329-2.135-0.936-3H15.776 c0.104,0.908,0.663,2.754,1.866,4.466C18.456,13.622,19.785,15,21.498,15L21.498,15z" fill="url(#SVGID_3_)"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="10.212" x="2.932" y="9"/>
+<rect fill="#FFFFFF" fill-opacity="0.6" height="1" stroke-opacity="0.6" width="10.219" x="16.856" y="9"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9448" x2="14.9448" y1="15.9014" y2="27.1496">
+<stop offset="0" style="stop-color:#946C40"/>
+<stop offset="1" style="stop-color:#EAE6CD"/>
</linearGradient>
-<path d="M14.94,16c-5.995,0-10.94,1-10.94,1,0.506,5.606,5.209,10,10.94,10,5.734,0,10.44-4.394,10.94-10,0.01,0-4.94-1-10.94-1z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.94" x2="14.94" y1="16.92" y2="26.12">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M14.945,16C8.945,16,4,17,4,17c0.506,5.606,5.209,10,10.945,10c5.734,0,10.438-4.394,10.944-10 C25.89,17,20.945,16,14.945,16z" fill="url(#SVGID_4_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9448" x2="14.9448" y1="16.9189" y2="26.1216">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M4,17c0.506,5.046,5.209,9,10.94,9,5.734,0,10.44-3.954,10.94-9h-21.88z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.94" x2="14.94" y1="17.94" y2="25.1">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M4,17c0.506,5.046,5.209,9,10.945,9c5.734,0,10.438-3.954,10.944-9H4z" fill="url(#SVGID_5_)"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="14.9448" x2="14.9448" y1="17.9375" y2="25.0951">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M14.94,25c-4.703,0-8.771-2.996-9.76-7h19.52c-0.98,4-5.05,7-9.76,7z" fill="url(#SVGID_6_)"/>
-<path d="M13.89,24.94c0.33,0.032,0.663,0.052,1,0.054v-6.99h-1v6.944z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M14.89,25c0.019,0,0.036,0.002,0.056,0.002,0.318,0,0.633-0.016,0.944-0.043v-6.96h-1v6.998z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M7.89,22.36c0.313,0.279,0.647,0.539,1,0.781v-5.14h-1v4.365z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M8.89,23.15c0.319,0.219,0.653,0.421,1,0.605v-5.76h-1v5.146z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M19.89,23.81c0.348-0.179,0.679-0.38,1-0.594v-5.22h-1v5.813z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M20.89,23.22c0.351-0.232,0.687-0.48,1-0.752v-4.47h-1v5.219z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M5.512,19h18.86c0.129-0.326,0.243-0.658,0.328-1h-19.52c0.084,0.34,0.199,0.67,0.326,1z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6.634,21c0.263,0.352,0.548,0.688,0.862,1h14.9c0.314-0.313,0.599-0.648,0.862-1h-16.62z" fill-opacity="0.2" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<path d="M14.945,25c-4.703,0-8.771-2.996-9.76-7h19.52C23.715,22.004,19.646,25,14.945,25L14.945,25z" fill="url(#SVGID_6_)"/>
+<path d="M13.89,24.944c0.33,0.032,0.663,0.052,1,0.054V18h-1V24.944z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M14.89,24.998c0.019,0,0.036,0.002,0.056,0.002c0.318,0,0.633-0.016,0.944-0.043V18h-1V24.998 z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M7.89,22.365c0.313,0.279,0.647,0.539,1,0.781V18h-1V22.365z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M8.89,23.146c0.319,0.219,0.653,0.421,1,0.605V18h-1V23.146z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M19.89,23.813c0.348-0.179,0.679-0.38,1-0.594V18h-1V23.813z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M20.89,23.219c0.351-0.232,0.687-0.48,1-0.752V18h-1V23.219z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M5.512,19h18.865c0.129-0.326,0.243-0.658,0.328-1H5.186C5.27,18.342,5.385,18.674,5.512,19z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6.634,21c0.263,0.352,0.548,0.688,0.862,1h14.897c0.314-0.313,0.599-0.648,0.862-1H6.634z" fill-opacity="0.2" stroke-opacity="0.2"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,37 +1,41 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.5" x2="21.5" y1="8.786" y2="15.94">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.5" x2="21.5" y1="8.7856" y2="15.9438">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M21.5,15.83c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5,2.5,1.505,2.5,3.5-1.07,3.5-2.5,3.5z" fill="url(#SVGID_2_)"/>
-<ellipse cx="21.5" cy="12.33" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21.58" x2="21.58" y1="11.92" y2="15.1">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<path d="M21.5,15.834c-1.426,0-2.5-1.505-2.5-3.5s1.074-3.5,2.5-3.5s2.5,1.505,2.5,3.5 S22.926,15.834,21.5,15.834L21.5,15.834z" fill="url(#SVGID_2_)"/>
+<ellipse cx="21.5" cy="12.334" fill="#22243E" rx="1.5" ry="2.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="21.583" x2="21.583" y1="11.9248" y2="15.1028">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M20.17,13.46c0.248,0.813,0.749,1.377,1.334,1.377,0.828,0,1.5-1.119,1.5-2.5,0-0.155-0.012-0.305-0.027-0.452-0.153-0.03-0.311-0.048-0.473-0.048-1.07-0.01-1.98,0.67-2.33,1.62z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-577.7" x2="-577.7" y1="8.935" y2="15.9">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M20.166,13.457c0.248,0.813,0.749,1.377,1.334,1.377c0.828,0,1.5-1.119,1.5-2.5 c0-0.155-0.012-0.305-0.027-0.452c-0.153-0.03-0.311-0.048-0.473-0.048C21.43,11.834,20.522,12.511,20.166,13.457z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -566.5 0)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-577.7495" x2="-577.7495" y1="8.9351" y2="15.8952">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M9,16c0.754,0,1.394-0.564,1.487-1.313,0.21-1.69,0.64-1.69,0.82-1.69,0.134,0,0.49,0,0.703,1.688,0.1,0.75,0.74,1.31,1.49,1.31h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57,0.246-0.317,0.354-0.71,0.304-1.108-0.41-3.27-1.88-5.31-3.84-5.31-1.111,0-3.063,0.69-3.644,5.313-0.05,0.396,0.058,0.79,0.304,1.107,0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008h0.13z" fill="url(#SVGID_4_)"/>
-<path d="M9,15c0.248,0,0.464-0.185,0.495-0.438,0.291-2.31,1.135-2.56,1.815-2.56s1.404,0.249,1.695,2.563c0.034,0.273,0.273,0.466,0.559,0.434,0.273-0.035,0.468-0.285,0.434-0.559-0.33-2.69-1.45-4.43-2.84-4.43s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559h0.067z" fill="#22243E"/>
-<path d="M16.45,23.92c-0.495,0.051-1.007,0.077-1.523,0.077-5.144,0-8.917-1.481-10.1-5.636-0.074-0.267-0.354-0.423-0.617-0.346-0.266,0.076-0.42,0.352-0.344,0.617,0.007,0.026,0.018,0.05,0.024,0.076l-0.893,1.79c0.475,0,0.91-0.389,1.242-0.796,1.609,3.963,5.59,6.827,10.76,6.827,0.551,0,0.34-0.041,0.871-0.025,1.127,0.033,1.154-1.863,1.126-2.137-0.03-0.27-0.28-0.47-0.55-0.44z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M16.45,22.92c-0.495,0.051-1.007,0.077-1.523,0.077-5.144,0-8.917-2.481-10.1-6.636-0.074-0.267-0.354-0.423-0.617-0.346-0.266,0.076-0.42,0.352-0.344,0.617,0.007,0.026,0.018,0.05,0.024,0.076l-0.893,2.79c0.475,0,0.91-1.389,1.242-1.796,1.609,3.963,5.352,6.79,10.52,6.79,0.551,0,1.099-0.027,1.627-0.083,0.275-0.028,0.608-0.042,0.608-1.042,0-0.28-0.28-0.48-0.55-0.45z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M9,16c0.754,0,1.394-0.564,1.487-1.313C10.7,13,11.126,13,11.309,13c0.134,0,0.49,0,0.703,1.688 C12.106,15.436,12.746,16,13.5,16h0.057l0.118-0.01c0.41-0.052,0.765-0.253,1.01-0.57c0.246-0.317,0.354-0.71,0.304-1.108 C14.576,11.036,13.107,9,11.154,9c-1.111,0-3.063,0.69-3.644,5.313c-0.05,0.396,0.058,0.79,0.304,1.107 c0.245,0.316,0.6,0.518,0.997,0.568l0.063,0.008L9,16z" fill="url(#SVGID_4_)"/>
+<path d="M9,15c0.248,0,0.464-0.185,0.495-0.438C9.786,12.249,10.629,12,11.309,12s1.404,0.249,1.695,2.563 c0.034,0.273,0.273,0.466,0.559,0.434c0.273-0.035,0.468-0.285,0.434-0.559C13.657,11.742,12.542,10,11.154,10 s-2.313,1.742-2.651,4.438c-0.034,0.274,0.16,0.524,0.434,0.559C8.958,14.999,8.979,15,9,15L9,15z" fill="#22243E"/>
+<path d="M16.448,23.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-1.481-10.095-5.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,20.5 c0.475,0,0.91-0.389,1.242-0.796c1.609,3.963,5.59,6.827,10.758,6.827c0.551,0,0.34-0.041,0.871-0.025 c1.127,0.033,1.154-1.863,1.126-2.137C16.969,24.094,16.722,23.893,16.448,23.924z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M16.448,22.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-2.481-10.095-6.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,19.5 c0.475,0,0.91-1.389,1.242-1.796c1.609,3.963,5.352,6.79,10.52,6.79c0.551,0,1.099-0.027,1.627-0.083 c0.275-0.028,0.608-0.042,0.608-1.042C16.997,23.092,16.722,22.893,16.448,22.924z" fill-opacity="0.2" stroke-opacity="0.2"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="3" x2="17" y1="21" y2="21">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M16.45,23.92c-0.495,0.051-1.007,0.077-1.523,0.077-5.144,0-8.917-2.481-10.1-6.636-0.074-0.267-0.354-0.423-0.617-0.346-0.266,0.076-0.42,0.352-0.344,0.617,0.007,0.026,0.018,0.05,0.024,0.076l-0.893,1.79c0.475,0,0.91-0.389,1.242-0.796,1.609,3.963,5.515,6.297,10.68,6.297,0.551,0,1.099-0.028,1.627-0.083,0.274-0.029,0.474-0.275,0.445-0.549-0.03-0.28-0.28-0.48-0.55-0.45z" fill="url(#SVGID_5_)"/>
-</svg>
\ No newline at end of file
+<path d="M16.448,23.924c-0.495,0.051-1.007,0.077-1.523,0.077c-5.144,0-8.917-2.481-10.095-6.636 c-0.074-0.267-0.354-0.423-0.617-0.346c-0.266,0.076-0.42,0.352-0.344,0.617c0.007,0.026,0.018,0.05,0.024,0.076L3,19.5 c0.475,0,0.91-0.389,1.242-0.796c1.609,3.963,5.515,6.297,10.683,6.297c0.551,0,1.099-0.028,1.627-0.083 c0.274-0.029,0.474-0.275,0.445-0.549C16.969,24.094,16.722,23.893,16.448,23.924z" fill="url(#SVGID_5_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink_grin.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wink_grin.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,49 +1,53 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="83.02" x2="83.02" y1="-203.3" y2="-194.1">
-<stop offset="0" stop-color="#946C40"/>
-<stop offset="1" stop-color="#EAE6CD"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="83.0156" x2="83.0156" y1="-203.2881" y2="-194.0849">
+<stop offset="0" style="stop-color:#946C40"/>
+<stop offset="1" style="stop-color:#EAE6CD"/>
</linearGradient>
-<path d="M12.31,25.7c-4.1-1.097-7.131-5.184-8.119-8.915l-0.439-1.656s7.074,0.857,10.94,1.892c3.86,1.04,10.31,3.8,10.31,3.8l-1.206,1.216c-2.72,2.74-7.38,4.76-11.48,3.67z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="83.02" x2="83.02" y1="-202.3" y2="-195.1">
-<stop offset="0" stop-color="#31151D"/>
-<stop offset="1" stop-color="#76464D"/>
+<path d="M12.306,25.696c-4.1-1.097-7.131-5.184-8.119-8.915l-0.439-1.656c0,0,7.074,0.857,10.939,1.892 C18.55,18.051,25,20.811,25,20.811l-1.206,1.216C21.073,24.766,16.407,26.793,12.306,25.696L12.306,25.696z" fill="url(#SVGID_2_)"/>
+<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="83.0156" x2="83.0156" y1="-202.2705" y2="-195.1119">
+<stop offset="0" style="stop-color:#31151D"/>
+<stop offset="1" style="stop-color:#76464D"/>
</linearGradient>
-<path d="M12.56,24.73c-4.101-1.098-7.39-4.218-8.378-7.949l-0.439-1.656,21.26,5.69-1.206,1.216c-2.72,2.74-7.13,3.8-11.23,2.7z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="83.02" x2="83.02" y1="-201.3" y2="-196.1">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<path d="M12.564,24.73c-4.101-1.098-7.39-4.218-8.378-7.949l-0.439-1.656L25,20.811l-1.206,1.216 C21.073,24.766,16.665,25.827,12.564,24.73L12.564,24.73z" fill="url(#SVGID_3_)"/>
+<linearGradient gradientTransform="matrix(0.966 0.2584 -0.2584 0.966 -118.0704 191.8488)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="83.0166" x2="83.0166" y1="-201.252" y2="-196.1404">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
-<path d="M12.82,23.76c3.863,1.034,7.82-0.02,10.22-2.439l-17.86-4.78c0.874,3.3,3.776,6.19,7.637,7.22z" fill="url(#SVGID_4_)"/>
-<path d="M11.79,23.43c0.32,0.118,0.646,0.228,0.982,0.319l1.291-4.828-0.996-0.268-1.27,4.78z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M12.77,23.75c0.019,0.004,0.036,0.012,0.055,0.016,0.317,0.086,0.635,0.154,0.953,0.211l1.28-4.789-0.99-0.27-1.29,4.83z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M18.06,23.94c0.393-0.08,0.775-0.187,1.15-0.307l0.832-3.109-0.997-0.268-0.98,3.69z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M19.21,23.63c0.408-0.133,0.809-0.283,1.19-0.461l0.638-2.383-1-0.27-0.83,3.11z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<path d="M22.14,22.12c0.322-0.246,0.63-0.508,0.912-0.791l-17.87-4.79c0.104,0.387,0.238,0.768,0.395,1.141l16.56,4.44z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M6.688,19.4c0.231,0.352,0.486,0.689,0.765,1.014l0.813-3.039-0.966-0.26-0.612,2.29z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M7.269,20.36c0.262,0.296,0.541,0.581,0.84,0.852l0.969-3.624-0.997-0.27-0.812,3.04z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.5" x2="20.5" y1="8.786" y2="15.94">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M12.823,23.764c3.863,1.034,7.82-0.02,10.225-2.439L5.183,16.545 C6.057,19.842,8.959,22.73,12.823,23.764z" fill="url(#SVGID_4_)"/>
+<path d="M11.786,23.429c0.32,0.118,0.646,0.228,0.982,0.319l1.291-4.828l-0.996-0.268L11.786,23.429z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M12.769,23.748c0.019,0.004,0.036,0.012,0.055,0.016c0.317,0.086,0.635,0.154,0.953,0.211 l1.28-4.789L14.06,18.92L12.769,23.748z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M18.058,23.936c0.393-0.08,0.775-0.187,1.15-0.307l0.832-3.109l-0.997-0.268L18.058,23.936z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.208,23.629c0.408-0.133,0.809-0.283,1.19-0.461l0.638-2.383L20.04,20.52L19.208,23.629z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M22.136,22.115c0.322-0.246,0.63-0.508,0.912-0.791L5.183,16.545c0.104,0.387,0.238,0.768,0.395,1.141 L22.136,22.115z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M6.688,19.395c0.231,0.352,0.486,0.689,0.765,1.014l0.813-3.039L7.3,17.111L6.688,19.395z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M7.269,20.358c0.262,0.296,0.541,0.581,0.84,0.852l0.969-3.624L8.081,17.32L7.269,20.358z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="20.5" x2="20.5" y1="8.7856" y2="15.9438">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M20.5,15.83c-1.425,0-2.5-1.505-2.5-3.5s1.075-3.5,2.5-3.5c1.426,0,2.5,1.505,2.5,3.5s-1.07,3.5-2.5,3.5z" fill="url(#SVGID_5_)"/>
-<ellipse cx="20.5" cy="12.33" fill="#22243E" rx="1.5" ry="2.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.58" x2="20.58" y1="11.92" y2="15.1">
-<stop offset="0" stop-color="#22243E"/>
-<stop offset="1" stop-color="#82969E"/>
+<path d="M20.5,15.834c-1.425,0-2.5-1.505-2.5-3.5s1.075-3.5,2.5-3.5c1.426,0,2.5,1.505,2.5,3.5 S21.926,15.834,20.5,15.834L20.5,15.834z" fill="url(#SVGID_5_)"/>
+<ellipse cx="20.5" cy="12.334" fill="#22243E" rx="1.5" ry="2.5"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="20.584" x2="20.584" y1="11.9248" y2="15.1028">
+<stop offset="0" style="stop-color:#22243E"/>
+<stop offset="1" style="stop-color:#82969E"/>
</linearGradient>
-<path d="M19.17,13.46c0.247,0.813,0.749,1.377,1.333,1.377,0.829,0,1.5-1.119,1.5-2.5,0-0.155-0.011-0.305-0.027-0.452-0.152-0.03-0.311-0.048-0.473-0.048-1.07-0.01-1.98,0.67-2.33,1.62z" fill="url(#SVGID_6_)"/>
-<path d="M12,14.83c-0.209,0-0.403-0.132-0.474-0.34-0.042-0.121-0.932-2.159-4.491-2.159-0.276,0-0.534-0.724-0.534-1s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341,0.088,0.262-0.055,0.545-0.316,0.632-0.06,0.02-0.11,0.03-0.16,0.03z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M12,14.02c-0.209,0-0.403-0.132-0.474-0.34-0.042-0.121-0.993-3.066-4.552-3.066-0.277,0-0.474-0.503-0.474-0.78s0.224-0.5,0.5-0.5c4.312,0,5.429,3.892,5.474,4.028,0.088,0.262-0.055,0.545-0.316,0.632-0.053,0.018-0.105-0.661-0.158-0.661v0.691z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M12,14.33c-0.209,0-0.403-0.132-0.474-0.34-0.042-0.121-0.966-2.659-4.525-2.659-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341,0.088,0.262-0.055,0.545-0.316,0.632-0.06,0.03-0.11,0.03-0.16,0.03z" fill="#22243E"/>
-</svg>
\ No newline at end of file
+<path d="M19.167,13.457c0.247,0.813,0.749,1.377,1.333,1.377c0.829,0,1.5-1.119,1.5-2.5 c0-0.155-0.011-0.305-0.027-0.452c-0.152-0.03-0.311-0.048-0.473-0.048C20.43,11.834,19.523,12.511,19.167,13.457z" fill="url(#SVGID_6_)"/>
+<path d="M12,14.833c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.932-2.159-4.491-2.159 c-0.276,0-0.534-0.724-0.534-1s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341c0.088,0.262-0.055,0.545-0.316,0.632 C12.105,14.825,12.053,14.833,12,14.833L12,14.833z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M12,14.021c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.993-3.066-4.552-3.066 c-0.277,0-0.474-0.503-0.474-0.78s0.224-0.5,0.5-0.5c4.312,0,5.429,3.892,5.474,4.028c0.088,0.262-0.055,0.545-0.316,0.632 c-0.053,0.018-0.105-0.661-0.158-0.661V14.021z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M12,14.334c-0.209,0-0.403-0.132-0.474-0.34c-0.042-0.121-0.966-2.659-4.525-2.659 c-0.276,0-0.5-0.224-0.5-0.5s0.224-0.5,0.5-0.5c4.312,0,5.429,3.205,5.474,3.341c0.088,0.262-0.055,0.545-0.316,0.632 C12.105,14.326,12.053,14.334,12,14.334L12,14.334z" fill="#22243E"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wondering.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_smiley_wondering.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,38 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
+<g>
<rect fill="none" height="30" width="30"/>
+</g>
<circle cx="15" cy="15" fill-opacity="0.6" r="14" stroke-opacity="0.6"/>
-<radialGradient cx="15" cy="3.703" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.06">
-<stop offset="0" stop-color="#DDD7B2"/>
-<stop offset="0.7818" stop-color="#B3964D"/>
-<stop offset="1" stop-color="#B39C4D"/>
+<radialGradient cx="15" cy="3.7026" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="23.0618">
+<stop offset="0" style="stop-color:#DDD7B2"/>
+<stop offset="0.7818" style="stop-color:#B3964D"/>
+<stop offset="1" style="stop-color:#B39C4D"/>
</radialGradient>
-<path d="M15,28c-7.168,0-13-5.83-13-13,0-7.168,5.832-13,13-13s13,5.832,13,13c0,7.17-5.83,13-13,13z" fill="url(#SVGID_1_)"/>
-<path d="M15,3c6.999,0,12.71,5.564,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.168-5.832-13-13-13s-13,5.832-13,13c0,0.169,0.019,0.333,0.025,0.5,0.266-6.936,5.976-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M20.8,24.96c-0.095,0.545-0.393,0.946-0.664,0.898l-10.84-1.9c-0.272-0.048-0.415-0.527-0.319-1.072,0.096-0.544,0.393-0.945,0.664-0.898l10.84,1.901c0.27,0.05,0.41,0.53,0.32,1.07z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M20.97,23.98c-0.096,0.544-0.394,0.945-0.666,0.898l-10.83-1.91c-0.272-0.048-0.416-0.526-0.32-1.071s0.394-0.946,0.666-0.898l10.83,1.9c0.27,0.05,0.42,0.53,0.32,1.08z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M20.88,24.47c-0.048,0.271-0.307,0.453-0.579,0.406l-10.83-1.91c-0.272-0.048-0.454-0.307-0.406-0.579,0.048-0.271,0.307-0.453,0.578-0.406l10.84,1.901c0.27,0.06,0.45,0.32,0.4,0.59z" fill="#2F2021"/>
-<path d="M28,14c0,0.553-0.205,1-0.459,1h-11.08c-0.259,0-0.459-0.45-0.459-1,0-0.553,0.205-1,0.459-1h11.08c0.26,0,0.46,0.45,0.46,1z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="22.47" x2="22.47" y1="8.208" y2="18.83">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M15,28C7.832,28,2,22.168,2,15C2,7.832,7.832,2,15,2s13,5.832,13,13C28,22.168,22.168,28,15,28L15,28 z" fill="url(#SVGID_1_)"/>
+<path d="M15,3c6.999,0,12.709,5.564,12.975,12.5C27.981,15.333,28,15.169,28,15 c0-7.168-5.832-13-13-13S2,7.832,2,15c0,0.169,0.019,0.333,0.025,0.5C2.291,8.564,8.001,3,15,3z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M20.797,24.961c-0.095,0.545-0.393,0.946-0.664,0.898l-10.835-1.9 c-0.272-0.048-0.415-0.527-0.319-1.072l0,0c0.096-0.544,0.393-0.945,0.664-0.898l10.836,1.901 C20.75,23.938,20.893,24.416,20.797,24.961L20.797,24.961z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.971,23.977c-0.096,0.544-0.394,0.945-0.666,0.898L9.471,22.974c-0.272-0.048-0.416-0.526-0.32-1.071l0,0 c0.096-0.545,0.394-0.946,0.666-0.898l10.834,1.9C20.923,22.952,21.066,23.432,20.971,23.977L20.971,23.977z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.884,24.469c-0.048,0.271-0.307,0.453-0.579,0.406L9.471,22.974c-0.272-0.048-0.454-0.307-0.406-0.579 l0,0c0.048-0.271,0.307-0.453,0.578-0.406l10.836,1.901C20.75,23.938,20.932,24.196,20.884,24.469L20.884,24.469z" fill="#2F2021"/>
+<path d="M28,14c0,0.553-0.205,1-0.459,1H16.459C16.205,15,16,14.553,16,14l0,0c0-0.553,0.205-1,0.459-1h11.082 C27.795,13,28,13.447,28,14L28,14z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="22.4746" x2="22.4746" y1="8.208" y2="18.834">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M22.48,19c2.863,0,5.221-2.201,5.475-5h-10.96c0.25,2.8,2.61,5,5.48,5z" fill="url(#SVGID_2_)"/>
-<path d="M22.48,18c2.314,0,4.197-1.753,4.449-4h-8.898c0.25,2.25,2.13,4,4.45,4z" fill="#FFFFFF"/>
-<path d="M27.76,15c0.092-0.322,0.156-0.656,0.188-1h-10.95c0.031,0.344,0.096,0.678,0.188,1h10.57z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M23.52,16c1.207,0,2.217-0.86,2.449-2h-4.898c0.24,1.14,1.25,2,2.45,2z" fill="#22243E"/>
-<path d="M28,13c0,0.553-0.205,1-0.459,1h-11.08c-0.259,0-0.459-0.45-0.459-1,0-0.553,0.205-1,0.459-1h11.08c0.26,0,0.46,0.45,0.46,1z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M28,13.5c0,0.276-0.205,0.5-0.459,0.5h-11.08c-0.259,0-0.459-0.22-0.459-0.5,0-0.276,0.205-0.5,0.459-0.5h11.08c0.26,0,0.46,0.22,0.46,0.5z" fill="#2F2021"/>
-<path d="M15,14c0,0.553-0.205,1-0.459,1h-11.08c-0.254,0-0.459-0.45-0.459-1,0-0.553,0.205-1,0.459-1h11.08c0.26,0,0.46,0.45,0.46,1z" fill-opacity="0.4" stroke-opacity="0.4"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.475" x2="9.475" y1="8.208" y2="18.83">
-<stop offset="0" stop-color="#997642"/>
-<stop offset="1" stop-color="#E5E1C3"/>
+<path d="M22.475,19c2.863,0,5.221-2.201,5.475-5H17C17.254,16.799,19.611,19,22.475,19z" fill="url(#SVGID_2_)"/>
+<path d="M22.475,18c2.314,0,4.197-1.753,4.449-4h-8.898C18.277,16.247,20.16,18,22.475,18z" fill="#FFFFFF"/>
+<path d="M27.762,15c0.092-0.322,0.156-0.656,0.188-1H17c0.031,0.344,0.096,0.678,0.188,1H27.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M23.525,16c1.207,0,2.217-0.86,2.449-2h-4.898C21.309,15.14,22.318,16,23.525,16z" fill="#22243E"/>
+<path d="M28,13c0,0.553-0.205,1-0.459,1H16.459C16.205,14,16,13.553,16,13l0,0 c0-0.553,0.205-1,0.459-1h11.082C27.795,12,28,12.447,28,13L28,13z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M28,13.5c0,0.276-0.205,0.5-0.459,0.5H16.459C16.205,14,16,13.776,16,13.5l0,0c0-0.276,0.205-0.5,0.459-0.5 h11.082C27.795,13,28,13.224,28,13.5L28,13.5z" fill="#2F2021"/>
+<path d="M15,14c0,0.553-0.205,1-0.459,1H3.459C3.205,15,3,14.553,3,14l0,0c0-0.553,0.205-1,0.459-1h11.082 C14.795,13,15,13.447,15,14L15,14z" fill-opacity="0.4" stroke-opacity="0.4"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="9.4746" x2="9.4746" y1="8.208" y2="18.834">
+<stop offset="0" style="stop-color:#997642"/>
+<stop offset="1" style="stop-color:#E5E1C3"/>
</linearGradient>
-<path d="M9.475,19c2.863,0,5.221-2.201,5.475-5h-10.95c0.254,2.8,2.611,5,5.475,5z" fill="url(#SVGID_3_)"/>
-<path d="M9.475,18c2.314,0,4.197-1.753,4.449-4h-8.895c0.252,2.25,2.135,4,4.45,4z" fill="#FFFFFF"/>
-<path d="M14.76,15c0.092-0.322,0.156-0.656,0.188-1h-10.95c0.031,0.344,0.096,0.678,0.188,1h10.57z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10.52,16c1.207,0,2.217-0.86,2.449-2h-4.894c0.233,1.14,1.242,2,2.444,2z" fill="#22243E"/>
-<path d="M15,13c0,0.553-0.205,1-0.459,1h-11.08c-0.254,0-0.459-0.45-0.459-1,0-0.553,0.205-1,0.459-1h11.08c0.26,0,0.46,0.45,0.46,1z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
-<path d="M15,13.5c0,0.276-0.205,0.5-0.459,0.5h-11.08c-0.254,0-0.459-0.22-0.459-0.5s0.205-0.5,0.459-0.5h11.08c0.26,0,0.46,0.22,0.46,0.5z" fill="#2F2021"/>
-</svg>
\ No newline at end of file
+<path d="M9.475,19c2.863,0,5.221-2.201,5.475-5H4C4.254,16.799,6.611,19,9.475,19z" fill="url(#SVGID_3_)"/>
+<path d="M9.475,18c2.314,0,4.197-1.753,4.449-4H5.025C5.277,16.247,7.16,18,9.475,18z" fill="#FFFFFF"/>
+<path d="M14.762,15c0.092-0.322,0.156-0.656,0.188-1H4c0.031,0.344,0.096,0.678,0.188,1H14.762z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.525,16c1.207,0,2.217-0.86,2.449-2H8.076C8.309,15.14,9.318,16,10.525,16z" fill="#22243E"/>
+<path d="M15,13c0,0.553-0.205,1-0.459,1H3.459C3.205,14,3,13.553,3,13l0,0c0-0.553,0.205-1,0.459-1 h11.082C14.795,12,15,12.447,15,13L15,13z" fill="#FFFFFF" fill-opacity="0.3" stroke-opacity="0.3"/>
+<path d="M15,13.5c0,0.276-0.205,0.5-0.459,0.5H3.459C3.205,14,3,13.776,3,13.5l0,0C3,13.224,3.205,13,3.459,13 h11.082C14.795,13,15,13.224,15,13.5L15,13.5z" fill="#2F2021"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sound.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sound.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,15 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M9.861,29.5c-3.192,0-5.794-1.643-6.474-4.088-0.358-1.289-0.16-2.642,0.573-3.911,1.012-1.754,2.905-3.099,5.194-3.69,0.799-0.205,1.61-0.311,2.413-0.311,0.938,0,1.831,0.14,2.648,0.409v-12.91l10.36-4.831,2.536,5.438-8.896,4.148-0.001,13.08c0.007,2.791-2.487,5.462-5.938,6.354-0.8,0.21-1.61,0.31-2.419,0.31z" fill-opacity="0.6"/>
-<path d="M17.22,22.84v-13.72l8.566-3.995-1.7-3.625-8.876,4.139v13.83c-1.491-0.938-3.635-1.255-5.812-0.692-3.517,0.908-5.778,3.758-5.054,6.365s4.161,3.984,7.677,3.076c3.083-0.797,5.201-3.086,5.188-5.395,0.01,0.01,0.01,0.01,0.01,0.02z" fill="url(#SVGID_1_)"/>
-<polygon fill="#FFFFFF" fill-opacity="0.5" points="25.21,5.394,25.78,5.125,24.09,1.5,15.22,5.639,15.22,7.139,24.09,3" stroke-opacity="0.5"/>
-<path d="M9.405,20.28c2.177-0.563,4.32-0.246,5.812,0.692v-1.5c-1.491-0.938-3.635-1.255-5.812-0.692-3.404,0.879-5.624,3.578-5.105,6.114,0.4-2.02,2.368-3.91,5.102-4.61z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
+<g>
+<path d="M9.861,29.5c-3.192,0-5.794-1.643-6.474-4.088c-0.358-1.289-0.16-2.642,0.573-3.911 c1.012-1.754,2.905-3.099,5.194-3.69c0.799-0.205,1.61-0.311,2.413-0.311c0.938,0,1.831,0.14,2.648,0.409V5.002l10.359-4.831 l2.536,5.438l-8.896,4.148l-0.001,13.079c0.007,2.791-2.487,5.462-5.938,6.354C11.479,29.396,10.666,29.5,9.861,29.5L9.861,29.5z" fill-opacity="0.6"/>
+<path d="M17.217,22.836V9.12l8.566-3.995L24.093,1.5l-8.876,4.139v13.833 c-1.491-0.938-3.635-1.255-5.812-0.692c-3.517,0.908-5.778,3.758-5.054,6.365s4.161,3.984,7.677,3.076 c3.083-0.797,5.201-3.086,5.188-5.395C17.216,22.829,17.217,22.832,17.217,22.836z" fill="url(#SVGID_1_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.5" points="25.209,5.394 25.783,5.125 24.093,1.5 15.217,5.639 15.217,7.139 24.093,3 " stroke-opacity="0.5"/>
+<path d="M9.405,20.279c2.177-0.563,4.32-0.246,5.812,0.692v-1.5c-1.491-0.938-3.635-1.255-5.812-0.692 c-3.404,0.879-5.624,3.578-5.105,6.114C4.703,22.866,6.671,20.985,9.405,20.279z" fill="#FFFFFF" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="5.262" y2="27.1">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="5.2617" y2="27.0999">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_speaker.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_speaker.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="7.764,21,1,21,1,9,7.764,9,19,3.382,19,26.62" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="10" x2="10" y1="5.052" y2="24.95">
-<stop offset="0" stop-color="#8B8B8B"/>
-<stop offset="0.4" stop-color="#E6E6E6"/>
-<stop offset="1" stop-color="#626262"/>
+<g>
+<polygon fill-opacity="0.6" points="7.764,21 1,21 1,9 7.764,9 19,3.382 19,26.618 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="9.9995" x2="9.9995" y1="5.0522" y2="24.9497">
+<stop offset="0" style="stop-color:#8B8B8B"/>
+<stop offset="0.4" style="stop-color:#E6E6E6"/>
+<stop offset="1" style="stop-color:#626262"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="8,10,2,10,2,20,8,20,18,25,18,5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="9.5" y1="8.413" y2="21.53">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.5" stop-color="#636363"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<polygon fill="url(#SVGID_1_)" points="8,10 2,10 2,20 8,20 18,25 18,5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="9.5" x2="9.5" y1="8.4131" y2="21.5318">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="11,8.5,8,10,8,20,11,21.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="6.5" x2="6.5" y1="4.818" y2="22.08">
-<stop offset="0" stop-color="#808080"/>
-<stop offset="0.5" stop-color="#636363"/>
-<stop offset="1" stop-color="#1C1C1C"/>
+<polygon fill="url(#SVGID_2_)" points="11,8.5 8,10 8,20 11,21.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="6.5" x2="6.5" y1="4.8179" y2="22.0767">
+<stop offset="0" style="stop-color:#808080"/>
+<stop offset="0.5" style="stop-color:#636363"/>
+<stop offset="1" style="stop-color:#1C1C1C"/>
</linearGradient>
<rect fill="url(#SVGID_3_)" height="10" width="3" x="5" y="10"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="8,10,2,10,2,11,8,11,18,6,18,5" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="8,10 2,10 2,11 8,11 18,6 18,5 " stroke-opacity="0.4"/>
<rect fill-opacity="0.4" height="10" width="1" x="7" y="10"/>
<rect fill="none" height="30" width="30"/>
-<path d="M19.79,20.21l0.529-0.694c0.96-1.26,1.48-2.86,1.48-4.52s-0.524-3.261-1.478-4.513l-0.529-0.694,2.267-2.267,0.697,0.881c1.44,1.83,2.24,4.17,2.24,6.59s-0.797,4.765-2.243,6.593l-0.697,0.881-2.27-2.26z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="22.56" x2="22.56" y1="20.97" y2="9.028">
-<stop offset="0" stop-color="#3E678C"/>
-<stop offset="0.5091" stop-color="#83CABF"/>
-<stop offset="1" stop-color="#3E678C"/>
+<path d="M19.793,20.207l0.529-0.694C21.275,18.261,21.8,16.658,21.8,15s-0.524-3.261-1.478-4.513l-0.529-0.694 l2.267-2.267l0.697,0.881C24.203,10.235,25,12.577,25,15s-0.797,4.765-2.243,6.593l-0.697,0.881L19.793,20.207z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="22.5586" x2="22.5586" y1="20.9727" y2="9.0278">
+<stop offset="0" style="stop-color:#3E678C"/>
+<stop offset="0.5091" style="stop-color:#83CABF"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<path d="M22.8,15c0,1.959-0.638,3.747-1.682,5.118l0.854,0.854c1.26-1.59,2.03-3.67,2.03-5.97s-0.77-4.383-2.027-5.973l-0.854,0.854c1.04,1.369,1.68,3.159,1.68,5.119z" fill="url(#SVGID_4_)"/>
-<path d="M23.55,23.97l0.344-0.652c1.23-2.33,1.91-5.28,1.91-8.32s-0.676-5.991-1.902-8.315l-0.344-0.652,2.322-2.322,0.646,1.15c1.59,2.844,2.47,6.449,2.47,10.14s-0.88,7.295-2.478,10.14l-0.646,1.15-2.32-2.32z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="26.39" x2="26.39" y1="24.65" y2="5.35">
-<stop offset="0" stop-color="#3E678C"/>
-<stop offset="0.5091" stop-color="#83CABF"/>
-<stop offset="1" stop-color="#3E678C"/>
+<path d="M22.8,15c0,1.959-0.638,3.747-1.682,5.118l0.854,0.854C23.23,19.383,24,17.295,24,15 s-0.77-4.383-2.027-5.973l-0.854,0.854C22.162,11.253,22.8,13.041,22.8,15z" fill="url(#SVGID_4_)"/>
+<path d="M23.554,23.968l0.344-0.652C25.124,20.991,25.8,18.038,25.8,15s-0.676-5.991-1.902-8.315l-0.344-0.652 l2.322-2.322l0.646,1.15C28.12,7.705,29,11.307,29,15s-0.88,7.295-2.478,10.14l-0.646,1.15L23.554,23.968z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="26.3906" x2="26.3906" y1="24.6504" y2="5.3501">
+<stop offset="0" style="stop-color:#3E678C"/>
+<stop offset="0.5091" style="stop-color:#83CABF"/>
+<stop offset="1" style="stop-color:#3E678C"/>
</linearGradient>
-<path d="M25.65,24.65c1.47-2.61,2.35-5.97,2.35-9.65s-0.885-7.042-2.35-9.65l-0.868,0.868c1.26,2.387,2.02,5.452,2.02,8.782s-0.758,6.395-2.018,8.782l0.87,0.87z" fill="url(#SVGID_5_)"/>
-</svg>
\ No newline at end of file
+<path d="M25.65,24.65C27.115,22.042,28,18.678,28,15s-0.885-7.042-2.35-9.65l-0.868,0.868 C26.042,8.605,26.8,11.666,26.8,15s-0.758,6.395-2.018,8.782L25.65,24.65z" fill="url(#SVGID_5_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_star_non_favourited.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_star_non_favourited.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
-<polygon fill-opacity="0.6" points="15,0.734,19.64,10.13,30,11.63,22.5,18.94,24.27,29.27,15,24.39,5.73,29.27,7.5,18.94,0,11.63,10.36,10.13" stroke-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="15,23.26,7.058,27.44,8.574,18.59,2.149,12.33,11.03,11.04,15,2.994,18.97,11.04,27.85,12.33,21.43,18.59,22.94,27.44"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.69,11.95,15,5.253,18.31,11.95,26.96,13.2,27.85,12.33,18.97,11.04,15,2.994,11.03,11.04,2.149,12.33,3.042,13.2"/>
+<polygon fill-opacity="0.6" points="15,0.734 19.635,10.126 30,11.632 22.5,18.943 24.27,29.266 15,24.393 5.73,29.266 7.5,18.943 0,11.632 10.365,10.126 " stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="15,23.262 7.058,27.438 8.574,18.594 2.149,12.331 11.029,11.04 15,2.994 18.971,11.04 27.852,12.331 21.426,18.594 22.941,27.438 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="11.693,11.954 15,5.253 18.307,11.954 26.959,13.201 27.852,12.331 18.971,11.04 15,2.994 11.029,11.04 2.149,12.331 3.042,13.201 "/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.994" y2="27.44">
-<stop offset="0" stop-color="#E0D9B5"/>
-<stop offset="1" stop-color="#B3964D"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="2.9937" y2="27.438">
+<stop offset="0" style="stop-color:#E0D9B5"/>
+<stop offset="1" style="stop-color:#B3964D"/>
</linearGradient>
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_swype.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_swype.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,43 +1,49 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M0,30v-30h30v30h-30zm23.6-3.75l-8.732-8.732-8.736,8.73h17.46zm2.65-2.65v-17.47l-8.732,8.732,8.73,8.73zm-22.5-0.27l8.465-8.465-8.47-8.459v16.93zm11.12-11.11l8.46-8.47h-16.93l8.468,8.47z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="0.9941" y2="29.19">
-<stop offset="0" stop-color="#E6E6E6"/>
-<stop offset="0.6182" stop-color="#A8A8A8"/>
-<stop offset="1" stop-color="#CCCCCC"/>
+<g>
+<g>
+<path d="M0,30V0h30v30H0z M23.599,26.25l-8.732-8.732L6.134,26.25H23.599z M26.25,23.599V6.134l-8.732,8.732 L26.25,23.599z M3.75,23.331l8.465-8.465L3.75,6.401V23.331z M14.866,12.215L23.33,3.75H6.402L14.866,12.215z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="14.9995" x2="14.9995" y1="0.9941" y2="29.1902">
+<stop offset="0" style="stop-color:#E6E6E6"/>
+<stop offset="0.6182" style="stop-color:#A8A8A8"/>
+<stop offset="1" style="stop-color:#CCCCCC"/>
</linearGradient>
-<path d="M0.938,0.938v28.12h28.12v-28.12h-28.12zm12.6,13.93l-10.73,10.73v-21.46l10.73,10.73zm-9.401-12.06h21.46l-10.72,10.73-10.73-10.73zm10.73,13.38l11,11h-22l11-11zm1.32-1.32l11-11v21.99l-11-10.99z" fill="url(#SVGID_1_)"/>
-<polygon fill-opacity="0.6" points="8.547,25.31,7.61,17.81,5.625,17.81,5.625,12.2,24.38,12.2,24.38,17.81,22.39,17.81,21.45,25.31" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="12.1" y2="23.99">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M0.938,0.938v28.125h28.125V0.938H0.938z M13.541,14.866L2.813,25.595V4.138L13.541,14.866z M4.139,2.813h21.455L14.866,13.541L4.139,2.813z M14.866,16.192l10.995,10.995H3.871L14.866,16.192z M16.192,14.866L27.188,3.871 v21.99L16.192,14.866z" fill="url(#SVGID_1_)"/>
+<g>
+<polygon fill-opacity="0.6" points="8.547,25.313 7.61,17.813 5.625,17.813 5.625,12.199 24.375,12.199 24.375,17.813 22.391,17.813 21.453,25.313 " stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="12.103" y2="23.9943">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<polygon fill="url(#SVGID_2_)" points="6.563,13.14,6.563,16.88,8.438,16.88,9.375,24.38,20.62,24.38,21.56,16.88,23.44,16.88,23.44,13.14"/>
-<path d="M13.12,14.06v-2.886c-0.348,0.048-0.692,0.073-1.03,0.073-0.804,0-1.568-0.139-2.272-0.414-3.952-1.536-3.863-4.501-3.858-4.626l0.019-0.408,0.312-0.265c0.103-0.088,1.06-0.855,2.881-0.855,0.958,0,1.99,0.212,3.066,0.632,1.3,0.506,2.174,1.126,2.762,1.716,0.588-0.589,1.462-1.209,2.762-1.716,1.076-0.42,2.108-0.632,3.066-0.632,1.82,0,2.777,0.767,2.881,0.855l0.313,0.265,0.019,0.408c0.005,0.125,0.094,3.091-3.862,4.632-0.704,0.275-1.469,0.414-2.272,0.414-0.338,0-0.683-0.025-1.03-0.073v2.886h-3.755z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M10.16,9.963c1.436,0.559,2.896,0.346,3.899,0.057v3.105h1.875v-3.1c1.003,0.289,2.464,0.502,3.899-0.057,3.375-1.316,3.267-3.717,3.267-3.717s-1.627-1.379-5.002-0.064c-1.87,0.725-2.72,1.667-3.11,2.369-0.392-0.702-1.242-1.644-3.102-2.369-3.377-1.316-5.004,0.064-5.004,0.064s-0.108,2.401,3.264,3.717z" fill="url(#SVGID_3_)"/>
+<polygon fill="url(#SVGID_2_)" points="6.563,13.137 6.563,16.875 8.438,16.875 9.375,24.375 20.625,24.375 21.563,16.875 23.438,16.875 23.438,13.137 "/>
+<path d="M13.125,14.063v-2.886c-0.348,0.048-0.692,0.073-1.03,0.073c-0.804,0-1.568-0.139-2.272-0.414 C5.866,9.294,5.955,6.329,5.96,6.204l0.019-0.408l0.312-0.265c0.103-0.088,1.06-0.855,2.881-0.855c0.958,0,1.99,0.212,3.066,0.632 c1.3,0.506,2.174,1.126,2.762,1.716c0.588-0.589,1.462-1.209,2.762-1.716c1.076-0.42,2.108-0.632,3.066-0.632 c1.82,0,2.777,0.767,2.881,0.855l0.313,0.265l0.019,0.408c0.005,0.125,0.094,3.091-3.862,4.632 c-0.704,0.275-1.469,0.414-2.272,0.414c-0.338,0-0.683-0.025-1.03-0.073v2.886H13.125z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M10.163,9.963c1.436,0.559,2.896,0.346,3.899,0.057v3.105h1.875V10.02 c1.003,0.289,2.464,0.502,3.899-0.057c3.375-1.316,3.267-3.717,3.267-3.717s-1.627-1.379-5.002-0.064 C16.242,6.907,15.392,7.849,15,8.551c-0.392-0.702-1.242-1.644-3.102-2.369C8.523,4.866,6.896,6.246,6.896,6.246 S6.788,8.647,10.163,9.963z" fill="url(#SVGID_3_)"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="4.922" y2="12.87">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="4.9224" y2="12.8702">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="15" x2="15" y1="12.55" y2="17.37">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+</g>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="14.9995" x2="14.9995" y1="12.5542" y2="17.3683">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="3.738" width="16.88" x="6.563" y="13.14"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="15" x2="15" y1="16.84" y2="24.56">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<rect fill="url(#SVGID_4_)" height="3.738" width="16.875" x="6.563" y="13.137"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="14.9995" x2="14.9995" y1="16.8408" y2="24.5597">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
-<polygon fill="url(#SVGID_5_)" points="20.62,24.38,9.375,24.38,8.438,16.88,21.56,16.88"/>
-<path d="M23.1,6.246s-1.627-1.379-5.002-0.064c-1.86,0.725-2.71,1.667-3.1,2.369-0.392-0.702-1.242-1.644-3.102-2.369-3.377-1.316-5.004,0.064-5.004,0.064s-0.109,2.401,3.267,3.717c1.436,0.559,2.896,0.346,3.899,0.057v3.105h1.875v-3.1c1.003,0.289,2.464,0.502,3.899-0.057,3.37-1.316,3.26-3.717,3.26-3.717z" fill="url(#SVGID_3_)"/>
+<polygon fill="url(#SVGID_5_)" points="20.625,24.375 9.375,24.375 8.438,16.875 21.563,16.875 "/>
+<path d="M23.104,6.246c0,0-1.627-1.379-5.002-0.064C16.242,6.907,15.392,7.849,15,8.551 c-0.392-0.702-1.242-1.644-3.102-2.369C8.523,4.866,6.896,6.246,6.896,6.246s-0.109,2.401,3.267,3.717 c1.436,0.559,2.896,0.346,3.899,0.057v3.105h1.875V10.02c1.003,0.289,2.464,0.502,3.899-0.057 C23.212,8.647,23.104,6.246,23.104,6.246z" fill="url(#SVGID_3_)"/>
<g fill-opacity="0.2" stroke-opacity="0.2">
-<path d="M14.06,9.082c-1.003,0.289-2.464,0.502-3.899-0.057-2.1-0.82-2.85-2.062-3.118-2.881-0.094,0.06-0.146,0.102-0.146,0.102s-0.109,2.401,3.267,3.717c1.436,0.559,2.896,0.346,3.899,0.057v-0.938z"/>
-<path d="M22.96,6.144c-0.268,0.819-1.018,2.061-3.121,2.881-1.436,0.559-2.896,0.346-3.899,0.057v0.938c1.003,0.289,2.464,0.502,3.899-0.057,3.375-1.316,3.267-3.717,3.267-3.717s-0.06-0.042-0.15-0.102z"/>
-<rect height="0.938" width="1.875" x="14.06" y="12.19"/>
+<path d="M14.063,9.082c-1.003,0.289-2.464,0.502-3.899-0.057C8.06,8.205,7.31,6.963,7.042,6.144 c-0.094,0.06-0.146,0.102-0.146,0.102s-0.109,2.401,3.267,3.717c1.436,0.559,2.896,0.346,3.899,0.057V9.082z"/>
+<path d="M22.958,6.144c-0.268,0.819-1.018,2.061-3.121,2.881c-1.436,0.559-2.896,0.346-3.899,0.057v0.938 c1.003,0.289,2.464,0.502,3.899-0.057c3.375-1.316,3.267-3.717,3.267-3.717S23.052,6.204,22.958,6.144z"/>
+<rect height="0.938" width="1.875" x="14.063" y="12.188"/>
</g>
-<rect fill="#FFFFFF" fill-opacity="0.3" height="0.926" stroke-opacity="0.3" width="16.88" x="6.563" y="13.14"/>
-<polygon fill-opacity="0.2" points="21.44,17.81,21.56,16.88,8.438,16.88,8.555,17.81" stroke-opacity="0.2"/>
-</svg>
\ No newline at end of file
+<rect fill="#FFFFFF" fill-opacity="0.3" height="0.926" stroke-opacity="0.3" width="16.875" x="6.563" y="13.137"/>
+<polygon fill-opacity="0.2" points="21.445,17.813 21.563,16.875 8.438,16.875 8.555,17.813 " stroke-opacity="0.2"/>
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sync.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_sync.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,23 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M19,26.5l-1,1c-5.58,0-13-1.141-13-11v-3h-4.869l7.869-11.8,7.87,11.8h-4.87v3c0,6.654,5.764,9,7,9l1,1z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="589" x2="589" y1="815.5" y2="838.5">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M19,26.5l-1,1c-5.58,0-13-1.141-13-11v-3H0.131L8,1.697L15.869,13.5H11v3 c0,6.654,5.764,9,7,9L19,26.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="588.9609" x2="588.9609" y1="815.5391" y2="838.5391">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M10,16.5v-4h4l-6-9-6,9h4v4c0,8,5,10,12,10-2,0-8-3-8-10z" fill="url(#SVGID_1_)"/>
-<path d="M10,16.5v1.5c0,3.939,1.9,6.611,3.918,8.195,1.26,0.2,2.62,0.3,4.08,0.3-2,0-8-3-8-10z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="8,5,13,12.5,14,12.5,8,3.5,2,12.5,3,12.5" stroke-opacity="0.4"/>
-<path d="M14.13,16.5h4.87v-3c0-6.655-5.764-9-7-9l-1-1,1-1c5.58,0,13,1.141,13,11v3h4.869l-7.87,11.8-7.87-11.8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="599" x2="599" y1="815.5" y2="838.5">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M10,16.5v-4h4l-6-9l-6,9h4v4c0,8,5,10,12,10C16,26.5,10,23.5,10,16.5z" fill="url(#SVGID_1_)"/>
+<path d="M10,16.5V18c0,3.939,1.9,6.611,3.918,8.195 C15.176,26.404,16.541,26.5,18,26.5C16,26.5,10,23.5,10,16.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="8,5 13,12.5 14,12.5 8,3.5 2,12.5 3,12.5 " stroke-opacity="0.4"/>
+<path d="M14.131,16.5H19v-3c0-6.655-5.764-9-7-9l-1-1l1-1c5.58,0,13,1.141,13,11v3h4.869 L22,28.303L14.131,16.5z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="598.9609" x2="598.9609" y1="815.5391" y2="838.5391">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M24,17.5v-4c0-8-5-10-12-10,2,0,8,3,8,10v4h-4l6,9,6-9h-4z" fill="url(#SVGID_2_)"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="20,17.5,16,17.5,16.67,18.5,20,18.5" stroke-opacity="0.4"/>
-<path d="M24,14.5v-1c0-8-5-10-12-10,0.707,0,1.914,0.384,3.178,1.177,5.28,0.622,8.82,3.099,8.82,9.823z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="24,17.5,24,18.5,27.33,18.5,28,17.5" stroke-opacity="0.4"/>
+<path d="M24,17.5v-4c0-8-5-10-12-10c2,0,8,3,8,10v4h-4l6,9l6-9H24z" fill="url(#SVGID_2_)"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="20,17.5 16,17.5 16.666,18.5 20,18.5 " stroke-opacity="0.4"/>
+<path d="M24,14.5v-1c0-8-5-10-12-10c0.707,0,1.914,0.384,3.178,1.177 C20.461,5.299,24,7.776,24,14.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="24,17.5 24,18.5 27.334,18.5 28,17.5 " stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tag_inactive.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tag_inactive.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,21 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g opacity="0.5">
<rect fill="none" height="30" width="30"/>
-<path d="M2,12.73v-8.636l2.094-2.094h8.638l15.68,15.68-10.73,10.73-15.68-15.68zm4.904-6.778c-0.525,0-0.952,0.427-0.952,0.952s0.427,0.953,0.952,0.953,0.953-0.427,0.953-0.953-0.427-0.952-0.953-0.952z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<path d="M27,17.68l-14.68-14.68h-7.81l-1.51,1.508v7.81l14.68,14.68,9.32-9.32zm-20.1-8.823c-1.078,0-1.952-0.875-1.952-1.953s0.874-1.952,1.952-1.952,1.953,0.874,1.953,1.952-0.875,1.953-1.953,1.953z" fill="url(#SVGID_1_)"/>
-<path d="M6.904,9.857c1.078,0,1.953-0.875,1.953-1.953,0-0.174-0.03-0.34-0.072-0.5-0.222,0.835-0.976,1.453-1.881,1.453s-1.657-0.618-1.879-1.453c-0.043,0.16-0.073,0.326-0.073,0.5,0,1.078,0.874,1.953,1.952,1.953z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="12.32,4,26.5,18.18,27,17.68,12.32,3,4.508,3,3,4.508,3,5.508,4.508,4" stroke-opacity="0.4"/>
-<rect fill="#FFFFFF" height="7.322" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.0454 -6.6475)" width="11.95" x="10.07" y="12.38"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="17.68,22.86,9.232,14.43,8.662,15,17.68,24,23.43,18.25,22.86,17.68" stroke-opacity="0.4"/>
-<polygon fill-opacity="0.15" points="14.41,10.37,22.29,18.25,22.86,17.68,14.41,9.232,9.232,14.41,9.803,14.98" stroke-opacity="0.15"/>
+<path d="M2,12.731V4.094L4.094,2h8.638l15.683,15.684l-10.731,10.73L2,12.731z M6.904,5.952c-0.525,0-0.952,0.427-0.952,0.952c0,0.525,0.427,0.953,0.952,0.953c0.525,0,0.953-0.427,0.953-0.953 C7.857,6.378,7.43,5.952,6.904,5.952L6.904,5.952z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<path d="M27,17.684L12.317,3h-7.81L3,4.508v7.81L17.684,27L27,17.684z M6.904,8.857 c-1.078,0-1.952-0.875-1.952-1.953c0-1.078,0.874-1.952,1.952-1.952c1.078,0,1.953,0.874,1.953,1.952 C8.857,7.982,7.982,8.857,6.904,8.857z" fill="url(#SVGID_1_)"/>
+<path d="M6.904,9.857c1.078,0,1.953-0.875,1.953-1.953 c0-0.174-0.03-0.34-0.072-0.5C8.563,8.239,7.809,8.857,6.904,8.857c-0.905,0-1.657-0.618-1.879-1.453 c-0.043,0.16-0.073,0.326-0.073,0.5C4.952,8.982,5.826,9.857,6.904,9.857z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="12.317,4 26.5,18.184 27,17.684 12.317,3 4.508,3 3,4.508 3,5.508 4.508,4 " stroke-opacity="0.4"/>
+<rect fill="#FFFFFF" height="7.322" transform="matrix(0.7071 0.7071 -0.7071 0.7071 16.0454 -6.6475)" width="11.949" x="10.073" y="12.385"/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="17.684,22.859 9.232,14.43 8.662,15 17.684,24 23.43,18.253 22.859,17.684 " stroke-opacity="0.4"/>
+<polygon fill-opacity="0.15" points="14.409,10.373 22.289,18.253 22.859,17.684 14.409,9.232 9.232,14.409 9.803,14.979 " stroke-opacity="0.15"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="815" y2="839">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="815.0391" y2="839.0391">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
</g>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_telephony_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_telephony_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,26 +1,29 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M1,22.65c0-0.762,0.097-1.988,0.553-3.504,0.707-2.346,3.97-7.439,7.274-10.74,3.348-3.345,7.787-6.116,9.228-6.665,2.32-0.878,4.919-0.822,5.796-0.596,0.122,0.036,0.678,0.226,1.427,0.645l0.269,0.155c0.457,0.277,0.864,0.562,1.24,0.875,0.144,0.12,0.25,0.199,0.342,0.268,0.207,0.151,0.402,0.294,0.691,0.625,0.65,0.74,0.876,1.075,0.915,1.134,0.17,0.261,0.26,0.571,0.26,0.89,0,0.584-0.294,1.132-0.789,1.469l-7.078,4.819c-0.4,0.271-0.894,0.374-1.353,0.282-0.435-0.088-0.803-0.339-1.042-0.708l-1.274-1.993c-1.575,1.008-3.029,2.209-4.648,3.831-1.037,1.037-2.093,2.485-2.829,3.622l-0.591,0.74,0.76,0.2,0.813,0.484c0.488,0.286,0.785,0.814,0.785,1.413,0,0.242-0.049,0.481-0.143,0.707l-0.021,0.054-1.453,2.543-2.851,4.91c-0.233,0.408-0.625,0.711-1.071,0.832-0.422,0.113-0.86,0.058-1.23-0.158-0.077-0.049-0.36-0.24-0.998-0.754l-0.056-0.01-0.173-0.168c-0.331-0.271-0.432-0.377-0.681-0.652l-0.153-0.168c-1.228-1.344-1.721-2.822-1.742-2.885-0.17-0.43-0.195-1.12-0.195-1.49z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="305.4" x2="305.4" y1="-369.2" y2="-394.3">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M1,22.653c0-0.762,0.097-1.988,0.553-3.504c0.707-2.346,3.97-7.439,7.274-10.745 c3.348-3.345,7.787-6.116,9.228-6.665c2.32-0.878,4.919-0.822,5.796-0.596c0.122,0.036,0.678,0.226,1.427,0.645l0.269,0.155 c0.457,0.277,0.864,0.562,1.24,0.875c0.144,0.12,0.25,0.199,0.342,0.268c0.207,0.151,0.402,0.294,0.691,0.625 c0.65,0.74,0.876,1.075,0.915,1.134C28.908,5.112,29,5.422,29,5.741c0,0.584-0.294,1.132-0.789,1.469l-7.078,4.819 c-0.4,0.271-0.894,0.374-1.353,0.282c-0.435-0.088-0.803-0.339-1.042-0.708l-1.274-1.993c-1.575,1.008-3.029,2.209-4.648,3.831 c-1.037,1.037-2.093,2.485-2.829,3.622L9.4,17.799L10.156,18l0.813,0.484c0.488,0.286,0.785,0.814,0.785,1.413 c0,0.242-0.049,0.481-0.143,0.707l-0.021,0.054l-1.453,2.543l-2.851,4.91c-0.233,0.408-0.625,0.711-1.071,0.832 c-0.422,0.113-0.86,0.058-1.23-0.158c-0.077-0.049-0.36-0.24-0.998-0.754l-0.056-0.01l-0.173-0.168 c-0.331-0.271-0.432-0.377-0.681-0.652l-0.153-0.168c-1.228-1.344-1.721-2.822-1.742-2.885C1.025,23.706,1,23.02,1,22.653L1,22.653z " fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="305.3745" x2="305.3745" y1="-369.2378" y2="-394.3224">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M17.76,8.34c-2.193,1.274-3.96,2.8-5.603,4.441-1.58,1.581-3.231,4.096-3.815,5.221l-6.275,5.86c-0.185-0.516-0.284-2.254,0.374-4.439,0.66-2.188,3.843-7.157,7.042-10.35,3.198-3.196,7.526-5.93,8.897-6.451,2.161-0.817,4.542-0.744,5.235-0.566,0,0,0.631,0.208,1.449,0.697,0.35,0.205-7.31,5.59-7.31,5.59z" fill="url(#SVGID_1_)"/>
-<radialGradient cx="314.1" cy="-383.4" gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="11.91">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M17.757,8.34c-2.193,1.274-3.96,2.8-5.603,4.441c-1.58,1.581-3.231,4.096-3.815,5.221L2.07,23.858 c-0.185-0.516-0.284-2.254,0.374-4.439c0.66-2.188,3.843-7.157,7.042-10.354c3.198-3.196,7.526-5.93,8.897-6.451 c2.161-0.817,4.542-0.744,5.235-0.566c0,0,0.631,0.208,1.449,0.697C25.418,2.955,17.757,8.34,17.757,8.34z" fill="url(#SVGID_1_)"/>
+<radialGradient cx="314.1274" cy="-383.3599" gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="11.9051">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</radialGradient>
-<path d="M6.479,27.64l2.846-4.904,1.426-2.494c0.153-0.363,0.055-0.771-0.259-0.957l-1.207-0.717-0.944-0.566c0.002-0.002,0.008-0.006,0.01-0.008-2.9-0.369-5.641,1.449-6.255,4.246-0.08,0.371-0.12,0.738-0.122,1.102,0.025,0.223,0.061,0.403,0.099,0.517,0,0,0.436,1.332,1.543,2.543,0.369,0.405,0.383,0.444,0.77,0.755,0.001,0.002,0.003,0.002,0.007,0.004,0.76,0.615,1.062,0.816,1.062,0.816,0.345,0.2,0.806,0.05,1.026-0.34z" fill="url(#SVGID_2_)"/>
-<path d="M9.285,18.57l1.207,0.717c0.313,0.186,0.412,0.594,0.259,0.957l-1.426,2.494-2.846,4.904c-0.221,0.387-0.682,0.535-1.028,0.334,0,0-0.304-0.201-1.067-0.82l4.902-8.58z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<radialGradient cx="297.8" cy="-368.8" gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="12.06">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<path d="M6.479,27.641l2.846-4.904l1.426-2.494c0.153-0.363,0.055-0.771-0.259-0.957l-1.207-0.717H9.283 l-0.944-0.566c0.002-0.002,0.008-0.006,0.01-0.008c-2.9-0.369-5.641,1.449-6.255,4.246c-0.08,0.371-0.12,0.738-0.122,1.102 c0.025,0.223,0.061,0.403,0.099,0.517c0,0,0.436,1.332,1.543,2.543c0.369,0.405,0.383,0.444,0.77,0.755 c0.001,0.002,0.003,0.002,0.007,0.004c0.76,0.615,1.062,0.816,1.062,0.816C5.798,28.176,6.259,28.028,6.479,27.641z" fill="url(#SVGID_2_)"/>
+<path d="M9.285,18.569l1.207,0.717c0.313,0.186,0.412,0.594,0.259,0.957 l-1.426,2.494l-2.846,4.904c-0.221,0.387-0.682,0.535-1.028,0.334c0,0-0.304-0.201-1.067-0.82L9.285,18.569z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="297.7944" cy="-368.7876" gradientTransform="matrix(-4.371139e-008 1 1 4.371139e-008 396.0192 -292.4791)" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="12.0638">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</radialGradient>
-<path d="M20.61,11.26l7.076-4.818c0.373-0.252,0.494-0.738,0.27-1.084,0,0-0.195-0.301-0.832-1.027-0.001,0,0-0.002-0.002-0.002-0.348-0.395-0.478-0.414-0.929-0.789-0.628-0.521-1.253-0.888-1.733-1.126-3.04-0.574-5.98,1.274-6.62,4.186-0.134,0.595-0.152,1.187-0.082,1.762l1.046,1.637,0.707,1.101c0.22,0.34,0.7,0.41,1.08,0.16z" fill="url(#SVGID_3_)"/>
-<path d="M27.12,4.327c0.639,0.728,0.834,1.029,0.834,1.029,0.225,0.346,0.104,0.832-0.27,1.084l-7.076,4.818c-0.374,0.255-0.861,0.188-1.082-0.159l-0.707-1.101,8.31-5.672z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M20.607,11.257l7.076-4.818c0.373-0.252,0.494-0.738,0.27-1.084c0,0-0.195-0.301-0.832-1.027 c-0.001,0,0-0.002-0.002-0.002c-0.348-0.395-0.478-0.414-0.929-0.789c-0.628-0.521-1.253-0.888-1.733-1.126 C21.432,1.84,18.492,3.688,17.854,6.6c-0.134,0.595-0.152,1.187-0.082,1.762l1.046,1.637l0.707,1.101 C19.746,11.445,20.232,11.513,20.607,11.257z" fill="url(#SVGID_3_)"/>
+<path d="M27.119,4.327c0.639,0.728,0.834,1.029,0.834,1.029 c0.225,0.346,0.104,0.832-0.27,1.084l-7.076,4.818c-0.374,0.255-0.861,0.188-1.082-0.159l-0.707-1.101L27.119,4.327z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -31,4 +34,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_text.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_text.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,17 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="27,28,27,2,3,2,3,21.41,9.586,28"/>
-<polygon fill="url(#SVGID_1_)" points="26,3,26,27,10,27,4,21,4,3"/>
-<polygon fill="#FFFFFF" points="4,21,10,21,10,27"/>
+<g>
+<polygon fill-opacity="0.6" points="27,28 27,2 3,2 3,21.414 9.586,28 "/>
+<polygon fill="url(#SVGID_1_)" points="26,3 26,27 10,27 4,21 4,3 "/>
+<polygon fill="#FFFFFF" points="4,21 10,21 10,27 "/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="7"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="18" x="6" y="11"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="12" x="6" y="15"/>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="3" y2="27">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#C8C8C8"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="3" y2="27.0005">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#C8C8C8"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tick.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tick.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,16 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="0.587,15.43,5.713,10.3,11.6,16.19,24.29,3.491,29.42,8.617,11.6,26.43" stroke-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="28,8.617,24.29,4.905,11.6,17.6,5.713,11.72,2.001,15.43,11.59,25.01,11.6,25,11.6,25.01"/>
-<polygon fill="#FFFFFF" fill-opacity="0.4" points="5.713,13.1,11.6,18.99,24.29,6.292,27.31,9.31,28,8.617,24.29,4.905,11.6,17.6,5.713,11.72,2.001,15.43,2.695,16.12" stroke-opacity="0.4"/>
+<g>
+<rect fill="none" height="30.002" width="30.002"/>
+<polygon fill-opacity="0.6" points="0.587,15.429 5.713,10.303 11.597,16.187 24.289,3.491 29.416,8.617 11.605,26.427 " stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="28.002,8.617 24.289,4.905 11.597,17.601 5.713,11.718 2.001,15.429 11.589,25.013 11.597,25.003 11.605,25.013 "/>
+<polygon fill="#FFFFFF" fill-opacity="0.4" points="5.713,13.103 11.597,18.989 24.289,6.292 27.307,9.31 28.002,8.617 24.289,4.905 11.597,17.601 5.713,11.718 2.001,15.429 2.695,16.12 " stroke-opacity="0.4"/>
<defs>
-<linearGradient gradientTransform="matrix(0.8824 0 0 0.8824 -227.5791 -1120.5674)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="274.9" x2="274.9" y1="1274" y2="1300">
-<stop offset="0" stop-color="#85AE4A"/>
-<stop offset="1" stop-color="#2F6F44"/>
+<linearGradient gradientTransform="matrix(0.8824 0 0 0.8824 -227.5791 -1120.5674)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="274.9102" x2="274.9102" y1="1274.2861" y2="1300.495">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_tip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,43 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M23.73,4.574c-1.38-1.63-4.01-3.574-8.73-3.574-4.721,0-7.355,1.944-8.734,3.576-1.873,2.214-2.637,5.319-2.096,8.514,0.518,3.071,1.816,6.16,3.828,8.404v6.013l1.608,1.5h10.79l1.61-1.49v-6.005c2.013-2.244,3.313-5.336,3.832-8.411,0.54-3.196-0.23-6.302-2.1-8.516z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<polygon fill="url(#SVGID_1_)" points="8.998,21.5,8.998,27.07,9.999,28,20,28,21,27.07,21,21.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.071" y2="20.57">
-<stop offset="0" stop-color="#D2C896"/>
-<stop offset="0.503" stop-color="#B39C4D"/>
-<stop offset="1" stop-color="#BEA069"/>
+<path d="M23.732,4.574C22.354,2.944,19.719,1,15,1c-4.721,0-7.355,1.944-8.734,3.576 C4.393,6.79,3.629,9.895,4.17,13.091c0.518,3.071,1.816,6.16,3.828,8.404v6.013L9.606,29h10.786L22,27.507v-6.005 c2.013-2.244,3.313-5.336,3.832-8.411C26.369,9.894,25.605,6.788,23.732,4.574z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.0713" y2="20.5717">
+<stop offset="0" style="stop-color:#D2C896"/>
+<stop offset="0.503" style="stop-color:#B39C4D"/>
+<stop offset="1" style="stop-color:#BEA069"/>
</linearGradient>
-<path d="M15,2c-7.545,0-10.78,5.377-9.844,10.92,0.936,5.544,4.402,10.85,9.826,10.92h0.018,0.02c5.424-0.076,8.89-5.38,9.824-10.92,0.94-5.543-2.3-10.92-9.84-10.92z" fill="url(#SVGID_2_)"/>
-<polygon fill="url(#SVGID_1_)" points="8.998,21.5,8.998,27.07,9.999,28,20,28,21,27.07,21,21.5"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.998" x2="21" y1="24.29" y2="24.29">
-<stop offset="0" stop-color="#A4A8A8"/>
-<stop offset="0.1212" stop-color="#BFC2C1"/>
-<stop offset="0.2848" stop-color="#ECEFED"/>
-<stop offset="0.6727" stop-color="#989D9D"/>
-<stop offset="0.8182" stop-color="#DBDFDD"/>
-<stop offset="0.9636" stop-color="#AFB3B2"/>
-<stop offset="1" stop-color="#5B5B5D"/>
+<path d="M15,2C7.455,2,4.219,7.377,5.156,12.925c0.936,5.544,4.402,10.848,9.826,10.924l0,0 c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0c5.424-0.076,8.89-5.38,9.824-10.924C25.779,7.377,22.544,2,15,2z" fill="url(#SVGID_2_)"/>
+<polygon fill="url(#SVGID_1_)" points="8.998,21.5 8.998,27.071 9.999,28 20,28 21,27.071 21,21.5 "/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
+<stop offset="0" style="stop-color:#A4A8A8"/>
+<stop offset="0.1212" style="stop-color:#BFC2C1"/>
+<stop offset="0.2848" style="stop-color:#ECEFED"/>
+<stop offset="0.6727" style="stop-color:#989D9D"/>
+<stop offset="0.8182" style="stop-color:#DBDFDD"/>
+<stop offset="0.9636" style="stop-color:#AFB3B2"/>
+<stop offset="1" style="stop-color:#5B5B5D"/>
</linearGradient>
-<rect fill="url(#SVGID_4_)" height="5.571" width="12" x="8.998" y="21.5"/>
-<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349h0.018,0.02c2.682-0.039,4.884-1.357,6.539-3.349h-13.12z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.998" x2="21" y1="24.29" y2="24.29">
-<stop offset="0" stop-color="#ABB0AF"/>
-<stop offset="0.4" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#6A6C6E"/>
+<rect fill="url(#SVGID_4_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
+<path d="M8.443,20.5c1.655,1.991,3.857,3.31,6.539,3.349l0,0c0.006,0,0.012,0,0.018,0c0.008,0,0.014,0,0.02,0l0,0 c2.682-0.039,4.884-1.357,6.539-3.349H8.443z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="8.998" x2="21" y1="24.2852" y2="24.2852">
+<stop offset="0" style="stop-color:#ABB0AF"/>
+<stop offset="0.4" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#6A6C6E"/>
</linearGradient>
-<rect fill="url(#SVGID_5_)" height="5.571" width="12" x="8.998" y="21.5"/>
-<rect fill-opacity="0.25" height="0.929" stroke-opacity="0.25" width="12" x="8.998" y="22.63"/>
-<rect fill-opacity="0.25" height="0.927" stroke-opacity="0.25" width="12" x="8.998" y="24.49"/>
-<path d="M6.23,9.388c2.184,0.992,5.3,1.612,8.77,1.612,3.475,0,6.592-0.624,8.775-1.615-0.779-3.471-3.676-6.199-8.771-6.199-5.102,0-8.002,2.728-8.78,6.202z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
+<rect fill="url(#SVGID_5_)" height="5.571" width="12.002" x="8.998" y="21.5"/>
+<rect fill-opacity="0.25" height="0.929" stroke-opacity="0.25" width="12.002" x="8.998" y="22.633"/>
+<rect fill-opacity="0.25" height="0.927" stroke-opacity="0.25" width="12.002" x="8.998" y="24.491"/>
+<path d="M6.23,9.388C8.414,10.377,11.529,11,15,11c3.475,0,6.592-0.624,8.775-1.615 c-0.779-3.471-3.676-6.199-8.771-6.199C9.908,3.186,7.008,5.914,6.23,9.388z" fill="#FFFFFF" fill-opacity="0.6" stroke-opacity="0.6"/>
<defs>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.164" y1="24.75" y2="24.75">
-<stop offset="0" stop-color="#969696"/>
-<stop offset="0.6242" stop-color="#F2F2F2"/>
-<stop offset="1" stop-color="#B3B3B3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="21" x2="9.1644" y1="24.75" y2="24.75">
+<stop offset="0" style="stop-color:#969696"/>
+<stop offset="0.6242" style="stop-color:#F2F2F2"/>
+<stop offset="1" style="stop-color:#B3B3B3"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,22 +1,24 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="9,3,9,1,21,1,21,3,26,3,26,29,10.59,29,4,22.41,4,3" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="2.121" y2="28.88">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#B1B1B1"/>
+<g>
+<polygon fill-opacity="0.6" points="9,3 9,1 21,1 21,3 26,3 26,29 10.586,29 4,22.414 4,3 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="2.1206" y2="28.8787">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="5,22,5,4,25,4,25,28,11,28"/>
-<path d="M10.5,10v2h-2v-2h2m1-1h-4v4h4v-4z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="url(#SVGID_1_)" points="5,22 5,4 25,4 25,28 11,28 "/>
+<path d="M10.5,10v2h-2v-2H10.5 M11.5,9h-4v4h4V9L11.5,9z" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="10.25"/>
-<path d="M10.5,16v2h-2v-2h2m1-1h-4v4h4v-4z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M10.5,16v2h-2v-2H10.5 M11.5,15h-4v4h4V15L11.5,15z" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="16.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.608" y2="7.443">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.6084" y2="7.4429">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="10" x="10" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="10" x="10" y="2"/>
-<polygon fill="#FFFFFF" points="11,28,5,22,11,22"/>
+<polygon fill="#FFFFFF" points="11,28 5,22 11,22 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo_done.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_todo_done.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,24 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<polygon fill-opacity="0.6" points="9,3,9,1,21,1,21,3,26,3,26,29,10.59,29,4,22.41,4,3" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="2.121" y2="28.88">
-<stop offset="0" stop-color="#FFFFFF"/>
-<stop offset="1" stop-color="#B1B1B1"/>
+<g>
+<polygon fill-opacity="0.6" points="9,3 9,1 21,1 21,3 26,3 26,29 10.586,29 4,22.414 4,3 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 -1412 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-1427" x2="-1427" y1="2.1206" y2="28.8787">
+<stop offset="0" style="stop-color:#FFFFFF"/>
+<stop offset="1" style="stop-color:#B1B1B1"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="5,22,5,4,25,4,25,28,11,28"/>
-<path d="M10.5,10v2h-2v-2h2m1-1h-4v4h4v-4z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<polygon fill="url(#SVGID_1_)" points="5,22 5,4 25,4 25,28 11,28 "/>
+<path d="M10.5,10v2h-2v-2H10.5 M11.5,9h-4v4h4V9L11.5,9z" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="10.25"/>
-<path d="M10.5,16v2h-2v-2h2m1-1h-4v4h4v-4z" fill-opacity="0.5" stroke-opacity="0.5"/>
+<path d="M10.5,16v2h-2v-2H10.5 M11.5,15h-4v4h4V15L11.5,15z" fill-opacity="0.5" stroke-opacity="0.5"/>
<rect fill-opacity="0.5" height="1.5" stroke-opacity="0.5" width="9" x="13" y="16.25"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="1.608" y2="7.443">
-<stop offset="0" stop-color="#92603E"/>
-<stop offset="1" stop-color="#713631"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="1.6084" y2="7.4429">
+<stop offset="0" style="stop-color:#92603E"/>
+<stop offset="1" style="stop-color:#713631"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="5" width="10" x="10" y="2"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="10" x="10" y="2"/>
-<polygon fill="#FFFFFF" points="11,28,5,22,11,22"/>
+<polygon fill="#FFFFFF" points="11,28 5,22 11,22 "/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<polygon fill-opacity="0.6" points="12.32,21.07,15.86,17.54,19.39,21.07,26.46,14,30,17.54,19.39,28.14" stroke-opacity="0.6"/>
<polygon fill="url(#SVGID_1__)" points="26.46,15.41,19.39,22.48,15.86,18.95,13.74,21.07,19.39,26.73,28.59,17.54"/>
<rect fill="none" height="30" width="30"/>
@@ -28,4 +31,5 @@
<stop offset="1" stop-color="#2F6F44"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unknown.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unknown.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,21 +1,23 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M13.5,28c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5,3.5,1.57,3.5,3.5-1.57,3.5-3.5,3.5z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="592.5" x2="592.5" y1="815" y2="839">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M13.5,28c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S15.43,28,13.5,28L13.5,28z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="592.4609" x2="592.4609" y1="814.957" y2="838.9594">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<circle cx="13.5" cy="24.5" fill="url(#SVGID_1_)" r="2.5"/>
-<path d="M10.51,20.72v-2.654c0-1.242,0.284-2.342,0.843-3.271,0.512-0.857,1.271-1.766,2.316-2.773,1.214-1.193,1.579-1.766,1.688-2,0.181-0.392,0.272-0.771,0.272-1.123,0-0.758-0.18-1.287-0.551-1.619-0.396-0.353-1.066-0.533-1.987-0.533-1.044,0-2.324,0.225-3.806,0.667l-1.284,0.371v-4.813l0.733-0.203c1.867-0.515,3.567-0.777,5.057-0.777,2.549,0,4.557,0.553,5.969,1.643,1.49,1.15,2.24,2.841,2.24,5.031,0,0.926-0.208,1.874-0.617,2.816-0.412,0.951-1.313,2.125-2.757,3.588-0.938,0.947-1.56,1.645-1.851,2.072-0.221,0.326-0.326,0.695-0.326,1.135v2.434h-5.929z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="594" x2="594" y1="815" y2="839">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M10.511,20.719v-2.654c0-1.242,0.284-2.342,0.843-3.271c0.512-0.857,1.271-1.766,2.316-2.773 c1.214-1.193,1.579-1.766,1.688-2c0.181-0.392,0.272-0.771,0.272-1.123c0-0.758-0.18-1.287-0.551-1.619 c-0.396-0.353-1.066-0.533-1.987-0.533c-1.044,0-2.324,0.225-3.806,0.667L8,7.793V2.98l0.733-0.203C10.598,2.262,12.299,2,13.791,2 c2.549,0,4.557,0.553,5.969,1.643C21.246,4.793,22,6.484,22,8.674c0,0.926-0.208,1.874-0.617,2.816 c-0.412,0.951-1.313,2.125-2.757,3.588c-0.938,0.947-1.56,1.645-1.851,2.072c-0.221,0.326-0.326,0.695-0.326,1.135v2.434H10.511z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="593.9609" x2="593.9609" y1="814.9561" y2="838.9591">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<path d="M19.15,4.434c-1.24-0.955-3.02-1.434-5.36-1.434-1.41,0-3,0.246-4.79,0.741v2.71c1.581-0.473,2.945-0.709,4.092-0.709,1.18,0,2.063,0.263,2.654,0.788,0.588,0.526,0.884,1.313,0.884,2.364,0,0.503-0.123,1.018-0.364,1.544-0.244,0.524-0.875,1.292-1.902,2.3-0.971,0.935-1.688,1.791-2.152,2.568-0.468,0.777-0.7,1.697-0.7,2.758v1.652h3.938v-1.434c0-0.643,0.167-1.205,0.497-1.693s0.986-1.227,1.968-2.215c1.347-1.366,2.194-2.46,2.552-3.284,0.35-0.83,0.53-1.639,0.53-2.426,0-1.869-0.62-3.284-1.85-4.24z" fill="url(#SVGID_2_)"/>
-<path d="M13.5,23c1.209,0,2.218,0.859,2.449,2,0.03-0.16,0.05-0.33,0.05-0.5,0-1.381-1.119-2.5-2.5-2.5s-2.5,1.12-2.5,2.5c0,0.172,0.018,0.338,0.051,0.5,0.23-1.14,1.24-2,2.45-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M16.63,9.895c0-0.22-0.021-0.42-0.046-0.616-0.047,0.381-0.139,0.767-0.318,1.16-0.244,0.524-0.875,1.292-1.902,2.3-0.971,0.935-1.688,1.791-2.152,2.568-0.468,0.777-0.7,1.697-0.7,2.757v1c0-1.062,0.232-1.979,0.7-2.758,0.464-0.777,1.182-1.635,2.152-2.569,1.025-1.008,1.658-1.775,1.902-2.3,0.25-0.53,0.37-1.04,0.37-1.545z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M19.15,5.434c1.104,0.856,1.711,2.084,1.826,3.672,0.01-0.145,0.02-0.29,0.02-0.432,0-1.869-0.616-3.284-1.852-4.24-1.24-0.955-3.02-1.434-5.36-1.434-1.41,0-3,0.246-4.79,0.741v1c1.79-0.495,3.38-0.741,4.79-0.741,2.34,0,4.12,0.479,5.36,1.434z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19.148,4.434C17.911,3.479,16.126,3,13.791,3C12.384,3,10.787,3.246,9,3.741v2.71 c1.581-0.473,2.945-0.709,4.092-0.709c1.18,0,2.063,0.263,2.654,0.788c0.588,0.526,0.884,1.313,0.884,2.364 c0,0.503-0.123,1.018-0.364,1.544c-0.244,0.524-0.875,1.292-1.902,2.3c-0.971,0.935-1.688,1.791-2.152,2.568 c-0.468,0.777-0.7,1.697-0.7,2.758v1.652h3.938v-1.434c0-0.643,0.167-1.205,0.497-1.693s0.986-1.227,1.968-2.215 c1.347-1.366,2.194-2.46,2.552-3.284C20.824,10.268,21,9.461,21,8.674C21,6.805,20.384,5.39,19.148,4.434z" fill="url(#SVGID_2_)"/>
+<path d="M13.5,23c1.209,0,2.218,0.859,2.449,2 C15.982,24.838,16,24.672,16,24.5c0-1.381-1.119-2.5-2.5-2.5S11,23.119,11,24.5c0,0.172,0.018,0.338,0.051,0.5 C11.282,23.859,12.291,23,13.5,23z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M16.63,9.895c0-0.22-0.021-0.42-0.046-0.616 c-0.047,0.381-0.139,0.767-0.318,1.16c-0.244,0.524-0.875,1.292-1.902,2.3c-0.971,0.935-1.688,1.791-2.152,2.568 c-0.468,0.777-0.7,1.697-0.7,2.757v1c0-1.062,0.232-1.979,0.7-2.758c0.464-0.777,1.182-1.635,2.152-2.569 c1.025-1.008,1.658-1.775,1.902-2.3C16.507,10.912,16.63,10.397,16.63,9.895z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M19.148,5.434c1.104,0.856,1.711,2.084,1.826,3.672 C20.986,8.961,21,8.816,21,8.674c0-1.869-0.616-3.284-1.852-4.24C17.911,3.479,16.126,3,13.791,3C12.384,3,10.787,3.246,9,3.741v1 C10.787,4.246,12.384,4,13.791,4C16.126,4,17.911,4.479,19.148,5.434z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
<path d="M1,1v28h2v-24c0-0.55,0.45-1,1-1h22c0.55,0,1,0.45,1,1v24h2v-28h-28z" fill-opacity="0.05" stroke-opacity="0.05"/>
<path d="M1,1v28h1v-25c0-0.55,0.45-1,1-1h24c0.55,0,1,0.45,1,1v25h1v-28h-28z" fill-opacity="0.1" stroke-opacity="0.1"/>
@@ -12,4 +13,5 @@
<stop offset="1" stop-color="#FFFFFF"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected_disabled.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected_disabled.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="#B4B4B4" height="30" width="30"/>
-<polyline fill="#DCDCDC" points="28,11,28,28,2,28,2,2,28,2,28,11"/>
-</svg>
\ No newline at end of file
+<polyline fill="#DCDCDC" points="28,11 28,28 2,28 2,2 28,2 28,11 "/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected_highlight.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_unselected_highlight.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,18 +1,20 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill-opacity="0.6" height="30" width="30"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="813.3" y2="841.5">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="813.2588" y2="841.4798">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="28" width="28" x="1" y="1"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="594" x2="594" y1="815.2" y2="839.4">
-<stop offset="0" stop-color="#E1E1E1"/>
-<stop offset="1" stop-color="#FFFFFF"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="593.9609" x2="593.9609" y1="815.2285" y2="839.4205">
+<stop offset="0" style="stop-color:#E1E1E1"/>
+<stop offset="1" style="stop-color:#FFFFFF"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="24" width="24" x="3" y="3"/>
-<path d="M3,3v24h2v-20c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v20h2v-24h-24z" fill-opacity="0.05"/>
-<path d="M3,3v24h1v-21c0-0.55,0.45-1,1-1h20c0.55,0,1,0.45,1,1v21h1v-24h-24z" fill-opacity="0.1"/>
+<path d="M3,3v24h2V7c0-0.55,0.45-1,1-1h18c0.55,0,1,0.45,1,1v20h2V3H3z" fill-opacity="0.05"/>
+<path d="M3,3v24h1V6c0-0.55,0.45-1,1-1h20c0.55,0,1,0.45,1,1v21h1V3H3z" fill-opacity="0.1"/>
<rect fill-opacity="0.1" height="1" width="24" x="3" y="3"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_untrusted.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_untrusted.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,32 +1,34 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<path d="M4,29c-1.654,0-3-1.346-3-3v-10c0-1.654,1.346-3,3-3h7v-3c0-4.962,4.038-9,9-9,5.299,0,9,3.29,9,8,0,0.552-0.447,1-1,1h-4c-0.553,0-1-0.448-1-1,0-0.495,0-2-3-2-1.654,0-3,1.346-3,3v3h4c1.654,0,3,1.346,3,3v10c0,1.654-1.346,3-3,3h-17z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<g>
+<path d="M4,29c-1.654,0-3-1.346-3-3V16c0-1.654,1.346-3,3-3h7v-3c0-4.962,4.038-9,9-9c5.299,0,9,3.29,9,8 c0,0.552-0.447,1-1,1h-4c-0.553,0-1-0.448-1-1c0-0.495,0-2-3-2c-1.654,0-3,1.346-3,3v3h4c1.654,0,3,1.346,3,3v10 c0,1.654-1.346,3-3,3H4z" fill-opacity="0.6" stroke-opacity="0.6"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="12" x2="28" y1="9" y2="9">
-<stop offset="0" stop-color="#8C8C8C"/>
-<stop offset="0.2083" stop-color="#BDBDBD"/>
-<stop offset="0.526" stop-color="#707070"/>
-<stop offset="1" stop-color="#8F8F8F"/>
+<stop offset="0" style="stop-color:#8C8C8C"/>
+<stop offset="0.2083" style="stop-color:#BDBDBD"/>
+<stop offset="0.526" style="stop-color:#707070"/>
+<stop offset="1" style="stop-color:#8F8F8F"/>
</linearGradient>
-<path d="M20,2c-4.4,0-8,3.6-8,8v6h4v-6c0-2.206,1.794-4,4-4s4,0.794,4,3h4c0-4.4-3.6-7-8-7z" fill="url(#SVGID_1_)"/>
+<path d="M20,2c-4.4,0-8,3.6-8,8v6h4v-6c0-2.206,1.794-4,4-4s4,0.794,4,3h4C28,4.6,24.4,2,20,2z" fill="url(#SVGID_1_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="13" x2="27" y1="9.5" y2="9.5">
-<stop offset="0" stop-color="#B4B4B4"/>
-<stop offset="0.2083" stop-color="#F0F0F0"/>
-<stop offset="0.526" stop-color="#969696"/>
-<stop offset="0.8061" stop-color="#A1A1A1"/>
-<stop offset="1" stop-color="#BEBEBE"/>
+<stop offset="0" style="stop-color:#B4B4B4"/>
+<stop offset="0.2083" style="stop-color:#F0F0F0"/>
+<stop offset="0.526" style="stop-color:#969696"/>
+<stop offset="0.8061" style="stop-color:#A1A1A1"/>
+<stop offset="1" style="stop-color:#BEBEBE"/>
</linearGradient>
-<path d="M20,3c-3.859,0-7,3.141-7,7v6h2v-6c0-2.757,2.243-5,5-5s5,1.243,5,4h2c0-3.859-3.14-6-7-6z" fill="url(#SVGID_2_)"/>
+<path d="M20,3c-3.859,0-7,3.141-7,7v6h2v-6c0-2.757,2.243-5,5-5s5,1.243,5,4h2C27,5.141,23.859,3,20,3z" fill="url(#SVGID_2_)"/>
<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="2" x2="23" y1="21" y2="21">
-<stop offset="0" stop-color="#C2A770"/>
-<stop offset="0.24" stop-color="#DED7B3"/>
-<stop offset="0.75" stop-color="#AA8250"/>
-<stop offset="1" stop-color="#BCA162"/>
+<stop offset="0" style="stop-color:#C2A770"/>
+<stop offset="0.24" style="stop-color:#DED7B3"/>
+<stop offset="0.75" style="stop-color:#AA8250"/>
+<stop offset="1" style="stop-color:#BCA162"/>
</linearGradient>
-<path d="M23,26c0,1.1-0.9,2-2,2h-17c-1.1,0-2-0.9-2-2v-10c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2v10z" fill="url(#SVGID_3_)"/>
-<path d="M21,27h-17c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h17c1.1,0,2-0.9,2-2v-1c0,1.1-0.9,2-2,2z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M21,14h-17c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2v-1c0-1.1-0.9-2-2-2z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M23,26c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V16c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2V26z" fill="url(#SVGID_3_)"/>
+<path d="M21,27H4c-1.1,0-2-0.9-2-2v1c0,1.1,0.9,2,2,2h17c1.1,0,2-0.9,2-2v-1C23,26.1,22.1,27,21,27z" fill="#5E2D29" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M21,14H4c-1.1,0-2,0.9-2,2v1c0-1.1,0.9-2,2-2h17c1.1,0,2,0.9,2,2v-1C23,14.9,22.1,14,21,14z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="21" x="2" y="23"/>
<rect fill-opacity="0.2" height="2" stroke-opacity="0.2" width="21" x="2" y="19"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,40 +1,42 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="28,29,28,1,2,1,2,22.41,8.586,29" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<polygon fill-opacity="0.6" points="28,29 28,1 2,1 2,22.414 8.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="27,2,27,28,9,28,3,22,3,2"/>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9,28 3,22 3,2 "/>
<circle cx="15" cy="14" fill-opacity="0.2" r="8" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="3,22,9,22,9,28"/>
-<radialGradient cx="-453.9" cy="-300.1" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.1">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<polygon fill="#FFFFFF" points="3,22 9,22 9,28 "/>
+<radialGradient cx="-453.8818" cy="-300.0874" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0958">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="15" cy="13" fill="url(#SVGID_2_)" r="8"/>
-<path d="M22.72,12.56c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059-2.09-0.399-2.61,1.554-0.098,0.654h-1.512l0.598,1.018-1.619,1.32-0.377,1.63,1.336,2.37,1.365-0.279,0.498,0.429,0.39,0.038,0.257,1.005-0.339,0.882,1.239,3.169h1.264l1.252-1.012v-0.413l0.331-0.513,0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35-0.012,0.082,0.178,1.695,0.734,1.568,0.422-0.096,1.929-2.896,1.957-3.161,0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092-0.899,0.902c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954,0.496-1.604,0.758-0.615-0.166-0.303,0.572-0.551-0.319-0.582,0.243,0.03,1.424,3.187,0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464l0.39-0.5zm-7.62-3.582l-0.119-0.316h0.715l0.348,0.781h-0.517v-0.465h-0.434zm2.35,1.572l0.57,0.832,0.039,0.1-0.584-0.354-0.141-0.504,0.11-0.08zm0.86,1.46l0.173,0.173-0.224,0.049-0.05-0.061,0.1-0.16zm-4.46-5.603l0.363,0.562-0.413,0.126-0.161-0.092,0.21-0.596z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="5.039" y2="21.08">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059l-2.09-0.399L12.5,6.919l-0.098,0.654 h-1.512l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.005l-0.339,0.882l1.239,3.169 h1.264l1.252-1.012v-0.413l0.331-0.513l0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35c-0.012,0.082,0.178,1.695,0.734,1.568 c0.422-0.096,1.929-2.896,1.957-3.161c0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092l-0.899,0.902 c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551l-0.319-0.582 l0.243,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316h0.715 l0.348,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.141-0.504L17.453,10.554z M18.312,12.008 l0.173,0.173l-0.224,0.049l-0.05-0.061L18.312,12.008z M13.848,6.407l0.363,0.562l-0.413,0.126l-0.161-0.092L13.848,6.407z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.0386" y2="21.0813">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,5c-4.418,0-8,3.583-8,8,0,4.42,3.582,8,8,8,4.42,0,8-3.58,8-8,0-4.417-3.58-8-8-8zm0,15.38c-4.072,0-7.385-3.313-7.385-7.385s3.315-7.385,7.385-7.385,7.38,3.313,7.38,7.385-3.31,7.38-7.38,7.38z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="15.46" cy="7.156" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.486">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8c4.42,0,8-3.58,8-8 C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385S10.928,5.615,15,5.615S22.385,8.928,22.385,13 S19.072,20.385,15,20.385z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.4619" cy="7.1558" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4862">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.34,15.29l-0.833,0.833-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616c0.55-0.13,2.25-2.4,1.4-2.8z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="15.46" cy="7.154" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.97">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649 c-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616C18.488,17.96,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="15.4609" cy="7.1538" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9747">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M17.46,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395-1.01,0.632,0.531,0.821-0.928,0.286-0.5-0.286,0.176-0.499-0.652,0.452-0.117,0.786h-1.239l0.458,0.78-1.742,1.421-0.334,1.42,0.646,1.252,0.39,0.25,1.365-0.279,0.498,0.429,0.453,0.045,0.492,1.929-0.328,0.853,0.725,1.603,0.205,0.665h1.263l0.714-0.386,0.539-0.625v-0.757l1.023-0.522v-1.12l0.404-0.771,0.903-0.813,0.216-0.942-1.182,0.264-0.311-0.378,0.222-0.354-0.839-0.506-0.357-1.286,0.619-0.404,0.57,0.833,0.215,0.549,0.428,0.429,0.5,0.261,0.557-0.089,0.617-0.594-0.435-0.792-0.547,0.143-0.495-0.59,0.471-0.328,1.475,0.179v0.524l1.284,2.646,0.291-0.233c-0.16-3.051-2.17-5.611-4.93-6.583zm-0.68,3.574l-0.67,0.179h-0.896v-0.464h-0.857l-0.679,0.178-1.036-0.285-0.285-0.536,1.428-0.321h1.43l-0.2-0.572h0.715l0.396,0.893,0.674,0.237v0.691zm1.54-1.178l-1.214-0.214v-0.429l0.607-0.143,0.178-0.215,0.429,0.357v0.644z" fill="url(#SVGID_5_)"/>
-</svg>
\ No newline at end of file
+<path d="M17.455,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421L9.816,11.5l0.646,1.252L10.852,13 l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.853l0.725,1.603l0.205,0.665h1.263l0.714-0.386l0.539-0.625v-0.757 l1.023-0.522v-1.12l0.404-0.771l0.903-0.813l0.216-0.942l-1.182,0.264l-0.311-0.378l0.222-0.354l-0.839-0.506l-0.357-1.286 l0.619-0.404l0.57,0.833l0.215,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.435-0.792l-0.547,0.143l-0.495-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.529,20.219,6.969,17.455,5.997z M16.785,9.571L16.111,9.75h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.571z M18.321,8.393l-1.214-0.214V7.75l0.607-0.143l0.178-0.215l0.429,0.357V8.393z" fill="url(#SVGID_5_)"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,52 +1,56 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="28,29,28,1,2,1,2,22.41,8.586,29" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<polygon fill-opacity="0.6" points="28,29 28,1 2,1 2,22.414 8.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="27,2,27,28,9,28,3,22,3,2"/>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9,28 3,22 3,2 "/>
<circle cx="15" cy="14" fill-opacity="0.2" r="8" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="3,22,9,22,9,28"/>
-<radialGradient cx="-453.9" cy="-300.1" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.1">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<polygon fill="#FFFFFF" points="3,22 9,22 9,28 "/>
+<radialGradient cx="-453.8818" cy="-300.0874" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0958">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="15" cy="13" fill="url(#SVGID_2_)" r="8"/>
-<path d="M22.72,12.56c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059-2.09-0.399-2.61,1.554-0.098,0.654h-1.512l0.598,1.018-1.619,1.32-0.377,1.63,1.336,2.37,1.365-0.279,0.498,0.429,0.39,0.038,0.257,1.005-0.339,0.882,1.239,3.169h1.264l1.252-1.012v-0.413l0.331-0.513,0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35-0.012,0.082,0.178,1.695,0.734,1.568,0.422-0.096,1.929-2.896,1.957-3.161,0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092-0.899,0.902c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954,0.496-1.604,0.758-0.615-0.166-0.303,0.572-0.551-0.319-0.582,0.243,0.03,1.424,3.187,0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464l0.39-0.5zm-7.62-3.582l-0.119-0.316h0.715l0.348,0.781h-0.517v-0.465h-0.434zm2.35,1.572l0.57,0.832,0.039,0.1-0.584-0.354-0.141-0.504,0.11-0.08zm0.86,1.46l0.173,0.173-0.224,0.049-0.05-0.061,0.1-0.16zm-4.46-5.603l0.363,0.562-0.413,0.126-0.161-0.092,0.21-0.596z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="5.039" y2="21.08">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059l-2.09-0.399L12.5,6.919l-0.098,0.654 h-1.512l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.005l-0.339,0.882l1.239,3.169 h1.264l1.252-1.012v-0.413l0.331-0.513l0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35c-0.012,0.082,0.178,1.695,0.734,1.568 c0.422-0.096,1.929-2.896,1.957-3.161c0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092l-0.899,0.902 c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551l-0.319-0.582 l0.243,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316h0.715 l0.348,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.141-0.504L17.453,10.554z M18.312,12.008 l0.173,0.173l-0.224,0.049l-0.05-0.061L18.312,12.008z M13.848,6.407l0.363,0.562l-0.413,0.126l-0.161-0.092L13.848,6.407z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.0386" y2="21.0813">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,5c-4.418,0-8,3.583-8,8,0,4.42,3.582,8,8,8,4.42,0,8-3.58,8-8,0-4.417-3.58-8-8-8zm0,15.38c-4.072,0-7.385-3.313-7.385-7.385s3.315-7.385,7.385-7.385,7.38,3.313,7.38,7.385-3.31,7.38-7.38,7.38z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="15.46" cy="7.156" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.486">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8c4.42,0,8-3.58,8-8 C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385S10.928,5.615,15,5.615S22.385,8.928,22.385,13 S19.072,20.385,15,20.385z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.4619" cy="7.1558" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4862">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.34,15.29l-0.833,0.833-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616c0.55-0.13,2.25-2.4,1.4-2.8z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="15.46" cy="7.154" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.97">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649 c-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616C18.488,17.96,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="15.4609" cy="7.1538" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9747">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M17.46,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395-1.01,0.632,0.531,0.821-0.928,0.286-0.5-0.286,0.176-0.499-0.652,0.452-0.117,0.786h-1.239l0.458,0.78-1.742,1.421-0.334,1.42,0.646,1.252,0.39,0.25,1.365-0.279,0.498,0.429,0.453,0.045,0.492,1.929-0.328,0.853,0.725,1.603,0.205,0.665h1.263l0.714-0.386,0.539-0.625v-0.757l1.023-0.522v-1.12l0.404-0.771,0.903-0.813,0.216-0.942-1.182,0.264-0.311-0.378,0.222-0.354-0.839-0.506-0.357-1.286,0.619-0.404,0.57,0.833,0.215,0.549,0.428,0.429,0.5,0.261,0.557-0.089,0.617-0.594-0.435-0.792-0.547,0.143-0.495-0.59,0.471-0.328,1.475,0.179v0.524l1.284,2.646,0.291-0.233c-0.16-3.051-2.17-5.611-4.93-6.583zm-0.68,3.574l-0.67,0.179h-0.896v-0.464h-0.857l-0.679,0.178-1.036-0.285-0.285-0.536,1.428-0.321h1.43l-0.2-0.572h0.715l0.396,0.893,0.674,0.237v0.691zm1.54-1.178l-1.214-0.214v-0.429l0.607-0.143,0.178-0.215,0.429,0.357v0.644z" fill="url(#SVGID_5_)"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="22" x2="22" y1="14.97" y2="29.16">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<path d="M17.455,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421L9.816,11.5l0.646,1.252L10.852,13 l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.853l0.725,1.603l0.205,0.665h1.263l0.714-0.386l0.539-0.625v-0.757 l1.023-0.522v-1.12l0.404-0.771l0.903-0.813l0.216-0.942l-1.182,0.264l-0.311-0.378l0.222-0.354l-0.839-0.506l-0.357-1.286 l0.619-0.404l0.57,0.833l0.215,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.435-0.792l-0.547,0.143l-0.495-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.529,20.219,6.969,17.455,5.997z M16.785,9.571L16.111,9.75h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.571z M18.321,8.393l-1.214-0.214V7.75l0.607-0.143l0.178-0.215l0.429,0.357V8.393z" fill="url(#SVGID_5_)"/>
+</g>
+<g>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="22" x2="22" y1="14.9683" y2="29.1646">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3,26.34,24" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3,26.34,23"/>
-<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
+<polygon fill-opacity="0.2" points="26.34,24 21.999,19.4 17.66,24 17,23.3 21.999,18 27,23.3 26.34,24 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="21.999,20.857 18,25.098 18,27 21,27 21,24 23,24 23,27 26,27 26,25.097 " stroke-opacity="0.2"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="26.34,23 21.999,18.4 17.66,23 17,22.3 21.999,17 27,22.3 26.34,23 "/>
+<polygon fill="#FFFFFF" points="21.999,19.857 18,24.098 18,26 21,26 21,23 23,23 23,26 26,26 26,24.097 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_url_address_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,53 +1,59 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<polygon fill-opacity="0.6" points="28,29,28,1,2,1,2,22.41,8.586,29" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28">
-<stop offset="0" stop-color="#F9F9F9"/>
-<stop offset="1" stop-color="#B5B5B5"/>
+<polygon fill-opacity="0.6" points="28,29 28,1 2,1 2,22.414 8.586,29 " stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(-1 0 0 1 236 0)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="221" x2="221" y1="2" y2="28.0005">
+<stop offset="0" style="stop-color:#F9F9F9"/>
+<stop offset="1" style="stop-color:#B5B5B5"/>
</linearGradient>
-<polygon fill="url(#SVGID_1_)" points="27,2,27,28,9,28,3,22,3,2"/>
+<polygon fill="url(#SVGID_1_)" points="27,2 27,28 9,28 3,22 3,2 "/>
<circle cx="15" cy="14" fill-opacity="0.2" r="8" stroke-opacity="0.2"/>
-<polygon fill="#FFFFFF" points="3,22,9,22,9,28"/>
-<radialGradient cx="-453.9" cy="-300.1" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.1">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<polygon fill="#FFFFFF" points="3,22 9,22 9,28 "/>
+<radialGradient cx="-453.8818" cy="-300.0874" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_2_" r="30.0958">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="15" cy="13" fill="url(#SVGID_2_)" r="8"/>
-<path d="M22.72,12.56c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059-2.09-0.399-2.61,1.554-0.098,0.654h-1.512l0.598,1.018-1.619,1.32-0.377,1.63,1.336,2.37,1.365-0.279,0.498,0.429,0.39,0.038,0.257,1.005-0.339,0.882,1.239,3.169h1.264l1.252-1.012v-0.413l0.331-0.513,0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35-0.012,0.082,0.178,1.695,0.734,1.568,0.422-0.096,1.929-2.896,1.957-3.161,0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092-0.899,0.902c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954,0.496-1.604,0.758-0.615-0.166-0.303,0.572-0.551-0.319-0.582,0.243,0.03,1.424,3.187,0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464l0.39-0.5zm-7.62-3.582l-0.119-0.316h0.715l0.348,0.781h-0.517v-0.465h-0.434zm2.35,1.572l0.57,0.832,0.039,0.1-0.584-0.354-0.141-0.504,0.11-0.08zm0.86,1.46l0.173,0.173-0.224,0.049-0.05-0.061,0.1-0.16zm-4.46-5.603l0.363,0.562-0.413,0.126-0.161-0.092,0.21-0.596z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="15" x2="15" y1="5.039" y2="21.08">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M22.715,12.562c-0.178-3.125-2.201-5.814-5.157-6.855l-0.36,0.059l-2.09-0.399L12.5,6.919l-0.098,0.654 h-1.512l0.598,1.018l-1.619,1.32l-0.377,1.63l1.336,2.37l1.365-0.279l0.498,0.429l0.39,0.038l0.257,1.005l-0.339,0.882l1.239,3.169 h1.264l1.252-1.012v-0.413l0.331-0.513l0.273-0.14c-0.069,0.105-0.179,0.35-0.179,0.35c-0.012,0.082,0.178,1.695,0.734,1.568 c0.422-0.096,1.929-2.896,1.957-3.161c0.058-0.527-0.229-0.745-0.405-0.827l-0.196-0.092l-0.899,0.902 c-0.097,0.006-0.183,0.023-0.262,0.047v-0.749l0.978-0.954l0.496-1.604l0.758-0.615l-0.166-0.303l0.572-0.551l-0.319-0.582 l0.243,0.03l1.424,3.187l0.291-0.233c-0.01-0.156-0.025-0.31-0.044-0.464L22.715,12.562z M15.096,8.978l-0.119-0.316h0.715 l0.348,0.781h-0.517V8.978H15.096z M17.453,10.554l0.57,0.832l0.039,0.1l-0.584-0.354l-0.141-0.504L17.453,10.554z M18.312,12.008 l0.173,0.173l-0.224,0.049l-0.05-0.061L18.312,12.008z M13.848,6.407l0.363,0.562l-0.413,0.126l-0.161-0.092L13.848,6.407z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="14.9995" x2="14.9995" y1="5.0386" y2="21.0813">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,5c-4.418,0-8,3.583-8,8,0,4.42,3.582,8,8,8,4.42,0,8-3.58,8-8,0-4.417-3.58-8-8-8zm0,15.38c-4.072,0-7.385-3.313-7.385-7.385s3.315-7.385,7.385-7.385,7.38,3.313,7.38,7.385-3.31,7.38-7.38,7.38z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="15.46" cy="7.156" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.486">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,5c-4.418,0-8,3.583-8,8c0,4.42,3.582,8,8,8c4.42,0,8-3.58,8-8 C23,8.583,19.42,5,15,5z M15,20.385c-4.072,0-7.385-3.313-7.385-7.385S10.928,5.615,15,5.615S22.385,8.928,22.385,13 S19.072,20.385,15,20.385z" fill="url(#SVGID_3_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.4619" cy="7.1558" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="9.4862">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.34,15.29l-0.833,0.833-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616c0.55-0.13,2.25-2.4,1.4-2.8z" fill="url(#SVGID_4_)"/>
-<radialGradient cx="15.46" cy="7.154" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.97">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M19.335,15.286l-0.833,0.833c0,0-0.503,0-0.526,0.2c-0.011,0.086-0.039,0.457-0.124,0.649 c-0.168,0.116-0.367,0.5-0.367,0.5s-0.104,0.742,0.452,0.616C18.488,17.96,20.189,15.688,19.335,15.286z" fill="url(#SVGID_4_)"/>
+<radialGradient cx="15.4609" cy="7.1538" gradientUnits="userSpaceOnUse" id="SVGID_5_" r="10.9747">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M17.46,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395-1.01,0.632,0.531,0.821-0.928,0.286-0.5-0.286,0.176-0.499-0.652,0.452-0.117,0.786h-1.239l0.458,0.78-1.742,1.421-0.334,1.42,0.646,1.252,0.39,0.25,1.365-0.279,0.498,0.429,0.453,0.045,0.492,1.929-0.328,0.853,0.725,1.603,0.205,0.665h1.263l0.714-0.386,0.539-0.625v-0.757l1.023-0.522v-1.12l0.404-0.771,0.903-0.813,0.216-0.942-1.182,0.264-0.311-0.378,0.222-0.354-0.839-0.506-0.357-1.286,0.619-0.404,0.57,0.833,0.215,0.549,0.428,0.429,0.5,0.261,0.557-0.089,0.617-0.594-0.435-0.792-0.547,0.143-0.495-0.59,0.471-0.328,1.475,0.179v0.524l1.284,2.646,0.291-0.233c-0.16-3.051-2.17-5.611-4.93-6.583zm-0.68,3.574l-0.67,0.179h-0.896v-0.464h-0.857l-0.679,0.178-1.036-0.285-0.285-0.536,1.428-0.321h1.43l-0.2-0.572h0.715l0.396,0.893,0.674,0.237v0.691zm1.54-1.178l-1.214-0.214v-0.429l0.607-0.143,0.178-0.215,0.429,0.357v0.644z" fill="url(#SVGID_5_)"/>
+<path d="M17.455,5.997c-0.136,0.051-0.229,0.087-0.229,0.087l-2.058-0.395l-1.01,0.632l0.531,0.821 l-0.928,0.286l-0.5-0.286l0.176-0.499l-0.652,0.452l-0.117,0.786h-1.239l0.458,0.78l-1.742,1.421L9.816,11.5l0.646,1.252L10.852,13 l1.365-0.279l0.498,0.429l0.453,0.045l0.492,1.929l-0.328,0.853l0.725,1.603l0.205,0.665h1.263l0.714-0.386l0.539-0.625v-0.757 l1.023-0.522v-1.12l0.404-0.771l0.903-0.813l0.216-0.942l-1.182,0.264l-0.311-0.378l0.222-0.354l-0.839-0.506l-0.357-1.286 l0.619-0.404l0.57,0.833l0.215,0.549l0.428,0.429l0.5,0.261l0.557-0.089l0.617-0.594l-0.435-0.792l-0.547,0.143l-0.495-0.59 l0.471-0.328l1.475,0.179v0.524l1.284,2.646l0.291-0.233C22.234,9.529,20.219,6.969,17.455,5.997z M16.785,9.571L16.111,9.75h-0.896 V9.286h-0.857l-0.679,0.178l-1.036-0.285l-0.285-0.536l1.428-0.321h1.43L15,7.75h0.715l0.396,0.893l0.674,0.237V9.571z M18.321,8.393l-1.214-0.214V7.75l0.607-0.143l0.178-0.215l0.429,0.357V8.393z" fill="url(#SVGID_5_)"/>
+</g>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -549.9609 -796.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="572" x2="572" y1="811" y2="825">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<g>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -549.9609 -796.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="571.9609" x2="571.9609" y1="811.0391" y2="825.0391">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="24,19,24,20,26,20,26,21,24,21,24,22,26,22,26,23,24,23,24,26,27,26,27,19"/>
-<path d="M17,19v7h2v-2h2v2h2v-9l-6,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm3,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="24,19 24,20 26,20 26,21 24,21 24,22 26,22 26,23 24,23 24,26 27,26 27,19 "/>
+<path d="M17,19v7h2v-2h2v2h2v-9L17,19z M19,23h-1v-1h1V23z M19,21h-1v-1h1V21z M22,23h-1v-1h1V23z M22,21h-1v-1h1 V21z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="24"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_video.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_video.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,16 +1,17 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
<rect fill-opacity="0.6" height="26" width="28" x="1" y="2"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15" x2="15" y1="27" y2="3.5">
-<stop offset="0" stop-color="#000000"/>
-<stop offset="1" stop-color="#666666"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="15.0005" x2="15.0005" y1="27" y2="3.4999">
+<stop offset="0" style="stop-color:#000000"/>
+<stop offset="1" style="stop-color:#666666"/>
</linearGradient>
<rect fill="url(#SVGID_1_)" height="24" width="26" x="2" y="3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="21.12" y2="9.073">
-<stop offset="0" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.0005" x2="15.0005" y1="21.125" y2="9.0729">
+<stop offset="0" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</linearGradient>
<rect fill="url(#SVGID_2_)" height="12" width="24" x="3" y="9"/>
<rect fill="#F1F2F2" height="2" width="3" x="3" y="5"/>
@@ -27,4 +28,5 @@
<rect fill="#FFFFFF" fill-opacity="0.1" height="1" stroke-opacity="0.1" width="26" x="2" y="26"/>
<rect fill="#FFFFFF" fill-opacity="0.3" height="1" stroke-opacity="0.3" width="24" x="3" y="20"/>
<rect fill="#2D204B" fill-opacity="0.2" height="1" stroke-opacity="0.2" width="24" x="3" y="9"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,58 +1,60 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M16,0c-7.72,0-14,6.279-14,14,0,7.719,6.28,14,14,14s14-6.281,14-14c0-7.721-6.28-14-14-14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="-451" cy="-302.2" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.91">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="16" cy="14" fill="url(#SVGID_1_)" r="13"/>
-<path d="M28.54,13.29c-0.288-5.078-3.577-9.449-8.38-11.14l-0.585,0.096-3.397-0.65-4.235,2.525-0.159,1.064h-2.458l0.971,1.652-2.628,2.142-0.613,2.65,2.173,3.85,2.218-0.453,0.81,0.697,0.633,0.063,0.418,1.633-0.552,1.432,2.01,5.15h2.053l2.035-1.645v-0.67l0.537-0.834,0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566-0.019,0.135,0.289,2.756,1.192,2.551,0.686-0.156,3.135-4.705,3.182-5.139,0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15-1.462,1.465c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551,0.808-2.604,1.231-1.002-0.27-0.49,0.929-0.895-0.519-0.945,0.395,0.047,2.313,5.178,0.49-0.38c-0.015-0.254-0.042-0.502-0.071-0.752l0.61-0.76zm-12.38-5.827l-0.193-0.516h1.161l0.565,1.271h-0.841v-0.755h-0.704zm3.83,2.557l0.927,1.354,0.063,0.162-0.95-0.574-0.23-0.81,0.19-0.13zm1.39,2.37l0.28,0.281-0.362,0.08-0.082-0.1,0.16-0.26zm-7.25-9.105l0.59,0.914-0.67,0.205-0.262-0.15,0.34-0.969z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16" x2="16" y1="1.062" y2="27.13">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M16,1c-7.179,0-13,5.82-13,13,0,7.182,5.821,13,13,13,7.182,0,13-5.818,13-13,0-7.18-5.82-13-13-13zm0,25c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.42">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M23.04,17.71l-1.353,1.355-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1c0.91-0.19,3.67-3.88,2.28-4.54z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="16.75" cy="4.5" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.83">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639-1.64,1.025,0.863,1.336-1.509,0.463-0.813-0.463,0.286-0.811-1.06,0.734-0.2,1.277h-2.014l0.745,1.268-2.83,2.308-0.533,2.305,1.051,2.035,0.631,0.4,2.218-0.453,0.81,0.695,0.736,0.072,0.801,3.135-0.533,1.385,1.178,2.605,0.332,1.08h2.053l1.16-0.627,0.875-1.016v-1.23l1.663-0.848v-1.822l0.658-1.25,1.467-1.32,0.351-1.531-1.919,0.428-0.505-0.615,0.359-0.574-1.363-0.824-0.581-2.088,1.007-0.656,0.927,1.352,0.349,0.893,0.696,0.697,0.813,0.424,0.903-0.145,1.003-0.965-0.706-1.289-0.91,0.253-0.804-0.957,0.764-0.533,2.397,0.291v0.852l2.086,4.299,0.474-0.379c-0.28-4.961-3.56-9.121-8.05-10.7zm-1.09,5.809l-1.095,0.291h-1.458v-0.756h-1.394l-1.103,0.291-1.68-0.465-0.47-0.869,2.321-0.523h2.322l-0.34-0.928h1.161l0.646,1.451,1.095,0.383v1.125zm2.5-1.914l-1.974-0.35v-0.695l0.987-0.232,0.29-0.348,0.696,0.58v1.045z" fill="url(#SVGID_4_)"/>
-<path d="M2.73,8.398c-0.281,0.184-1.521,1.448-1.545,1.477-0.489,0.596-0.786,1.178-0.795,1.197-0.308,0.727-0.585,2.615-0.205,4.359,0.282,1.289,1.901,4.789,3.796,7.348,2.016,2.721,5.333,5.609,6.953,6.371,1.669,0.787,2.914,0.85,3.256,0.85,0.176,0,0.325-0.014,0.459-0.039,0.1-0.018,1.208-0.223,2.326-0.977,0,0,0.467-0.314,0.729-0.555,0.02-0.018,0.786-0.768,0.799-0.785,0.247-0.311,0.358-0.701,0.312-1.102-0.049-0.416-0.27-0.805-0.605-1.068,0,0-4.841-3.844-4.875-3.863-0.257-0.156-0.547-0.238-0.841-0.238-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438-0.884-1.193-1.535-2.25-2.041-3.324l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85,0.146-0.396,0.12-0.852-0.067-1.244l-2.67-5.513c-0.269-0.557-0.83-0.914-1.431-0.914-0.217,0-0.427,0.045-0.622,0.135l-0.959,0.56z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.21" y1="8.442" y2="26.78">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.5212" stop-color="#ADB2B1"/>
-<stop offset="1" stop-color="#888E8F"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
</linearGradient>
-<path d="M5.143,16.26c0.67,1.684,1.561,3.094,2.548,4.428,0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045c-0.384,0.076-1.622-0.037-3.097-0.732-1.477-0.695-4.652-3.467-6.575-6.063-1.922-2.594-3.398-5.941-3.622-6.965-0.352-1.611-0.051-3.287,0.148-3.756,0,0,0.213-0.426,0.646-0.951,0.185-0.23,3.186,5.75,3.186,5.75z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="10.89" cy="22.91" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.667">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M17.59,26.26l-3.165-2.527-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006-0.565,2.01,0.43,4.135,2.343,4.865,0.253,0.094,0.509,0.162,0.765,0.201,0.16,0.004,0.291,0,0.375-0.016,0,0,0.987-0.168,1.959-0.824,0.324-0.217,0.353-0.223,0.614-0.463,0.001-0.002,0-0.004,0.002-0.006,0.515-0.471,0.689-0.664,0.689-0.664,0.18-0.21,0.12-0.55-0.13-0.75z" fill="url(#SVGID_6_)"/>
-<path d="M11.48,23.32l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27,3.165,2.527c0.25,0.195,0.307,0.537,0.129,0.76,0,0-0.176,0.193-0.693,0.668l-5.56-4.37z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<radialGradient cx="-162.4" cy="-37.6" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.617">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M7.502,14.56l-2.66-5.506c-0.141-0.292-0.471-0.429-0.738-0.306,0,0-0.232,0.105-0.813,0.479,0,0.002-0.001,0-0.002,0.002-0.316,0.203-0.342,0.294-0.655,0.572-0.434,0.389-0.758,0.793-0.978,1.105-0.721,2.08,0.275,4.35,2.266,5.109,0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57,0.853-0.381c0.268-0.12,0.366-0.46,0.225-0.75z" fill="url(#SVGID_7_)"/>
-<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48,0.268-0.123,0.598,0.014,0.738,0.303l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381-3.132-6.461z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-</svg>
\ No newline at end of file
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_home.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_home.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,70 +1,74 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M16,0c-7.72,0-14,6.279-14,14,0,7.719,6.28,14,14,14s14-6.281,14-14c0-7.721-6.28-14-14-14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="-451" cy="-302.2" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.91">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="16" cy="14" fill="url(#SVGID_1_)" r="13"/>
-<path d="M28.54,13.29c-0.288-5.078-3.577-9.449-8.38-11.14l-0.585,0.096-3.397-0.65-4.235,2.525-0.159,1.064h-2.458l0.971,1.652-2.628,2.142-0.613,2.65,2.173,3.85,2.218-0.453,0.81,0.697,0.633,0.063,0.418,1.633-0.552,1.432,2.01,5.15h2.053l2.035-1.645v-0.67l0.537-0.834,0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566-0.019,0.135,0.289,2.756,1.192,2.551,0.686-0.156,3.135-4.705,3.182-5.139,0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15-1.462,1.465c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551,0.808-2.604,1.231-1.002-0.27-0.49,0.929-0.895-0.519-0.945,0.395,0.047,2.313,5.178,0.49-0.38c-0.015-0.254-0.042-0.502-0.071-0.752l0.61-0.76zm-12.38-5.827l-0.193-0.516h1.161l0.565,1.271h-0.841v-0.755h-0.704zm3.83,2.557l0.927,1.354,0.063,0.162-0.95-0.574-0.23-0.81,0.19-0.13zm1.39,2.37l0.28,0.281-0.362,0.08-0.082-0.1,0.16-0.26zm-7.25-9.105l0.59,0.914-0.67,0.205-0.262-0.15,0.34-0.969z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16" x2="16" y1="1.062" y2="27.13">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M16,1c-7.179,0-13,5.82-13,13,0,7.182,5.821,13,13,13,7.182,0,13-5.818,13-13,0-7.18-5.82-13-13-13zm0,25c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.42">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M23.04,17.71l-1.353,1.355-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1c0.91-0.19,3.67-3.88,2.28-4.54z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="16.75" cy="4.5" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.83">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639-1.64,1.025,0.863,1.336-1.509,0.463-0.813-0.463,0.286-0.811-1.06,0.734-0.2,1.277h-2.014l0.745,1.268-2.83,2.308-0.533,2.305,1.051,2.035,0.631,0.4,2.218-0.453,0.81,0.695,0.736,0.072,0.801,3.135-0.533,1.385,1.178,2.605,0.332,1.08h2.053l1.16-0.627,0.875-1.016v-1.23l1.663-0.848v-1.822l0.658-1.25,1.467-1.32,0.351-1.531-1.919,0.428-0.505-0.615,0.359-0.574-1.363-0.824-0.581-2.088,1.007-0.656,0.927,1.352,0.349,0.893,0.696,0.697,0.813,0.424,0.903-0.145,1.003-0.965-0.706-1.289-0.91,0.253-0.804-0.957,0.764-0.533,2.397,0.291v0.852l2.086,4.299,0.474-0.379c-0.28-4.961-3.56-9.121-8.05-10.7zm-1.09,5.809l-1.095,0.291h-1.458v-0.756h-1.394l-1.103,0.291-1.68-0.465-0.47-0.869,2.321-0.523h2.322l-0.34-0.928h1.161l0.646,1.451,1.095,0.383v1.125zm2.5-1.914l-1.974-0.35v-0.695l0.987-0.232,0.29-0.348,0.696,0.58v1.045z" fill="url(#SVGID_4_)"/>
-<path d="M2.73,8.398c-0.281,0.184-1.521,1.448-1.545,1.477-0.489,0.596-0.786,1.178-0.795,1.197-0.308,0.727-0.585,2.615-0.205,4.359,0.282,1.289,1.901,4.789,3.796,7.348,2.016,2.721,5.333,5.609,6.953,6.371,1.669,0.787,2.914,0.85,3.256,0.85,0.176,0,0.325-0.014,0.459-0.039,0.1-0.018,1.208-0.223,2.326-0.977,0,0,0.467-0.314,0.729-0.555,0.02-0.018,0.786-0.768,0.799-0.785,0.247-0.311,0.358-0.701,0.312-1.102-0.049-0.416-0.27-0.805-0.605-1.068,0,0-4.841-3.844-4.875-3.863-0.257-0.156-0.547-0.238-0.841-0.238-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438-0.884-1.193-1.535-2.25-2.041-3.324l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85,0.146-0.396,0.12-0.852-0.067-1.244l-2.67-5.513c-0.269-0.557-0.83-0.914-1.431-0.914-0.217,0-0.427,0.045-0.622,0.135l-0.959,0.56z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.21" y1="8.442" y2="26.78">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.5212" stop-color="#ADB2B1"/>
-<stop offset="1" stop-color="#888E8F"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
</linearGradient>
-<path d="M5.143,16.26c0.67,1.684,1.561,3.094,2.548,4.428,0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045c-0.384,0.076-1.622-0.037-3.097-0.732-1.477-0.695-4.652-3.467-6.575-6.063-1.922-2.594-3.398-5.941-3.622-6.965-0.352-1.611-0.051-3.287,0.148-3.756,0,0,0.213-0.426,0.646-0.951,0.185-0.23,3.186,5.75,3.186,5.75z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="10.89" cy="22.91" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.667">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M17.59,26.26l-3.165-2.527-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006-0.565,2.01,0.43,4.135,2.343,4.865,0.253,0.094,0.509,0.162,0.765,0.201,0.16,0.004,0.291,0,0.375-0.016,0,0,0.987-0.168,1.959-0.824,0.324-0.217,0.353-0.223,0.614-0.463,0.001-0.002,0-0.004,0.002-0.006,0.515-0.471,0.689-0.664,0.689-0.664,0.18-0.21,0.12-0.55-0.13-0.75z" fill="url(#SVGID_6_)"/>
-<path d="M11.48,23.32l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27,3.165,2.527c0.25,0.195,0.307,0.537,0.129,0.76,0,0-0.176,0.193-0.693,0.668l-5.56-4.37z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<radialGradient cx="-162.4" cy="-37.6" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.617">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M7.502,14.56l-2.66-5.506c-0.141-0.292-0.471-0.429-0.738-0.306,0,0-0.232,0.105-0.813,0.479,0,0.002-0.001,0-0.002,0.002-0.316,0.203-0.342,0.294-0.655,0.572-0.434,0.389-0.758,0.793-0.978,1.105-0.721,2.08,0.275,4.35,2.266,5.109,0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57,0.853-0.381c0.268-0.12,0.366-0.46,0.225-0.75z" fill="url(#SVGID_7_)"/>
-<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48,0.268-0.123,0.598,0.014,0.738,0.303l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381-3.132-6.461z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="22" x2="22" y1="14.97" y2="29.16">
-<stop offset="0" stop-color="#C7B17C"/>
-<stop offset="1" stop-color="#A86F49"/>
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+<g>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="22" x2="22" y1="14.9683" y2="29.1646">
+<stop offset="0" style="stop-color:#C7B17C"/>
+<stop offset="1" style="stop-color:#A86F49"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<polygon fill-opacity="0.2" points="26.34,24,22,19.4,17.66,24,17,23.3,22,18,27,23.3,26.34,24" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="22,20.86,18,25.1,18,27,21,27,21,24,23,24,23,27,26,27,26,25.1" stroke-opacity="0.2"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="26.34,23,22,18.4,17.66,23,17,22.3,22,17,27,22.3,26.34,23"/>
-<polygon fill="#FFFFFF" points="22,19.86,18,24.1,18,26,21,26,21,23,23,23,23,26,26,26,26,24.1"/>
+<polygon fill-opacity="0.2" points="26.34,24 21.999,19.4 17.66,24 17,23.3 21.999,18 27,23.3 26.34,24 " stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="21.999,20.857 18,25.098 18,27 21,27 21,24 23,24 23,27 26,27 26,25.097 " stroke-opacity="0.2"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7 s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="26.34,23 21.999,18.4 17.66,23 17,22.3 21.999,17 27,22.3 26.34,23 "/>
+<polygon fill="#FFFFFF" points="21.999,19.857 18,24.098 18,26 21,26 21,23 23,23 23,26 26,26 26,24.097 "/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_work.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_voip_work.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,71 +1,77 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M16,0c-7.72,0-14,6.279-14,14,0,7.719,6.28,14,14,14s14-6.281,14-14c0-7.721-6.28-14-14-14z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<radialGradient cx="-451" cy="-302.2" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.91">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M16,0C8.28,0,2,6.279,2,14c0,7.719,6.28,14,14,14s14-6.281,14-14C30,6.279,23.72,0,16,0z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<radialGradient cx="-451.0264" cy="-302.1748" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="16" cy="14" fill="url(#SVGID_1_)" r="13"/>
-<path d="M28.54,13.29c-0.288-5.078-3.577-9.449-8.38-11.14l-0.585,0.096-3.397-0.65-4.235,2.525-0.159,1.064h-2.458l0.971,1.652-2.628,2.142-0.613,2.65,2.173,3.85,2.218-0.453,0.81,0.697,0.633,0.063,0.418,1.633-0.552,1.432,2.01,5.15h2.053l2.035-1.645v-0.67l0.537-0.834,0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566-0.019,0.135,0.289,2.756,1.192,2.551,0.686-0.156,3.135-4.705,3.182-5.139,0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15-1.462,1.465c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551,0.808-2.604,1.231-1.002-0.27-0.49,0.929-0.895-0.519-0.945,0.395,0.047,2.313,5.178,0.49-0.38c-0.015-0.254-0.042-0.502-0.071-0.752l0.61-0.76zm-12.38-5.827l-0.193-0.516h1.161l0.565,1.271h-0.841v-0.755h-0.704zm3.83,2.557l0.927,1.354,0.063,0.162-0.95-0.574-0.23-0.81,0.19-0.13zm1.39,2.37l0.28,0.281-0.362,0.08-0.082-0.1,0.16-0.26zm-7.25-9.105l0.59,0.914-0.67,0.205-0.262-0.15,0.34-0.969z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="16" x2="16" y1="1.062" y2="27.13">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M28.536,13.287c-0.288-5.078-3.577-9.449-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H9.322l0.971,1.652L7.662,8.979l-0.613,2.65l2.173,3.85l2.218-0.453l0.81,0.697l0.633,0.063l0.418,1.633l-0.552,1.432L14.763,24 h2.053l2.035-1.645v-0.67l0.537-0.834l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.135,0.289,2.756,1.192,2.551 c0.686-0.156,3.135-4.705,3.182-5.139c0.093-0.855-0.373-1.209-0.659-1.342l-0.318-0.15l-1.462,1.465 c-0.157,0.012-0.298,0.039-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.49l0.929-0.895l-0.519-0.945 l0.395,0.047l2.313,5.178L28,14.795c-0.015-0.254-0.042-0.502-0.071-0.752L28.536,13.287z M16.156,7.463l-0.193-0.516h1.161 l0.565,1.271h-0.841V7.463H16.156z M19.987,10.023l0.927,1.354l0.063,0.162l-0.95-0.574L19.8,10.146L19.987,10.023z M21.381,12.387 l0.28,0.281l-0.362,0.08l-0.082-0.1L21.381,12.387z M14.127,3.285l0.59,0.914l-0.67,0.205l-0.262-0.15L14.127,3.285z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15.9995" x2="15.9995" y1="1.0625" y2="27.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M16,1c-7.179,0-13,5.82-13,13,0,7.182,5.821,13,13,13,7.182,0,13-5.818,13-13,0-7.18-5.82-13-13-13zm0,25c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.42">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M16,1C8.821,1,3,6.82,3,14c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C29,6.82,23.182,1,16,1z M16,26C9.383,26,4,20.617,4,14S9.383,2,16,2s12,5.383,12,12S22.617,26,16,26z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="16.75" cy="4.499" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M23.04,17.71l-1.353,1.355-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1c0.91-0.19,3.67-3.88,2.28-4.54z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="16.75" cy="4.5" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.83">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M23.044,17.713l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.141-0.063,0.744-0.201,1.057 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.205,0.734,1C21.669,22.059,24.434,18.367,23.044,17.713z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="16.75" cy="4.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8328">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639-1.64,1.025,0.863,1.336-1.509,0.463-0.813-0.463,0.286-0.811-1.06,0.734-0.2,1.277h-2.014l0.745,1.268-2.83,2.308-0.533,2.305,1.051,2.035,0.631,0.4,2.218-0.453,0.81,0.695,0.736,0.072,0.801,3.135-0.533,1.385,1.178,2.605,0.332,1.08h2.053l1.16-0.627,0.875-1.016v-1.23l1.663-0.848v-1.822l0.658-1.25,1.467-1.32,0.351-1.531-1.919,0.428-0.505-0.615,0.359-0.574-1.363-0.824-0.581-2.088,1.007-0.656,0.927,1.352,0.349,0.893,0.696,0.697,0.813,0.424,0.903-0.145,1.003-0.965-0.706-1.289-0.91,0.253-0.804-0.957,0.764-0.533,2.397,0.291v0.852l2.086,4.299,0.474-0.379c-0.28-4.961-3.56-9.121-8.05-10.7zm-1.09,5.809l-1.095,0.291h-1.458v-0.756h-1.394l-1.103,0.291-1.68-0.465-0.47-0.869,2.321-0.523h2.322l-0.34-0.928h1.161l0.646,1.451,1.095,0.383v1.125zm2.5-1.914l-1.974-0.35v-0.695l0.987-0.232,0.29-0.348,0.696,0.58v1.045z" fill="url(#SVGID_4_)"/>
-<path d="M2.73,8.398c-0.281,0.184-1.521,1.448-1.545,1.477-0.489,0.596-0.786,1.178-0.795,1.197-0.308,0.727-0.585,2.615-0.205,4.359,0.282,1.289,1.901,4.789,3.796,7.348,2.016,2.721,5.333,5.609,6.953,6.371,1.669,0.787,2.914,0.85,3.256,0.85,0.176,0,0.325-0.014,0.459-0.039,0.1-0.018,1.208-0.223,2.326-0.977,0,0,0.467-0.314,0.729-0.555,0.02-0.018,0.786-0.768,0.799-0.785,0.247-0.311,0.358-0.701,0.312-1.102-0.049-0.416-0.27-0.805-0.605-1.068,0,0-4.841-3.844-4.875-3.863-0.257-0.156-0.547-0.238-0.841-0.238-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438-0.884-1.193-1.535-2.25-2.041-3.324l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85,0.146-0.396,0.12-0.852-0.067-1.244l-2.67-5.513c-0.269-0.557-0.83-0.914-1.431-0.914-0.217,0-0.427,0.045-0.622,0.135l-0.959,0.56z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.21" y1="8.442" y2="26.78">
-<stop offset="0" stop-color="#ECEFED"/>
-<stop offset="0.5212" stop-color="#ADB2B1"/>
-<stop offset="1" stop-color="#888E8F"/>
+<path d="M19.99,2.619c-0.222,0.084-0.374,0.141-0.374,0.141l-3.344-0.639l-1.64,1.025l0.863,1.336 l-1.509,0.463l-0.813-0.463l0.286-0.811l-1.06,0.734L12.21,5.682h-2.014l0.745,1.268L8.11,9.258l-0.533,2.305l1.051,2.035L9.259,14 l2.218-0.453l0.81,0.695l0.736,0.072l0.801,3.135l-0.533,1.385l1.178,2.605l0.332,1.08h2.053l1.16-0.627l0.875-1.016v-1.23 l1.663-0.848v-1.822l0.658-1.25l1.467-1.32l0.351-1.531l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.088 l1.007-0.656l0.927,1.352l0.349,0.893l0.696,0.697l0.813,0.424l0.903-0.145l1.003-0.965l-0.706-1.289L23.12,9.744l-0.804-0.957 l0.764-0.533l2.397,0.291v0.852l2.086,4.299l0.474-0.379C27.756,8.359,24.48,4.199,19.99,2.619z M18.901,8.428l-1.095,0.291h-1.458 V7.963h-1.394l-1.103,0.291L12.17,7.789L11.705,6.92l2.321-0.523h2.322L16,5.469h1.161l0.646,1.451l1.095,0.383V8.428z M21.397,6.514l-1.974-0.35V5.469l0.987-0.232l0.29-0.348l0.696,0.58V6.514z" fill="url(#SVGID_4_)"/>
+<path d="M2.73,8.398C2.449,8.582,1.209,9.846,1.185,9.875c-0.489,0.596-0.786,1.178-0.795,1.197 c-0.308,0.727-0.585,2.615-0.205,4.359c0.282,1.289,1.901,4.789,3.796,7.348c2.016,2.721,5.333,5.609,6.953,6.371 c1.669,0.787,2.914,0.85,3.256,0.85c0.176,0,0.325-0.014,0.459-0.039c0.1-0.018,1.208-0.223,2.326-0.977 c0,0,0.467-0.314,0.729-0.555c0.02-0.018,0.786-0.768,0.799-0.785c0.247-0.311,0.358-0.701,0.312-1.102 c-0.049-0.416-0.27-0.805-0.605-1.068c0,0-4.841-3.844-4.875-3.863c-0.257-0.156-0.547-0.238-0.841-0.238 c-0.458,0-0.881,0.199-1.161,0.549l-0.5,0.611c-0.726-0.627-1.689-1.563-2.338-2.438c-0.884-1.193-1.535-2.25-2.041-3.324 l1.232-0.553c0.369-0.166,0.646-0.467,0.786-0.85c0.146-0.396,0.12-0.852-0.067-1.244L5.742,8.617 c-0.269-0.557-0.83-0.914-1.431-0.914c-0.217,0-0.427,0.045-0.622,0.135L2.73,8.398z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-0.2866" x2="10.2134" y1="8.4424" y2="26.7754">
+<stop offset="0" style="stop-color:#ECEFED"/>
+<stop offset="0.5212" style="stop-color:#ADB2B1"/>
+<stop offset="1" style="stop-color:#888E8F"/>
</linearGradient>
-<path d="M5.143,16.26c0.67,1.684,1.561,3.094,2.548,4.428,0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045c-0.384,0.076-1.622-0.037-3.097-0.732-1.477-0.695-4.652-3.467-6.575-6.063-1.922-2.594-3.398-5.941-3.622-6.965-0.352-1.611-0.051-3.287,0.148-3.756,0,0,0.213-0.426,0.646-0.951,0.185-0.23,3.186,5.75,3.186,5.75z" fill="url(#SVGID_5_)"/>
-<radialGradient cx="10.89" cy="22.91" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.667">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M5.143,16.264c0.67,1.684,1.561,3.094,2.548,4.428c0.95,1.281,2.554,2.713,3.286,3.242l3.479,5.045 c-0.384,0.076-1.622-0.037-3.097-0.732c-1.477-0.695-4.652-3.467-6.575-6.063c-1.922-2.594-3.398-5.941-3.622-6.965 c-0.352-1.611-0.051-3.287,0.148-3.756c0,0,0.213-0.426,0.646-0.951C2.142,10.285,5.143,16.264,5.143,16.264z" fill="url(#SVGID_5_)"/>
+<radialGradient cx="10.8911" cy="22.9111" gradientUnits="userSpaceOnUse" id="SVGID_6_" r="8.6673">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M17.59,26.26l-3.165-2.527-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006-0.565,2.01,0.43,4.135,2.343,4.865,0.253,0.094,0.509,0.162,0.765,0.201,0.16,0.004,0.291,0,0.375-0.016,0,0,0.987-0.168,1.959-0.824,0.324-0.217,0.353-0.223,0.614-0.463,0.001-0.002,0-0.004,0.002-0.006,0.515-0.471,0.689-0.664,0.689-0.664,0.18-0.21,0.12-0.55-0.13-0.75z" fill="url(#SVGID_6_)"/>
-<path d="M11.48,23.32l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27,3.165,2.527c0.25,0.195,0.307,0.537,0.129,0.76,0,0-0.176,0.193-0.693,0.668l-5.56-4.37z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<radialGradient cx="-162.4" cy="-37.6" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.617">
-<stop offset="0" stop-color="#D3D7D5"/>
-<stop offset="0.0424" stop-color="#D3D7D5"/>
-<stop offset="0.4" stop-color="#BDC0BF"/>
-<stop offset="0.7333" stop-color="#82898B"/>
-<stop offset="1" stop-color="#ACB2B1"/>
+<path d="M17.592,26.262l-3.165-2.527l-1.612-1.27c-0.241-0.146-0.541-0.119-0.703,0.084l-0.635,0.775v0.002 l-0.5,0.607c0-0.002-0.002-0.006-0.003-0.006c-0.565,2.01,0.43,4.135,2.343,4.865c0.253,0.094,0.509,0.162,0.765,0.201 c0.16,0.004,0.291,0,0.375-0.016c0,0,0.987-0.168,1.959-0.824c0.324-0.217,0.353-0.223,0.614-0.463c0.001-0.002,0-0.004,0.002-0.006 c0.515-0.471,0.689-0.664,0.689-0.664C17.898,26.799,17.842,26.457,17.592,26.262z" fill="url(#SVGID_6_)"/>
+<path d="M11.477,23.324l0.635-0.775c0.162-0.203,0.462-0.23,0.703-0.084l1.612,1.27l3.165,2.527 c0.25,0.195,0.307,0.537,0.129,0.76c0,0-0.176,0.193-0.693,0.668L11.477,23.324z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<radialGradient cx="-162.3672" cy="-37.5952" gradientTransform="matrix(0.9891 0.1471 -0.1471 0.9891 159.0668 70.322)" gradientUnits="userSpaceOnUse" id="SVGID_7_" r="8.6173">
+<stop offset="0" style="stop-color:#D3D7D5"/>
+<stop offset="0.0424" style="stop-color:#D3D7D5"/>
+<stop offset="0.4" style="stop-color:#BDC0BF"/>
+<stop offset="0.7333" style="stop-color:#82898B"/>
+<stop offset="1" style="stop-color:#ACB2B1"/>
</radialGradient>
-<path d="M7.502,14.56l-2.66-5.506c-0.141-0.292-0.471-0.429-0.738-0.306,0,0-0.232,0.105-0.813,0.479,0,0.002-0.001,0-0.002,0.002-0.316,0.203-0.342,0.294-0.655,0.572-0.434,0.389-0.758,0.793-0.978,1.105-0.721,2.08,0.275,4.35,2.266,5.109,0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57,0.853-0.381c0.268-0.12,0.366-0.46,0.225-0.75z" fill="url(#SVGID_7_)"/>
-<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48,0.268-0.123,0.598,0.014,0.738,0.303l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381-3.132-6.461z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M7.502,14.557l-2.66-5.506C4.701,8.762,4.371,8.625,4.104,8.748c0,0-0.232,0.105-0.813,0.479 c0,0.002-0.001,0-0.002,0.002C2.973,9.432,2.947,9.523,2.634,9.801c-0.434,0.389-0.758,0.793-0.978,1.105 c-0.721,2.08,0.275,4.35,2.266,5.109c0.406,0.154,0.822,0.23,1.236,0.242l1.266-0.57l0.853-0.381 C7.545,15.186,7.643,14.85,7.502,14.557z" fill="url(#SVGID_7_)"/>
+<path d="M3.29,9.229c0.581-0.375,0.813-0.48,0.813-0.48c0.268-0.123,0.598,0.014,0.738,0.303 l2.66,5.506c0.141,0.293,0.043,0.629-0.226,0.75l-0.853,0.381L3.29,9.229z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+</g>
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8,8,3.589,8,8-3.59,8-8,8z" fill-opacity="0.6" stroke-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -549.9609 -796.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="572" x2="572" y1="811" y2="825">
-<stop offset="0" stop-color="#A2A6A5"/>
-<stop offset="1" stop-color="#262628"/>
+<g>
+<path d="M22,30c-4.411,0-8-3.589-8-8s3.589-8,8-8s8,3.589,8,8S26.411,30,22,30L22,30z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -549.9609 -796.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="571.9609" x2="571.9609" y1="811.0391" y2="825.0391">
+<stop offset="0" style="stop-color:#A2A6A5"/>
+<stop offset="1" style="stop-color:#262628"/>
</linearGradient>
<circle cx="22" cy="22" fill="url(#SVGID_1__)" r="7"/>
-<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5,0.01-0.17,0.02-0.33,0.02-0.5,0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5,0.26-3.63,3.28-6.5,6.98-6.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<polygon fill="#FFFFFF" points="24,19,24,20,26,20,26,21,24,21,24,22,26,22,26,23,24,23,24,26,27,26,27,19"/>
-<path d="M17,19v7h2v-2h2v2h2v-9l-6,2zm2,4h-1v-1h1v1zm0-2h-1v-1h1v1zm3,2h-1v-1h1v1zm0-2h-1v-1h1v1z" fill="#FFFFFF"/>
+<path d="M22,16c3.697,0,6.717,2.869,6.975,6.5 C28.986,22.334,29,22.169,29,22c0-3.865-3.134-7-7-7s-7,3.135-7,7c0,0.169,0.014,0.334,0.025,0.5C15.283,18.869,18.303,16,22,16z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<polygon fill="#FFFFFF" points="24,19 24,20 26,20 26,21 24,21 24,22 26,22 26,23 24,23 24,26 27,26 27,19 "/>
+<path d="M17,19v7h2v-2h2v2h2v-9L17,19z M19,23h-1v-1h1V23z M19,21h-1v-1h1V21z M22,23h-1v-1h1V23z M22,21h-1v-1h1 V21z" fill="#FFFFFF"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="17" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="6" x="21" y="26"/>
<rect fill-opacity="0.2" height="1" stroke-opacity="0.2" width="2" x="19" y="24"/>
-</svg>
\ No newline at end of file
+</g>
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_vpn.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_vpn.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,35 +1,38 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.72,0-14-6.28-14-14s6.28-14,14-14,14,6.28,14,14-6.28,14-14,14z" fill-opacity="0.6"/>
-<radialGradient cx="-453.9" cy="-299.3" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.91">
-<stop offset="0" stop-color="#B4DFC6"/>
-<stop offset="0.5" stop-color="#72B9C3"/>
-<stop offset="1" stop-color="#546F9F"/>
+<path d="M15,29C7.28,29,1,22.72,1,15S7.28,1,15,1s14,6.28,14,14S22.72,29,15,29L15,29z" fill-opacity="0.6"/>
+<radialGradient cx="-453.8818" cy="-299.3193" gradientTransform="matrix(0.3502 0 0 0.3502 173.9495 115.3211)" gradientUnits="userSpaceOnUse" id="SVGID_1_" r="48.9059">
+<stop offset="0" style="stop-color:#B4DFC6"/>
+<stop offset="0.5" style="stop-color:#72B9C3"/>
+<stop offset="1" style="stop-color:#546F9F"/>
</radialGradient>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M27.54,14.29c-0.288-5.078-3.577-9.45-8.38-11.14l-0.585,0.096-3.397-0.65-4.235,2.525-0.159,1.064h-2.458l0.971,1.651-2.631,2.143-0.613,2.649,2.173,3.851,2.218-0.453,0.81,0.696,0.633,0.063,0.418,1.634-0.552,1.432,2.01,5.15h2.053l2.035-1.644v-0.671l0.537-0.833,0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566-0.019,0.134,0.289,2.755,1.192,2.55,0.686-0.155,3.135-4.705,3.182-5.138,0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15-1.462,1.466c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551,0.808-2.604,1.231-1.002-0.27-0.491,0.929-0.894-0.519-0.946,0.395,0.048,2.313,5.178,0.49-0.4c-0.015-0.254-0.042-0.503-0.071-0.753l0.61-0.76zm-12.38-5.826l-0.193-0.516h1.161l0.565,1.271h-0.841v-0.755h-0.704zm3.83,2.556l0.927,1.353,0.063,0.162-0.95-0.574-0.23-0.81,0.19-0.13zm1.39,2.37l0.28,0.28-0.362,0.081-0.082-0.1,0.16-0.26zm-7.25-9.104l0.59,0.913-0.67,0.205-0.262-0.149,0.34-0.969z" fill-opacity="0.3" stroke-opacity="0.3"/>
-<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="15" x2="15" y1="2.062" y2="28.13">
-<stop offset="0" stop-color="#6DACBC"/>
-<stop offset="0.497" stop-color="#5778A3"/>
-<stop offset="1" stop-color="#D3E0D8"/>
+<path d="M27.536,14.288c-0.288-5.078-3.577-9.45-8.38-11.141l-0.585,0.096l-3.397-0.65l-4.235,2.525l-0.159,1.064 H8.322l0.971,1.651L6.662,9.979l-0.613,2.649l2.173,3.851l2.218-0.453l0.81,0.696l0.633,0.063l0.418,1.634l-0.552,1.432L13.763,25 h2.053l2.035-1.644v-0.671l0.537-0.833l0.444-0.227c-0.113,0.172-0.29,0.566-0.29,0.566c-0.019,0.134,0.289,2.755,1.192,2.55 c0.686-0.155,3.135-4.705,3.182-5.138c0.093-0.855-0.373-1.209-0.659-1.343l-0.318-0.15l-1.462,1.466 c-0.157,0.012-0.298,0.038-0.426,0.076v-1.217l1.588-1.551l0.808-2.604l1.231-1.002l-0.27-0.491l0.929-0.894l-0.519-0.946 l0.395,0.048l2.313,5.178L27,15.796c-0.015-0.254-0.042-0.503-0.071-0.753L27.536,14.288z M15.156,8.464l-0.193-0.516h1.161 l0.565,1.271h-0.841V8.464H15.156z M18.987,11.024l0.927,1.353l0.063,0.162l-0.95-0.574L18.8,11.146L18.987,11.024z M20.381,13.388 l0.28,0.28l-0.362,0.081l-0.082-0.1L20.381,13.388z M13.127,4.286l0.59,0.913l-0.67,0.205l-0.262-0.149L13.127,4.286z" fill-opacity="0.3" stroke-opacity="0.3"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="14.9995" x2="14.9995" y1="2.0625" y2="28.1316">
+<stop offset="0" style="stop-color:#6DACBC"/>
+<stop offset="0.497" style="stop-color:#5778A3"/>
+<stop offset="1" style="stop-color:#D3E0D8"/>
</linearGradient>
-<path d="M15,2c-7.179,0-13,5.821-13,13,0,7.182,5.821,13,13,13,7.182,0,13-5.818,13-13,0-7.179-5.82-13-13-13zm0,25c-6.617,0-12-5.38-12-12s5.383-12,12-12,12,5.383,12,12-5.38,12-12,12z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
-<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.42">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M15,2C7.821,2,2,7.821,2,15c0,7.182,5.821,13,13,13c7.182,0,13-5.818,13-13 C28,7.821,22.182,2,15,2z M15,27C8.383,27,3,21.617,3,15S8.383,3,15,3s12,5.383,12,12S21.617,27,15,27z" fill="url(#SVGID_2_)" fill-opacity="0.3" stroke-opacity="0.3"/>
+<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_3_" r="15.4173">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M22.04,18.71l-1.353,1.355-0.856,0.324c-0.018,0.14-0.063,0.744-0.201,1.056-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.206,0.734,1.001c0.91-0.19,3.67-3.88,2.28-4.54z" fill="url(#SVGID_3_)"/>
-<radialGradient cx="15.75" cy="5.5" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.83">
-<stop offset="0" stop-color="#96BE67"/>
-<stop offset="0.3152" stop-color="#96BE67"/>
-<stop offset="0.7273" stop-color="#468D53"/>
-<stop offset="1" stop-color="#387463"/>
+<path d="M22.044,18.714l-1.353,1.355c0,0-0.818,0-0.856,0.324c-0.018,0.14-0.063,0.744-0.201,1.056 c-0.272,0.188-0.597,0.813-0.597,0.813s-0.169,1.206,0.734,1.001C20.669,23.06,23.434,19.367,22.044,18.714z" fill="url(#SVGID_3_)"/>
+<radialGradient cx="15.75" cy="5.5005" gradientUnits="userSpaceOnUse" id="SVGID_4_" r="17.8335">
+<stop offset="0" style="stop-color:#96BE67"/>
+<stop offset="0.3152" style="stop-color:#96BE67"/>
+<stop offset="0.7273" style="stop-color:#468D53"/>
+<stop offset="1" style="stop-color:#387463"/>
</radialGradient>
-<path d="M18.99,3.619c-0.222,0.084-0.374,0.142-0.374,0.142l-3.344-0.64-1.64,1.026,0.863,1.335-1.509,0.464-0.813-0.464,0.286-0.811-1.06,0.734-0.2,1.278h-2.014l0.745,1.267-2.831,2.31-0.533,2.304,1.051,2.035,0.631,0.4,2.218-0.453,0.81,0.696,0.736,0.072,0.801,3.134-0.533,1.386,1.178,2.604,0.332,1.081h2.053l1.16-0.628,0.875-1.016v-1.229l1.663-0.849v-1.821l0.658-1.251,1.467-1.32,0.351-1.53-1.919,0.428-0.505-0.615,0.359-0.574-1.363-0.824-0.581-2.089,1.007-0.656,0.927,1.353,0.32,0.89,0.696,0.696,0.813,0.425,0.903-0.146,1.003-0.965-0.706-1.288-0.889,0.232-0.804-0.957,0.764-0.533,2.397,0.29v0.853l2.086,4.298,0.474-0.379c-0.27-4.951-3.55-9.111-8.04-10.69zm-1.09,5.81l-1.095,0.29h-1.458v-0.755h-1.394l-1.103,0.291-1.68-0.465-0.465-0.87,2.321-0.522h2.322l-0.34-0.929h1.161l0.646,1.451,1.095,0.384v1.125zm2.5-1.915l-1.974-0.349v-0.696l0.987-0.232,0.29-0.348,0.696,0.58v1.045z" fill="url(#SVGID_4_)"/>
+<path d="M18.99,3.619c-0.222,0.084-0.374,0.142-0.374,0.142l-3.344-0.64l-1.64,1.026l0.863,1.335 l-1.509,0.464l-0.813-0.464l0.286-0.811l-1.06,0.734L11.21,6.683H9.196L9.941,7.95L7.11,10.259l-0.533,2.304l1.051,2.035L8.259,15 l2.218-0.453l0.81,0.696l0.736,0.072l0.801,3.134l-0.533,1.386l1.178,2.604l0.332,1.081h2.053l1.16-0.628l0.875-1.016v-1.229 l1.663-0.849v-1.821l0.658-1.251l1.467-1.32l0.351-1.53l-1.919,0.428l-0.505-0.615l0.359-0.574l-1.363-0.824l-0.581-2.089 l1.007-0.656l0.927,1.353L20.3,11.79l0.696,0.696l0.813,0.425l0.903-0.146l1.003-0.965l-0.706-1.288l-0.889,0.232l-0.804-0.957 l0.764-0.533l2.397,0.29v0.853l2.086,4.298l0.474-0.379C26.756,9.359,23.48,5.199,18.99,3.619z M17.901,9.429l-1.095,0.29h-1.458 V8.964h-1.394l-1.103,0.291L11.17,8.79l-0.465-0.87l2.321-0.522h2.322L15,6.469h1.161l0.646,1.451l1.095,0.384V9.429z M20.397,7.514 l-1.974-0.349V6.469l0.987-0.232l0.29-0.348l0.696,0.58V7.514z" fill="url(#SVGID_4_)"/>
+</g>
+<g>
<rect fill="none" height="15" width="15" x="15" y="15"/>
<path d="M23.82,23.82v-3.53c0-0.729-0.594-1.323-1.324-1.323-0.729,0-1.323,0.594-1.323,1.323v3.53h-2.647v-3.53c0-2.189,1.781-3.971,3.971-3.971s3.971,1.781,3.971,3.971v3.53h-2.646z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-68.48" x2="-68.48" y1="99.54" y2="93.17">
@@ -48,4 +51,5 @@
<rect fill-opacity="0.5" height="0.882" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="26.03"/>
<rect fill-opacity="0.5" height="0.883" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="24.26"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wcdma.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wcdma.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,41 +1,19 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-116.7" x2="-116.7" y1="227.6" y2="208.7">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M10.38,15.58c1.194-0.924,1.878-2.208,1.878-3.724,0-1.288-0.502-2.469-1.41-3.33-0.991-0.944-2.429-1.44-4.139-1.44-2.08,0-3.882,0.765-4.794,1.42l-0.56,0.396,1.243,3.334,0.951-0.673c0.585-0.418,1.659-0.907,2.734-0.907,0.894,0,1.962,0.271,1.962,1.558,0,1.525-1.983,1.859-2.743,1.859h-2.121v3.436h2.121c0.545,0,3.286,0.115,3.307,2.371,0.009,0.276-0.041,0.968-0.57,1.511-0.481,0.48-1.23,0.732-2.213,0.732-1.335,0-2.606-0.551-3.141-0.875l-0.936-0.563-1.201,3.35,0.587,0.386c0.873,0.576,2.638,1.247,4.719,1.247,4.683,0,6.817-2.991,6.817-5.771,0.01-1.86-0.95-3.44-2.49-4.34z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-116.6" x2="-116.6" y1="226.8" y2="209">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
-</linearGradient>
-<path d="M6.055,25.3c-2.003,0-3.678-0.639-4.504-1.185l-0.335-0.22,0.94-2.636,0.531,0.319c0.572,0.345,1.919,0.93,3.34,0.93,1.087,0,1.924-0.284,2.485-0.844,0.665-0.681,0.692-1.547,0.685-1.797-0.019-2.025-2.001-2.745-3.694-2.745h-1.733v-2.663h1.734c1.259,0,3.13-0.597,3.13-2.247,0-1.235-0.855-1.944-2.349-1.944-1.172,0-2.326,0.526-2.96,0.978l-0.54,0.383-0.968-2.581,0.317-0.224c0.867-0.623,2.583-1.348,4.57-1.348,1.618,0,2.957,0.461,3.872,1.333,0.832,0.789,1.29,1.872,1.29,3.051,0,1.361-0.598,2.543-1.728,3.418l-0.453,0.35,0.495,0.289c1.473,0.861,2.313,2.316,2.306,3.996,0,2.59-2.02,5.38-6.435,5.38z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-116.6" x2="-116.6" y1="226.8" y2="209.5">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<g>
+<path d="M10.375,15.584c1.193-0.924,1.878-2.209,1.878-3.725c0-1.287-0.502-2.469-1.41-3.33 C9.852,7.586,8.414,7.09,6.704,7.09c-2.079,0-3.882,0.764-4.794,1.42L1.352,8.904L2.6,12.236l0.951-0.674 c0.585-0.418,1.659-0.906,2.734-0.906c0.894,0,1.962,0.271,1.962,1.559c0,1.525-1.983,1.859-2.743,1.859H3.383v3.436h2.121 c0.545,0,3.286,0.115,3.307,2.371c0.009,0.275-0.041,0.967-0.57,1.51c-0.481,0.48-1.23,0.732-2.213,0.732 c-1.334,0-2.605-0.551-3.141-0.875l-0.936-0.563L0.75,24.053l0.587,0.387c0.873,0.576,2.638,1.248,4.718,1.248 c4.684,0,6.818-2.992,6.818-5.771C12.882,18.061,11.919,16.484,10.375,15.584z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9146" x2="6.9145" y1="7.7212" y2="24.559">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M6.055,24.91c-1.917,0-3.511-0.603-4.292-1.119l-0.081-0.054,0.68-1.905,0.125,0.076c0.606,0.365,2.034,0.985,3.54,0.985,1.193,0,2.121-0.322,2.759-0.958,0.774-0.795,0.807-1.794,0.798-2.081-0.021-2.302-2.211-3.121-4.08-3.121h-1.347v-1.89h1.347c1.414,0,3.517-0.7,3.517-2.633,0-1.46-1.022-2.331-2.735-2.331-1.263,0-2.505,0.565-3.185,1.05l-0.129,0.091-0.688-1.838,0.073-0.052c0.823-0.59,2.452-1.278,4.347-1.278,1.517,0,2.763,0.425,3.605,1.227,0.755,0.715,1.17,1.699,1.17,2.771,0,1.237-0.546,2.313-1.578,3.112l-0.907,0.702,0.99,0.577c1.35,0.788,2.121,2.122,2.114,3.661,0,2.41-1.89,5-6.045,5z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-102" x2="-102" y1="230.3" y2="210.2">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M6.055,24.688c-1.924,0-3.446-0.633-4.099-1.039l0.527-1.478c0.794,0.452,2.153,0.952,3.544,0.952 c1.256,0,2.238-0.345,2.919-1.024c0.818-0.84,0.876-1.853,0.863-2.25c-0.021-2.458-2.333-3.339-4.306-3.339H4.383v-1.436h1.121 c1.505,0,3.743-0.762,3.743-2.859c0-1.237-0.778-2.559-2.962-2.559c-1.253,0-2.453,0.511-3.204,1.015L2.559,9.276 C3.435,8.676,5.025,8.09,6.704,8.09c1.456,0,2.649,0.402,3.449,1.164c0.71,0.673,1.1,1.598,1.1,2.605c0,1.165-0.516,2.18-1.49,2.934 l-1.172,0.908l1.28,0.747c1.279,0.745,2.009,2.008,2.002,3.463C11.873,22.291,10.074,24.688,6.055,24.688L6.055,24.688z" fill="url(#SVGID_1_)"/>
+<path d="M21.913,12.494v3.537h3.4V19.5c-0.446,0.119-1.063,0.225-2.012,0.225c-3.517,0-5.61-2.211-5.61-5.912 c0-1.816,0.543-3.316,1.584-4.338c1.024-1.018,2.512-1.549,4.299-1.549c1.361,0,2.422,0.205,3.352,0.641l0.928,0.439l1.08-3.492 l-0.689-0.336c-0.824-0.398-2.526-0.865-4.62-0.865c-5.997,0-10.024,3.859-10.024,9.598c0,2.791,0.959,5.316,2.624,6.924 c1.746,1.666,4.007,2.477,6.926,2.477c2.749,0,4.919-0.754,5.525-0.984l0.575-0.221v-9.611H21.913z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.4248" x2="21.4248" y1="4.9771" y2="22.9882">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M21.91,12.49v3.539h3.4v3.47c-0.446,0.12-1.063,0.225-2.011,0.225-3.517,0-5.611-2.21-5.611-5.912,0-1.815,0.543-3.315,1.584-4.338,1.025-1.017,2.512-1.548,4.299-1.548,1.361,0,2.422,0.204,3.352,0.64l0.927,0.438,1.08-3.491-0.689-0.336c-0.824-0.399-2.526-0.865-4.62-0.865-5.997,0-10.02,3.859-10.02,9.598,0,2.791,0.959,5.315,2.624,6.924,1.746,1.666,4.007,2.477,6.926,2.477,2.749,0,4.92-0.755,5.526-0.985l0.575-0.22v-9.614h-7.347z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-102" x2="-102" y1="229.6" y2="211.3">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
-</linearGradient>
-<path d="M23.15,22.92c-2.809,0-4.987-0.776-6.659-2.37-1.59-1.536-2.504-3.959-2.504-6.644,0-5.51,3.874-9.211,9.637-9.211,2.03,0,3.666,0.445,4.451,0.827l0.391,0.189-0.85,2.75-0.53-0.247c-0.986-0.462-2.103-0.678-3.517-0.678-1.896,0-3.477,0.574-4.572,1.66-1.11,1.091-1.698,2.686-1.698,4.612,0,3.943,2.242,6.298,5.997,6.298,0.826,0,1.518-0.076,2.111-0.236l0.286-0.077v-4.151h-3.399v-2.76h6.563v8.96l-0.326,0.125c-0.75,0.29-2.81,0.96-5.38,0.96z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-102" x2="-102" y1="229.5" y2="211">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M23.15,22.54c-2.705,0-4.796-0.74-6.391-2.263-1.515-1.463-2.385-3.783-2.385-6.364,0-5.278,3.718-8.825,9.251-8.825,1.963,0,3.533,0.424,4.282,0.788l0.093,0.045-0.62,2.006-0.123-0.058c-1.039-0.488-2.209-0.715-3.682-0.715-2,0-3.675,0.613-4.844,1.772-1.186,1.164-1.813,2.854-1.813,4.887,0,4.187,2.387,6.685,6.384,6.685,0.862,0,1.585-0.082,2.212-0.25l0.573-0.153v-4.835h-3.4v-1.991h5.79v8.308l-0.078,0.029c-0.74,0.27-2.74,0.93-5.25,0.93z" fill="url(#SVGID_6_)"/>
+<path d="M23.149,22.311c-2.645,0-4.684-0.72-6.235-2.2c-1.47-1.418-2.314-3.68-2.314-6.2 c0-5.223,3.542-8.598,9.024-8.598c1.962,0,3.458,0.439,4.101,0.727L27.238,7.61c-1.045-0.468-2.212-0.685-3.664-0.685 c-2.062,0-3.792,0.636-5.004,1.84c-1.228,1.204-1.879,2.951-1.879,5.047c0,4.264,2.533,6.912,6.61,6.912 c0.888,0,1.609-0.082,2.27-0.259l0.742-0.198v-5.236h-3.4v-1.537h5.337v7.924C27.604,21.656,25.61,22.311,23.149,22.311 L23.149,22.311z" fill="url(#SVGID_2_)"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wcdma_off.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wcdma_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,43 +1,22 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="-116.7" x2="-116.7" y1="227.6" y2="208.7">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M10.38,15.58c1.194-0.924,1.878-2.208,1.878-3.724,0-1.288-0.502-2.469-1.41-3.33-0.991-0.944-2.429-1.44-4.139-1.44-2.08,0-3.882,0.765-4.794,1.42l-0.56,0.396,1.243,3.334,0.951-0.673c0.585-0.418,1.659-0.907,2.734-0.907,0.894,0,1.962,0.271,1.962,1.558,0,1.525-1.983,1.859-2.743,1.859h-2.121v3.436h2.121c0.545,0,3.286,0.115,3.307,2.371,0.009,0.276-0.041,0.968-0.57,1.511-0.481,0.48-1.23,0.732-2.213,0.732-1.335,0-2.606-0.551-3.141-0.875l-0.936-0.563-1.201,3.35,0.587,0.386c0.873,0.576,2.638,1.247,4.719,1.247,4.683,0,6.817-2.991,6.817-5.771,0.01-1.86-0.95-3.44-2.49-4.34z" fill="url(#SVGID_1_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="-116.6" x2="-116.6" y1="226.8" y2="209">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
-</linearGradient>
-<path d="M6.055,25.3c-2.003,0-3.678-0.639-4.504-1.185l-0.335-0.22,0.94-2.636,0.531,0.319c0.572,0.345,1.919,0.93,3.34,0.93,1.087,0,1.924-0.284,2.485-0.844,0.665-0.681,0.692-1.547,0.685-1.797-0.019-2.025-2.001-2.745-3.694-2.745h-1.733v-2.663h1.734c1.259,0,3.13-0.597,3.13-2.247,0-1.235-0.855-1.944-2.349-1.944-1.172,0-2.326,0.526-2.96,0.978l-0.54,0.383-0.968-2.581,0.317-0.224c0.867-0.623,2.583-1.348,4.57-1.348,1.618,0,2.957,0.461,3.872,1.333,0.832,0.789,1.29,1.872,1.29,3.051,0,1.361-0.598,2.543-1.728,3.418l-0.453,0.35,0.495,0.289c1.473,0.861,2.313,2.316,2.306,3.996,0,2.59-2.02,5.38-6.435,5.38z" fill="url(#SVGID_2_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_3_" x1="-116.6" x2="-116.6" y1="226.8" y2="209.5">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<g>
+<path d="M10.375,15.584c1.193-0.924,1.878-2.209,1.878-3.725c0-1.287-0.502-2.469-1.41-3.33 C9.852,7.586,8.414,7.09,6.704,7.09c-2.079,0-3.882,0.764-4.794,1.42L1.352,8.904L2.6,12.236l0.951-0.674 c0.585-0.418,1.659-0.906,2.734-0.906c0.894,0,1.962,0.271,1.962,1.559c0,1.525-1.983,1.859-2.743,1.859H3.383v3.436h2.121 c0.545,0,3.286,0.115,3.307,2.371c0.009,0.275-0.041,0.967-0.57,1.51c-0.481,0.48-1.23,0.732-2.213,0.732 c-1.334,0-2.605-0.551-3.141-0.875l-0.936-0.563L0.75,24.053l0.587,0.387c0.873,0.576,2.638,1.248,4.718,1.248 c4.684,0,6.818-2.992,6.818-5.771C12.882,18.061,11.919,16.484,10.375,15.584z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="6.9146" x2="6.9145" y1="7.7212" y2="24.559">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M6.055,24.91c-1.917,0-3.511-0.603-4.292-1.119l-0.081-0.054,0.68-1.905,0.125,0.076c0.606,0.365,2.034,0.985,3.54,0.985,1.193,0,2.121-0.322,2.759-0.958,0.774-0.795,0.807-1.794,0.798-2.081-0.021-2.302-2.211-3.121-4.08-3.121h-1.347v-1.89h1.347c1.414,0,3.517-0.7,3.517-2.633,0-1.46-1.022-2.331-2.735-2.331-1.263,0-2.505,0.565-3.185,1.05l-0.129,0.091-0.688-1.838,0.073-0.052c0.823-0.59,2.452-1.278,4.347-1.278,1.517,0,2.763,0.425,3.605,1.227,0.755,0.715,1.17,1.699,1.17,2.771,0,1.237-0.546,2.313-1.578,3.112l-0.907,0.702,0.99,0.577c1.35,0.788,2.121,2.122,2.114,3.661,0,2.41-1.89,5-6.045,5z" fill="url(#SVGID_3_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_4_" x1="-102" x2="-102" y1="230.3" y2="210.2">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
+<path d="M6.055,24.688c-1.924,0-3.446-0.633-4.099-1.039l0.527-1.478c0.794,0.452,2.153,0.952,3.544,0.952 c1.256,0,2.238-0.345,2.919-1.024c0.818-0.84,0.876-1.853,0.863-2.25c-0.021-2.458-2.333-3.339-4.306-3.339H4.383v-1.436h1.121 c1.505,0,3.743-0.762,3.743-2.859c0-1.237-0.778-2.559-2.962-2.559c-1.253,0-2.453,0.511-3.204,1.015L2.559,9.276 C3.435,8.676,5.025,8.09,6.704,8.09c1.456,0,2.649,0.402,3.449,1.164c0.71,0.673,1.1,1.598,1.1,2.605c0,1.165-0.516,2.18-1.49,2.934 l-1.172,0.908l1.28,0.747c1.279,0.745,2.009,2.008,2.002,3.463C11.873,22.291,10.074,24.688,6.055,24.688L6.055,24.688z" fill="url(#SVGID_1_)"/>
+<path d="M21.913,12.494v3.537h3.4V19.5c-0.446,0.119-1.063,0.225-2.012,0.225c-3.517,0-5.61-2.211-5.61-5.912 c0-1.816,0.543-3.316,1.584-4.338c1.024-1.018,2.512-1.549,4.299-1.549c1.361,0,2.422,0.205,3.352,0.641l0.928,0.439l1.08-3.492 l-0.689-0.336c-0.824-0.398-2.526-0.865-4.62-0.865c-5.997,0-10.024,3.859-10.024,9.598c0,2.791,0.959,5.316,2.624,6.924 c1.746,1.666,4.007,2.477,6.926,2.477c2.749,0,4.919-0.754,5.525-0.984l0.575-0.221v-9.611H21.913z" fill-opacity="0.6" stroke-opacity="0.6"/>
+<linearGradient gradientUnits="userSpaceOnUse" id="SVGID_2_" x1="21.4248" x2="21.4248" y1="4.9771" y2="22.9882">
+<stop offset="0" style="stop-color:#85AE4A"/>
+<stop offset="1" style="stop-color:#2F6F44"/>
</linearGradient>
-<path d="M21.91,12.49v3.539h3.4v3.47c-0.446,0.12-1.063,0.225-2.011,0.225-3.517,0-5.611-2.21-5.611-5.912,0-1.815,0.543-3.315,1.584-4.338,1.025-1.017,2.512-1.548,4.299-1.548,1.361,0,2.422,0.204,3.352,0.64l0.927,0.438,1.08-3.491-0.689-0.336c-0.824-0.399-2.526-0.865-4.62-0.865-5.997,0-10.02,3.859-10.02,9.598,0,2.791,0.959,5.315,2.624,6.924,1.746,1.666,4.007,2.477,6.926,2.477,2.749,0,4.92-0.755,5.526-0.985l0.575-0.22v-9.614h-7.347z" fill="url(#SVGID_4_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_5_" x1="-102" x2="-102" y1="229.6" y2="211.3">
-<stop offset="0" stop-color="#E2E5C2"/>
-<stop offset="0.7455" stop-color="#49794A"/>
-<stop offset="1" stop-color="#ACB991"/>
-</linearGradient>
-<path d="M23.15,22.92c-2.809,0-4.987-0.776-6.659-2.37-1.59-1.536-2.504-3.959-2.504-6.644,0-5.51,3.874-9.211,9.637-9.211,2.03,0,3.666,0.445,4.451,0.827l0.391,0.189-0.85,2.75-0.53-0.247c-0.986-0.462-2.103-0.678-3.517-0.678-1.896,0-3.477,0.574-4.572,1.66-1.11,1.091-1.698,2.686-1.698,4.612,0,3.943,2.242,6.298,5.997,6.298,0.826,0,1.518-0.076,2.111-0.236l0.286-0.077v-4.151h-3.399v-2.76h6.563v8.96l-0.326,0.125c-0.75,0.29-2.81,0.96-5.38,0.96z" fill="url(#SVGID_5_)"/>
-<linearGradient gradientTransform="matrix(1 0 0 -1 123.4648 234.2559)" gradientUnits="userSpaceOnUse" id="SVGID_6_" x1="-102" x2="-102" y1="229.5" y2="211">
-<stop offset="0" stop-color="#98B060"/>
-<stop offset="0.8121" stop-color="#326644"/>
-<stop offset="1" stop-color="#4E8146"/>
-</linearGradient>
-<path d="M23.15,22.54c-2.705,0-4.796-0.74-6.391-2.263-1.515-1.463-2.385-3.783-2.385-6.364,0-5.278,3.718-8.825,9.251-8.825,1.963,0,3.533,0.424,4.282,0.788l0.093,0.045-0.62,2.006-0.123-0.058c-1.039-0.488-2.209-0.715-3.682-0.715-2,0-3.675,0.613-4.844,1.772-1.186,1.164-1.813,2.854-1.813,4.887,0,4.187,2.387,6.685,6.384,6.685,0.862,0,1.585-0.082,2.212-0.25l0.573-0.153v-4.835h-3.4v-1.991h5.79v8.308l-0.078,0.029c-0.74,0.27-2.74,0.93-5.25,0.93z" fill="url(#SVGID_6_)"/>
+<path d="M23.149,22.311c-2.645,0-4.684-0.72-6.235-2.2c-1.47-1.418-2.314-3.68-2.314-6.2 c0-5.223,3.542-8.598,9.024-8.598c1.962,0,3.458,0.439,4.101,0.727L27.238,7.61c-1.045-0.468-2.212-0.685-3.664-0.685 c-2.062,0-3.792,0.636-5.004,1.84c-1.228,1.204-1.879,2.951-1.879,5.047c0,4.264,2.533,6.912,6.61,6.912 c0.888,0,1.609-0.082,2.27-0.259l0.742-0.198v-5.236h-3.4v-1.537h5.337v7.924C27.604,21.656,25.61,22.311,23.149,22.311 L23.149,22.311z" fill="url(#SVGID_2_)"/>
<rect fill="none" height="30" width="30"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -48,4 +27,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wifi.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wifi.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,19 +1,25 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15,29c-7.721,0-14-6.28-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
+<path d="M15,29C7.279,29,1,22.719,1,15C1,7.279,7.279,1,15,1c7.719,0,14,6.279,14,14C29,22.719,22.719,29,15,29 L15,29z" fill-opacity="0.6"/>
<circle cx="15" cy="15" fill="url(#SVGID_1_)" r="13"/>
<g fill-opacity="0.2" stroke-opacity="0.2">
-<path d="M24.99,12.63c-0.283-0.748-1.309-2.688-2.809-4.158,0.483-2.043-0.764-2.379-1.248-2.457-0.865-0.055-2.594-0.715-4.186-0.203-2.305,0.74-4.67,3.051-6.592,5.797-1.957,2.79-2.736,7.48-3.15,7.62,0.57,1.799,2.896,4.215,2.896,4.215s-0.687,2.191,1.361,2.535c1.986,0.205,3.936-1.619,3.936-1.619s9.661-1.873,7.774-11.1c0.04,0.02,1.71-0.53,2.02-0.63zm-10.21,7.62c-0.049,0.412-2.373,3.385-3.342,2.664-0.914-0.68-1.818-1.74-2.335-3.156,0.023-0.025,1.533-0.443,1.566-0.422-1.491-6.658,4.111-7.711,4.111-7.711,0.015,0.002-2.349,2.613-1.457,6.775-0.005-0.049,1.341-0.365,1.989-0.572,0.22,0.57-0.42,1.49-0.53,2.42zm1.8,0.59c-0.015-0.004,3.059-3.283,2.171-7.441,0.003,0.045-1.344,0.363-1.99,0.57-0.559-1.488,0.066-5.105,1.385-5.938,0.785-0.236,2.498,0.49,3.758,2.094,0.424,0.539-0.709,1.391-0.74,1.373,1.49,6.65-4.58,9.34-4.58,9.34z"/>
+<g>
+<path d="M24.99,12.631c-0.283-0.748-1.309-2.688-2.809-4.158c0.483-2.043-0.764-2.379-1.248-2.457 c-0.865-0.055-2.594-0.715-4.186-0.203c-2.305,0.74-4.67,3.051-6.592,5.797C8.193,14.395,7.414,19.094,7,19.234 c0.57,1.799,2.896,4.215,2.896,4.215s-0.687,2.191,1.361,2.535c1.986,0.205,3.936-1.619,3.936-1.619s9.661-1.873,7.774-11.104 C23.006,13.275,24.684,12.729,24.99,12.631z M14.783,20.25c-0.049,0.412-2.373,3.385-3.342,2.664 c-0.914-0.68-1.818-1.74-2.335-3.156c0.023-0.025,1.533-0.443,1.566-0.422c-1.491-6.658,4.111-7.711,4.111-7.711 c0.015,0.002-2.349,2.613-1.457,6.775c-0.005-0.049,1.341-0.365,1.989-0.572C15.531,18.402,14.892,19.322,14.783,20.25z M16.575,20.842c-0.015-0.004,3.059-3.283,2.171-7.441c0.003,0.045-1.344,0.363-1.99,0.57c-0.559-1.488,0.066-5.105,1.385-5.938 c0.785-0.236,2.498,0.49,3.758,2.094c0.424,0.539-0.709,1.391-0.74,1.373C22.646,18.154,16.575,20.842,16.575,20.842z"/>
+</g>
</g>
-<path d="M15,3c7.012,0,12.71,5.555,12.98,12.5,0-0.17,0.02-0.33,0.02-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.019,0.332,0.025,0.5,0.265-6.945,5.964-12.5,12.98-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M23.78,11.64c-0.282-0.749-1.31-2.688-2.81-4.159,0.485-2.042-0.762-2.379-1.247-2.456-2.119-0.134-2.896,0.569-3.568,1.059-1.259,0.916-4.097,0.759-7.208,4.535-1.964,2.784-1.265,7.073-1.265,7.073s-1.479,0.41-1.893,0.551c0.57,1.8,2.896,4.216,2.896,4.216s-0.687,2.19,1.361,2.534c1.986,0.205,3.936-1.618,3.936-1.618s9.662-1.874,7.774-11.1c0.04,0.02,1.72-0.53,2.03-0.63zm-11.06,11.14c-1.05,0.313-3.757-1.092-4.824-4.008,0.023-0.026,1.533-0.443,1.566-0.424-1.491-6.658,4.822-8.379,4.822-8.379,0.015,0.003-3.06,3.281-2.167,7.443-0.005-0.051,1.341-0.366,1.989-0.573,0.56,1.49-0.06,5.1-1.38,5.94zm2.64-2.93c-0.015-0.004,3.059-3.283,2.17-7.44,0.004,0.046-1.344,0.363-1.99,0.571-0.558-1.489,0.066-5.106,1.385-5.938,1.049-0.315,3.758,1.09,4.822,4.009-0.021,0.024-1.533,0.441-1.564,0.424,1.5,6.66-4.82,8.38-4.82,8.38z" fill="#FFFFFF"/>
+<path d="M15,3c7.012,0,12.71,5.555,12.975,12.5 C27.98,15.332,28,15.168,28,15c0-7.18-5.82-13-13-13C7.82,2,2,7.82,2,15c0,0.168,0.019,0.332,0.025,0.5C2.29,8.555,7.989,3,15,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<g>
+<path d="M23.777,11.643c-0.282-0.749-1.31-2.688-2.81-4.159c0.485-2.042-0.762-2.379-1.247-2.456 c-2.119-0.134-2.896,0.569-3.568,1.059c-1.259,0.916-4.097,0.759-7.208,4.535c-1.964,2.784-1.265,7.073-1.265,7.073 s-1.479,0.41-1.893,0.551c0.57,1.8,2.896,4.216,2.896,4.216s-0.687,2.19,1.361,2.534c1.986,0.205,3.936-1.618,3.936-1.618 s9.662-1.874,7.774-11.104C21.793,12.287,23.471,11.74,23.777,11.643z M12.717,22.777c-1.05,0.313-3.757-1.092-4.824-4.008 c0.023-0.026,1.533-0.443,1.566-0.424c-1.491-6.658,4.822-8.379,4.822-8.379c0.015,0.003-3.06,3.281-2.167,7.443 c-0.005-0.051,1.341-0.366,1.989-0.573C14.662,18.326,14.037,21.945,12.717,22.777z M15.363,19.854 c-0.015-0.004,3.059-3.283,2.17-7.44c0.004,0.046-1.344,0.363-1.99,0.571c-0.558-1.489,0.066-5.106,1.385-5.938 c1.049-0.315,3.758,1.09,4.822,4.009c-0.021,0.024-1.533,0.441-1.564,0.424C21.676,18.131,15.363,19.854,15.363,19.854z" fill="#FFFFFF"/>
+</g>
<rect fill="none" height="30" width="30"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594" x2="594" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="593.9609" x2="593.9609" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,25 +1,27 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.49,29c-7.721,0-14-6.281-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
-<circle cx="15.49" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15.49,3c7.012,0,12.71,5.555,12.98,12.5,0.009-0.168,0.025-0.332,0.025-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5,0.257-6.945,5.956-12.5,12.96-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M22.51,19.51l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559,0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254,0,2.02-0.75,3.85-1.98,5.26z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10.47,19.51c-1.229-1.406-1.979-3.24-1.979-5.256,0-2.014,0.75-3.848,1.979-5.254l-1.516-1.305c-1.529,1.758-2.463,4.047-2.463,6.559,0,2.514,0.934,4.803,2.463,6.559l1.516-1.3z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M19.48,16.89l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641s-0.4,1.94-1.02,2.64z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13.51,16.89c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953l1.52-1.31z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="13.38,25.91,16.51,15.02,19.64,25.91" stroke-opacity="0.2"/>
-<path d="M21.51,18.51l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559,0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254,0,2.02-0.75,3.85-1.98,5.26z" fill="#FFFFFF"/>
-<path d="M9.47,18.51c-1.229-1.406-1.979-3.24-1.979-5.256,0-2.014,0.75-3.848,1.979-5.254l-1.516-1.305c-1.529,1.758-2.463,4.047-2.463,6.559,0,2.514,0.934,4.803,2.463,6.559l1.516-1.3z" fill="#FFFFFF"/>
-<path d="M18.48,15.89l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641s-0.4,1.94-1.02,2.64z" fill="#FFFFFF"/>
-<path d="M12.51,15.89c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953l1.52-1.31z" fill="#FFFFFF"/>
-<polygon fill="#FFFFFF" points="12.38,24.91,15.51,14.02,18.64,24.91"/>
+<path d="M15.491,29c-7.721,0-14-6.281-14-14c0-7.721,6.279-14,14-14c7.719,0,14,6.279,14,14 C29.491,22.719,23.21,29,15.491,29L15.491,29z" fill-opacity="0.6"/>
+<circle cx="15.491" cy="15" fill="url(#SVGID_1_)" r="13"/>
+<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5 c0.009-0.168,0.025-0.332,0.025-0.5c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5 C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.514,19.506l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559 c0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.514,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256 c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.475,16.893l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953 c0-1.515-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641S20.102,16.188,19.475,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641 l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951c0,1.515,0.566,2.896,1.494,3.953L13.509,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="13.38,25.912 16.514,15.025 19.645,25.912 " stroke-opacity="0.2"/>
+<path d="M21.514,18.506l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559c0-2.512-0.935-4.801-2.464-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C23.491,15.266,22.741,17.1,21.514,18.506z" fill="#FFFFFF"/>
+<path d="M9.47,18.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L7.954,6.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L9.47,18.506z" fill="#FFFFFF"/>
+<path d="M18.475,15.893l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311 c0.627,0.705,1.019,1.623,1.019,2.641S19.102,15.188,18.475,15.893z" fill="#FFFFFF"/>
+<path d="M12.509,15.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L12.509,15.893z" fill="#FFFFFF"/>
+<polygon fill="#FFFFFF" points="12.38,24.912 15.514,14.025 18.645,24.912 "/>
<rect fill="none" height="30" width="30" x="0.491"/>
<defs>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594.5" x2="594.5" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594.4521" x2="594.4521" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,25 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.49,29c-7.721,0-14-6.281-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594.5" x2="594.5" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M15.491,29c-7.721,0-14-6.281-14-14c0-7.721,6.279-14,14-14c7.719,0,14,6.279,14,14 C29.491,22.719,23.21,29,15.491,29L15.491,29z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594.4521" x2="594.4521" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<circle cx="15.49" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15.49,3c7.012,0,12.71,5.555,12.98,12.5,0.009-0.168,0.025-0.332,0.025-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5,0.257-6.945,5.956-12.5,12.96-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M22.51,19.51l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559,0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254,0,2.02-0.75,3.85-1.98,5.26z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10.47,19.51c-1.229-1.406-1.979-3.24-1.979-5.256,0-2.014,0.75-3.848,1.979-5.254l-1.516-1.305c-1.529,1.758-2.463,4.047-2.463,6.559,0,2.514,0.934,4.803,2.463,6.559l1.516-1.3z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M19.48,16.89l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641s-0.4,1.94-1.02,2.64z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13.51,16.89c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953l1.52-1.31z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="13.38,25.91,16.51,15.02,19.64,25.91" stroke-opacity="0.2"/>
-<path d="M21.51,18.51l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559,0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254,0,2.02-0.75,3.85-1.98,5.26z" fill="#FFFFFF"/>
-<path d="M9.47,18.51c-1.229-1.406-1.979-3.24-1.979-5.256,0-2.014,0.75-3.848,1.979-5.254l-1.516-1.305c-1.529,1.758-2.463,4.047-2.463,6.559,0,2.514,0.934,4.803,2.463,6.559l1.516-1.3z" fill="#FFFFFF"/>
-<path d="M18.48,15.89l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641s-0.4,1.94-1.02,2.64z" fill="#FFFFFF"/>
-<path d="M12.51,15.89c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953l1.52-1.31z" fill="#FFFFFF"/>
-<polygon fill="#FFFFFF" points="12.38,24.91,15.51,14.02,18.64,24.91"/>
+<circle cx="15.491" cy="15" fill="url(#SVGID_1_)" r="13"/>
+<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5 c0.009-0.168,0.025-0.332,0.025-0.5c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5 C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.514,19.506l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559 c0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.514,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256 c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.475,16.893l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953 c0-1.515-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641S20.102,16.188,19.475,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641 l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951c0,1.515,0.566,2.896,1.494,3.953L13.509,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="13.38,25.912 16.514,15.025 19.645,25.912 " stroke-opacity="0.2"/>
+<path d="M21.514,18.506l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559c0-2.512-0.935-4.801-2.464-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C23.491,15.266,22.741,17.1,21.514,18.506z" fill="#FFFFFF"/>
+<path d="M9.47,18.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L7.954,6.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L9.47,18.506z" fill="#FFFFFF"/>
+<path d="M18.475,15.893l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311 c0.627,0.705,1.019,1.623,1.019,2.641S19.102,15.188,18.475,15.893z" fill="#FFFFFF"/>
+<path d="M12.509,15.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L12.509,15.893z" fill="#FFFFFF"/>
+<polygon fill="#FFFFFF" points="12.38,24.912 15.514,14.025 18.645,24.912 "/>
<rect fill="none" height="30" width="30" x="0.491"/>
+</g>
+<g>
<rect fill-opacity="0.6" height="34.27" stroke-opacity="0.6" style="enable-background:new;" transform="matrix(0.7073 -0.707 0.707 0.7073 -6.2126 14.9968)" width="3.169" x="13.42" y="-2.134"/>
<polygon fill="url(#SVGID_1__)" points="26,26.99,3.015,4.005,4.006,3.014,26.99,26"/>
<rect fill="none" height="30" width="30"/>
@@ -30,4 +33,5 @@
<stop offset="1" stop-color="#9A5047"/>
</linearGradient>
</defs>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_secure.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_small_wlan_secure.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,25 +1,28 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="30" viewBox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g>
<rect fill="none" height="30" width="30"/>
-<path d="M15.49,29c-7.721,0-14-6.281-14-14,0-7.721,6.279-14,14-14,7.719,0,14,6.279,14,14,0,7.72-6.28,14-14,14z" fill-opacity="0.6"/>
-<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594.5" x2="594.5" y1="814.3" y2="844">
-<stop offset="0" stop-color="#6DADC1"/>
-<stop offset="1" stop-color="#3B518A"/>
+<path d="M15.491,29c-7.721,0-14-6.281-14-14c0-7.721,6.279-14,14-14c7.719,0,14,6.279,14,14 C29.491,22.719,23.21,29,15.491,29L15.491,29z" fill-opacity="0.6"/>
+<linearGradient gradientTransform="matrix(1 0 0 1 -578.9609 -812.0391)" gradientUnits="userSpaceOnUse" id="SVGID_1_" x1="594.4521" x2="594.4521" y1="814.3145" y2="844.0474">
+<stop offset="0" style="stop-color:#6DADC1"/>
+<stop offset="1" style="stop-color:#3B518A"/>
</linearGradient>
-<circle cx="15.49" cy="15" fill="url(#SVGID_1_)" r="13"/>
-<path d="M15.49,3c7.012,0,12.71,5.555,12.98,12.5,0.009-0.168,0.025-0.332,0.025-0.5,0-7.18-5.82-13-13-13s-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5,0.257-6.945,5.956-12.5,12.96-12.5z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
-<path d="M22.51,19.51l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559,0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254,0,2.02-0.75,3.85-1.98,5.26z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M10.47,19.51c-1.229-1.406-1.979-3.24-1.979-5.256,0-2.014,0.75-3.848,1.979-5.254l-1.516-1.305c-1.529,1.758-2.463,4.047-2.463,6.559,0,2.514,0.934,4.803,2.463,6.559l1.516-1.3z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M19.48,16.89l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641s-0.4,1.94-1.02,2.64z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<path d="M13.51,16.89c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953l1.52-1.31z" fill-opacity="0.2" stroke-opacity="0.2"/>
-<polygon fill-opacity="0.2" points="13.38,25.91,16.51,15.02,19.64,25.91" stroke-opacity="0.2"/>
-<path d="M21.51,18.51l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559,0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254,0,2.02-0.75,3.85-1.98,5.26z" fill="#FFFFFF"/>
-<path d="M9.47,18.51c-1.229-1.406-1.979-3.24-1.979-5.256,0-2.014,0.75-3.848,1.979-5.254l-1.516-1.305c-1.529,1.758-2.463,4.047-2.463,6.559,0,2.514,0.934,4.803,2.463,6.559l1.516-1.3z" fill="#FFFFFF"/>
-<path d="M18.48,15.89l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641s-0.4,1.94-1.02,2.64z" fill="#FFFFFF"/>
-<path d="M12.51,15.89c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953l1.52-1.31z" fill="#FFFFFF"/>
-<polygon fill="#FFFFFF" points="12.38,24.91,15.51,14.02,18.64,24.91"/>
+<circle cx="15.491" cy="15" fill="url(#SVGID_1_)" r="13"/>
+<path d="M15.491,3c7.012,0,12.711,5.555,12.975,12.5 c0.009-0.168,0.025-0.332,0.025-0.5c0-7.18-5.82-13-13-13c-7.18,0-13,5.82-13,13c0,0.168,0.02,0.332,0.025,0.5 C2.782,8.555,8.481,3,15.491,3z" fill="#FFFFFF" fill-opacity="0.4" stroke-opacity="0.4"/>
+<path d="M22.514,19.506l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559 c0-2.512-0.935-4.801-2.464-6.559l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C24.491,16.266,23.741,18.1,22.514,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M10.47,19.506c-1.229-1.406-1.979-3.24-1.979-5.256 c0-2.014,0.75-3.848,1.979-5.254L8.954,7.691c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L10.47,19.506z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M19.475,16.893l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953 c0-1.515-0.566-2.896-1.492-3.951l-1.524,1.311c0.627,0.705,1.019,1.623,1.019,2.641S20.102,16.188,19.475,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<path d="M13.509,16.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641 l-1.523-1.311c-0.928,1.055-1.494,2.436-1.494,3.951c0,1.515,0.566,2.896,1.494,3.953L13.509,16.893z" fill-opacity="0.2" stroke-opacity="0.2"/>
+<polygon fill-opacity="0.2" points="13.38,25.912 16.514,15.025 19.645,25.912 " stroke-opacity="0.2"/>
+<path d="M21.514,18.506l1.516,1.303c1.529-1.756,2.464-4.045,2.464-6.559c0-2.512-0.935-4.801-2.464-6.559 l-1.516,1.305c1.229,1.406,1.979,3.24,1.979,5.254C23.491,15.266,22.741,17.1,21.514,18.506z" fill="#FFFFFF"/>
+<path d="M9.47,18.506c-1.229-1.406-1.979-3.24-1.979-5.256c0-2.014,0.75-3.848,1.979-5.254L7.954,6.691 c-1.529,1.758-2.463,4.047-2.463,6.559c0,2.514,0.934,4.803,2.463,6.559L9.47,18.506z" fill="#FFFFFF"/>
+<path d="M18.475,15.893l1.524,1.313c0.926-1.059,1.492-2.438,1.492-3.953s-0.566-2.896-1.492-3.951l-1.524,1.311 c0.627,0.705,1.019,1.623,1.019,2.641S19.102,15.188,18.475,15.893z" fill="#FFFFFF"/>
+<path d="M12.509,15.893c-0.625-0.705-1.018-1.625-1.018-2.643s0.393-1.936,1.018-2.641l-1.523-1.311 c-0.928,1.055-1.494,2.436-1.494,3.951s0.566,2.896,1.494,3.953L12.509,15.893z" fill="#FFFFFF"/>
+<polygon fill="#FFFFFF" points="12.38,24.912 15.514,14.025 18.645,24.912 "/>
<rect fill="none" height="30" width="30" x="0.491"/>
+</g>
+<g>
<rect fill="none" height="15" width="15" x="15" y="15"/>
<path d="M23.82,23.82v-3.53c0-0.729-0.594-1.323-1.324-1.323-0.729,0-1.323,0.594-1.323,1.323v3.53h-2.647v-3.53c0-2.189,1.781-3.971,3.971-3.971s3.971,1.781,3.971,3.971v3.53h-2.646z" fill-opacity="0.6" stroke-opacity="0.6" style="enable-background:new;"/>
<linearGradient gradientTransform="matrix(1 0 0 -1 90.98 116.5195)" gradientUnits="userSpaceOnUse" id="SVGID_1__" x1="-68.48" x2="-68.48" y1="99.54" y2="93.17">
@@ -38,4 +41,5 @@
<rect fill-opacity="0.5" height="0.882" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="26.03"/>
<rect fill-opacity="0.5" height="0.883" stroke-opacity="0.5" style="enable-background:new;" width="10.59" x="17.21" y="24.26"/>
<rect fill="none" height="30" width="30"/>
-</svg>
\ No newline at end of file
+</g>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_battery.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_battery.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<path d="M10.75,2.758v-1.758h-5.5v1.758h-1.789v12.24h9.078v-12.24h-1.79zm0.29,10.74h-6.079v-9.242h1.789v-1.758h2.5v1.758h1.789v9.242z"/>
-</svg>
\ No newline at end of file
+<path d="M10.75,2.758V1h-5.5v1.758H3.461V15h9.078V2.758H10.75z M11.039,13.5H4.961V4.258H6.75V2.5h2.5v1.758h1.789V13.5z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_bluetooth.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_bluetooth.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M11.88,5.274l-4.774-4.774v5.454l-2.047-2.046-0.936,0.939s2.117,2.118,2.984,2.982v0.342c-0.867,0.862-2.984,2.982-2.984,2.982l0.937,0.936,2.047-2.042v5.45l4.771-4.773s-2.075-2.076-2.727-2.726c0.649-0.66,2.727-2.73,2.727-2.73zm-1.88,5.456c-0.339,0.338-0.955,0.956-1.538,1.538v-3.078c0.587,0.583,1.226,1.218,1.538,1.538zm-1.53-3.923v-3.069c0.579,0.583,1.195,1.199,1.534,1.538-0.312,0.309-0.951,0.951-1.53,1.531z"/>
-</svg>
\ No newline at end of file
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_bluetooth_hide.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<rect fill="none" height="16" width="16"/>
+<path d="M11.88,5.274L7.106,0.5v5.455L5.059,3.908L4.123,4.847c0,0,2.117,2.117,2.984,2.982v0.342 c-0.867,0.861-2.984,2.98-2.984,2.98l0.937,0.938l2.047-2.043v5.451l4.771-4.773c0,0-2.075-2.076-2.728-2.727 c0.649-0.66,2.728-2.729,2.728-2.729L11.88,5.274z M10,10.73c-0.339,0.338-0.955,0.955-1.538,1.537V9.189 C9.049,9.773,9.688,10.408,10,10.728V10.73z M8.47,6.807V3.738c0.579,0.583,1.195,1.199,1.534,1.538 c-0.313,0.31-0.951,0.951-1.53,1.531H8.47z" fill-opacity="0.5" stroke-opacity="0.5"/>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_bluetooth_off.svg Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
+<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
+<path d="M8.479,3.791c0.571,0.574,1.18,1.184,1.515,1.518C9.714,5.586,9.171,6.128,8.647,6.652l0.926,0.922 c0.847-0.848,2.268-2.266,2.268-2.266L7.135,0.597v4.544l1.344,1.342V3.791z M8.474,12.207V9.888L6.941,8.359 c-0.939,0.937-2.753,2.753-2.753,2.753l0.923,0.923l2.022-2.017v5.383l3.427-3.432l-0.925-0.923 C9.304,11.379,8.883,11.8,8.474,12.207z M1.87,0.939L1.166,1.644l13.526,13.497l0.703-0.706L1.87,0.939z"/>
+<rect fill="none" height="16" width="16"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_egprs.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_egprs.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M12.5,9.081h-7.925v3.323h10.01v2.6h-13.16v-14h13.16v2.597h-10v2.907h7.922v2.577z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_gps.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_gps.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M8.777,4.889l0.687,0.687-0.472,0.471c-0.625-0.317-1.36-0.316-1.985,0l-1.249-1.249-0.96,0.959,1.249,1.25c-0.315,0.624-0.316,1.359,0,1.983l-0.471,0.474-0.687-0.687-3.889,3.893,2.334,2.33,3.889-3.889-0.687-0.688,0.472-0.471c0.625,0.316,1.36,0.315,1.984-0.001l1.25,1.25,0.96-0.96-1.25-1.25c0.316-0.623,0.317-1.36,0.001-1.983l0.471-0.473,0.688,0.686,3.89-3.887-2.33-2.333-3.893,3.889z"/>
<rect height="0.831" transform="matrix(0.7069 -0.7073 0.7073 0.7069 -1.7029 4.1127)" width="3.299" x="2.461" y="3.696"/>
<rect height="0.831" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 28.7026 11.8883)" width="3.298" x="10.24" y="11.47"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_hsdpa.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_hsdpa.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,9 +1,9 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M1.363,7.515c0.315,0.176,1.042,0.469,1.768,0.469,0.924,0,1.393-0.445,1.393-1.007,0-0.76-0.749-1.1-1.521-1.1h-0.727v-1.276h0.69c0.597,0,1.346-0.234,1.346-0.878,0-0.457-0.363-0.795-1.124-0.795-0.621,0-1.276,0.269-1.58,0.457l-0.362-1.289c0.457-0.292,1.358-0.574,2.353-0.574,1.615,0,2.517,0.854,2.517,1.896,0,0.808-0.456,1.452-1.393,1.768v0.023c0.913,0.164,1.65,0.854,1.65,1.861,0,1.334-1.182,2.318-3.113,2.318-0.983,0-1.815-0.257-2.26-0.527l0.363-1.346z"/>
<path d="M8,9.389c-0.598,0-1.03-0.457-1.03-1.078,0-0.644,0.433-1.088,1.053-1.088,0.61,0,1.031,0.434,1.042,1.088,0,0.621-0.421,1.078-1.052,1.078h-0.013z"/>
<path d="M14.7,3.114h-2.951l-0.164,1.159c0.164-0.012,0.305-0.023,0.492-0.023,0.726,0,1.475,0.164,2.002,0.55,0.57,0.386,0.92,1.018,0.92,1.92,0,1.416-1.218,2.669-3.267,2.669-0.923,0-1.695-0.211-2.118-0.433l0.328-1.334c0.328,0.163,1.019,0.374,1.71,0.374,0.736,0,1.521-0.351,1.521-1.158,0-0.797-0.62-1.276-2.141-1.276-0.423,0-0.715,0.023-1.019,0.07l0.49-3.98h4.192v1.462z"/>
<path d="M9.971,14.26c-0.309,0.092-0.896,0.223-1.48,0.223-0.808,0-1.393-0.184-1.801-0.528-0.401-0.345-0.624-0.86-0.624-1.438,0.006-1.313,1.078-2.062,2.53-2.062,0.571,0,1.012,0.099,1.23,0.188l-0.211,0.72c-0.244-0.1-0.54-0.169-1.026-0.169-0.834,0-1.472,0.421-1.472,1.274,0,0.82,0.578,1.294,1.4,1.294,0.223,0,0.407-0.023,0.487-0.053v-0.831h-0.685v-0.695h1.651v2.076z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_missed_call.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_missed_call.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M12.31,9.615c0,1.484-1.208,2.692-2.692,2.692s-2.695-1.21-2.695-2.695v-2.154h3.77l-4.844-6.461-4.846,6.461h3.231v2.154c0,2.965,2.423,5.385,5.384,5.385,2.965,0,5.385-2.42,5.385-5.385h-2.692z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_email.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_email.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<path d="M15,7.988c0,1.124-0.225,2.095-0.676,2.915-0.547,1.011-1.34,1.52-2.376,1.52-1.005,0-1.731-0.509-2.187-1.52-0.539,0.591-1.244,0.891-2.108,0.891-1.016,0-1.828-0.391-2.442-1.164-0.568-0.72-0.853-1.592-0.853-2.627,0-1.042,0.284-1.912,0.853-2.612,0.606-0.755,1.421-1.13,2.442-1.13,0.76,0,1.358,0.206,1.796,0.62v-0.462h1.476v5.097c0,0.988,0.344,1.482,1.032,1.482,0.562,0,0.994-0.389,1.297-1.162,0.224-0.577,0.335-1.191,0.335-1.85,0-1.522-0.55-2.822-1.645-3.903-1.1-1.085-2.409-1.623-3.939-1.623-1.539,0-2.846,0.536-3.921,1.61-1.071,1.074-1.611,2.377-1.611,3.914,0,1.536,0.539,2.846,1.622,3.925,1.079,1.088,2.385,1.626,3.916,1.626v1.46c-1.93,0-3.58-0.687-4.947-2.058-1.368-1.375-2.053-3.026-2.053-4.954,0-1.918,0.686-3.564,2.058-4.935,1.371-1.365,3.016-2.051,4.941-2.051,1.93,0,3.579,0.682,4.948,2.05,1.36,1.364,2.05,3.01,2.05,4.938zm-5.646-0.056c0-1.49-0.568-2.236-1.708-2.236-0.57,0-1.013,0.254-1.32,0.762-0.269,0.43-0.399,0.941-0.399,1.541,0,1.567,0.572,2.349,1.718,2.349,1.139,0,1.708-0.808,1.708-2.417v-0.001z"/>
-</svg>
\ No newline at end of file
+<path d="M15,7.988c0,1.124-0.225,2.095-0.676,2.915c-0.547,1.011-1.34,1.52-2.376,1.52c-1.005,0-1.731-0.509-2.187-1.52 c-0.539,0.591-1.244,0.891-2.108,0.891c-1.016,0-1.828-0.391-2.442-1.164c-0.568-0.72-0.853-1.592-0.853-2.627 c0-1.042,0.284-1.912,0.853-2.612c0.606-0.755,1.421-1.13,2.442-1.13c0.76,0,1.358,0.206,1.796,0.62V4.419h1.476v5.097 c0,0.988,0.344,1.482,1.032,1.482c0.562,0,0.994-0.389,1.297-1.162c0.224-0.577,0.335-1.191,0.335-1.85 c0-1.522-0.55-2.822-1.645-3.903c-1.1-1.085-2.409-1.623-3.939-1.623c-1.539,0-2.846,0.536-3.921,1.61 C3.009,5.146,2.469,6.449,2.469,7.986c0,1.536,0.539,2.846,1.622,3.925c1.079,1.088,2.385,1.626,3.916,1.626v1.46 c-1.93,0-3.58-0.687-4.947-2.058c-1.368-1.375-2.053-3.026-2.053-4.954c0-1.918,0.686-3.564,2.058-4.935 C4.436,1.686,6.081,1,8.006,1c1.93,0,3.579,0.682,4.948,2.05c1.36,1.364,2.05,3.01,2.05,4.938H15z M9.354,7.932 c0-1.49-0.568-2.236-1.708-2.236c-0.57,0-1.013,0.254-1.32,0.762c-0.269,0.43-0.399,0.941-0.399,1.541 c0,1.567,0.572,2.349,1.718,2.349c1.139,0,1.708-0.808,1.708-2.417V7.932z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_im.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_im.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,8 +1,8 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M8.001,2.001c-3.86,0-7,2.384-7,5.313,0,1.571,0.909,3.051,2.495,4.066l0.157,2.62,2.277-1.632c0.672,0.158,1.362,0.26,2.071,0.26,3.859,0,7-2.384,7-5.314s-3.14-5.315-6.999-5.315zm0,9.429c-0.557,0-1.145-0.074-1.796-0.228l-0.531-0.125-0.953,0.68-0.063-1.061-0.515-0.33c-1.234-0.789-1.941-1.903-1.941-3.055,0-2.229,2.656-4.113,5.799-4.113s5.8,1.884,5.8,4.113c0,2.23-2.66,4.115-5.799,4.115z"/>
<rect height="1.359" width="7.281" x="4.359" y="5.32"/>
<rect height="1.359" width="5" x="4.359" y="7.82"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_message.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_new_message.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M1,3.059v9.883h14v-9.881h-14zm1.235,2.226l2.822,2.47-2.822,2.999v-5.465zm0.118-0.991h11.29l-5.64,4.941-5.647-4.941zm11.41,7.416h-11.52v-0.052l3.286-3.492,2.479,2.162,2.479-2.168,3.286,3.492v0.056zm-2.82-3.955l2.822-2.473v5.472l-2.82-2.995z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_offline.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_offline.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<path d="M1,1v2.545s3.234,3.232,5.084,5.088v6.367h2.549v-6.366c1.857-1.856,5.094-5.088,5.094-5.088v-2.546h-12.73zm1.2,2.048v-0.848h3.908v4.761c-1.311-1.313-3.324-3.329-3.908-3.913zm10.32,0l-3.915,3.913v-4.761h3.916v0.848z"/>
-<polygon points="15,10.05,13.95,9,12,10.95,10.06,9,9,10.05,10.95,12,9,13.95,10.06,15,12,13.05,13.95,15,15,13.95,13.05,12"/>
-</svg>
\ No newline at end of file
+<path d="M1,1v2.545c0,0,3.234,3.232,5.084,5.088V15h2.549V8.634c1.857-1.856,5.094-5.088,5.094-5.088V1H1.006H1z M2.2,3.048V2.2 h3.908v4.761C4.797,5.648,2.784,3.632,2.2,3.048z M12.52,3.048L8.605,6.961V2.2h3.916v0.848H12.52z"/>
+<polygon points="15,10.051 13.949,9 12.003,10.953 10.057,9 9,10.051 10.953,12.002 9,13.949 10.057,15 12.003,13.053 13.949,15 15,13.949 13.053,12.002 "/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_profile_silent.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_profile_silent.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<path d="M7.667,11.47l-0.713-0.236c-0.393-0.131-0.809-0.195-1.238-0.195-1.685,0-3.055,1.02-3.055,2.272s1.371,2.273,3.055,2.273c1.764,0,3.369-1.084,3.369-2.273v-2.396l-1.418-1.409v1.971zm0-10.88v5.248l1.418,1.415v-3.099l3.754,1.219v-3.231l-5.173-1.552z"/>
-<rect height="17.36" transform="matrix(0.7057 -0.7085 0.7085 0.7057 -3.3132 8.0219)" width="1.053" x="7.473" y="-0.679"/>
-</svg>
\ No newline at end of file
+<path d="M7.667,11.472l-0.713-0.236c-0.393-0.131-0.809-0.195-1.238-0.195c-1.685,0-3.055,1.02-3.055,2.272s1.371,2.273,3.055,2.273 c1.764,0,3.369-1.084,3.369-2.273v-2.396L7.667,9.501V11.472z M7.667,0.586v5.248l1.418,1.415V4.15l3.754,1.219V2.138L7.667,0.586z"/>
+<rect height="17.357" transform="matrix(0.7057 -0.7085 0.7085 0.7057 -3.3132 8.0219)" width="1.053" x="7.473" y="-0.679"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_psm.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_psm.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
-<path d="M10.75,2.758v-1.758h-5.5v1.758h-1.789v12.24h9.078v-12.24h-1.79zm-1.086,9.162c-1.645,0.83-3.655,0.172-4.488-1.477-0.835-1.641-0.172-3.648,1.474-4.482,0.837-0.421,1.761-0.455,2.58-0.179-0.162,0.043-0.328,0.1-0.484,0.178-1.181,0.597-1.653,2.04-1.059,3.217,0.6,1.184,2.043,1.654,3.219,1.059,0.16-0.08,0.302-0.178,0.434-0.285-0.26,0.825-0.84,1.555-1.676,1.975z"/>
-</svg>
\ No newline at end of file
+<path d="M10.75,2.758V1h-5.5v1.758H3.461V15h9.078V2.758H10.75z M9.664,11.92c-1.645,0.83-3.655,0.172-4.488-1.477 C4.341,8.799,5.004,6.792,6.65,5.958C7.487,5.537,8.411,5.503,9.23,5.779c-0.162,0.043-0.328,0.1-0.484,0.178 c-1.181,0.597-1.653,2.04-1.059,3.217c0.6,1.184,2.043,1.654,3.219,1.059c0.16-0.08,0.302-0.178,0.434-0.285 C11.08,10.771,10.498,11.499,9.664,11.92z"/>
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_signal.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_signal.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M1.637,1v2.545s3.234,3.232,5.084,5.088v6.367h2.549v-6.366c1.858-1.856,5.093-5.088,5.093-5.088v-2.546h-12.72zm1.2,2.048v-0.848h3.908v4.761c-1.311-1.313-3.324-3.329-3.908-3.913zm10.32,0l-3.915,3.913v-4.761h3.917v0.848z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wcdma.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wcdma.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,7 +1,7 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M1.402,10.28c0.349,0.195,1.153,0.52,1.956,0.52,1.022,0,1.541-0.492,1.541-1.115,0-0.841-0.829-1.217-1.684-1.217h-0.802v-1.412h0.763c0.661,0,1.49-0.26,1.49-0.972,0-0.506-0.401-0.881-1.244-0.881-0.687,0-1.412,0.298-1.748,0.506l-0.401-1.426c0.505-0.323,1.502-0.635,2.603-0.635,1.787,0,2.784,0.945,2.784,2.099,0,0.894-0.505,1.605-1.541,1.955v0.026c1.01,0.182,1.826,0.946,1.826,2.061,0,1.475-1.308,2.563-3.444,2.563-1.088,0-2.008-0.283-2.5-0.582l0.401-1.49z"/>
<path d="M15,11.87c-0.598,0.199-1.736,0.48-2.868,0.48-1.564,0-2.696-0.396-3.487-1.14-0.776-0.745-1.207-1.859-1.207-3.109,0.01-2.836,2.086-4.454,4.898-4.454,1.104,0,1.957,0.214,2.383,0.405l-0.408,1.556c-0.473-0.215-1.047-0.365-1.988-0.365-1.614,0-2.851,0.909-2.851,2.754,0,1.772,1.122,2.796,2.712,2.796,0.432,0,0.788-0.052,0.942-0.114v-1.796h-1.31v-1.503h3.2v4.49z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wlan.svg Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/icons/hbdefault/scalable/qtg_status_wlan.svg Thu Sep 02 20:44:51 2010 +0300
@@ -1,5 +1,5 @@
-<?xml version="1.0" ?>
-<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1 Tiny//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd'>
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg baseProfile="tiny" height="16px" version="1.1" viewBox="0 0 16 16" width="16px" x="0px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px">
<rect fill="none" height="16" width="16"/>
<path d="M10.29,13.12l-1.668-6.652c0.732-0.26,1.258-0.938,1.258-1.756,0-1.041-0.842-1.883-1.881-1.883-1.04,0-1.883,0.841-1.883,1.883,0,0.817,0.525,1.494,1.254,1.756l-1.661,6.651h-2.42v1.88h9.41v-1.881h-2.413z"/>
@@ -7,4 +7,4 @@
<path d="M3.867,4.713c0,1.398,0.761,2.39,0.797,2.44,0.19-0.127,0.512-0.35,0.702-0.478-0.041-0.054-0.652-0.973-0.652-1.962,0-1.101,0.611-1.913,0.651-1.964-0.189-0.128-0.513-0.349-0.701-0.482-0.036,0.058-0.797,1.02-0.797,2.446z"/>
<path d="M14.38,4.71c0-2.104-1.154-3.657-1.191-3.71-0.19,0.128-0.51,0.35-0.7,0.478,0.033,0.049,1.043,1.48,1.043,3.232,0,1.895-1.01,3.178-1.043,3.231,0.188,0.131,0.51,0.353,0.697,0.481,0.03-0.049,1.19-1.671,1.19-3.712z"/>
<path d="M12.13,4.71c0-1.399-0.761-2.391-0.798-2.442-0.187,0.127-0.511,0.35-0.702,0.479,0.041,0.057,0.654,0.977,0.654,1.963,0,1.101-0.613,1.912-0.652,1.963,0.189,0.127,0.51,0.349,0.699,0.481,0.04-0.055,0.8-1.02,0.8-2.444z"/>
-</svg>
\ No newline at end of file
+</svg>
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbcheckbox/hbcheckbox.css Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbcheckbox/hbcheckbox.css Thu Sep 02 20:44:51 2010 +0300
@@ -28,3 +28,9 @@
bottom: 0.0un;
}
+HbCheckBox::spacerTop{
+ size-policy-vertical: expanding;
+}
+HbCheckBox::spacerBottom{
+ size-policy-vertical: expanding;
+}
\ No newline at end of file
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbcheckbox/hbcheckbox.widgetml Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbcheckbox/hbcheckbox.widgetml Thu Sep 02 20:44:51 2010 +0300
@@ -3,13 +3,11 @@
<layout name="default" type="mesh">
<meshitem src="icon" srcEdge="LEFT" dst="" dstEdge="LEFT" />
<meshitem src="icon" srcEdge="TOP" dst="text" dstEdge="TOP"/>
-
- <meshitem src="topSpacer" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="text" srcEdge="TOP" dst="topSpacer" dstEdge="BOTTOM" />
+
+ <meshitem src="text" srcEdge="TOP" dst="" dstEdge="TOP" spacer="spacerTop" />
+ <meshitem src="text" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" spacer="spacerBottom" />
<meshitem src="text" srcEdge="LEFT" dst="icon" dstEdge="RIGHT" />
<meshitem src="text" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="text" srcEdge="BOTTOM" dst="bottomSpacer" dstEdge="TOP" />
- <meshitem src="bottomSpacer" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
<meshitem src="toucharea" srcEdge="LEFT" dst="" dstEdge="LEFT" />
<meshitem src="toucharea" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbmessageboxeditor/hbmessageboxeditor.css Wed Aug 18 10:05:37 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-HbMessageBoxEditor::text{
- left: 0un;
- right: 0un;
- top: 0un;
- bottom: 0un;
-}
\ No newline at end of file
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbselectiondialogcontentwidget/hbselectiondialogcontentwidget.css Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbselectiondialogcontentwidget/hbselectiondialogcontentwidget.css Thu Sep 02 20:44:51 2010 +0300
@@ -1,10 +1,6 @@
-HbSelectionDialogContentWidget[!multiSelection]{
+HbSelectionDialogContentWidget{
layout:default;
}
-HbSelectionDialogContentWidget[multiSelection]{
- layout:list_with_markall;
-
-}
\ No newline at end of file
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbselectiondialogcontentwidget/hbselectiondialogcontentwidget.widgetml Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbselectiondialogcontentwidget/hbselectiondialogcontentwidget.widgetml Thu Sep 02 20:44:51 2010 +0300
@@ -1,14 +1,5 @@
<hbwidget version="0.1" type="HbSelectionDialogContentWidget">
-
<layout name="default" type="mesh">
- <meshitem src="list" srcEdge="LEFT" dst="" dstEdge="LEFT" />
- <meshitem src="list" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
- <meshitem src="list" srcEdge="TOP" dst="" dstEdge="TOP" />
- <meshitem src="list" srcEdge="BOTTOM" dst="" dstEdge="BOTTOM" />
- </layout>
-
-
- <layout name="list_with_markall" type="mesh">
<meshitem src="markwidget" srcEdge="TOP" dst="" dstEdge="TOP" />
<meshitem src="markwidget" srcEdge="LEFT" dst="" dstEdge="LEFT" />
<meshitem src="markwidget" srcEdge="RIGHT" dst="" dstEdge="RIGHT" />
--- a/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbtoolbutton/hbtoolbutton_color.css Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/rules/widgets/hbtoolbutton/hbtoolbutton_color.css Thu Sep 02 20:44:51 2010 +0300
@@ -40,7 +40,7 @@
HbToolButton[toolbutton_extension_layout]::text
{
-color:var(qtc_popup_grid_normal);
+color:var(qtc_popup_grid_trans_normal);
}
HbToolButton[state = "pressed"][toolbutton_extension_layout]::text
@@ -55,7 +55,7 @@
HbToolButton[toolbutton_extension_layout]::icon
{
-color:var(qtc_popup_grid_normal);
+color:var(qtc_popup_grid_trans_normal);
}
HbToolButton[state = "pressed"][toolbutton_extension_layout]::icon
--- a/src/hbcore/resources/themes/style/hbdefault/variables/color/hbapplicationcolorgroup.css Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/resources/themes/style/hbdefault/variables/color/hbapplicationcolorgroup.css Thu Sep 02 20:44:51 2010 +0300
@@ -20,7 +20,7 @@
qtc_cal_month_current_day:#66CCAD; /* Added 05.02.2010 */
qtc_cal_week_day:#505050; /* Added 05.02.2010 */
qtc_cal_day_preview_heading:#FFFFFF; /* Added 05.02.2010 */
-qtc_cal_day_preview_text:#FFFFFF; /* Added 05.02.2010 */
+qtc_cal_day_preview_text:#505050; /* Modified 02.08.2010 */
qtc_cal_day_hour_lines:#505050; /* Added 05.02.2010 */
qtc_cal_monthgrid_title:#FFFFFF; /* Added 05.02.2010 */
qtc_cal_meeting:#000000; /* Added 14.06.2010 */
--- a/src/hbcore/style/hbstyle.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyle.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -65,6 +65,15 @@
#include "hbstyleoptionprogresssliderhandle_p.h"
#include "hbstyleoptionprogressslider_p.h"
+
+#include <hbstyleprimitivedata.h>
+#include <hbstyletextprimitivedata.h>
+#include <hbstylerichtextprimitivedata.h>
+#include <hbstyleiconprimitivedata.h>
+#include <hbstyleframeprimitivedata.h>
+#include <hbstylemarqueeprimitivedata.h>
+#include <hbstyletouchareaprimitivedata.h>
+
#include <hbicon.h>
#include <hbstyle.h>
#include <hbframedrawer.h>
@@ -100,7 +109,6 @@
#include <hbanchor.h>
#include <QGraphicsWidget>
-#include <hbwidget.h>
#include <hbwidgetbase.h>
#include "hbdeviceprofile.h"
#include "hbrepeatitem_p.h"
@@ -113,6 +121,7 @@
#include "hbfeaturemanager_r.h"
#endif
+
Q_DECLARE_METATYPE(QGraphicsLayout*)
//Uncomment next define(s) in order to get more debug prints.
@@ -147,7 +156,6 @@
*/
// TODO: margins should be defined in layout data once layout specification exists.
-static const int ItemName = 0xfffe;
static const QString STYLE_LOCATION = QLatin1String(":/themes/style/hbdefault/rules/widgets/%w/%w");
static const QString COLOR_STYLE_LOCATION = QLatin1String(":/themes/style/hbdefault/rules/widgets/%w/%w_color.css");
static const int TOUCHAREA_ZVALUE = 1000;
@@ -203,28 +211,208 @@
delete d_ptr;
}
/*!
-
- \deprecated HbStyle::createPrimitive(HbStyle::Primitive, QGraphicsItem*)
- is deprecated. This method will be made private and later replaced with new version.
+ Instantiates widget building blocks. The building blocks are called "primitives" and their main function is to perform the painting (e.g. drawing text).
+ A set of base primitives are defined in HbStyle::BasePrimitive enumeration. A widget calling this method should not cast the returned QGraphicsObject
+ to the actual primitive object. By following this rule the styling mechanism can be used to change the actual primitive instance to something else than the original one
+ instantiated by the createPrimitive() method. This enables customizing the painting of the UI without touching the widget code.
+
+ Updating of a primitive's state is done by using HbStyle::updatePrimitive() method which uses the style primitive data classes (comparable to
+ Qt styleoptions) to get the state information needed for the primitive updating.
+
+ \param primitiveType, enumeration of the base primitive
+ \param itemName, string which identifies a primitive in the widget (e.g. "background", or "text"). The item name matches with primitive names in widget's CSS file.
+ \param parent, parent for the primitive, although the default is 0 usually the widget is given as a parent for the primitive
+ \return QGraphicsObject, the returned primitive should be stored as a QGraphicsObject on the widget side
+ \sa HbStyle::updatePrimitive()
+ \sa HbStylePrimitiveData
+ \sa HbStyleTextPrimitiveData
+ \sa HbStyleFramePrimitiveData
+ \sa HbStyleIconPrimitiveData
+ \sa HbStyleRichTextPrimitiveData
+ \sa HbStyleMarqueePrimitiveData
+ \sa HbStyleTouchAreaPrimitiveData
*/
-QGraphicsItem *HbStyle::createPrimitive( HbStyle::Primitive primitive, QGraphicsItem *parent ) const
+QGraphicsObject *HbStyle::createPrimitive(HbStyle::PrimitiveType primitiveType, const QString &itemName, QGraphicsObject *parent) const
{
- Q_UNUSED(primitive);
- Q_UNUSED(parent);
- return 0;
-
+ QGraphicsObject *bp;
+
+ switch (primitiveType) {
+ case PT_TextItem:
+ bp = new HbTextItem(parent);
+ break;
+ case PT_RichTextItem:
+ bp = new HbRichTextItem(parent);
+ break;
+ case PT_FrameItem:
+ bp = new HbFrameItem(parent);
+ break;
+ case PT_IconItem:
+ bp = new HbIconItem(parent);
+ break;
+ case PT_MarqueeItem:
+ bp = new HbMarqueeItem(parent);
+ break;
+ case PT_TouchArea:
+ bp = new HbTouchArea(parent);
+ break;
+ default:
+ bp = 0;
+ }
+
+ if (bp != 0) {
+ setItemName(bp, itemName);
+ }
+
+ return bp;
}
+
/*!
-\deprecated HbStyle::updatePrimitive(QGraphicsItem*, HbStyle::Primitive, const QStyleOption*)
-is deprecated. This method will be made private and later replaced with a new version.
-
+ This method is called by Hb widgets whenever there's a widget state change that results to a change in primitive's state.
+ For example if a button's text changes the button widget needs to update the button's text primitive by calling this method.
+
+ Widgets need to use the HbStylePrimitiveData-derived classes to carry the primitive state information from the widget to the style.
+ These data classes enable the widget to set the primitives' state information without directly using the primitive APIs.
+
+ Note that the updating of the primitive attributes is optimized so that if just one value from the primitive data set is updated only that one
+ value will be updated to the primitive on the style side. The values on primitive data classes are stored by using HbStyleValue templated class
+ which keeps track of whether a primitive data value was assigned or not. On the style side before calling the primitive API the HbStyleValue's
+ isSet()-method is called first to check if the widget did assign the primitive data value.
+
+
+ \param primitive, the primitive to be updated
+ \param data, primitive data needed for updating the primitive
+ \param parent, optionally the parent can be given
+ \return bool, true if correct primitive type was found from the style, false if not.
+ \sa HbStyle::createPrimitive()
+ \sa HbStylePrimitiveData
+ \sa HbStyleTextPrimitiveData
+ \sa HbStyleFramePrimitiveData
+ \sa HbStyleIconPrimitiveData
+ \sa HbStyleRichTextPrimitiveData
+ \sa HbStyleMarqueePrimitiveData
+ \sa HbStyleTouchAreaPrimitiveData
*/
-void HbStyle::updatePrimitive( QGraphicsItem *item, HbStyle::Primitive primitive, const QStyleOption *option ) const
+bool HbStyle::updatePrimitive(QGraphicsObject *primitive, const HbStylePrimitiveData *data, QGraphicsObject *parent) const
{
- Q_UNUSED(item);
- Q_UNUSED(primitive);
- Q_UNUSED(option);
+ Q_UNUSED(parent);
+
+ if (HbTextItem *textItem = qgraphicsitem_cast<HbTextItem*>(primitive)) {
+ const HbStyleTextPrimitiveData *td = hbstyleprimitivedata_cast<const HbStyleTextPrimitiveData*>(data);
+ if (td->text.isSet())
+ textItem->setText(td->text);
+ if (td->textColor.isSet())
+ textItem->setTextColor(td->textColor);
+ if (td->alignment.isSet())
+ textItem->setAlignment(td->alignment);
+ if (td->elideMode.isSet())
+ textItem->setElideMode(td->elideMode);
+ if (td->textWrapping.isSet())
+ textItem->setTextWrapping(td->textWrapping);
+ if (td->isTextVisible.isSet())
+ textItem->setTextVisible(td->isTextVisible);
+ if (td->isTextClip.isSet())
+ textItem->setTextClip(td->isTextClip);
+ if (td->geometry.isSet())
+ textItem->setGeometry(td->geometry);
+ if (td->fadeLength.isSet())
+ textItem->setFadeLength(td->fadeLength);
+ if (td->fadeLengths.isSet())
+ textItem->setFadeLengths(td->fadeLengths);
+ return true;
+
+ } else if (HbIconItem *iconItem = qgraphicsitem_cast<HbIconItem*>(primitive)) {
+ const HbStyleIconPrimitiveData *id = hbstyleprimitivedata_cast<const HbStyleIconPrimitiveData*>(data);
+ if (id->icon.isSet())
+ iconItem->setIcon(id->icon);
+ if (id->size.isSet())
+ iconItem->setSize(id->size);
+ if (id->aspectRatioMode.isSet())
+ iconItem->setAspectRatioMode(id->aspectRatioMode);
+ if (id->alignment.isSet())
+ iconItem->setAlignment(id->alignment);
+ if (id->iconMode.isSet())
+ iconItem->setMode(id->iconMode);
+ if (id->iconState.isSet())
+ iconItem->setState(id->iconState);
+ if (id->iconName.isSet())
+ iconItem->setIconName(id->iconName);
+ if (id->iconFlags.isSet())
+ iconItem->setFlags(id->iconFlags);
+ if (id->mirroringMode.isSet())
+ iconItem->setMirroringMode(id->mirroringMode);
+ if (id->brush.isSet())
+ iconItem->setBrush(id->brush);
+ if (id->color.isSet())
+ iconItem->setColor(id->color);
+ return true;
+
+ } else if(HbFrameItem *frameItem = qgraphicsitem_cast<HbFrameItem*>(primitive)) {
+ const HbStyleFramePrimitiveData *fd = hbstyleprimitivedata_cast<const HbStyleFramePrimitiveData*>(data);
+ HbFrameDrawer *drawer = &(frameItem->frameDrawer());
+ if (fd->frameGraphicsName.isSet())
+ drawer->setFrameGraphicsName(fd->frameGraphicsName);
+ if (fd->frameType.isSet())
+ drawer->setFrameType(fd->frameType);
+ if (fd->borderWidthLeft.isSet() || fd->borderWidthRight.isSet() || fd->borderWidthBottom.isSet() || fd->borderWidthTop.isSet())
+ drawer->setBorderWidths(fd->borderWidthLeft, fd->borderWidthTop, fd->borderWidthRight, fd->borderWidthBottom);
+ if (fd->fillWholeRect.isSet())
+ drawer->setFillWholeRect(fd->fillWholeRect);
+ if (fd->mirroringMode.isSet())
+ drawer->setMirroringMode(fd->mirroringMode);
+ if (fd->fileNameSuffixList.isSet())
+ drawer->setFileNameSuffixList(fd->fileNameSuffixList);
+ if (fd->pixmapMask.isSet())
+ drawer->setMask(fd->pixmapMask);
+ if (fd->bitmapMask.isSet())
+ drawer->setMask(fd->bitmapMask);
+ frameItem->setFrameDrawer(drawer);
+ return true;
+
+ } else if (HbMarqueeItem *marqueeItem = qgraphicsitem_cast<HbMarqueeItem*>(primitive)) {
+ const HbStyleMarqueePrimitiveData *md = hbstyleprimitivedata_cast<const HbStyleMarqueePrimitiveData*>(data);
+ if (md->text.isSet())
+ marqueeItem->setText(md->text);
+ if (md->textColor.isSet())
+ marqueeItem->setTextColor(md->textColor);
+ if (md->animation.isSet()) {
+ if (md->animation)
+ marqueeItem->startAnimation();
+ else
+ marqueeItem->stopAnimation();
+ }
+ if (md->loopCount.isSet())
+ marqueeItem->setLoopCount(md->loopCount);
+ return true;
+
+ } else if (HbTouchArea *touchArea = qgraphicsitem_cast<HbTouchArea*>(primitive)) {
+ const HbStyleTouchAreaPrimitiveData *td = hbstyleprimitivedata_cast<const HbStyleTouchAreaPrimitiveData*>(data);
+ if (td->size.isSet())
+ touchArea->setSize(td->size);
+ if (td->geometry.isSet())
+ touchArea->setGeometry(td->geometry);
+ return true;
+
+ } else if (HbRichTextItem *richTextItem = qgraphicsitem_cast<HbRichTextItem*>(primitive)) {
+ const HbStyleRichTextPrimitiveData *rd = hbstyleprimitivedata_cast<const HbStyleRichTextPrimitiveData*>(data);
+ if (rd->text.isSet())
+ richTextItem->setText(rd->text);
+ if (rd->defaultColor.isSet())
+ richTextItem->setTextDefaultColor(rd->defaultColor);
+ if (rd->alignment.isSet())
+ richTextItem->setAlignment(rd->alignment);
+ if (rd->textWrappingMode.isSet())
+ richTextItem->setTextWrapping(rd->textWrappingMode);
+ if (rd->isTextVisible.isSet())
+ richTextItem->setTextVisible(rd->isTextVisible);
+ if (rd->clipping.isSet())
+ richTextItem->setTextClip(rd->clipping);
+ if (rd->geometry.isSet())
+ richTextItem->setGeometry(rd->geometry);
+ return true;
+ }
+
+return false;
}
@@ -292,6 +480,7 @@
{
HbTextItem *textItem = new HbTextItem(parent);
HbStyle::setItemName(textItem, QLatin1String("text"));
+ textItem->setTextWrapping(Hb::TextWordWrap);
return textItem;
}
case P_PushButton_text:
@@ -820,7 +1009,7 @@
HbStyle::setItemName(n, QLatin1String("icon"));
return n;
}
- case P_MessageBox_text:{ //deprecated
+ case P_MessageBox_text:{
HbTextItem *rti = new HbTextItem(parent);
return rti;
}
@@ -969,12 +1158,14 @@
case P_InputDialog_text:
{
HbTextItem *n = new HbTextItem(parent);
+ n->setTextWrapping(Hb::TextWordWrap);
HbStyle::setItemName(n, QLatin1String("label-1"));
return n;
}
case P_InputDialog_additionaltext:
{
HbTextItem *n = new HbTextItem(parent);
+ n->setTextWrapping(Hb::TextWordWrap);
HbStyle::setItemName(n, QLatin1String("label-2"));
return n;
}
@@ -1309,7 +1500,7 @@
if (mode == QIcon::Disabled ) {
frameGraphicsName = QLatin1String("qtg_fr_list_disabled");
} else {
- frameGraphicsName = QLatin1String("qtg_fr_list_parent_normal");
+ frameGraphicsName = QLatin1String("qtg_fr_list_normal");
}
frameItem->frameDrawer().setFrameGraphicsName(frameGraphicsName);
frameItem->frameDrawer().setFrameType(HbFrameDrawer::NinePieces);
@@ -2448,13 +2639,7 @@
case P_MessageBox_text: //deprecated
if (const HbStyleOptionMessageBox *opt = static_cast<const HbStyleOptionMessageBox *>(option)) {
HbTextItem *textItem = static_cast<HbTextItem*>(item);
- textItem->setAlignment(opt->textAlignment);
-
- if (opt->textWrapping) {
- textItem->setTextWrapping(Hb::TextWrapAnywhere);
- } else {
- textItem->setTextWrapping(Hb::TextNoWrap);
- }
+ textItem->setTextWrapping(Hb::TextWordWrap);
textItem->setText(opt->text);
}
break;
@@ -2717,7 +2902,6 @@
frameItem->frameDrawer().setFrameGraphicsName(QLatin1String("qtg_fr_progslider_frame_normal"));
}
}
- frameItem->frameDrawer().setFillWholeRect(true);
//frameItem->update();
}
break;
@@ -2732,7 +2916,6 @@
else {
frameItem->frameDrawer().setFrameGraphicsName(QLatin1String("qtg_fr_progslider_loaded"));
}
- frameItem->frameDrawer().setFillWholeRect(true);
frameItem->setMaximum(opt->maximum);
frameItem->setMinimum(opt->minimum);
frameItem->setValue(opt->progressValue);
@@ -2800,14 +2983,12 @@
}
else {
- if(opt->pressedState) {
-
- repeatItem->setName(QLatin1String("qtg_graf_ratingslider_unrated_pressed"));
- }
- else {
-
- repeatItem->setName(QLatin1String("qtg_graf_ratingslider_unrated"));
- }
+ if(opt->pressedState) {
+ repeatItem->setName(QLatin1String("qtg_graf_ratingslider_unrated_pressed"));
+ }
+ else {
+ repeatItem->setName(QLatin1String("qtg_graf_ratingslider_unrated"));
+ }
}
}
repeatItem->setGeometry(opt->boundingRect);
@@ -2833,14 +3014,12 @@
}
else {
-
- if(opt->pressedState) {
-
- repeatItem->setName(QLatin1String("qtg_graf_ratingslider_rated_pressed"));
- }
- else {
- repeatItem->setName(QLatin1String("qtg_graf_ratingslider_rated"));
- }
+ if(opt->pressedState) {
+ repeatItem->setName(QLatin1String("qtg_graf_ratingslider_rated_pressed"));
+ }
+ else {
+ repeatItem->setName(QLatin1String("qtg_graf_ratingslider_rated"));
+ }
}
}
repeatItem->setGeometry(opt->boundingRect);
@@ -3115,7 +3294,6 @@
if(!item) {
return;
}
- textItem->setTextWrapping(Hb::TextWrapAnywhere);
textItem->setText(opt->text);
}
break;
@@ -3126,7 +3304,6 @@
if(!item) {
return;
}
- textItem->setTextWrapping(Hb::TextWrapAnywhere);
textItem->setText(opt->additionalText);
}
break;
@@ -4172,4 +4349,5 @@
return HbWidgetBasePrivate::d_ptr(widgetBase);
}
+
#include "moc_hbstyle.cpp"
--- a/src/hbcore/style/hbstyle.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyle.h Thu Sep 02 20:44:51 2010 +0300
@@ -38,7 +38,8 @@
class HbStyleOption;
class HbWidgetBase;
class HbWidget;
-class HbStyleParameters;
+class HbStylePrimitiveData;
+
class HB_CORE_EXPORT HbStyle:public QObject
{
@@ -53,9 +54,19 @@
P_CustomBase = 0x0f000000
};
+ enum PrimitiveType {
+ PT_TextItem = 1,
+ PT_RichTextItem = 2,
+ PT_FrameItem = 3,
+ PT_IconItem = 4,
+ PT_MarqueeItem = 5,
+ PT_TouchArea = 6,
+ PT_ReservedValue = 0xffff
+
+ };
- virtual QGraphicsItem *createPrimitive( HbStyle::Primitive primitive, QGraphicsItem *parent = 0 ) const;
- virtual void updatePrimitive( QGraphicsItem *item, HbStyle::Primitive primitive, const QStyleOption *option ) const;
+ virtual QGraphicsObject *createPrimitive(HbStyle::PrimitiveType primitiveType, const QString &itemName, QGraphicsObject *parent = 0) const;
+ virtual bool updatePrimitive(QGraphicsObject *primitive, const HbStylePrimitiveData *data, QGraphicsObject *parent = 0) const;
static void setItemName( QGraphicsItem *item, const QString &name );
static QString itemName( const QGraphicsItem *item );
@@ -86,3 +97,4 @@
#endif // HBSTYLE_H
+
--- a/src/hbcore/style/hbstyle_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyle_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -46,12 +46,10 @@
class HbWidget;
class HbWidgetBasePrivate;
+static const int ItemName = 0xfffe;
class HbAnchor;
-
-
-
class HB_CORE_PRIVATE_EXPORT HbStylePrivate
{
Q_DECLARE_PUBLIC( HbStyle )
@@ -247,7 +245,7 @@
void polishItem(
const HbVector<HbCss::StyleRule> &styleRules,
HbWidget *widget,
- QGraphicsItem *item,
+ QGraphicsItem *item,
const QString &name,
HbDeviceProfile &profile,
bool layoutDefined) const;
@@ -258,7 +256,7 @@
HbDeviceProfile &profile) const;
void updateThemedItems(
const HbVector<HbCss::StyleRule> &styleRules,
- QGraphicsItem *item,
+ QGraphicsItem *item,
HbDeviceProfile &profile) const;
void clearStyleSheetCaches();
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyleframeprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstyleframeprimitivedata.h>
+
+
+/*!
+ @beta
+ @hbcore
+ \class HbStyleFramePrimitiveData
+ \brief Class to carry data needed by frame items from the widget to the style.
+
+ \sa HbStylePrimitiveData
+ \sa HbStyle::updatePrimitive()
+
+*/
+HbStyleFramePrimitiveData::HbStyleFramePrimitiveData() : HbStylePrimitiveData(SPD_Frame)
+{
+ type = Type;
+ version = Version;
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyleframeprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,57 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLEFRAMEPRIMITIVEDATA_H
+#define HBSTYLEFRAMEPRIMITIVEDATA_H
+
+#include <QBitmap>
+#include <hbglobal.h>
+#include <hbstyleprimitivedata.h>
+#include <hbframedrawer.h>
+#include <hbstylevalue.h>
+
+class HB_CORE_EXPORT HbStyleFramePrimitiveData : public HbStylePrimitiveData
+{
+public:
+ HbStyleFramePrimitiveData();
+
+ enum PrimitiveDataType { Type = SPD_Frame };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStyleValue<QString> frameGraphicsName;
+ HbStyleValue<HbFrameDrawer::FrameType> frameType;
+ HbStyleValue<qreal> borderWidthLeft;
+ HbStyleValue<qreal> borderWidthTop;
+ HbStyleValue<qreal> borderWidthRight;
+ HbStyleValue<qreal> borderWidthBottom;
+ HbStyleValue<bool> fillWholeRect;
+ HbStyleValue<HbIcon::MirroringMode> mirroringMode;
+ HbStyleValue<QStringList> fileNameSuffixList;
+ HbStyleValue<QPixmap> pixmapMask;
+ HbStyleValue<QBitmap> bitmapMask;
+ HbStyleValue<QPainterPath> clipPath;
+};
+
+#endif // HBSTYLEFRAMEPRIMITIVEDATA_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyleiconprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstyleiconprimitivedata.h>
+
+
+/*!
+ @beta
+ @hbcore
+ \class HbStyleIconPrimitiveData
+ \brief Class to carry data needed by icon items from the widget to the style.
+
+ \sa HbStylePrimitiveData
+ \sa HbStyle::updatePrimitive()
+
+*/
+HbStyleIconPrimitiveData::HbStyleIconPrimitiveData() : HbStylePrimitiveData(SPD_Icon)
+{
+ type = Type;
+ version = Version;
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyleiconprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,54 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLEICONPRIMITIVEDATA_H
+#define HBSTYLEICONPRIMITIVEDATA_H
+
+#include <hbglobal.h>
+#include <hbstyleprimitivedata.h>
+#include <hbicon.h>
+
+class HB_CORE_EXPORT HbStyleIconPrimitiveData : public HbStylePrimitiveData
+{
+public:
+ HbStyleIconPrimitiveData();
+
+ enum PrimitiveDataType { Type = SPD_Icon };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStyleValue<HbIcon> icon;
+ HbStyleValue<QSizeF> size;
+ HbStyleValue<Qt::AspectRatioMode> aspectRatioMode;
+ HbStyleValue<Qt::Alignment> alignment;
+ HbStyleValue<QIcon::Mode> iconMode;
+ HbStyleValue<QIcon::State> iconState;
+ HbStyleValue<QString> iconName;
+ HbStyleValue<HbIcon::Flags> iconFlags;
+ HbStyleValue<HbIcon::MirroringMode> mirroringMode;
+ HbStyleValue<QBrush> brush;
+ HbStyleValue<QColor> color;
+};
+
+#endif // HBSTYLEICONPRIMITIVEDATA
--- a/src/hbcore/style/hbstyleinterface_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyleinterface_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -40,7 +40,7 @@
virtual int primitiveCount() const = 0;
virtual QGraphicsItem *createPrimitive( HbStyle::Primitive primitive, QGraphicsItem *parent = 0 ) const = 0;
virtual void updatePrimitive( QGraphicsItem *item, HbStyle::Primitive primitive, const QStyleOption *option ) const = 0;
- virtual QString layoutPath() const = 0;
+ virtual QString layoutPath() const = 0;
void deprecated();
};
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstylemarqueeprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,42 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstylemarqueeprimitivedata.h>
+
+/*!
+ @beta
+ @hbcore
+ \class HbStyleMarqueePrimitiveData
+ \brief Class to carry data needed by marquee items from the widget to the style.
+
+ \sa HbStylePrimitiveData
+ \sa HbStyle::updatePrimitive()
+
+*/
+HbStyleMarqueePrimitiveData::HbStyleMarqueePrimitiveData() : HbStylePrimitiveData(SPD_Marquee)
+{
+ type = Type;
+ version = Version;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstylemarqueeprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,46 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLEMARQUEEPRIMITIVEDATA_H
+#define HBSTYLEMARQUEEPRIMITIVEDATA_H
+
+#include <hbstyleprimitivedata.h>
+
+class HB_CORE_EXPORT HbStyleMarqueePrimitiveData : public HbStylePrimitiveData
+{
+public:
+ HbStyleMarqueePrimitiveData();
+
+ enum PrimitiveDataType { Type = SPD_Marquee };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStyleValue<QString> text;
+ HbStyleValue<QColor> textColor;
+ // true - starts animation, false - stops animation
+ HbStyleValue<bool> animation;
+ HbStyleValue<int> loopCount;
+};
+
+#endif // HBSTYLEMARQUEEPRIMITIVEDATA_H
--- a/src/hbcore/style/hbstyleoptionbatteryindicator.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionbatteryindicator.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -26,7 +26,7 @@
#include "hbstyleoptionbatteryindicator_p.h"
/*
-
+
\class HbStyleOptionBatteryIndicator
\brief HbStyleOptionBatteryIndicator has the style component for battery indicator
*/
--- a/src/hbcore/style/hbstyleoptionprogressslider.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionprogressslider.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -34,8 +34,8 @@
{
type = Type;
version = Version;
- pressedState = false;
- disableState = false;
+ pressedState = false;
+ disableState = false;
}
HbStyleOptionProgressSlider::HbStyleOptionProgressSlider(const HbStyleOptionProgressSlider &other) :
--- a/src/hbcore/style/hbstyleoptionratingslider.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionratingslider.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -48,7 +48,7 @@
unRatedGraphicsName(other.unRatedGraphicsName),
ratedGraphicsName(other.ratedGraphicsName),
disableState(false),
- pressedState(false)
+ pressedState(false)
{
type = Type;
--- a/src/hbcore/style/hbstyleoptionratingslider_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyleoptionratingslider_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -32,21 +32,21 @@
class HB_CORE_PRIVATE_EXPORT HbStyleOptionRatingSlider : public HbStyleOption
{
public:
- HbStyleOptionRatingSlider();
- HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider &other);
- ~HbStyleOptionRatingSlider();
+ HbStyleOptionRatingSlider();
+ HbStyleOptionRatingSlider(const HbStyleOptionRatingSlider &other);
+ ~HbStyleOptionRatingSlider();
public:
enum StyleOptionType { Type = HbSO_RatingSlider };
enum StyleOptionVersion { Version = 1 };
- int progressValue;
- bool inverted;
- int noOfIntervals;
- int noOfStars;
- QString unRatedGraphicsName;
- QString ratedGraphicsName;
+ int progressValue;
+ bool inverted;
+ int noOfIntervals;
+ int noOfStars;
+ QString unRatedGraphicsName;
+ QString ratedGraphicsName;
bool disableState;
- bool pressedState;
+ bool pressedState;
};
#endif
--- a/src/hbcore/style/hbstyleoptiontoolbutton_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/hbstyleoptiontoolbutton_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -26,6 +26,7 @@
#ifndef HBSTYLEOPTIONTOOLBUTTON_H
#define HBSTYLEOPTIONTOOLBUTTON_H
+
#include <hbstyleoption_p.h>
#include <hbicon.h>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyleprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,54 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstyleprimitivedata.h>
+
+
+/*!
+ @beta
+ @hbcore
+ \class HbStylePrimitiveData
+ \brief Base class for primitive data classes which are used for carrying
+ state information needed by the primitives from widget to style. HbStylePrimitiveData is given
+ as a parameter to HbStyle::updatePrimitive() method. Primitive data classed are meant to be used as
+ value classes so before calling updatePrimitive() assign the needed attributes and pass the primitive
+ data to the style. Style will use the HbStyleValue's isSet() method to determine whether a call to primitive
+ API is needed or not.
+
+
+ \sa HbStyleTextPrimitiveData
+ \sa HbStyleFramePrimitiveData
+ \sa HbStyleIconPrimitiveData
+ \sa HbStyleRichTextPrimitiveData
+ \sa HbStyleMarqueePrimitiveData
+ \sa HbStyleTouchAreaPrimitiveData
+ \sa HbStyle::updatePrimitive()
+*/
+HbStylePrimitiveData::HbStylePrimitiveData(int type, int version)
+{
+ this->type = type;
+ this->version = version;
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyleprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,79 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLEPRIMITIVEDATA_H
+#define HBSTYLEPRIMITIVEDATA_H
+
+#include <QStyle>
+#include <hbglobal.h>
+#include <hbstylevalue.h>
+
+class HB_CORE_EXPORT HbStylePrimitiveData
+{
+public:
+
+ enum DataType {
+ SPD_Base = 0,
+ SPD_Text = 1,
+ SPD_RichText = 2,
+ SPD_Frame = 3,
+ SPD_Icon = 4,
+ SPD_Marquee = 5,
+ SPD_TouchArea = 6,
+ };
+
+ enum PrimitiveDataType { Type = SPD_Base };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStylePrimitiveData(int type = SPD_Base, int version = 1);
+
+ QStyle::State state;
+ int version;
+ int type;
+};
+
+
+
+template <typename T>
+T hbstyleprimitivedata_cast(const HbStylePrimitiveData *data)
+{
+ // data must be valid, version must be the same or greater, and the type must match
+ if (data && data->version >= static_cast<T>(0)->Version &&
+ (data->type == static_cast<T>(0)->Type))
+ return static_cast<T>(data);
+ return 0;
+}
+
+template <typename T>
+T hbstyleprimitivedata_cast(HbStylePrimitiveData *data)
+{
+ if (data && data->version >= static_cast<T>(0)->Version &&
+ (data->type == static_cast<T>(0)->Type))
+ return static_cast<T>(data);
+ return 0;
+}
+
+
+#endif // HBSTYLEPRIMITIVEDATA_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstylerichtextprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,46 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstylerichtextprimitivedata.h>
+
+
+/*!
+ @beta
+ @hbcore
+ \class HbStyleRichTextPrimitiveData
+ \brief Class to carry data needed by rich text items from the widget to the style.
+
+ \sa HbStylePrimitiveData
+ \sa HbStyle::updatePrimitive()
+
+*/
+HbStyleRichTextPrimitiveData::HbStyleRichTextPrimitiveData() : HbStylePrimitiveData(SPD_RichText)
+{
+ type = Type;
+ version = Version;
+}
+
+
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstylerichtextprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,49 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLERICHTEXTPRIMITIVEDATA_H
+#define HBSTYLERICHTEXTPRIMITIVEDATA_H
+
+#include <hbnamespace.h>
+#include <hbstyleprimitivedata.h>
+
+class HB_CORE_EXPORT HbStyleRichTextPrimitiveData : public HbStylePrimitiveData
+{
+public:
+ HbStyleRichTextPrimitiveData();
+
+ enum PrimitiveDataType { Type = SPD_RichText };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStyleValue<QString> text;
+ HbStyleValue<QColor> defaultColor;
+ HbStyleValue<Qt::Alignment> alignment;
+ HbStyleValue<Hb::TextWrapping> textWrappingMode;
+ HbStyleValue<bool> isTextVisible;
+ HbStyleValue<bool> clipping;
+ HbStyleValue<QRectF> geometry;
+};
+
+#endif // HBSTYLETEXTPRIMITIVEDATA_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyletextprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,44 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstyletextprimitivedata.h>
+
+/*!
+ @beta
+ @hbcore
+ \class HbStyleTextPrimitiveData
+ \brief Class to carry data needed by a text item from the widget to the style.
+
+ \sa HbStylePrimitiveData
+ \sa HbStyle::updatePrimitive()
+
+*/
+HbStyleTextPrimitiveData::HbStyleTextPrimitiveData() : HbStylePrimitiveData(SPD_Text)
+{
+ type = Type;
+ version = Version;
+}
+
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyletextprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,53 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLETEXTPRIMITIVEDATA_H
+#define HBSTYLETEXTPRIMITIVEDATA_H
+
+#include <hbstyleprimitivedata.h>
+#include <hbnamespace.h>
+
+
+class HB_CORE_EXPORT HbStyleTextPrimitiveData : public HbStylePrimitiveData
+{
+public:
+ HbStyleTextPrimitiveData();
+
+ enum PrimitiveDataType { Type = SPD_Text };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStyleValue<QString> text;
+ HbStyleValue<QColor> textColor;
+ HbStyleValue<Qt::Alignment> alignment;
+ HbStyleValue<Qt::TextElideMode> elideMode;
+ HbStyleValue<Hb::TextWrapping> textWrapping;
+ HbStyleValue<bool> isTextVisible;
+ HbStyleValue<bool> isTextClip;
+ HbStyleValue<QRectF> geometry;
+ HbStyleValue<qreal> fadeLength;
+ HbStyleValue<QPointF> fadeLengths;
+};
+
+#endif // HBSTYLETEXTPRIMITIVEDATA_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyletouchareaprimitivedata.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,42 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include <hbstyletouchareaprimitivedata.h>
+
+/*!
+ @beta
+ @hbcore
+ \class HbStyleTouchAreaPrimitiveData
+ \brief Class to carry data needed by touch areas from the widget to the style.
+
+ \sa HbStylePrimitiveData
+ \sa HbStyle::updatePrimitive()
+
+*/
+HbStyleTouchAreaPrimitiveData::HbStyleTouchAreaPrimitiveData() : HbStylePrimitiveData(SPD_TouchArea)
+{
+ type = Type;
+ version = Version;
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstyletouchareaprimitivedata.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,43 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLETOUCHAREAPRIMITIVEDATA_H
+#define HBSTYLETOUCHAREAPRIMITIVEDATA_H
+
+#include <hbstyleprimitivedata.h>
+
+class HB_CORE_EXPORT HbStyleTouchAreaPrimitiveData : public HbStylePrimitiveData
+{
+public:
+ HbStyleTouchAreaPrimitiveData();
+
+ enum PrimitiveDataType { Type = SPD_TouchArea };
+ enum PrimitiveDataVersion { Version = 1 };
+
+ HbStyleValue<QSizeF> size;
+ HbStyleValue<QRectF> geometry;
+};
+
+#endif // HBSTYLETEXTPRIMITIVEDATA_H
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbcore/style/hbstylevalue.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,84 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbCore module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBSTYLEVALUE_H
+#define HBSTYLEVALUE_H
+
+
+template<typename T>
+class HbStyleValue
+{
+public:
+ HbStyleValue();
+ ~HbStyleValue();
+
+ bool isSet() const;
+ T value() const;
+ operator T() const;
+ void operator=(const T &value);
+
+private:
+ bool mSet;
+ T mVal;
+};
+
+template<typename T>
+HbStyleValue<T>::HbStyleValue() : mSet(false)
+{
+}
+
+template<typename T>
+HbStyleValue<T>::~HbStyleValue()
+{
+}
+
+template<typename T>
+bool HbStyleValue<T>::isSet() const
+{
+ return mSet;
+}
+
+template<typename T>
+T HbStyleValue<T>::value() const
+{
+ Q_ASSERT(mSet);
+ return mVal;
+}
+
+template<typename T>
+HbStyleValue<T>::operator T() const
+{
+ Q_ASSERT(mSet);
+ return mVal;
+}
+
+template<typename T>
+void HbStyleValue<T>::operator=(const T &value)
+{
+ mVal = value;
+ mSet = true;
+}
+
+#endif // HBSTYLEVALUE_H
--- a/src/hbcore/style/style.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/style/style.pri Thu Sep 02 20:44:51 2010 +0300
@@ -29,6 +29,16 @@
PUBLIC_HEADERS += $$PWD/hbstyle.h
PUBLIC_HEADERS += $$PWD/hbstyleparameters.h
+PUBLIC_HEADERS += $$PWD/hbstyleprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstyleiconprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstyleframeprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstyletextprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstylerichtextprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstylemarqueeprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstyletouchareaprimitivedata.h
+PUBLIC_HEADERS += $$PWD/hbstylevalue.h
+
+
PRIVATE_HEADERS += $$PWD/hbstyleoption_p.h
PRIVATE_HEADERS += $$PWD/hbstyleoptionabstractviewitem_p.h
PRIVATE_HEADERS += $$PWD/hbstyleoptioncheckbox_p.h
@@ -108,5 +118,13 @@
SOURCES += $$PWD/hbstyleoptiongroupbox.cpp
SOURCES += $$PWD/hbstyleoptioncombobox.cpp
SOURCES += $$PWD/hbstyleoptioninputdialog.cpp
+SOURCES += $$PWD/hbstyleprimitivedata.cpp
+SOURCES += $$PWD/hbstyleiconprimitivedata.cpp
+SOURCES += $$PWD/hbstyleframeprimitivedata.cpp
+SOURCES += $$PWD/hbstyletextprimitivedata.cpp
+SOURCES += $$PWD/hbstylerichtextprimitivedata.cpp
+SOURCES += $$PWD/hbstylemarqueeprimitivedata.cpp
+SOURCES += $$PWD/hbstyletouchareaprimitivedata.cpp
+
--- a/src/hbcore/svgext/hbnvgdecoder/hbnvgcsicon_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/svgext/hbnvgdecoder/hbnvgcsicon_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -74,7 +74,7 @@
HbNvgEngine::HbNvgErrorType draw(const QSize &size)
{
- // TODO @ Deprecated, remove from base class
+ // TODO @ Deprecated, remove from base class
Q_UNUSED(size);
return HbNvgEngine::NvgErrNone;
}
@@ -98,7 +98,7 @@
void create(const QByteArray &buffer, const QSize& targetSize)
{
- // TODO @ Deprecated, remove from base class
+ // TODO @ Deprecated, remove from base class
Q_UNUSED(buffer);
Q_UNUSED(targetSize);
}
--- a/src/hbcore/svgext/hbnvgdecoder/hbnvgexception_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/svgext/hbnvgdecoder/hbnvgexception_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -35,7 +35,7 @@
: errID(id) {}
qint32 errorID() const
- {
+ {
return errID;
}
--- a/src/hbcore/theme/hbtheme.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbtheme.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -189,6 +189,11 @@
*/
void HbThemePrivate::updateTheme(const QStringList &updatedFiles)
{
+#ifndef Q_OS_SYMBIAN
+ // Reload themeindex files
+ HbThemeUtils::loadHeapThemeIndexes();
+#endif
+
// Reload effects
HbEffectInternal::reloadFxmlFiles();
--- a/src/hbcore/theme/hbthemeclient_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -59,47 +59,48 @@
*
* Returns HbIconInfo structure to the clients. This basically contains information about the shared
* icon resources on server's shared memory
- *
- * \a iconPath
- * \a size
- * \a aspectRatioMode
- * \a mode
- * \a mirrored
- * \a options
- * \a color
- *
+ */
+HbSharedIconInfo HbThemeClient::getSharedIconInfo(const IconReqInfo &reqInfo)
+{
+#ifdef Q_OS_SYMBIAN
+ Q_D(HbThemeClient);
+ return d->getSharedIconInfo(reqInfo);
+#else
+ Q_UNUSED(reqInfo);
+ return HbSharedIconInfo();
+#endif
+}
+/**
+ Asynchronous version.
*/
-HbSharedIconInfo HbThemeClient::getSharedIconInfo(const QString& iconPath ,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode)
+void HbThemeClient::getSharedIconInfo(const IconReqInfo &reqInfo,
+ HbAsyncIconInfoCallback callback,
+ void *callbackParam)
{
#ifdef Q_OS_SYMBIAN
Q_D(HbThemeClient);
- return d->getSharedIconInfo(iconPath,
- size,
- aspectRatioMode,
- mode,
- mirrored,
- options,
- color,
- renderMode);
+ d->getSharedIconInfo(reqInfo, callback, callbackParam);
#else
- Q_UNUSED(iconPath);
- Q_UNUSED(size);
- Q_UNUSED(aspectRatioMode);
- Q_UNUSED(mode);
- Q_UNUSED(mirrored);
- Q_UNUSED(options);
- Q_UNUSED(color);
- Q_UNUSED(renderMode);
+ Q_UNUSED(reqInfo);
+ Q_UNUSED(callback);
+ Q_UNUSED(callbackParam);
+#endif
+}
- return HbSharedIconInfo();
+/**
+ Cancels one or more previous async requests. All requests using the
+ same callback are canceled.
+ */
+void HbThemeClient::cancelGetSharedIconInfo(HbAsyncIconInfoCallback callback,
+ void *callbackParam)
+{
+#ifdef Q_OS_SYMBIAN
+ Q_D(HbThemeClient);
+ d->cancelGetSharedIconInfo(callback, callbackParam);
+#else
+ Q_UNUSED(callback);
+ Q_UNUSED(callbackParam);
#endif
}
@@ -111,15 +112,16 @@
QByteArray HbThemeClient::getSharedBlob(const QString &name)
{
#ifdef Q_OS_SYMBIAN
- HbSharedIconInfo info = getSharedIconInfo(
- name,
- QSizeF(),
- Qt::KeepAspectRatio,
- QIcon::Normal,
- false,
- HbIconLoader::NoOptions,
- QColor(),
- ESWRendering);
+ IconReqInfo reqInfo;
+ reqInfo.iconPath = name;
+ reqInfo.size = QSizeF();
+ reqInfo.aspectRatioMode = Qt::KeepAspectRatio;
+ reqInfo.mode = QIcon::Normal;
+ reqInfo.mirrored = false;
+ reqInfo.options = HbIconLoader::NoOptions;
+ reqInfo.color = QColor();
+ reqInfo.renderMode = ESWRendering;
+ HbSharedIconInfo info = getSharedIconInfo(reqInfo);
return info.type == BLOB
? QByteArray::fromRawData(HbMemoryUtils::getAddress<char>(
HbMemoryManager::SharedMemory,
@@ -344,41 +346,27 @@
/**
* HbThemeClient::unloadIcon()
- *
- * \a iconPath
- * \a size
- * \a aspectRatioMode
- * \a mode
- * \a mirrored
- * \a options
- * \a color
-
*/
-void HbThemeClient::unloadIcon(const QString& iconPath ,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode)
+void HbThemeClient::unloadIcon(const IconReqInfo &reqInfo)
{
#ifdef Q_OS_SYMBIAN
Q_D(HbThemeClient);
- return d->unloadIcon(iconPath,
- size,
- aspectRatioMode,
- mode,
- mirrored,
- color,
- renderMode);
+ return d->unloadIcon(reqInfo);
#else
- Q_UNUSED(iconPath);
- Q_UNUSED(size);
- Q_UNUSED(aspectRatioMode);
- Q_UNUSED(mode);
- Q_UNUSED(mirrored);
- Q_UNUSED(color);
- Q_UNUSED(renderMode);
+ Q_UNUSED(reqInfo);
+#endif
+}
+
+/**
+ * HbThemeClient::batchUnloadIcon()
+ */
+void HbThemeClient::batchUnloadIcon(const QVector<IconReqInfo> &reqInfos)
+{
+#ifdef Q_OS_SYMBIAN
+ Q_D(HbThemeClient);
+ return d->batchUnloadIcon(reqInfos);
+#else
+ Q_UNUSED(reqInfos);
#endif
}
--- a/src/hbcore/theme/hbthemeclient_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -45,14 +45,25 @@
public:
bool connectToServer();
- HbSharedIconInfo getSharedIconInfo(const QString &iconPath,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode );
+ struct IconReqInfo {
+ QString iconPath;
+ QSizeF size;
+ Qt::AspectRatioMode aspectRatioMode;
+ QIcon::Mode mode;
+ bool mirrored;
+ HbIconLoader::IconLoaderOptions options;
+ QColor color;
+ HbRenderingMode renderMode;
+ };
+
+ HbSharedIconInfo getSharedIconInfo(const IconReqInfo &reqInfo);
+
+ void getSharedIconInfo(const IconReqInfo &reqInfo,
+ HbAsyncIconInfoCallback callback,
+ void *callbackParam = 0);
+
+ void cancelGetSharedIconInfo(HbAsyncIconInfoCallback callback,
+ void *callbackParam);
QByteArray getSharedBlob(const QString &name);
@@ -76,40 +87,36 @@
void notifyForegroundLostToServer();
- void unloadIcon(const QString &iconPath,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode);
+ void unloadIcon(const IconReqInfo &reqInfo);
- void unLoadMultiIcon(const QStringList &iconPathList,
- const QVector<QSizeF> &sizeList,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode);
+ void batchUnloadIcon(const QVector<IconReqInfo> &reqInfos);
HbSharedIconInfo getMultiPartIconInfo(const QStringList &multiPartIconList,
- const HbMultiPartSizeData &multiPartIconData,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode);
+ const HbMultiPartSizeData &multiPartIconData,
+ const QSizeF &size,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode);
HbSharedIconInfoList getMultiIconInfo(const QStringList &multiPartIconList,
- const QVector<QSizeF> &sizeList,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode);
+ const QVector<QSizeF> &sizeList,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode);
+
+ void unLoadMultiIcon(const QStringList &iconPathList,
+ const QVector<QSizeF> &sizeList,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ const QColor &color,
+ HbRenderingMode renderMode);
bool switchRenderingMode(HbRenderingMode renderMode);
--- a/src/hbcore/theme/hbthemeclient_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -27,7 +27,9 @@
#define HBTHEMECLIENT_P_P_H
#include <QIcon>
+#include <QQueue>
#include "hbthemecommon_p.h"
+#include "hbthemeclient_p.h"
#include "hbiconloader_p.h"
#include "hbwidgetloader_p.h"
#include "hblayeredstyleloader_p.h"
@@ -39,14 +41,17 @@
#ifdef HB_SGIMAGE_ICON
#include <sgresource/sgimage.h>
#endif
-
#include <e32base.h>
-#endif
+#endif // Q_OS_SYMBIAN
+QT_BEGIN_NAMESPACE
class QFileSystemWatcher;
+class QSizeF;
+QT_END_NAMESPACE
+
class CHbThemeListenerPrivate;
-class QSizeF;
class HbEffectFxmlData;
+class QueueEntry;
class HB_AUTOTEST_EXPORT HbThemeClientPrivate :
#ifdef Q_OS_SYMBIAN
@@ -66,14 +71,14 @@
#ifdef Q_OS_SYMBIAN
bool connectToServer();
- HbSharedIconInfo getSharedIconInfo(const QString& iconPath ,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode);
+ HbSharedIconInfo getSharedIconInfo(const HbThemeClient::IconReqInfo &reqInfo);
+
+ void getSharedIconInfo(const HbThemeClient::IconReqInfo &reqInfo,
+ HbAsyncIconInfoCallback callback,
+ void *callbackParam);
+
+ void cancelGetSharedIconInfo(HbAsyncIconInfoCallback callback,
+ void *callbackParam);
HbWidgetLoader::LayoutDefinition *getSharedLayoutDefs(const QString &fileName,
const QString &layout,
@@ -94,40 +99,38 @@
bool addSharedEffect(const QString& filePath);
- void unloadIcon(const QString& iconPath ,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode);
+ void unloadIcon(const HbThemeClient::IconReqInfo &reqInfo);
+
+ void batchUnloadIcon(const QVector<HbThemeClient::IconReqInfo> &reqInfos);
+
+ HbSharedIconInfo getMultiPartIconInfo(const QStringList &multiPartIconList,
+ const HbMultiPartSizeData &multiPartIconData,
+ const QSizeF &size,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode);
+
+ HbSharedIconInfoList getMultiIconInfo(const QStringList &multiPartIconList,
+ const QVector<QSizeF> &sizeList ,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ HbIconLoader::IconLoaderOptions options,
+ const QColor &color,
+ HbRenderingMode renderMode);
void unLoadMultiIcon(const QStringList& iconPathList,
- const QVector<QSizeF> &sizeList,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode);
- HbSharedIconInfo getMultiPartIconInfo(const QStringList &multiPartIconList,
- const HbMultiPartSizeData &multiPartIconData,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode);
+ const QVector<QSizeF> &sizeList,
+ Qt::AspectRatioMode aspectRatioMode,
+ QIcon::Mode mode,
+ bool mirrored,
+ const QColor &color,
+ HbRenderingMode renderMode);
- HbSharedIconInfoList getMultiIconInfo(const QStringList &multiPartIconList,
- const QVector<QSizeF> &sizeList ,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode);
-
+ void scheduleQueueCheck();
void notifyForegroundLostToServer();
bool switchRenderingMode(HbRenderingMode renderMode);
int freeSharedMemory();
@@ -137,41 +140,41 @@
void createMemoryReport() const;
#endif
-private:
- void handleThemeChange(const QString &themeName);
-
-#endif // Q_OS_SYMBIAN
-
-public:
- void setTheme(const QString &theme);
-
- ~HbThemeClientPrivate();
+ CHbThemeListenerPrivate *themelistener;
-#ifdef Q_OS_SYMBIAN
-private:
- TVersion Version() const;
- TInt StartServer();
- TInt CreateServerProcess();
+ CIdle *queueCheckInvoker;
+ typedef QQueue<QueueEntry *> QueueType;
+ QueueType reqQueue;
-private:
- CHbThemeListenerPrivate *themelistener;
- friend class CHbThemeListenerPrivate;
#ifdef HB_SGIMAGE_ICON
RSgDriver sgDriver;
bool sgDriverInit;
#endif
+private:
+ TVersion Version() const;
+ TInt StartServer();
+ TInt CreateServerProcess();
+ void handleThemeChange(const QString &themeName);
+
#else
+ QFileSystemWatcher *iniFileWatcher;
+
public slots:
void iniFileChanged(QString iniFile);
-private:
- QFileSystemWatcher *iniFileWatcher;
#endif // Q_OS_SYMBIAN
public:
bool clientConnected;
+
+ void setTheme(const QString &theme);
+
+ ~HbThemeClientPrivate();
+
+ friend class QueueEntry;
+ friend class CHbThemeListenerPrivate;
};
#endif // HBTHEMECLIENT_P_P_H
--- a/src/hbcore/theme/hbthemeclient_symbian_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemeclient_symbian_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -43,14 +43,15 @@
HbThemeClientPrivate::HbThemeClientPrivate():
clientConnected(false)
{
- if(THEME_SERVER_NAME != HbMemoryUtils::getCleanAppName()) {
+ if (THEME_SERVER_NAME != HbMemoryUtils::getCleanAppName()) {
themelistener = new CHbThemeListenerPrivate(this);
}
-
#ifdef HB_SGIMAGE_ICON
sgDriverInit = false;
#endif
+
+ queueCheckInvoker = CIdle::New(CActive::EPriorityLow); // important to set the proper prio here
}
/**
@@ -80,7 +81,7 @@
#ifdef HB_SGIMAGE_ICON
if (!error && !sgDriverInit) {
error = sgDriver.Open();
- if (error == KErrNone) {
+ if (error == KErrNone) {
sgDriverInit = true;
}
}
@@ -102,49 +103,220 @@
KThemeServerBuildVersionNumber));
}
+class QueueEntry : public CActive
+{
+public:
+ QueueEntry(HbThemeClientPrivate *tc);
+ ~QueueEntry();
+
+ void DoCancel();
+ void RunL();
+
+ void init(const HbThemeClient::IconReqInfo &reqInfo,
+ HbAsyncIconInfoCallback callback,
+ void *callbackParam);
+
+ void issueRequest();
+
+ HbThemeClientPrivate *mTc;
+ TPckg<HbSharedIconInfo> *mInfoPckg;
+ TPckg<TIconParams> *mParamsPckg;
+ void *mCallbackParam;
+ HbAsyncIconInfoCallback mCallback;
+ HbSharedIconInfo mInfo;
+ TIconParams mParams;
+ TFileName mIconPathBuf;
+};
+
+// Never call this directly, use scheduleQueueCheck() to have it
+// invoked asynchronously when there is nothing better to do.
+static TInt checkQueue(TAny *param)
+{
+ HbThemeClientPrivate *tc = static_cast<HbThemeClientPrivate *>(param);
+ // Only one request can be sent a time. The themeserver is single-threaded
+ // and has no special async support so it blocks anyway.
+ if (tc->reqQueue.isEmpty()) {
+ return 0;
+ }
+ foreach (QueueEntry *e, tc->reqQueue) {
+ if (e->IsActive()) {
+ return 0;
+ }
+ }
+ tc->reqQueue.head()->issueRequest();
+ return 0;
+}
+
+QueueEntry::QueueEntry(HbThemeClientPrivate *tc)
+ : CActive(EPriorityStandard),
+ mTc(tc), mInfoPckg(0), mParamsPckg(0), mCallbackParam(0)
+{
+ CActiveScheduler::Add(this);
+}
+
+QueueEntry::~QueueEntry()
+{
+ Cancel();
+ delete mParamsPckg;
+ delete mInfoPckg;
+}
+
+void QueueEntry::DoCancel()
+{
+ // No cancel support on server-side, so complete here. This also means that
+ // Cancel() can only be called from the dtor. See cancelGetSharedIconInfo().
+ TRequestStatus *rs = &iStatus;
+ User::RequestComplete(rs, KErrCancel);
+}
+
+void QueueEntry::RunL()
+{
+ if (iStatus != KErrCancel) {
+ mTc->reqQueue.removeOne(this);
+ if (iStatus != KErrNone) {
+ mInfo.type = INVALID_FORMAT;
+ }
+ if (!mCallback || !mCallback(mInfo, mCallbackParam)) {
+ // Requestor is not interested, may not even exist anymore, so unload.
+ HbThemeClient::IconReqInfo reqInfo;
+ reqInfo.iconPath = QString::fromUtf16(mParams.fileName.Ptr(), mParams.fileName.Length());
+ reqInfo.size = QSizeF(mParams.width, mParams.height);
+ reqInfo.aspectRatioMode = (Qt::AspectRatioMode) mParams.aspectRatioMode;
+ reqInfo.mode = (QIcon::Mode) mParams.mode;
+ reqInfo.mirrored = (bool) mParams.mirrored;
+ reqInfo.color = mParams.colorflag ? QColor(mParams.rgba) : QColor();
+ reqInfo.renderMode = (HbRenderingMode) mParams.renderMode;
+ mTc->unloadIcon(reqInfo);
+ }
+ mTc->scheduleQueueCheck();
+ delete this;
+ }
+}
+
+void QueueEntry::init(const HbThemeClient::IconReqInfo &reqInfo,
+ HbAsyncIconInfoCallback callback,
+ void *callbackParam)
+{
+ mCallback = callback;
+ mCallbackParam = callbackParam;
+ mInfo.type = INVALID_FORMAT;
+ mIconPathBuf = TFileName(reqInfo.iconPath.utf16());
+ mParams.fileName = mIconPathBuf;
+ mParams.width = reqInfo.size.width();
+ mParams.height = reqInfo.size.height();
+ mParams.aspectRatioMode = (TUint8) reqInfo.aspectRatioMode;
+ mParams.mode = (TUint8) reqInfo.mode;
+ mParams.options = (TUint8) reqInfo.options;
+ mParams.mirrored = (TBool) reqInfo.mirrored;
+ mParams.rgba = (TUint32) reqInfo.color.rgba();
+ mParams.colorflag = reqInfo.color.isValid();
+ mParams.renderMode = reqInfo.renderMode;
+ mInfoPckg = new TPckg<HbSharedIconInfo>(mInfo);
+ mParamsPckg = new TPckg<TIconParams>(mParams);
+}
+
+void QueueEntry::issueRequest()
+{
+ TIpcArgs args(mParamsPckg, mInfoPckg);
+ mTc->SendReceive(EIconLookup, args, iStatus);
+ SetActive();
+}
+
/**
* HbThemeClientPrivate::getSharedIconInfo()
*
- * Returns the shared icon information
+ * Returns the shared icon information, asynchronous version.
+*/
+void HbThemeClientPrivate::getSharedIconInfo(const HbThemeClient::IconReqInfo &reqInfo,
+ HbAsyncIconInfoCallback callback,
+ void *callbackParam)
+{
+ if (!clientConnected) {
+ HbSharedIconInfo info;
+ info.type = INVALID_FORMAT;
+ callback(info, callbackParam);
+ return;
+ }
+ QueueEntry *e = new QueueEntry(this);
+ e->init(reqInfo, callback, callbackParam);
+ reqQueue.enqueue(e);
+ scheduleQueueCheck();
+}
+
+void HbThemeClientPrivate::scheduleQueueCheck()
+{
+ if (queueCheckInvoker && !queueCheckInvoker->IsActive()) {
+ queueCheckInvoker->Start(TCallBack(checkQueue, this));
+ }
+}
+
+/**
+ * HbThemeClientPrivate::cancelGetSharedIconInfo
+ *
+ * Cancels a previous async getSharedIconInfo request.
+ * If callbackParam is 0 then it is ignored and only \a callback is used in the matching.
+ * Otherwise both \a callback and \a callbackParam must match.
*/
-HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(const QString &iconPath,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- HbIconLoader::IconLoaderOptions options,
- const QColor &color,
- HbRenderingMode renderMode)
+void HbThemeClientPrivate::cancelGetSharedIconInfo(HbAsyncIconInfoCallback callback,
+ void *callbackParam)
+{
+ for (int i = 0; i < reqQueue.count(); ++i) {
+ QueueEntry *e = reqQueue.at(i);
+ if (e->mCallback == callback && (!callbackParam || callbackParam == e->mCallbackParam)) {
+ if (e->IsActive()) {
+ // There is no real cancelation support, the themeserver is busy
+ // and is blocked at this point, so just let it go and ignore
+ // the future results. Calling Cancel() would potentially result
+ // in a stray signal.
+ e->mCallback = 0;
+ } else {
+ delete e;
+ reqQueue.removeAt(i--);
+ }
+ }
+ }
+}
+
+inline TIconParams reqInfoToParams(const HbThemeClient::IconReqInfo &reqInfo)
+{
+ TIconParams params;
+ params.fileName.Copy(TPtrC(static_cast<const TUint16 *>(reqInfo.iconPath.utf16()),
+ reqInfo.iconPath.length()));
+ params.width = reqInfo.size.width();
+ params.height = reqInfo.size.height();
+ params.aspectRatioMode = (TUint8) reqInfo.aspectRatioMode;
+ params.mode = (TUint8) reqInfo.mode;
+ params.options = (TUint8) reqInfo.options;
+ params.mirrored = (TBool) reqInfo.mirrored;
+ params.rgba = (TUint32) reqInfo.color.rgba();
+ params.colorflag = reqInfo.color.isValid();
+ params.renderMode = reqInfo.renderMode;
+ return params;
+}
+
+/**
+ * HbThemeClientPrivate::getSharedIconInfo()
+ *
+ * Returns the shared icon information, synchronous version.
+*/
+HbSharedIconInfo HbThemeClientPrivate::getSharedIconInfo(const HbThemeClient::IconReqInfo &reqInfo)
{
HbSharedIconInfo sharedIconInfo;
sharedIconInfo.type = INVALID_FORMAT;
- if ( !clientConnected ) {
+ if (!clientConnected) {
return sharedIconInfo;
}
- TBuf<256> buffer(iconPath.utf16());
TPckg<HbSharedIconInfo> iconInfo(sharedIconInfo);
-
- TIconParams params;
- params.fileName = buffer;
- params.width = size.width();
- params.height = size.height();
- params.aspectRatioMode = (TUint8)aspectRatioMode;
- params.mode = (TUint8)mode;
- params.options = (TUint8)options;
- params.mirrored = (TBool)mirrored;
- params.rgba = (TUint32) color.rgba();
- params.colorflag = color.isValid();
- params.renderMode = renderMode;
+ TIconParams params = reqInfoToParams(reqInfo);
TPckg<TIconParams> paramPckg(params);
-
- TIpcArgs args(¶mPckg,&iconInfo);
+ TIpcArgs args(¶mPckg, &iconInfo);
TInt err = SendReceive(EIconLookup, args);
if (KErrNone != err) {
- sharedIconInfo.type = INVALID_FORMAT;
+ sharedIconInfo.type = INVALID_FORMAT;
}
return sharedIconInfo;
}
@@ -152,7 +324,6 @@
/**
* getMultiPartIconInfo
*/
-
HbSharedIconInfo HbThemeClientPrivate::getMultiPartIconInfo(
const QStringList &multiPartIconList,
const HbMultiPartSizeData &multiPartIconData,
@@ -174,10 +345,10 @@
TPckg<HbSharedIconInfo> iconInfo(sharedIconInfo);
TMultiIconSymbParams params;
- TBuf<256> iconId(multiPartIconData.multiPartIconId.utf16());
+ TFileName iconId(multiPartIconData.multiPartIconId.utf16());
params.multiPartIconId.Copy(iconId);
for (int i = 0; i < multiPartIconList.length(); i++) {
- TBuf<256> pieceIconId(multiPartIconList[i].utf16());
+ TFileName pieceIconId(multiPartIconList[i].utf16());
params.multiPartIconList[i].Copy(pieceIconId);
}
int noOfPieces = 1;
@@ -231,7 +402,7 @@
}
HbCss::StyleSheet *styleSheet(0);
- TBuf<256> fileDes(fileName.utf16());
+ TFileName fileDes(fileName.utf16());
TBuf<5> layerPriority;
layerPriority.AppendNum((TInt)priority);
@@ -304,7 +475,7 @@
HbEffectFxmlData *fxmlData = 0;
- TBuf<256> fileDes(filePath.utf16());
+ TFileName fileDes(filePath.utf16());
HbSharedEffectInfo effectInfo;
TPckg<HbSharedEffectInfo> sharedInfo(effectInfo);
@@ -351,7 +522,7 @@
return false;
}
- TBuf<256> fileDes(filePath.utf16());
+ TFileName fileDes(filePath.utf16());
TInt retVal = KErrGeneral;
TPckg<TInt> sharedInfo(retVal);
@@ -388,41 +559,47 @@
/**
* HbThemeClientPrivate::unloadIcon()
- *
- * unload icon
*/
-void HbThemeClientPrivate::unloadIcon(const QString &iconPath,
- const QSizeF &size,
- Qt::AspectRatioMode aspectRatioMode,
- QIcon::Mode mode,
- bool mirrored,
- const QColor &color,
- HbRenderingMode renderMode)
+void HbThemeClientPrivate::unloadIcon(const HbThemeClient::IconReqInfo &reqInfo)
{
- if ( !clientConnected ) {
+ if (!clientConnected) {
return;
}
- TBuf<256> buffer(iconPath.utf16());
-
- TIconParams params;
- params.fileName = buffer;
- params.width = size.width();
- params.height = size.height();
- params.aspectRatioMode = (TUint8)aspectRatioMode;
- params.mode = (TUint8)mode;
- params.options = (TUint8)0;
- params.mirrored = (TBool)mirrored;
- params.rgba = (TUint32) color.rgba();
- params.colorflag = color.isValid();
- params.renderMode = (TUint8)renderMode;
+ TIconParams params = reqInfoToParams(reqInfo);
TPckg<TIconParams> paramPckg(params);
- TIpcArgs args(¶mPckg, 0);
+ TIpcArgs args(¶mPckg);
SendReceive(EUnloadIcon, args);
}
/**
+ * HbThemeClientPrivate::batchUnloadIcon()
+*/
+void HbThemeClientPrivate::batchUnloadIcon(const QVector<HbThemeClient::IconReqInfo> &reqInfos)
+{
+ if (!clientConnected) {
+ return;
+ }
+ int idx = 0;
+ typedef TIconParams Params[BATCH_SIZE_LIMIT];
+ Params paramList;
+ for (int i = 0, ie = reqInfos.count(); i != ie; ++i) {
+ paramList[idx++] = reqInfoToParams(reqInfos.at(i));
+ if (idx == BATCH_SIZE_LIMIT || i == ie - 1) {
+ // There may be unused entries in the last batch.
+ for (int j = idx; j < BATCH_SIZE_LIMIT; ++j) {
+ paramList[j].fileName.Zero();
+ }
+ idx = 0;
+ TPckg<Params> paramsPckg(paramList);
+ TIpcArgs args(¶msPckg);
+ SendReceive(EBatchUnloadIcon, args);
+ }
+ }
+}
+
+/**
* HbThemeClientPrivate::unLoadMultiIcon()
*
* unload multiple icons
@@ -443,7 +620,6 @@
int noOfPieces = iconPathList.length();
for (int i = 0; i < noOfPieces; i++) {
-
TFileName pieceIconId(iconPathList[i].utf16());
params.iconList[i].Copy(pieceIconId);
params.sizeList[i] = sizeList[i];
@@ -474,9 +650,9 @@
HbWidgetLoader::LayoutDefinition *layoutDef(0);
- TBuf<256> fileDes(fileName.utf16());
- TBuf<256> layoutDes(layout.utf16());
- TBuf<256> sectionDes(section.utf16());
+ TFileName fileDes(fileName.utf16());
+ TFileName layoutDes(layout.utf16());
+ TFileName sectionDes(section.utf16());
HbSharedWMLInfo widgetmlInfo;
TPckg<HbSharedWMLInfo> wmlInfo(widgetmlInfo);
@@ -537,13 +713,24 @@
*/
HbThemeClientPrivate::~HbThemeClientPrivate()
{
+ // Make a copy and destroy the elements after emptying the real queue so
+ // checkQueue() can safely be called during the destruction of the elements.
+ QueueType qc = reqQueue;
+ reqQueue.clear();
+ foreach (QueueEntry *e, qc) {
+ delete e;
+ }
+ delete queueCheckInvoker; // destroy only when no QueueEntries are alive
+
RSessionBase::Close();
+
#ifdef HB_SGIMAGE_ICON
if (sgDriverInit) {
sgDriver.Close();
sgDriverInit = false;
}
#endif
+
delete themelistener;
}
--- a/src/hbcore/theme/hbthemecommon_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemecommon_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -90,7 +90,7 @@
quint32 identifier;
quint32 mainAllocatorOffset;
quint32 subAllocatorOffset;
- quint32 sharedCacheOffset;
+ quint32 sharedCacheOffset;
// Base theme offsets
quint32 baseThemePathOffset;
quint32 baseThemeNameOffset;
@@ -331,6 +331,7 @@
EEffectLookupFilePath,
EEffectAdd,
EUnloadIcon,
+ EBatchUnloadIcon,
EUnloadMultiIcon,
EMemoryGood,
EFreeRam,
@@ -344,7 +345,8 @@
ETotalGPUMem,
ECachedSgImages,
ECachedPixmapImages,
- ECurrentRenderingMode
+ ECurrentRenderingMode,
+ ETotalSgImagesCost
#ifdef HB_THEME_SERVER_MEMORY_REPORT
,ECreateMemoryReport
#endif
@@ -355,6 +357,8 @@
{
int bytesToFree;
bool useSwRendering;
-};
+};
+
+typedef bool (*HbAsyncIconInfoCallback)(const HbSharedIconInfo &, void *);
#endif /* HBTHEMECOMMON_P_H */
--- a/src/hbcore/theme/hbthemecommon_symbian_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemecommon_symbian_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -28,11 +28,13 @@
#include <e32base.h>
#include <hbthemecommon_p.h>
+
// To enable/disable debug messages for theme listener
#undef THEME_LISTENER_TRACES
+
struct TIconParams
{
- TBuf<256> fileName;
+ TFileName fileName;
TReal width;
TReal height;
TUint8 aspectRatioMode;
@@ -46,8 +48,8 @@
struct TMultiIconSymbParams
{
- TBuf<256> multiPartIconId;
- TBuf<256> multiPartIconList[9];
+ TFileName multiPartIconId;
+ TFileName multiPartIconList[9];
TRect sources[9];
TRect targets[9];
TSize pixmapSizes[9];
@@ -59,11 +61,11 @@
TInt rgba;
TBool colorflag;
TInt renderMode;
- };
+};
struct TIconListParams
{
- TBuf<256> iconList[9];
+ TFileName iconList[9];
QSizeF sizeList[9];
TInt aspectRatioMode;
TInt mode;
@@ -104,6 +106,10 @@
*/
const TUint32 KHbDefaultThemeCenrepKey = 0x2;
+/**
+ * During batch unload, send up to this number of icon data in one
+ * batch (i.e. one server request).
+ */
+const int BATCH_SIZE_LIMIT = 8;
#endif // HBTHEMECOMMON_SYMBIAN_P_H
-
--- a/src/hbcore/theme/hbthemeutils_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/theme/hbthemeutils_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -321,10 +321,11 @@
*/
bool HbThemeUtils::isThemeValid(const QString &themePath)
{
+ const QString themePathFixed = QDir::fromNativeSeparators(themePath);
// If the theme contains .themeindex and index.theme files
// it will be assumed valid
- QString indexFile = QString(themePath).replace("/icons/", QString('/')) + ".themeindex";
- return (QFile::exists(themePath + "/index.theme") && QFile::exists(indexFile));
+ QString indexFile = QString(themePathFixed).replace("/icons/", QString('/')) + ".themeindex";
+ return (QFile::exists(themePathFixed + "/index.theme") && QFile::exists(indexFile));
}
HbThemeIndexInfo HbThemeUtils::getThemeIndexInfo(const HbThemeType &type)
--- a/src/hbcore/utils/hbfontspec.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbfontspec.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -190,15 +190,15 @@
if (mRole != HbFontSpec::Undefined) {
tInfo->roleToTypeface(mRole, typefaceFamily, weight);
- mFontName = typefaceFamily;
- } else if (!tInfo->containsFamily(typefaceFamily)) {
- QString aliasFamily;
- if (tInfo->tryGetFamilyFromAliasName(typefaceFamily, aliasFamily, weight)) {
- typefaceFamily = aliasFamily;
- }
- } else {
- weight = tInfo->getWeight(typefaceFamily);
- }
+ mFontName = typefaceFamily;
+ } else if (!tInfo->containsFamily(typefaceFamily)) {
+ QString aliasFamily;
+ if (tInfo->tryGetFamilyFromAliasName(typefaceFamily, aliasFamily, weight)) {
+ typefaceFamily = aliasFamily;
+ }
+ } else {
+ weight = tInfo->getWeight(typefaceFamily);
+ }
QFont font(typefaceFamily);
font.setWeight(weight);
--- a/src/hbcore/utils/hbfontspec.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbfontspec.h Thu Sep 02 20:44:51 2010 +0300
@@ -53,7 +53,7 @@
explicit HbFontSpec(HbFontSpec::Role role);
HbFontSpec(const HbFontSpec &other);
- HbFontSpec(const QString fontName);
+ HbFontSpec(const QString fontName);
HbFontSpec &operator=(const HbFontSpec &other);
~HbFontSpec();
@@ -72,8 +72,8 @@
bool operator==(const HbFontSpec &other) const;
bool operator!=(const HbFontSpec &other) const;
- QString typefaceFamily() const;
- void setTypefaceFamily(QString fontName);
+ QString typefaceFamily() const;
+ void setTypefaceFamily(QString fontName);
private:
HbFontSpecPrivate *d;
};
--- a/src/hbcore/utils/hbtextmeasurementutility.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtextmeasurementutility.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -244,11 +244,11 @@
return;
#else
QList<HbMainWindow*> mainWindows;
- if (mWindow) {
- mainWindows.append(mWindow);
- } else {
- mainWindows = hbInstance->allMainWindows();
- }
+ if (mWindow) {
+ mainWindows.append(mWindow);
+ } else {
+ mainWindows = hbInstance->allMainWindows();
+ }
foreach (HbMainWindow* mainWindow, mainWindows ) {
QGraphicsScene* scene = mainWindow->scene(); //krazy:exclude=qclasses
QList<QGraphicsItem*> sceneItems = scene->items();
--- a/src/hbcore/utils/hbtextutils_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtextutils_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -45,7 +45,7 @@
\param length Length of the text.
\param found If non-null, returns true if the directionality could be
determined from \a text.
-\return \c true if the directionality is right to left. If the directionality
+\return \c true if the directionality is right to left. If the directionality
cannot be determined solely from this text, \c false is returned. This is the
implicit directionality of text that is composed entirely of neutrals.
*/
@@ -55,34 +55,34 @@
if (found) {
*found = true;
}
-
- qint32 lastUtf16 = 0;
- const ushort* end = text + length;
+
+ qint32 lastUtf16 = 0;
+ const ushort* end = text + length;
- while (text != end && *text)
- {
- qint32 code = *text++;
- if ((code & 0xFFFFFC00) == 0xD800 &&
+ while (text != end && *text)
+ {
+ qint32 code = *text++;
+ if ((code & 0xFFFFFC00) == 0xD800 &&
(lastUtf16 & 0xFFFFFC00) == 0xDC00)
- {
- code = (code << 10) + (lastUtf16 & 0x3FF)
- + (0x10000 - 0xD800*0x400);
- }
- lastUtf16 = code;
- QChar c(code);
- switch(c.direction())
- {
- case QChar::DirL:
- return false;
- case QChar::DirR:
- case QChar::DirAL:
- return true;
- default:
- break;
- }
- }
- if (found) {
- *found = false;
+ {
+ code = (code << 10) + (lastUtf16 & 0x3FF)
+ + (0x10000 - 0xD800*0x400);
+ }
+ lastUtf16 = code;
+ QChar c(code);
+ switch(c.direction())
+ {
+ case QChar::DirL:
+ return false;
+ case QChar::DirR:
+ case QChar::DirAL:
+ return true;
+ default:
+ break;
+ }
+ }
+ if (found) {
+ *found = false;
}
- return false;
+ return false;
}
--- a/src/hbcore/utils/hbtypefaceinfo.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtypefaceinfo.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -67,7 +67,7 @@
if ( !mTypefaceVector ) {
HbTypefaceInfoDatabase *heapDatabase = HbTypefaceInfoDatabase::instance( HbMemoryManager::HeapMemory );
- if ( heapDatabase ){
+ if ( heapDatabase ){
mTypefaceVector = HbMemoryUtils::getAddress<HbTypefaceInfoVector>(HbMemoryManager::HeapMemory,
heapDatabase->typefaceInfoVectorOffset());
}
@@ -97,7 +97,7 @@
: QObject( parent ),
d( new HbTypefaceInfoPrivate )
{
- d->initialize();
+ d->initialize();
}
@@ -114,7 +114,7 @@
}
for( int i = 0; i < mTypefaceVector->size(); i++ ) {
if (mTypefaceVector->at(i).mRoleEnum == role &&
- mTypefaceVector->at(i).mIsAlias == false) {
+ mTypefaceVector->at(i).mIsAlias == false) {
index = i;
return true;
}
@@ -139,97 +139,97 @@
}
bool HbTypefaceInfo::containsFamily(const QString &typefaceFamily) const
{
- int dummy;
- return d->containsFamily(typefaceFamily, dummy);
+ int dummy;
+ return d->containsFamily(typefaceFamily, dummy);
}
bool HbTypefaceInfo::tryGetFamilyFromAliasName(
- const QString &aliasFamily,
- QString &typefaceFamily,
- int &weight) const
+ const QString &aliasFamily,
+ QString &typefaceFamily,
+ int &weight) const
{
for (int i = 0; i < d->mTypefaceVector->size(); i++) {
if (d->mTypefaceVector->at(i).mIsAlias == true &&
!aliasFamily.compare(d->mTypefaceVector->at(i).mAliasedFamily, Qt::CaseInsensitive)) {
typefaceFamily = d->mTypefaceVector->at(i).mFamily ;
- weight = d->mTypefaceVector->at(i).mIsBold ? QFont::Bold : QFont::Normal;
- return true;
+ weight = d->mTypefaceVector->at(i).mIsBold ? QFont::Bold : QFont::Normal;
+ return true;
}
}
- return false;
+ return false;
}
int HbTypefaceInfo::getWeight(const QString &typefaceFamily) const
{
- int index, weight;
- if (d->containsFamily( typefaceFamily, index)) {
- weight = d->mTypefaceVector->at(index).mIsBold ? QFont::Bold : QFont::Normal;
- }
- else {
- weight = QFont::Normal;
- }
- return weight;
+ int index, weight;
+ if (d->containsFamily( typefaceFamily, index)) {
+ weight = d->mTypefaceVector->at(index).mIsBold ? QFont::Bold : QFont::Normal;
+ }
+ else {
+ weight = QFont::Normal;
+ }
+ return weight;
}
void HbTypefaceInfo::roleToTypeface(HbFontSpec::Role role, QString& typefaceFamily, int& weight) const
{
int index;
- bool validRole = d->containsRole( role, index );
- if (!validRole) {
- role = HbFontSpec::Undefined;
- validRole = d->containsRole( role, index );
- if( !validRole ) {
- qWarning( "HbTypefaceInfo: cannot find corresponding font role %d, line %d", role, __LINE__ );
- return;
- }
- }
+ bool validRole = d->containsRole( role, index );
+ if (!validRole) {
+ role = HbFontSpec::Undefined;
+ validRole = d->containsRole( role, index );
+ if( !validRole ) {
+ qWarning( "HbTypefaceInfo: cannot find corresponding font role %d, line %d", role, __LINE__ );
+ return;
+ }
+ }
- typefaceFamily = d->mTypefaceVector->at( index ).mFamily;
- weight = d->mTypefaceVector->at( index ).mIsBold ? QFont::Bold : QFont::Normal;
+ typefaceFamily = d->mTypefaceVector->at( index ).mFamily;
+ weight = d->mTypefaceVector->at( index ).mIsBold ? QFont::Bold : QFont::Normal;
- return;
+ return;
}
int HbTypefaceInfo::textHeightToSizeInPixels(
- const QString& typefaceFamily,
- int weight,
- qreal textHeight) const
+ const QString& typefaceFamily,
+ int weight,
+ qreal textHeight) const
{
- Q_UNUSED(weight);
- int index;
- int heightIndex;
+ Q_UNUSED(weight);
+ int index;
+ int heightIndex;
- if (! d->containsFamily( typefaceFamily, index )) {
- // need to generate on server size, not supported yet
- qWarning( "HbTypefaceInfo:textHeightToSizeInPixels no font family %s, line %d", typefaceFamily.toLatin1().data(), __LINE__ );
- return 1;
- }
+ if (! d->containsFamily( typefaceFamily, index )) {
+ // need to generate on server size, not supported yet
+ qWarning( "HbTypefaceInfo:textHeightToSizeInPixels no font family %s, line %d", typefaceFamily.toLatin1().data(), __LINE__ );
+ return 1;
+ }
- HbTypefaceInfoItem *item = &( d->mTypefaceVector->at( index ) );
+ HbTypefaceInfoItem *item = &( d->mTypefaceVector->at( index ) );
- int size(-1);
+ int size(-1);
- int flooredPaneHeight = qRound(textHeight-0.5);
- if ( item->tableContainsHeight( flooredPaneHeight, heightIndex ) ) {
- size = item->mDownSizeTable.at( heightIndex ).pixelSize;
- } else if ( textHeight < item->mLowestExtent ) { // Assumed that downsize info goes quite low, below really usable fonts
- size = qRound( textHeight );
- } else if ( textHeight < item->mHighestExtent ) { // interpolate. May fail and leave size unset.
- int indexLowerB = -1;
- int indexUpperB = -1;
- int lowerBValue = 0xffffff;
- int upperBValue = 0xffffff;
- for( int i = 0; i < item->mDownSizeTable.size(); i++ ) {
- int current = item->mDownSizeTable.at( i ).textHeight;
- if( ( current < lowerBValue ) && ( current >= flooredPaneHeight ) ) {
- lowerBValue = current;
- indexLowerB = i;
- }
+ int flooredPaneHeight = qRound(textHeight-0.5);
+ if ( item->tableContainsHeight( flooredPaneHeight, heightIndex ) ) {
+ size = item->mDownSizeTable.at( heightIndex ).pixelSize;
+ } else if ( textHeight < item->mLowestExtent ) { // Assumed that downsize info goes quite low, below really usable fonts
+ size = qRound( textHeight );
+ } else if ( textHeight < item->mHighestExtent ) { // interpolate. May fail and leave size unset.
+ int indexLowerB = -1;
+ int indexUpperB = -1;
+ int lowerBValue = 0xffffff;
+ int upperBValue = 0xffffff;
+ for( int i = 0; i < item->mDownSizeTable.size(); i++ ) {
+ int current = item->mDownSizeTable.at( i ).textHeight;
+ if( ( current < lowerBValue ) && ( current >= flooredPaneHeight ) ) {
+ lowerBValue = current;
+ indexLowerB = i;
+ }
if( ( current < upperBValue ) && ( current > flooredPaneHeight ) ) {
upperBValue = current;
indexUpperB = i;
}
- }
+ }
- if( ( indexUpperB != -1 ) && ( indexLowerB != -1 ) ) {
+ if( ( indexUpperB != -1 ) && ( indexLowerB != -1 ) ) {
int k1 = lowerBValue;
int v1 = item->mDownSizeTable.at( indexLowerB ).pixelSize;
int k2 = upperBValue;
@@ -238,27 +238,27 @@
if (diff > 0) {
size = qRound(v1 + (flooredPaneHeight - k1)*(v2 - v1)/diff);
}
- }
- }
- // Come here for text heights that are too large for the table, or for failure of interpolation
- if (size == -1) {
- int highestExtentIndex;
- if( ! item->tableContainsHeight( item->mHighestExtent, highestExtentIndex ) ) {
- qWarning( "HbTypefaceInfo:textHeightToSizeInPixels something wrong with downsize table, line %d", __LINE__ );
- return 1;
- }
+ }
+ }
+ // Come here for text heights that are too large for the table, or for failure of interpolation
+ if (size == -1) {
+ int highestExtentIndex;
+ if( ! item->tableContainsHeight( item->mHighestExtent, highestExtentIndex ) ) {
+ qWarning( "HbTypefaceInfo:textHeightToSizeInPixels something wrong with downsize table, line %d", __LINE__ );
+ return 1;
+ }
- size = qRound( textHeight
- * item->mDownSizeTable.at( highestExtentIndex ).pixelSize
- / item->mHighestExtent);
- }
+ size = qRound( textHeight
+ * item->mDownSizeTable.at( highestExtentIndex ).pixelSize
+ / item->mHighestExtent);
+ }
// If the caller intends non-zero size, and zero would be returned by downsizing, then return 1.
// This avoids QFont's special treatment of zero size.
if(textHeight > 0 && size <= 0) {
size = 1;
}
- return size;
+ return size;
}
#include "hbtypefaceinfo.moc"
--- a/src/hbcore/utils/hbtypefaceinfo_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtypefaceinfo_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -40,11 +40,11 @@
HbTypefaceInfo(QObject *parent = 0);
~HbTypefaceInfo();
- void roleToTypeface(HbFontSpec::Role role, QString &typefaceFamily, int &weight) const;
- int textHeightToSizeInPixels(const QString &typefaceFamily, int weight, qreal textHeight) const;
- bool tryGetFamilyFromAliasName(const QString &aliasFamily, QString &typefaceFamily, int &weight) const;
- bool containsFamily(const QString& typefaceFamily) const;
- int getWeight(const QString& typefaceFamily) const;
+ void roleToTypeface(HbFontSpec::Role role, QString &typefaceFamily, int &weight) const;
+ int textHeightToSizeInPixels(const QString &typefaceFamily, int weight, qreal textHeight) const;
+ bool tryGetFamilyFromAliasName(const QString &aliasFamily, QString &typefaceFamily, int &weight) const;
+ bool containsFamily(const QString& typefaceFamily) const;
+ int getWeight(const QString& typefaceFamily) const;
private:
mutable HbTypefaceInfoPrivate *d;
--- a/src/hbcore/utils/hbtypefaceinfodatabase_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtypefaceinfodatabase_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,11 +36,11 @@
#ifdef Q_OS_SYMBIAN
- #define HB_FONTS_WRITABLE_PATH QString("c:\\hb\\fonts")
+ #define HB_FONTS_WRITABLE_PATH QString("c:\\hb\\fonts")
#else
- #ifndef Q_OS_UNIX
- #define HB_FONTS_WRITABLE_PATH QString("c:\\Hb\\lib")
- #endif
+ #ifndef Q_OS_UNIX
+ #define HB_FONTS_WRITABLE_PATH QString("c:\\Hb\\lib")
+ #endif
#endif
// Recognized texts for values of role strings
@@ -94,12 +94,12 @@
static bool isAliasRole(const QString &roleName)
{
- bool alias(false); // return value
+ bool alias(false); // return value
QString name = roleName.toLower();
if (name == ALIAS_STRING) {
alias = true;
}
- return alias;
+ return alias;
}
/*!
Returns path to a writable location that should be used as a base storage folder for
@@ -113,11 +113,11 @@
if (QString(HB_BUILD_DIR) == QString(HB_INSTALL_DIR)) {
// This is local build so also use local writable path.
return QString(HB_INSTALL_DIR) + QDir::separator() + QString(".hb")
- + QDir::separator() + QString("fonts");
+ + QDir::separator() + QString("fonts");
} else {
#ifdef Q_OS_UNIX
return QDir::homePath() + QDir::separator() + QString(".hb")
- + QDir::separator() + QString("fonts");
+ + QDir::separator() + QString("fonts");
#else
return HB_FONTS_WRITABLE_PATH ;
#endif
@@ -184,16 +184,16 @@
item.mRoleEnum = roleEnum;
item.mFamily = family;
item.mIsBold = isBold;
- item.mIsAlias = false;
+ item.mIsAlias = false;
mTypefaceInfoVector->append( item );
}
else if (isAliasRole(role)) {
- item.mRoleEnum = HbFontSpec::Undefined;
- item.mFamily = aliasFamily;
- item.mAliasedFamily = family;
- item.mIsBold = isBold;
- item.mIsAlias = true;
- mTypefaceInfoVector->append( item );
+ item.mRoleEnum = HbFontSpec::Undefined;
+ item.mFamily = aliasFamily;
+ item.mAliasedFamily = family;
+ item.mIsBold = isBold;
+ item.mIsAlias = true;
+ mTypefaceInfoVector->append( item );
}
}
@@ -243,36 +243,36 @@
bool HbTypefaceInfoDatabase::readTypefaceMetricsFile( HbTypefaceXmlParser *parser,
- HbTypefaceInfoItem *typeFaceInfoItem )
+ HbTypefaceInfoItem *typeFaceInfoItem )
{
- Q_ASSERT (parser && typeFaceInfoItem);
+ Q_ASSERT (parser && typeFaceInfoItem);
- int numPoints(0);
- QString typefaceMetricsFileName;
+ int numPoints(0);
+ QString typefaceMetricsFileName;
- typefaceMetricsFileName.append(TYPEFACE_RESOURCE_FOLDER);
- typefaceMetricsFileName.append(QDir::separator());
- typefaceMetricsFileName.append(TYPEFACE_METRICS_FILE_STEM);
+ typefaceMetricsFileName.append(TYPEFACE_RESOURCE_FOLDER);
+ typefaceMetricsFileName.append(QDir::separator());
+ typefaceMetricsFileName.append(TYPEFACE_METRICS_FILE_STEM);
- // replace whitespace with underscores and append
+ // replace whitespace with underscores and append
QString temp = typeFaceInfoItem->mFamily;
temp = temp.toLower().replace(QRegExp("\\s+"), QString("_"));
typefaceMetricsFileName.append( temp );
typefaceMetricsFileName.append(".xml");
- QFile *file = new QFile(typefaceMetricsFileName);
- if( !(file && file->exists()) ) {
- typefaceMetricsFileName = writablePath();
- typefaceMetricsFileName.append(QDir::separator());
- typefaceMetricsFileName.append(TYPEFACE_METRICS_FILE_STEM);
+ QFile *file = new QFile(typefaceMetricsFileName);
+ if( !(file && file->exists()) ) {
+ typefaceMetricsFileName = writablePath();
+ typefaceMetricsFileName.append(QDir::separator());
+ typefaceMetricsFileName.append(TYPEFACE_METRICS_FILE_STEM);
typefaceMetricsFileName.append( temp );
typefaceMetricsFileName.append(".xml");
- }
- delete file;
+ }
+ delete file;
#ifdef HBTYPEFACEINFO_DEBUG_ENABLE
qDebug("HbDownsizeInfo::readTypefaceMetricsFile: typeface metric filename: %s",
- typefaceMetricsFileName.toAscii().constData());
+ typefaceMetricsFileName.toAscii().constData());
#endif
parser->setFilePath(typefaceMetricsFileName);
@@ -365,10 +365,10 @@
void HbTypefaceInfoDatabase::outputMetrics( HbTypefaceInfoItem *typeFaceInfoItem ) const
{
QString filePath = writablePath();
- QDir dir(filePath);
- if(!dir.exists()) {
- dir.mkpath(filePath + QDir::separator() );
- }
+ QDir dir(filePath);
+ if(!dir.exists()) {
+ dir.mkpath(filePath + QDir::separator() );
+ }
filePath.append(QDir::separator());
filePath.append("typeface_metrics_");
--- a/src/hbcore/utils/hbtypefaceinfodatabase_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtypefaceinfodatabase_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -36,8 +36,8 @@
HbFontSpec::Role mRoleEnum;
HbString mFamily;
bool mIsBold;
- bool mIsAlias;
- HbString mAliasedFamily;
+ bool mIsAlias;
+ HbString mAliasedFamily;
struct HbTypefaceMeasureInfoStruct
{
--- a/src/hbcore/utils/hbtypefacexmlparser.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtypefacexmlparser.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -73,10 +73,10 @@
*/
HbTypefaceXmlParser::~HbTypefaceXmlParser()
{
- if (mFile) {
- delete mFile;
+ if (mFile) {
+ delete mFile;
mFile = 0;
- }
+ }
}
/*!
@@ -86,7 +86,7 @@
*/
void HbTypefaceXmlParser::setFilePath(const QString& path)
{
- mFilePath = path;
+ mFilePath = path;
}
/*!
@@ -98,63 +98,63 @@
*/
bool HbTypefaceXmlParser::init()
{
- QString filePath(":typefaces.xml");
+ QString filePath(":typefaces.xml");
- // If one has been set by API
- if ( !mFilePath.isEmpty() ) {
- filePath = mFilePath;
- }
- else {
- // Check if resource directory has got the typefaces.xml file.
- // If yes, then use the one present in the resource directory
- QString resourceFilePath(TYPEFACE_RESOURCE_FOLDER);
- resourceFilePath.append(QDir::separator());
- resourceFilePath.append("typefaces.xml");
+ // If one has been set by API
+ if ( !mFilePath.isEmpty() ) {
+ filePath = mFilePath;
+ }
+ else {
+ // Check if resource directory has got the typefaces.xml file.
+ // If yes, then use the one present in the resource directory
+ QString resourceFilePath(TYPEFACE_RESOURCE_FOLDER);
+ resourceFilePath.append(QDir::separator());
+ resourceFilePath.append("typefaces.xml");
- QFile *file = new QFile(resourceFilePath);
- if( file && file->exists() ) {
- filePath = resourceFilePath;
- }
- delete file;
- }
-
- if (mFile){
- delete mFile;
- }
+ QFile *file = new QFile(resourceFilePath);
+ if( file && file->exists() ) {
+ filePath = resourceFilePath;
+ }
+ delete file;
+ }
+
+ if (mFile){
+ delete mFile;
+ }
- mFile = new QFile(filePath);
- // Trying to see if the absolute path can be determined
- QString name2 = mFile->fileName();
+ mFile = new QFile(filePath);
+ // Trying to see if the absolute path can be determined
+ QString name2 = mFile->fileName();
- if( !mFile->exists() ) {
- qWarning("HbTypefaceXmlParser Warning: XML-file at %s does not exist", qPrintable(filePath));
- return false;
- }
+ if( !mFile->exists() ) {
+ qWarning("HbTypefaceXmlParser Warning: XML-file at %s does not exist", qPrintable(filePath));
+ return false;
+ }
- // not yet parsed, parse and add data
- if (!mFile->open(QFile::ReadOnly | QFile::Text)) {
- qWarning("HbEffect Warning: XML-file at %s opening failed", qPrintable(filePath));
- return false;
- }
+ // not yet parsed, parse and add data
+ if (!mFile->open(QFile::ReadOnly | QFile::Text)) {
+ qWarning("HbEffect Warning: XML-file at %s opening failed", qPrintable(filePath));
+ return false;
+ }
- setDevice(mFile);
- bool positioned(false);
- while (!atEnd() && !positioned) {
- QXmlStreamReader::TokenType type = readNext();
+ setDevice(mFile);
+ bool positioned(false);
+ while (!atEnd() && !positioned) {
+ QXmlStreamReader::TokenType type = readNext();
if(type == QXmlStreamReader::Invalid)
break;
- if (isStartElement()) {
- if (name() == TYPEFACE_INFO) {
- positioned = true;
- }
- else {
- raiseError("HbTypefaceXmlParser::read The document is not a valid typeface information xml file.");
- }
- }
- }
+ if (isStartElement()) {
+ if (name() == TYPEFACE_INFO) {
+ positioned = true;
+ }
+ else {
+ raiseError("HbTypefaceXmlParser::read The document is not a valid typeface information xml file.");
+ }
+ }
+ }
- return !error() && positioned;
+ return !error() && positioned;
}
/*!
@@ -162,21 +162,21 @@
*/
bool HbTypefaceXmlParser::readAndPositionTypefaceSet()
{
- Q_ASSERT(isStartElement() && name() == TYPEFACE_INFO);
- bool positioned(false);
- while (!atEnd() && !positioned) {
- QXmlStreamReader::TokenType type = readNext();
+ Q_ASSERT(isStartElement() && name() == TYPEFACE_INFO);
+ bool positioned(false);
+ while (!atEnd() && !positioned) {
+ QXmlStreamReader::TokenType type = readNext();
if(type == QXmlStreamReader::Invalid)
break;
- if (isStartElement()) {
- if (name() == TYPEFACE_SET) {
- // find the correct language and country
- positioned = matchLanguageAndCountry();
- }
- }
- }
- return positioned;
+ if (isStartElement()) {
+ if (name() == TYPEFACE_SET) {
+ // find the correct language and country
+ positioned = matchLanguageAndCountry();
+ }
+ }
+ }
+ return positioned;
}
/*
@@ -184,49 +184,49 @@
*/
bool HbTypefaceXmlParser::matchLanguageAndCountry() const
{
- Q_ASSERT(isStartElement() && name() == TYPEFACE_SET);
- QString language, country;
- bool positioned(false);
+ Q_ASSERT(isStartElement() && name() == TYPEFACE_SET);
+ QString language, country;
+ bool positioned(false);
- HbExtendedLocale systemLocale = HbExtendedLocale::system();
- QString attrName, typefaceLocaleName, systemLocaleName;
- QXmlStreamAttributes attrs = attributes();
+ HbExtendedLocale systemLocale = HbExtendedLocale::system();
+ QString attrName, typefaceLocaleName, systemLocaleName;
+ QXmlStreamAttributes attrs = attributes();
- foreach (const QXmlStreamAttribute &attr, attrs) {
- attrName = attr.name().toString();
+ foreach (const QXmlStreamAttribute &attr, attrs) {
+ attrName = attr.name().toString();
- if (attrName == TYPEFACE_LANGUAGE_ATT) {
- language = attr.value().toString().toLower();
- }
- else if (attrName == TYPEFACE_COUNTRY_ATT) {
- country = attr.value().toString().toUpper();
- }
- else {
- qDebug("Unrecognized attribute");
- }
- }
-
+ if (attrName == TYPEFACE_LANGUAGE_ATT) {
+ language = attr.value().toString().toLower();
+ }
+ else if (attrName == TYPEFACE_COUNTRY_ATT) {
+ country = attr.value().toString().toUpper();
+ }
+ else {
+ qDebug("Unrecognized attribute");
+ }
+ }
+
- // Construct the locale with the typeface locale info
- if (!language.isEmpty()) {
- if (!country.isEmpty()) {
- typefaceLocaleName = language + '_' + country;
- systemLocaleName = systemLocale.name();
- }
- else {
- typefaceLocaleName = language;
- // Language is a lowercase, two-letter, ISO 639 language code
- systemLocaleName = systemLocale.name().left(2);
- }
- }
- else {
- positioned = true;
- }
+ // Construct the locale with the typeface locale info
+ if (!language.isEmpty()) {
+ if (!country.isEmpty()) {
+ typefaceLocaleName = language + '_' + country;
+ systemLocaleName = systemLocale.name();
+ }
+ else {
+ typefaceLocaleName = language;
+ // Language is a lowercase, two-letter, ISO 639 language code
+ systemLocaleName = systemLocale.name().left(2);
+ }
+ }
+ else {
+ positioned = true;
+ }
- if (!positioned && typefaceLocaleName.compare(systemLocaleName, Qt::CaseInsensitive) == 0) {
- positioned = true;
- }
- return positioned;
+ if (!positioned && typefaceLocaleName.compare(systemLocaleName, Qt::CaseInsensitive) == 0) {
+ positioned = true;
+ }
+ return positioned;
}
/*!
@@ -236,41 +236,41 @@
*/
HbTypefaceXmlParser::StartElement HbTypefaceXmlParser::readToStartElement()
{
- StartElement startElement(NoStartElement);
+ StartElement startElement(NoStartElement);
- bool atEnd(false);
+ bool atEnd(false);
while (!atEnd && startElement == NoStartElement) {
- QXmlStreamReader::TokenType type = readNext();
+ QXmlStreamReader::TokenType type = readNext();
if(type == QXmlStreamReader::Invalid)
break;
- if (isStartElement()) {
+ if (isStartElement()) {
- if (name() == TYPEFACE_METRICS) {
- startElement = TypefaceMetrics;
- // Grab the typeface name as "current"
- QXmlStreamAttributes attrs = attributes();
- foreach (const QXmlStreamAttribute &attr, attrs) {
+ if (name() == TYPEFACE_METRICS) {
+ startElement = TypefaceMetrics;
+ // Grab the typeface name as "current"
+ QXmlStreamAttributes attrs = attributes();
+ foreach (const QXmlStreamAttribute &attr, attrs) {
- if (attr.name().toString() == TYPEFACE_FAMILY_ATT) {
- mCurrentFamily = attr.value().toString();
- if (!mCurrentFamily.isEmpty()) {
- startElement = TypefaceMetrics; // Now we have a workable start element
- }
- }
- }
+ if (attr.name().toString() == TYPEFACE_FAMILY_ATT) {
+ mCurrentFamily = attr.value().toString();
+ if (!mCurrentFamily.isEmpty()) {
+ startElement = TypefaceMetrics; // Now we have a workable start element
+ }
+ }
+ }
- }
- else if ( name() == TYPEFACE_SET) {
- startElement = TypefaceSet;
- }
- }
+ }
+ else if ( name() == TYPEFACE_SET) {
+ startElement = TypefaceSet;
+ }
+ }
- else {
- // Nothing. Some other type of element;
- }
+ else {
+ // Nothing. Some other type of element;
+ }
}
return startElement;
@@ -284,7 +284,7 @@
name to a typeface family.
The mapping also indicates if the typeface should be bold by default
- \sa init()
+ \sa init()
\param role The name of the role mapped from
\param family The typeface family name mapped to the role
\param bold true if typeface is to be used bold by default
@@ -292,28 +292,28 @@
*/
bool HbTypefaceXmlParser::readMapping(QString &role, QString &family, QString &aliasFamily, bool &bold)
{
- bool atEnd(false);
- bool success(false);
+ bool atEnd(false);
+ bool success(false);
while (!atEnd && !success ) {
- QXmlStreamReader::TokenType type = readNext();
+ QXmlStreamReader::TokenType type = readNext();
if(type == QXmlStreamReader::Invalid)
break;
- if (isEndElement()) {
- if(name() == TYPEFACE_SET) {
- atEnd = true;
- }
- }
- else if (isStartElement()) {
- if (name() == TYPEFACE_MAPPING) {
- success = readMapItem(role, family, aliasFamily, bold);
- }
- }
+ if (isEndElement()) {
+ if(name() == TYPEFACE_SET) {
+ atEnd = true;
+ }
+ }
+ else if (isStartElement()) {
+ if (name() == TYPEFACE_MAPPING) {
+ success = readMapItem(role, family, aliasFamily, bold);
+ }
+ }
- else {
- // Nothing. Some other type of element;
- }
+ else {
+ // Nothing. Some other type of element;
+ }
}
return success;
@@ -330,33 +330,33 @@
bool haveFamily(false);
QString attrName;
- QXmlStreamAttributes attrs = attributes();
+ QXmlStreamAttributes attrs = attributes();
- foreach (const QXmlStreamAttribute &attr, attrs) {
- attrName = attr.name().toString();
+ foreach (const QXmlStreamAttribute &attr, attrs) {
+ attrName = attr.name().toString();
- if (attrName == TYPEFACE_ROLE_ATT) {
- role = attr.value().toString();
+ if (attrName == TYPEFACE_ROLE_ATT) {
+ role = attr.value().toString();
if (!role.isEmpty()) {
- haveRole = true;
+ haveRole = true;
}
- }
- else if (attrName == TYPEFACE_FAMILY_ATT) {
- family = attr.value().toString();
+ }
+ else if (attrName == TYPEFACE_FAMILY_ATT) {
+ family = attr.value().toString();
if (!role.isEmpty()) {
- haveFamily = true;
+ haveFamily = true;
}
- }
- else if (attrName == TYPEFACE_WEIGHT_ATT) {
- if (attr.value().toString() == TYPEFACE_ATT_VAL_BOLD)
- isBold = true;
- }
- else if (attrName == TYPEFACE_ALIASFAMILY_ATT) {
- aliasFamily = attr.value().toString();
- }
- else {
- qDebug("Unrecognized attribute");
- }
+ }
+ else if (attrName == TYPEFACE_WEIGHT_ATT) {
+ if (attr.value().toString() == TYPEFACE_ATT_VAL_BOLD)
+ isBold = true;
+ }
+ else if (attrName == TYPEFACE_ALIASFAMILY_ATT) {
+ aliasFamily = attr.value().toString();
+ }
+ else {
+ qDebug("Unrecognized attribute");
+ }
}
return haveRole && haveFamily;
@@ -375,31 +375,31 @@
*/
bool HbTypefaceXmlParser::readMetric(int &textHeight, int &size, int&baseline)
{
- bool atEnd(false);
- bool success(false);
+ bool atEnd(false);
+ bool success(false);
- textHeight = -1;
- size = -1;
- baseline = -1;
+ textHeight = -1;
+ size = -1;
+ baseline = -1;
while (!atEnd && !success) {
- QXmlStreamReader::TokenType type = readNext();
+ QXmlStreamReader::TokenType type = readNext();
if(type == QXmlStreamReader::Invalid)
break;
- if (isEndElement()) {
- if(name() == TYPEFACE_METRICS) {
- atEnd = true;
- }
- }
- else if (isStartElement()) {
- if (name() == TYPEFACE_METRICS_POINT) {
- success = readMetricItem(textHeight, size, baseline);
- }
- }
- else {
- // Nothing. Some other type of element;
- }
+ if (isEndElement()) {
+ if(name() == TYPEFACE_METRICS) {
+ atEnd = true;
+ }
+ }
+ else if (isStartElement()) {
+ if (name() == TYPEFACE_METRICS_POINT) {
+ success = readMetricItem(textHeight, size, baseline);
+ }
+ }
+ else {
+ // Nothing. Some other type of element;
+ }
}
return success;
@@ -415,24 +415,24 @@
QString attrName;
QString attrValue;
- QXmlStreamAttributes attrs = attributes();
+ QXmlStreamAttributes attrs = attributes();
- foreach (const QXmlStreamAttribute &attr, attrs) {
- attrName = attr.name().toString();
- attrValue = attr.value().toString();
+ foreach (const QXmlStreamAttribute &attr, attrs) {
+ attrName = attr.name().toString();
+ attrValue = attr.value().toString();
- if (attrName == TYPEFACE_TEXTHEIGHT_ATT) {
- textHeight = attrValue.toInt();
- }
- else if (attrName == TYPEFACE_SIZE_ATT) {
- size = attrValue.toInt();
- }
- else if (attrName == TYPEFACE_BASELINE_ATT) {
- baseline = attrValue.toInt();
- }
- else {
- qDebug() << "Unrecognized attribute: " << attrName;
- }
+ if (attrName == TYPEFACE_TEXTHEIGHT_ATT) {
+ textHeight = attrValue.toInt();
+ }
+ else if (attrName == TYPEFACE_SIZE_ATT) {
+ size = attrValue.toInt();
+ }
+ else if (attrName == TYPEFACE_BASELINE_ATT) {
+ baseline = attrValue.toInt();
+ }
+ else {
+ qDebug() << "Unrecognized attribute: " << attrName;
+ }
}
return (textHeight>0 && size>0);
@@ -443,10 +443,10 @@
*/
void HbTypefaceXmlParser::close()
{
- clear();
- if (mFile && mFile->isOpen()) {
- mFile->close(); // Device is owned externally from streamreader
- }
+ clear();
+ if (mFile && mFile->isOpen()) {
+ mFile->close(); // Device is owned externally from streamreader
+ }
}
/*!
@@ -456,7 +456,7 @@
*/
const QString HbTypefaceXmlParser::metricsTypefaceFamily() const
{
- return mCurrentFamily;
+ return mCurrentFamily;
}
// End of File
--- a/src/hbcore/utils/hbtypefacexmlparser_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbtypefacexmlparser_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -37,10 +37,10 @@
class QIODevice;
QT_END_NAMESPACE
-#ifdef Q_OS_SYMBIAN
- #define TYPEFACE_RESOURCE_FOLDER "z:\\resource\\fonts"
+#ifdef Q_OS_SYMBIAN
+ #define TYPEFACE_RESOURCE_FOLDER "z:\\resource\\fonts"
#else
- #define TYPEFACE_RESOURCE_FOLDER HB_RESOURCES_DIR
+ #define TYPEFACE_RESOURCE_FOLDER HB_RESOURCES_DIR
#endif
class HB_AUTOTEST_EXPORT HbTypefaceXmlParser : public QXmlStreamReader
@@ -65,18 +65,18 @@
bool readMapping(QString &role, QString &family, QString &aliasFamily, bool &isBold);
bool readMetric(int &textHeight, int &size, int &baseline);
const QString metricsTypefaceFamily() const;
- bool readAndPositionTypefaceSet();
+ bool readAndPositionTypefaceSet();
void close();
private:
bool readMapItem(QString &role, QString &family, QString &aliasFamily, bool &isBold);
bool readMetricItem(int &textHeight, int &size, int &baseline);
- bool matchLanguageAndCountry() const;
+ bool matchLanguageAndCountry() const;
private:
- QString mFilePath;
- QFile *mFile;
- QString mCurrentFamily;
+ QString mFilePath;
+ QFile *mFile;
+ QString mCurrentFamily;
};
#endif // HBTYPEFACEXMLPARSER_P_H
--- a/src/hbcore/utils/hbwidgetloader.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbwidgetloader.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -334,20 +334,20 @@
//qDebug() << "Cached layout currently contains" << HbWidgetLoaderActions::mCacheLayout.count() << "items";
#endif
bool cacheHit = (name == staticCacheName
- && section == staticCacheSection
- && fileName == staticCacheFileName
- && info.lastModified() == staticCacheModified);
-
+ && section == staticCacheSection
+ && fileName == staticCacheFileName
+ && info.lastModified() == staticCacheModified);
+
if (cacheHit){
#ifdef HB_WIDGETLOADER_DEBUG
qDebug() << "Cache hit.";
#endif
layoutDef = staticCacheLayout;
- return true;
+ return true;
}
#ifdef HB_WIDGETLOADER_DEBUG
- qDebug() << "Cache miss, reloading cache data";
+ qDebug() << "Cache miss, reloading cache data";
#endif
QFile file(fileName);
--- a/src/hbcore/utils/hbwidgetloadersyntax_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbwidgetloadersyntax_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -248,7 +248,7 @@
// Construct layout from layout definition
retVal = mActions->createAnchorLayout(QString(), false);
for (int i = 0; retVal && i < layoutDef->anchorItems.count(); i++){
- const HbWidgetLoader::AnchorItem &item = layoutDef->anchorItems.at(i);
+ const HbWidgetLoader::AnchorItem &item = layoutDef->anchorItems.at(i);
HbXmlLengthValue minLength, prefLength, maxLength;
minLength.mType = item.minType;
minLength.mValue = item.minVal;
--- a/src/hbcore/utils/hbxmlloaderabstractsyntax_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbxmlloaderabstractsyntax_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -188,7 +188,7 @@
ATTR_VERTICALPOLICY,
ATTR_HORIZONTALSTRETCH,
ATTR_VERTICALSTRETCH,
- ATTR_COMMENT,
+ ATTR_COMMENT,
ATTR_WIDGET,
ATTR_VERSION,
ATTR_FONTSPECROLE,
--- a/src/hbcore/utils/hbxmlloaderbaseactions_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbxmlloaderbaseactions_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -303,17 +303,17 @@
if( ! mContext.isEmpty() ) {
QByteArray contextUtf8(mContext.toUtf8());
QByteArray valueUtf8(value.toUtf8());
-
- if (comment.isEmpty()) {
- return QCoreApplication::translate(
- contextUtf8.data(), valueUtf8.data(),
- 0, QCoreApplication::UnicodeUTF8 );
- } else {
- QByteArray commentUtf8(comment.toUtf8());
- return QCoreApplication::translate(
- contextUtf8.data(), valueUtf8.data(),
- commentUtf8.data(), QCoreApplication::UnicodeUTF8 );
- }
+
+ if (comment.isEmpty()) {
+ return QCoreApplication::translate(
+ contextUtf8.data(), valueUtf8.data(),
+ 0, QCoreApplication::UnicodeUTF8 );
+ } else {
+ QByteArray commentUtf8(comment.toUtf8());
+ return QCoreApplication::translate(
+ contextUtf8.data(), valueUtf8.data(),
+ commentUtf8.data(), QCoreApplication::UnicodeUTF8 );
+ }
} else {
return value;
}
--- a/src/hbcore/utils/hbxmlloaderbaseactions_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbxmlloaderbaseactions_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -77,7 +77,7 @@
QGraphicsWidget* findWidget(const QString &name);
QObject* findObject(const QString &name);
- public:
+ public:
virtual bool pushDocument(const QString& context);
virtual bool pop(const HbXml::ElementType type);
@@ -96,7 +96,7 @@
bool toPixels(const HbXmlLengthValue &lengthVal, qreal& result) const;
QString translate(const QString &value, const QString &comment);
Hb::Edge getAnchorOppositeEdge( Hb::Edge edge ) const;
-
+
protected:
QString mContext;
--- a/src/hbcore/utils/hbxmlloaderbasesyntax_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/utils/hbxmlloaderbasesyntax_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -463,7 +463,7 @@
bool HbXmlLoaderBaseSyntax::readContainerStartItem()
{
- qWarning() << "Internal error, wrong container type, line " << mReader.lineNumber();
+ qWarning() << "Internal error, wrong container type, line " << mReader.lineNumber();
return false;
}
@@ -479,7 +479,7 @@
bool HbXmlLoaderBaseSyntax::readLayoutStartItem()
{
- qWarning() << "Internal error, wrong layout type, line " << mReader.lineNumber();
+ qWarning() << "Internal error, wrong layout type, line " << mReader.lineNumber();
return false;
}
@@ -716,13 +716,13 @@
bool HbXmlLoaderBaseSyntax::processLayout()
{
- qWarning() << "Unknown layout type, line " << mReader.lineNumber();
+ qWarning() << "Unknown layout type, line " << mReader.lineNumber();
return false;
}
bool HbXmlLoaderBaseSyntax::processContainer()
{
- qWarning() << "Unknown container type, line " << mReader.lineNumber();
+ qWarning() << "Unknown container type, line " << mReader.lineNumber();
return false;
}
--- a/src/hbcore/vkbhosts/hbabstractvkbhost.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/vkbhosts/hbabstractvkbhost.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -249,7 +249,7 @@
// move the container up when hiding the title and status bars
if (isTitleOrStatusBarVisible) {
- mContainerMovementVector.setY(visibleArea.top() - currentView->sceneBoundingRect().top());
+ mContainerMovementVector.setY(visibleArea.top() - currentView->sceneBoundingRect().top());
}
if (visibleArea.contains(containerArea)) {
@@ -274,7 +274,7 @@
QRectF editorGeometry = mInputMethod->focusObject()->editorGeometry();
editorGeometry.adjust(0.0, -HbCursorLineMargin, 0.0, HbCursorLineMargin);
- // calculate the new editor position after hiding the title bars
+ // calculate the new editor position after hiding the title bars
editorGeometry.translate(mContainerMovementVector);
// Then see if the editor is already inside the visible area.
@@ -312,7 +312,7 @@
// calculate the new cursor position after hiding the title bars
microFocus.translate(mContainerMovementVector);
-
+
// Check whether the cursor rectangle is inside visible area.
if (!visibleArea.contains(microFocus)) {
QRectF realEditorGeometry = editorGeometry;
@@ -339,12 +339,12 @@
}
} else {
mContainerMovementVector += QPointF(0.0, visibleArea.bottom() - microFocus.bottom());
- }
+ }
return true;
}
if (adjustContainer && adjustContainerPosition()) {
return true;
- }
+ }
} else {
// It is going to be closed or minimized.
mContainerMovementVector = mOriginalContainerPosition - mContainerMovementStartingPoint;
@@ -464,7 +464,7 @@
mCallback->aboutToClose(q_ptr);
if (prepareAnimations(HbVkbHost::HbVkbStatusClosed)) {
- // show the title bar and status bar when closing the vkb
+ // show the title bar and status bar when closing the vkb
setTitleAndStatusBarVisible(true);
mKeypadStatus = HbVkbHost::HbVkbStatusClosed;
@@ -479,7 +479,7 @@
mCallback->aboutToClose(q_ptr);
if (mContainerWidget->widgetObject()) {
if (prepareAnimations(HbVkbHost::HbVkbStatusMinimized)) {
- //show the title bar and status bar when minimizing the vkb
+ //show the title bar and status bar when minimizing the vkb
setTitleAndStatusBarVisible(true);
mKeypadStatus = HbVkbHost::HbVkbStatusMinimized;
@@ -503,7 +503,7 @@
q_ptr->resizeKeyboard(); // Make sure that the keyboard doesn't exceed given boundaries.
}
if (prepareAnimations(HbVkbHost::HbVkbStatusOpened)) {
- // hide the title bar and status bar when opening the vkb
+ // hide the title bar and status bar when opening the vkb
setTitleAndStatusBarVisible(false);
if (!disableCursorShift()) {
@@ -672,6 +672,12 @@
}
void HbAbstractVkbHostPrivate::setTitleAndStatusBarVisible(bool visible)
{
+ // should not change the title bar and status bar visibility when the keypad is opened from a popup
+ HbPopup *popup = qobject_cast<HbPopup *>(mContainerWidget->widgetObject());
+ if (popup) {
+ return;
+ }
+
HbMainWindow *mainWin = mainWindow();
HbView *currentView;
@@ -690,7 +696,7 @@
}
if (mTitleBarHiddenByVkbHost || mStatusBarHiddenByVkbHost) {
setFlags |= HbView::ViewDisableRelayout;
- }
+ }
currentView->setViewFlags(flags | setFlags);
} else {
if ((flags & HbView::ViewDisableRelayout) && (mTitleBarHiddenByVkbHost ||
@@ -716,7 +722,7 @@
if (!mInputMethod || !mInputMethod->focusObject()) {
return result;
}
- // Calculate the area that remains visible when the keypad is open.
+ // Calculate the area that remains visible when the keypad is open.
QRectF visibleArea = QRectF(0.0, 0.0, mScreenSize.width(), mScreenSize.height() - mKeypad->size().height());
QRectF microFocus = mInputMethod->focusObject()->microFocus();
microFocus.adjust(0.0, -HbEditorExtraMargin, 0.0, HbEditorExtraMargin);
--- a/src/hbcore/vkbhosts/hbabstractvkbhost_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbcore/vkbhosts/hbabstractvkbhost_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -90,7 +90,7 @@
QSizeF screenSize() const;
bool disableCursorShift();
void setTitleAndStatusBarVisible(bool visible);
- virtual bool adjustContainerPosition();
+ virtual bool adjustContainerPosition();
public:
HbAbstractVkbHost *q_ptr;
HbVirtualKeyboard *mCallback;
--- a/src/hbfeedback/player/hbcontinuousfeedback.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbfeedback/player/hbcontinuousfeedback.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -121,7 +121,7 @@
/*!
Returns the timeout value of the feedback in milliseconds. The continuous
feedback is automatically stopped if it is not updated within the timeout
- (by subsequent calls to play()).
+ (by subsequent calls to play()).
\sa setTimeout(), play()
*/
@@ -182,8 +182,8 @@
Sets the timeout value in milliseconds. The continuous feedback is
automatically stopped if the continuous feedback is not updated
within the timeout (by subsequent calls to play()). This is a safety mechanism
- to prevent situations in which the client fails to explicitly stop()
- a continuous feedback effect. The default timeout value is
+ to prevent situations in which the client fails to explicitly stop()
+ a continuous feedback effect. The default timeout value is
HbFeedback::StandardFeedbackTimeout.
\sa timeout()
@@ -212,8 +212,8 @@
/*!
Starts/updates the currently set continuous feedback effect.
The feedback effect will be played until the timeout is reached
- or a call to stop() is made.
-
+ or a call to stop() is made.
+
\sa stop()
*/
void HbContinuousFeedback::play()
--- a/src/hbfeedback/player/hbfeedbackplayer_symbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbfeedback/player/hbfeedbackplayer_symbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -58,7 +58,7 @@
inline TTacticonType convertTacticonToSymbian(HbFeedback::InstantEffect effect);
inline TTouchContinuousFeedback convertToSymbian(HbFeedback::ContinuousEffect effect);
inline TTouchFeedbackType convertToSymbian(HbFeedback::Modalities modalities);
-
+
public:
MTouchFeedback *iFeedback;
RTacticon iTacticon;
@@ -184,7 +184,7 @@
case HbFeedback::BasicKeypad:
instantFeedbackSymbian = ETouchFeedbackBasicKeypad;
break;
- case HbFeedback::MultitouchActivate:
+ case HbFeedback::AdvancedGestureActivate:
instantFeedbackSymbian = ETouchFeedbackMultitouchActivate;
break;
case HbFeedback::RotateStep:
--- a/src/hbinput/defs/bwins/HbInputu.def Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/defs/bwins/HbInputu.def Thu Sep 02 20:44:51 2010 +0300
@@ -2,7 +2,7 @@
?trUtf8@HbCandidateList@@SA?AVQString@@PBD0@Z @ 1 NONAME ; class QString HbCandidateList::trUtf8(char const *, char const *)
?trUtf8@HbCandidateList@@SA?AVQString@@PBD0H@Z @ 2 NONAME ; class QString HbCandidateList::trUtf8(char const *, char const *, int)
??1HbInputCnListPreSymbolModel@@UAE@XZ @ 3 NONAME ABSENT ; HbInputCnListPreSymbolModel::~HbInputCnListPreSymbolModel(void)
- ?staticMetaObject@HbInputVirtualRocker@@2UQMetaObject@@B @ 4 NONAME ; struct QMetaObject const HbInputVirtualRocker::staticMetaObject
+ ?staticMetaObject@HbInputVirtualRocker@@2UQMetaObject@@B @ 4 NONAME ABSENT ; struct QMetaObject const HbInputVirtualRocker::staticMetaObject
??1HbInputCnKeypad@@UAE@XZ @ 5 NONAME ABSENT ; HbInputCnKeypad::~HbInputCnKeypad(void)
?setFade@HbTouchKeypadButton@@QAEX_N@Z @ 6 NONAME ABSENT ; void HbTouchKeypadButton::setFade(bool)
?itemVerticalSpacing@HbInputCnListView@@QBEMXZ @ 7 NONAME ABSENT ; float HbInputCnListView::itemVerticalSpacing(void) const
@@ -57,7 +57,7 @@
??_EHbInputUsedSymbolPane@@UAE@I@Z @ 56 NONAME ABSENT ; HbInputUsedSymbolPane::~HbInputUsedSymbolPane(unsigned int)
?enableLongKeyPressEvents@HbInputSctLandscape@@UAEXAAV?$QList@H@@@Z @ 57 NONAME ABSENT ; void HbInputSctLandscape::enableLongKeyPressEvents(class QList<int> &)
?tr@HbRangeBar@@SA?AVQString@@PBD0H@Z @ 58 NONAME ABSENT ; class QString HbRangeBar::tr(char const *, char const *, int)
- ?getStaticMetaObject@HbInputVirtualRocker@@SAABUQMetaObject@@XZ @ 59 NONAME ; struct QMetaObject const & HbInputVirtualRocker::getStaticMetaObject(void)
+ ?getStaticMetaObject@HbInputVirtualRocker@@SAABUQMetaObject@@XZ @ 59 NONAME ABSENT ; struct QMetaObject const & HbInputVirtualRocker::getStaticMetaObject(void)
??1HbInputTabBar@@UAE@XZ @ 60 NONAME ABSENT ; HbInputTabBar::~HbInputTabBar(void)
?setExpandedRowCount@HbInputCnListView@@QAEXH@Z @ 61 NONAME ABSENT ; void HbInputCnListView::setExpandedRowCount(int)
?trUtf8@HbInputModeIndicator@@SA?AVQString@@PBD0H@Z @ 62 NONAME ; class QString HbInputModeIndicator::trUtf8(char const *, char const *, int)
@@ -66,7 +66,7 @@
?currentCandidate@HbCandidateList@@QAE?AVQString@@XZ @ 65 NONAME ; class QString HbCandidateList::currentCandidate(void)
?keypadLayout@HbInputVkbWidget@@MAEPAVQGraphicsLayout@@XZ @ 66 NONAME ABSENT ; class QGraphicsLayout * HbInputVkbWidget::keypadLayout(void)
?staticMetaObject@HbWritingBox@@2UQMetaObject@@B @ 67 NONAME ABSENT ; struct QMetaObject const HbWritingBox::staticMetaObject
- ?selectionMode@HbInputVirtualRocker@@QBE?AW4RockerSelectionMode@1@XZ @ 68 NONAME ; enum HbInputVirtualRocker::RockerSelectionMode HbInputVirtualRocker::selectionMode(void) const
+ ?selectionMode@HbInputVirtualRocker@@QBE?AW4RockerSelectionMode@1@XZ @ 68 NONAME ABSENT ; enum HbInputVirtualRocker::RockerSelectionMode HbInputVirtualRocker::selectionMode(void) const
?staticMetaObject@HbInputTabBar@@2UQMetaObject@@B @ 69 NONAME ABSENT ; struct QMetaObject const HbInputTabBar::staticMetaObject
??1HbTouchKeypadButton@@UAE@XZ @ 70 NONAME ABSENT ; HbTouchKeypadButton::~HbTouchKeypadButton(void)
?d_func@HbInputCnListModel@@AAEPAVHbInputCnListModelPrivate@@XZ @ 71 NONAME ABSENT ; class HbInputCnListModelPrivate * HbInputCnListModel::d_func(void)
@@ -128,7 +128,7 @@
?setText@HbExactWordPopup@@QAEXABVQString@@@Z @ 127 NONAME ; void HbExactWordPopup::setText(class QString const &)
?trUtf8@HbInputCnScrollKeypad@@SA?AVQString@@PBD0@Z @ 128 NONAME ABSENT ; class QString HbInputCnScrollKeypad::trUtf8(char const *, char const *)
?listModel@HbInputCnListCompositior@@IAEPAVHbInputCnListModel@@XZ @ 129 NONAME ABSENT ; class HbInputCnListModel * HbInputCnListCompositior::listModel(void)
- ?d_func@HbInputVirtualRocker@@AAEPAVHbInputVirtualRockerPrivate@@XZ @ 130 NONAME ; class HbInputVirtualRockerPrivate * HbInputVirtualRocker::d_func(void)
+ ?d_func@HbInputVirtualRocker@@AAEPAVHbInputVirtualRockerPrivate@@XZ @ 130 NONAME ABSENT ; class HbInputVirtualRockerPrivate * HbInputVirtualRocker::d_func(void)
?tr@HbInputCnListView@@SA?AVQString@@PBD0@Z @ 131 NONAME ABSENT ; class QString HbInputCnListView::tr(char const *, char const *)
?trUtf8@HbTouchKeypadButton@@SA?AVQString@@PBD0H@Z @ 132 NONAME ABSENT ; class QString HbTouchKeypadButton::trUtf8(char const *, char const *, int)
??0HbInputCustomButtonList@@QAE@AAV?$QList@PAVHbAction@@@@PAVHbInputVkbWidget@@PAVQGraphicsWidget@@@Z @ 133 NONAME ABSENT ; HbInputCustomButtonList::HbInputCustomButtonList(class QList<class HbAction *> &, class HbInputVkbWidget *, class QGraphicsWidget *)
@@ -156,7 +156,7 @@
?text@HbExactWordPopup@@QAE?AVQString@@XZ @ 155 NONAME ; class QString HbExactWordPopup::text(void)
?setPenWidth@HbWritingBox@@QAEXH@Z @ 156 NONAME ABSENT ; void HbWritingBox::setPenWidth(int)
?metaObject@HbInputCnListView@@UBEPBUQMetaObject@@XZ @ 157 NONAME ABSENT ; struct QMetaObject const * HbInputCnListView::metaObject(void) const
- ?tr@HbInputVirtualRocker@@SA?AVQString@@PBD0@Z @ 158 NONAME ; class QString HbInputVirtualRocker::tr(char const *, char const *)
+ ?tr@HbInputVirtualRocker@@SA?AVQString@@PBD0@Z @ 158 NONAME ABSENT ; class QString HbInputVirtualRocker::tr(char const *, char const *)
?setOwner@HbInputCnListCompositior@@QAEXPAVHbInputCnListView@@@Z @ 159 NONAME ABSENT ; void HbInputCnListCompositior::setOwner(class HbInputCnListView *)
?getStaticMetaObject@HbCharPreviewPane@@SAABUQMetaObject@@XZ @ 160 NONAME ABSENT ; struct QMetaObject const & HbCharPreviewPane::getStaticMetaObject(void)
?executeMethodDialog@HbInputVkbWidget@@QAEXXZ @ 161 NONAME ; void HbInputVkbWidget::executeMethodDialog(void)
@@ -194,7 +194,7 @@
??_EHbInputCnListPreSymbolModel@@UAE@I@Z @ 193 NONAME ABSENT ; HbInputCnListPreSymbolModel::~HbInputCnListPreSymbolModel(unsigned int)
?sctCharacterSelected@HbInputUsedSymbolPane@@IAEXVQChar@@@Z @ 194 NONAME ABSENT ; void HbInputUsedSymbolPane::sctCharacterSelected(class QChar)
?d_func@HbInputCnTchButton@@AAEPAVHbInputCnTchButtonPrivate@@XZ @ 195 NONAME ABSENT ; class HbInputCnTchButtonPrivate * HbInputCnTchButton::d_func(void)
- ?mousePressEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 196 NONAME ; void HbInputVirtualRocker::mousePressEvent(class QGraphicsSceneMouseEvent *)
+ ?mousePressEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 196 NONAME ABSENT ; void HbInputVirtualRocker::mousePressEvent(class QGraphicsSceneMouseEvent *)
?tr@HbInputSpell@@SA?AVQString@@PBD0@Z @ 197 NONAME ABSENT ; class QString HbInputSpell::tr(char const *, char const *)
?elideMode@HbInputSpell@@QBE?AW4TextElideMode@Qt@@XZ @ 198 NONAME ABSENT ; enum Qt::TextElideMode HbInputSpell::elideMode(void) const
?primaryLanguageChanged@HbInputSettingDialog@@QAEXH@Z @ 199 NONAME ABSENT ; void HbInputSettingDialog::primaryLanguageChanged(int)
@@ -218,7 +218,7 @@
?qt_metacast@HbInputCnTchButton@@UAEPAXPBD@Z @ 217 NONAME ABSENT ; void * HbInputCnTchButton::qt_metacast(char const *)
?trUtf8@HbInputCnListView@@SA?AVQString@@PBD0H@Z @ 218 NONAME ABSENT ; class QString HbInputCnListView::trUtf8(char const *, char const *, int)
?mousePressEvent@HbInputSpell@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 219 NONAME ABSENT ; void HbInputSpell::mousePressEvent(class QGraphicsSceneMouseEvent *)
- ?qt_metacast@HbInputVirtualRocker@@UAEPAXPBD@Z @ 220 NONAME ; void * HbInputVirtualRocker::qt_metacast(char const *)
+ ?qt_metacast@HbInputVirtualRocker@@UAEPAXPBD@Z @ 220 NONAME ABSENT ; void * HbInputVirtualRocker::qt_metacast(char const *)
?tr@HbInputSctLandscape@@SA?AVQString@@PBD0H@Z @ 221 NONAME ABSENT ; class QString HbInputSctLandscape::tr(char const *, char const *, int)
?qt_metacast@HbInputCnListModel@@UAEPAXPBD@Z @ 222 NONAME ABSENT ; void * HbInputCnListModel::qt_metacast(char const *)
?expandedRowCount@HbInputCnListView@@QBEHXZ @ 223 NONAME ABSENT ; int HbInputCnListView::expandedRowCount(void) const
@@ -246,7 +246,7 @@
?listDrawInfoByPages@HbInputCnListCompositior@@QAE?AV?$QVector@VHbCnListCandiDrawInfo@@@@HH@Z @ 245 NONAME ABSENT ; class QVector<class HbCnListCandiDrawInfo> HbInputCnListCompositior::listDrawInfoByPages(int, int)
?enteredInNonStickyRegion@HbTouchKeypadButton@@IAEXXZ @ 246 NONAME ABSENT ; void HbTouchKeypadButton::enteredInNonStickyRegion(void)
?text@HbInputSpell@@QBEABVQString@@XZ @ 247 NONAME ABSENT ; class QString const & HbInputSpell::text(void) const
- ?isRockerVisible@HbInputVkbWidget@@UBE_NXZ @ 248 NONAME ; bool HbInputVkbWidget::isRockerVisible(void) const
+ ?isRockerVisible@HbInputVkbWidget@@UBE_NXZ @ 248 NONAME ABSENT ; bool HbInputVkbWidget::isRockerVisible(void) const
?sendKeypadEvent@HbInputCnScrollKeypad@@AAEXW4HbCnWidgetEventType@@HVQChar@@@Z @ 249 NONAME ABSENT ; void HbInputCnScrollKeypad::sendKeypadEvent(enum HbCnWidgetEventType, int, class QChar)
?inputMode@HbInputCnModel@@QAE?AV?$QFlags@W4HbInputModeTypeFlag@@@@XZ @ 250 NONAME ABSENT ; class QFlags<enum HbInputModeTypeFlag> HbInputCnModel::inputMode(void)
?candsListFromPredictEng@HbInputCnModel@@QAEXHHAAVQStringList@@@Z @ 251 NONAME ABSENT ; void HbInputCnModel::candsListFromPredictEng(int, int, class QStringList &)
@@ -265,12 +265,12 @@
??0HbInputTabBar@@QAE@PAVHbInputVkbWidget@@PAVQGraphicsItem@@@Z @ 264 NONAME ABSENT ; HbInputTabBar::HbInputTabBar(class HbInputVkbWidget *, class QGraphicsItem *)
?asGraphicsWidget@HbInputVkbWidget@@UAEPAVQGraphicsWidget@@XZ @ 265 NONAME ; class QGraphicsWidget * HbInputVkbWidget::asGraphicsWidget(void)
??0HbInputCnListModel@@IAE@AAVHbInputCnListModelPrivate@@@Z @ 266 NONAME ABSENT ; HbInputCnListModel::HbInputCnListModel(class HbInputCnListModelPrivate &)
- ?qt_metacall@HbInputVirtualRocker@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 267 NONAME ; int HbInputVirtualRocker::qt_metacall(enum QMetaObject::Call, int, void * *)
+ ?qt_metacall@HbInputVirtualRocker@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 267 NONAME ABSENT ; int HbInputVirtualRocker::qt_metacall(enum QMetaObject::Call, int, void * *)
?characterFinished@HbWritingBox@@QAEXXZ @ 268 NONAME ABSENT ; void HbWritingBox::characterFinished(void)
??_EHbInputCnScrollKeypad@@UAE@I@Z @ 269 NONAME ABSENT ; HbInputCnScrollKeypad::~HbInputCnScrollKeypad(unsigned int)
?notifyDataUpdated@HbInputCnListCandModel@@UAEX_N@Z @ 270 NONAME ABSENT ; void HbInputCnListCandModel::notifyDataUpdated(bool)
??1Hb12KeyTouchKeypad@@UAE@XZ @ 271 NONAME ABSENT ; Hb12KeyTouchKeypad::~Hb12KeyTouchKeypad(void)
- ?rockerDirection@HbInputVirtualRocker@@IAEXHW4RockerSelectionMode@1@@Z @ 272 NONAME ; void HbInputVirtualRocker::rockerDirection(int, enum HbInputVirtualRocker::RockerSelectionMode)
+ ?rockerDirection@HbInputVirtualRocker@@IAEXHW4RockerSelectionMode@1@@Z @ 272 NONAME ABSENT ; void HbInputVirtualRocker::rockerDirection(int, enum HbInputVirtualRocker::RockerSelectionMode)
?getStaticMetaObject@HbInputSettingDialog@@SAABUQMetaObject@@XZ @ 273 NONAME ABSENT ; struct QMetaObject const & HbInputSettingDialog::getStaticMetaObject(void)
?virtualButtonReleased@HbInputCnKeypad@@QAEXH@Z @ 274 NONAME ABSENT ; void HbInputCnKeypad::virtualButtonReleased(int)
??1HbInputSctLandscape@@UAE@XZ @ 275 NONAME ABSENT ; HbInputSctLandscape::~HbInputSctLandscape(void)
@@ -289,7 +289,7 @@
?getStaticMetaObject@HbInputSpell@@SAABUQMetaObject@@XZ @ 288 NONAME ABSENT ; struct QMetaObject const & HbInputSpell::getStaticMetaObject(void)
?setFade@HbRange@@QAEX_N@Z @ 289 NONAME ABSENT ; void HbRange::setFade(bool)
?releaseButton@HbInputCnTchButton@@QAEX_N@Z @ 290 NONAME ABSENT ; void HbInputCnTchButton::releaseButton(bool)
- ?setRockerVisible@HbInputVkbWidget@@UAEX_N@Z @ 291 NONAME ; void HbInputVkbWidget::setRockerVisible(bool)
+ ?setRockerVisible@HbInputVkbWidget@@UAEX_N@Z @ 291 NONAME ABSENT ; void HbInputVkbWidget::setRockerVisible(bool)
?qt_metacall@HbInputCnTchButton@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 292 NONAME ABSENT ; int HbInputCnTchButton::qt_metacall(enum QMetaObject::Call, int, void * *)
?hoverEnterEvent@HbInputSpell@@MAEXPAVQGraphicsSceneHoverEvent@@@Z @ 293 NONAME ABSENT ; void HbInputSpell::hoverEnterEvent(class QGraphicsSceneHoverEvent *)
?tr@HbInputCnListView@@SA?AVQString@@PBD0H@Z @ 294 NONAME ABSENT ; class QString HbInputCnListView::tr(char const *, char const *, int)
@@ -314,16 +314,16 @@
?selectACand@HbInputCnModel@@QAE_NH@Z @ 313 NONAME ABSENT ; bool HbInputCnModel::selectACand(int)
?updateIndicator@HbInputModeIndicator@@QAEXXZ @ 314 NONAME ; void HbInputModeIndicator::updateIndicator(void)
??_EHbInputCnListView@@UAE@I@Z @ 315 NONAME ABSENT ; HbInputCnListView::~HbInputCnListView(unsigned int)
- ??1HbInputVirtualRocker@@UAE@XZ @ 316 NONAME ; HbInputVirtualRocker::~HbInputVirtualRocker(void)
+ ??1HbInputVirtualRocker@@UAE@XZ @ 316 NONAME ABSENT ; HbInputVirtualRocker::~HbInputVirtualRocker(void)
??0HbInputCnListVItutCompositior@@QAE@PAVHbInputCnListModel@@@Z @ 317 NONAME ABSENT ; HbInputCnListVItutCompositior::HbInputCnListVItutCompositior(class HbInputCnListModel *)
?d_func@HbInputCnModel@@ABEPBVHbInputCnModelPrivate@@XZ @ 318 NONAME ABSENT ; class HbInputCnModelPrivate const * HbInputCnModel::d_func(void) const
?shrinkList@HbInputCnTouchListView@@QAEXXZ @ 319 NONAME ABSENT ; void HbInputCnTouchListView::shrinkList(void)
?resizeEvent@HbTouchKeypadButton@@MAEXPAVQGraphicsSceneResizeEvent@@@Z @ 320 NONAME ABSENT ; void HbTouchKeypadButton::resizeEvent(class QGraphicsSceneResizeEvent *)
- ??0HbInputVirtualRocker@@IAE@AAVHbInputVirtualRockerPrivate@@PAVQGraphicsWidget@@@Z @ 321 NONAME ; HbInputVirtualRocker::HbInputVirtualRocker(class HbInputVirtualRockerPrivate &, class QGraphicsWidget *)
+ ??0HbInputVirtualRocker@@IAE@AAVHbInputVirtualRockerPrivate@@PAVQGraphicsWidget@@@Z @ 321 NONAME ABSENT ; HbInputVirtualRocker::HbInputVirtualRocker(class HbInputVirtualRockerPrivate &, class QGraphicsWidget *)
?qt_metacall@HbInputSpell@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 322 NONAME ABSENT ; int HbInputSpell::qt_metacall(enum QMetaObject::Call, int, void * *)
?instance@HbInputCnModel@@SAPAV1@XZ @ 323 NONAME ABSENT ; class HbInputCnModel * HbInputCnModel::instance(void)
?getStaticMetaObject@HbTouchKeypadButton@@SAABUQMetaObject@@XZ @ 324 NONAME ABSENT ; struct QMetaObject const & HbTouchKeypadButton::getStaticMetaObject(void)
- ?d_func@HbInputVirtualRocker@@ABEPBVHbInputVirtualRockerPrivate@@XZ @ 325 NONAME ; class HbInputVirtualRockerPrivate const * HbInputVirtualRocker::d_func(void) const
+ ?d_func@HbInputVirtualRocker@@ABEPBVHbInputVirtualRockerPrivate@@XZ @ 325 NONAME ABSENT ; class HbInputVirtualRockerPrivate const * HbInputVirtualRocker::d_func(void) const
?staticMetaObject@HbInputSpell@@2UQMetaObject@@B @ 326 NONAME ABSENT ; struct QMetaObject const HbInputSpell::staticMetaObject
?mouseReleaseEvent@HbTouchKeypadButton@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 327 NONAME ABSENT ; void HbTouchKeypadButton::mouseReleaseEvent(class QGraphicsSceneMouseEvent *)
?pageDown@HbInputCnListCompositior@@QAEXH@Z @ 328 NONAME ABSENT ; void HbInputCnListCompositior::pageDown(int)
@@ -347,7 +347,7 @@
?setLanguageToPredictEng@HbInputCnModel@@QAEXABVHbInputLanguage@@V?$QFlags@W4HbInputModeTypeFlag@@@@@Z @ 346 NONAME ABSENT ; void HbInputCnModel::setLanguageToPredictEng(class HbInputLanguage const &, class QFlags<enum HbInputModeTypeFlag>)
??1HbInputCnListHwrPredictCandModel@@UAE@XZ @ 347 NONAME ABSENT ; HbInputCnListHwrPredictCandModel::~HbInputCnListHwrPredictCandModel(void)
?dataList@HbInputCnListModel@@IAEPAV?$QList@VQVariant@@@@XZ @ 348 NONAME ABSENT ; class QList<class QVariant> * HbInputCnListModel::dataList(void)
- ?trUtf8@HbInputVirtualRocker@@SA?AVQString@@PBD0@Z @ 349 NONAME ; class QString HbInputVirtualRocker::trUtf8(char const *, char const *)
+ ?trUtf8@HbInputVirtualRocker@@SA?AVQString@@PBD0@Z @ 349 NONAME ABSENT ; class QString HbInputVirtualRocker::trUtf8(char const *, char const *)
?notifyDataUpdated@HbInputCnListPreCandModel@@UAEX_N@Z @ 350 NONAME ABSENT ; void HbInputCnListPreCandModel::notifyDataUpdated(bool)
?rectInfoList@HbInputCnListCompositior@@QAEPAV?$QVector@VHbCnListCandiDrawInfo@@@@XZ @ 351 NONAME ABSENT ; class QVector<class HbCnListCandiDrawInfo> * HbInputCnListCompositior::rectInfoList(void)
?mousePressEvent@HbPreviewLabel@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 352 NONAME ABSENT ; void HbPreviewLabel::mousePressEvent(class QGraphicsSceneMouseEvent *)
@@ -360,7 +360,7 @@
?tr@HbInputUsedSymbolPane@@SA?AVQString@@PBD0@Z @ 359 NONAME ABSENT ; class QString HbInputUsedSymbolPane::tr(char const *, char const *)
?qt_metacall@HbQwertyKeyboard@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 360 NONAME ABSENT ; int HbQwertyKeyboard::qt_metacall(enum QMetaObject::Call, int, void * *)
?mousePressEvent@HbInputUsedSymbolPane@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 361 NONAME ABSENT ; void HbInputUsedSymbolPane::mousePressEvent(class QGraphicsSceneMouseEvent *)
- ?tr@HbInputVirtualRocker@@SA?AVQString@@PBD0H@Z @ 362 NONAME ; class QString HbInputVirtualRocker::tr(char const *, char const *, int)
+ ?tr@HbInputVirtualRocker@@SA?AVQString@@PBD0H@Z @ 362 NONAME ABSENT ; class QString HbInputVirtualRocker::tr(char const *, char const *, int)
?tr@HbInputSettingDialog@@SA?AVQString@@PBD0@Z @ 363 NONAME ABSENT ; class QString HbInputSettingDialog::tr(char const *, char const *)
?preferredKeyboardSize@HbQwertyKeyboard@@UAE?AVQSizeF@@XZ @ 364 NONAME ABSENT ; class QSizeF HbQwertyKeyboard::preferredKeyboardSize(void)
?hideText@HbExactWordPopup@@QAEXXZ @ 365 NONAME ; void HbExactWordPopup::hideText(void)
@@ -383,7 +383,7 @@
??1HbQwertyKeyboard@@UAE@XZ @ 382 NONAME ABSENT ; HbQwertyKeyboard::~HbQwertyKeyboard(void)
??0HbInputVkbWidget@@IAE@AAVHbInputVkbWidgetPrivate@@PAVQGraphicsItem@@@Z @ 383 NONAME ; HbInputVkbWidget::HbInputVkbWidget(class HbInputVkbWidgetPrivate &, class QGraphicsItem *)
?tr@HbInputUsedSymbolPane@@SA?AVQString@@PBD0H@Z @ 384 NONAME ABSENT ; class QString HbInputUsedSymbolPane::tr(char const *, char const *, int)
- ?rockerDirection@HbInputVkbWidget@@IAEXHW4RockerSelectionMode@HbInputVirtualRocker@@@Z @ 385 NONAME ; void HbInputVkbWidget::rockerDirection(int, enum HbInputVirtualRocker::RockerSelectionMode)
+ ?rockerDirection@HbInputVkbWidget@@IAEXHW4RockerSelectionMode@HbInputVirtualRocker@@@Z @ 385 NONAME ABSENT ; void HbInputVkbWidget::rockerDirection(int, enum HbInputVirtualRocker::RockerSelectionMode)
?isButtonRepeatEnabled@HbInputCnKeypad@@QAE_NH@Z @ 386 NONAME ABSENT ; bool HbInputCnKeypad::isButtonRepeatEnabled(int)
?tr@HbCandidateList@@SA?AVQString@@PBD0@Z @ 387 NONAME ; class QString HbCandidateList::tr(char const *, char const *)
??0HbInputCnListHwrPredictCandModel@@QAE@PAVQObject@@H@Z @ 388 NONAME ABSENT ; HbInputCnListHwrPredictCandModel::HbInputCnListHwrPredictCandModel(class QObject *, int)
@@ -449,7 +449,7 @@
?sendKeypadEvent@HbInputCnKeypad@@QAEXW4HbCnWidgetEventType@@HVQChar@@@Z @ 448 NONAME ABSENT ; void HbInputCnKeypad::sendKeypadEvent(enum HbCnWidgetEventType, int, class QChar)
?aboutToOpen@HbQwertyKeyboard@@UAEXPAVHbVkbHost@@@Z @ 449 NONAME ABSENT ; void HbQwertyKeyboard::aboutToOpen(class HbVkbHost *)
?qt_metacast@HbRangeBar@@UAEPAXPBD@Z @ 450 NONAME ABSENT ; void * HbRangeBar::qt_metacast(char const *)
- ??0HbInputVirtualRocker@@QAE@PAVHbInputVkbWidget@@@Z @ 451 NONAME ; HbInputVirtualRocker::HbInputVirtualRocker(class HbInputVkbWidget *)
+ ??0HbInputVirtualRocker@@QAE@PAVHbInputVkbWidget@@@Z @ 451 NONAME ABSENT ; HbInputVirtualRocker::HbInputVirtualRocker(class HbInputVkbWidget *)
?owner@HbInputCnListCompositior@@QBEPAVHbInputCnListView@@XZ @ 452 NONAME ABSENT ; class HbInputCnListView * HbInputCnListCompositior::owner(void) const
??1HbInputSctPortrait@@UAE@XZ @ 453 NONAME ABSENT ; HbInputSctPortrait::~HbInputSctPortrait(void)
?metaObject@HbWritingBox@@UBEPBUQMetaObject@@XZ @ 454 NONAME ABSENT ; struct QMetaObject const * HbWritingBox::metaObject(void) const
@@ -574,7 +574,7 @@
??0HbInputCnScrollKeypad@@IAE@AAVHbInputCnScrollKeypadPrivate@@ABUHbCnKeypadConfigure@@PAVQGraphicsItem@@@Z @ 573 NONAME ABSENT ; HbInputCnScrollKeypad::HbInputCnScrollKeypad(class HbInputCnScrollKeypadPrivate &, struct HbCnKeypadConfigure const &, class QGraphicsItem *)
?enableAutoKeyRepeatEvents@HbInputSctLandscape@@UAEXAAV?$QList@H@@@Z @ 574 NONAME ABSENT ; void HbInputSctLandscape::enableAutoKeyRepeatEvents(class QList<int> &)
??_EHbRangeBar@@UAE@I@Z @ 575 NONAME ABSENT ; HbRangeBar::~HbRangeBar(unsigned int)
- ?trUtf8@HbInputVirtualRocker@@SA?AVQString@@PBD0H@Z @ 576 NONAME ; class QString HbInputVirtualRocker::trUtf8(char const *, char const *, int)
+ ?trUtf8@HbInputVirtualRocker@@SA?AVQString@@PBD0H@Z @ 576 NONAME ABSENT ; class QString HbInputVirtualRocker::trUtf8(char const *, char const *, int)
?d_func@Hb12KeyTouchKeypad@@AAEPAVHb12KeyTouchKeypadPrivate@@XZ @ 577 NONAME ABSENT ; class Hb12KeyTouchKeypadPrivate * Hb12KeyTouchKeypad::d_func(void)
?secondaryLanguageChanged@HbInputSettingDialog@@QAEXH@Z @ 578 NONAME ABSENT ; void HbInputSettingDialog::secondaryLanguageChanged(int)
?getStaticMetaObject@HbInputTabBar@@SAABUQMetaObject@@XZ @ 579 NONAME ABSENT ; struct QMetaObject const & HbInputTabBar::getStaticMetaObject(void)
@@ -644,7 +644,7 @@
?qt_metacast@HbCharPreviewPane@@UAEPAXPBD@Z @ 643 NONAME ABSENT ; void * HbCharPreviewPane::qt_metacast(char const *)
?strokeEndMark@HbWritingBox@@QBE?AVQPointF@@XZ @ 644 NONAME ABSENT ; class QPointF HbWritingBox::strokeEndMark(void) const
?qt_metacast@HbInputCnTouchListView@@UAEPAXPBD@Z @ 645 NONAME ABSENT ; void * HbInputCnTouchListView::qt_metacast(char const *)
- ?mouseDoubleClickEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 646 NONAME ; void HbInputVirtualRocker::mouseDoubleClickEvent(class QGraphicsSceneMouseEvent *)
+ ?mouseDoubleClickEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 646 NONAME ABSENT ; void HbInputVirtualRocker::mouseDoubleClickEvent(class QGraphicsSceneMouseEvent *)
?staticMetaObject@HbQwertyKeyboard@@2UQMetaObject@@B @ 647 NONAME ABSENT ; struct QMetaObject const HbQwertyKeyboard::staticMetaObject
?setBgColor@HbWritingBox@@QAEXVQColor@@@Z @ 648 NONAME ABSENT ; void HbWritingBox::setBgColor(class QColor)
?setCharSet@HbInputSctPortrait@@QAEXABVQString@@PAVHbInputFilter@@@Z @ 649 NONAME ABSENT ; void HbInputSctPortrait::setCharSet(class QString const &, class HbInputFilter *)
@@ -720,7 +720,7 @@
?pageDownButtonClicked@HbInputCnTouchListView@@AAEXXZ @ 719 NONAME ABSENT ; void HbInputCnTouchListView::pageDownButtonClicked(void)
??_EHbCandidateList@@UAE@I@Z @ 720 NONAME ; HbCandidateList::~HbCandidateList(unsigned int)
?exactWordSelected@HbExactWordPopup@@IAEXXZ @ 721 NONAME ; void HbExactWordPopup::exactWordSelected(void)
- ?mouseMoveEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 722 NONAME ; void HbInputVirtualRocker::mouseMoveEvent(class QGraphicsSceneMouseEvent *)
+ ?mouseMoveEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 722 NONAME ABSENT ; void HbInputVirtualRocker::mouseMoveEvent(class QGraphicsSceneMouseEvent *)
?trUtf8@HbInputSctPortrait@@SA?AVQString@@PBD0H@Z @ 723 NONAME ABSENT ; class QString HbInputSctPortrait::trUtf8(char const *, char const *, int)
?timerFlag@HbInputCnTchButton@@QAEHXZ @ 724 NONAME ABSENT ; int HbInputCnTchButton::timerFlag(void)
?onRepeatLongTimeOut@HbWritingBox@@QAEXXZ @ 725 NONAME ABSENT ; void HbWritingBox::onRepeatLongTimeOut(void)
@@ -745,10 +745,10 @@
?updateModel@HbInputCnListView@@QAEXXZ @ 744 NONAME ABSENT ; void HbInputCnListView::updateModel(void)
?tr@HbQwertyKeyboard@@SA?AVQString@@PBD0H@Z @ 745 NONAME ABSENT ; class QString HbQwertyKeyboard::tr(char const *, char const *, int)
?setPredictionBase@HbInputCnModel@@QAE_NVQString@@@Z @ 746 NONAME ABSENT ; bool HbInputCnModel::setPredictionBase(class QString)
- ?mouseReleaseEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 747 NONAME ; void HbInputVirtualRocker::mouseReleaseEvent(class QGraphicsSceneMouseEvent *)
+ ?mouseReleaseEvent@HbInputVirtualRocker@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 747 NONAME ABSENT ; void HbInputVirtualRocker::mouseReleaseEvent(class QGraphicsSceneMouseEvent *)
?tr@HbWritingBox@@SA?AVQString@@PBD0@Z @ 748 NONAME ABSENT ; class QString HbWritingBox::tr(char const *, char const *)
?settingItemDisplayed@HbInputSettingDialog@@QAEXABVQModelIndex@@@Z @ 749 NONAME ABSENT ; void HbInputSettingDialog::settingItemDisplayed(class QModelIndex const &)
- ?metaObject@HbInputVirtualRocker@@UBEPBUQMetaObject@@XZ @ 750 NONAME ; struct QMetaObject const * HbInputVirtualRocker::metaObject(void) const
+ ?metaObject@HbInputVirtualRocker@@UBEPBUQMetaObject@@XZ @ 750 NONAME ABSENT ; struct QMetaObject const * HbInputVirtualRocker::metaObject(void) const
?constructIconRanges@HbRangeBar@@QAEXABV?$QList@UHbIconRangePair@@@@@Z @ 751 NONAME ABSENT ; void HbRangeBar::constructIconRanges(class QList<struct HbIconRangePair> const &)
??1HbExactWordPopup@@UAE@XZ @ 752 NONAME ; HbExactWordPopup::~HbExactWordPopup(void)
??0HbInputSctLandscape@@IAE@AAVHbInputSctLandscapePrivate@@PAVQGraphicsItem@@@Z @ 753 NONAME ABSENT ; HbInputSctLandscape::HbInputSctLandscape(class HbInputSctLandscapePrivate &, class QGraphicsItem *)
@@ -764,21 +764,21 @@
?mappedKeyClick@HbQwertyKeyboard@@AAEXH@Z @ 763 NONAME ABSENT ; void HbQwertyKeyboard::mappedKeyClick(int)
?trUtf8@HbInputUsedSymbolPane@@SA?AVQString@@PBD0H@Z @ 764 NONAME ABSENT ; class QString HbInputUsedSymbolPane::trUtf8(char const *, char const *, int)
?tr@HbInputTabBar@@SA?AVQString@@PBD0H@Z @ 765 NONAME ABSENT ; class QString HbInputTabBar::tr(char const *, char const *, int)
- ?paint@HbInputVirtualRocker@@MAEXPAVQPainter@@PBVQStyleOptionGraphicsItem@@PAVQWidget@@@Z @ 766 NONAME ; void HbInputVirtualRocker::paint(class QPainter *, class QStyleOptionGraphicsItem const *, class QWidget *)
+ ?paint@HbInputVirtualRocker@@MAEXPAVQPainter@@PBVQStyleOptionGraphicsItem@@PAVQWidget@@@Z @ 766 NONAME ABSENT ; void HbInputVirtualRocker::paint(class QPainter *, class QStyleOptionGraphicsItem const *, class QWidget *)
?onModelUpdated@HbInputCnTouchListView@@AAEXXZ @ 767 NONAME ABSENT ; void HbInputCnTouchListView::onModelUpdated(void)
?trUtf8@HbInputSettingDialog@@SA?AVQString@@PBD0H@Z @ 768 NONAME ABSENT ; class QString HbInputSettingDialog::trUtf8(char const *, char const *, int)
??1HbInputCnModel@@UAE@XZ @ 769 NONAME ABSENT ; HbInputCnModel::~HbInputCnModel(void)
?setPropertiesForKeys@HbInputCnScrollKeypad@@QAEXABV?$QList@UHbCnVirtualKey@@@@@Z @ 770 NONAME ABSENT ; void HbInputCnScrollKeypad::setPropertiesForKeys(class QList<struct HbCnVirtualKey> const &)
?setBackground@HbTouchKeypadButton@@IAEXVQString@@@Z @ 771 NONAME ABSENT ; void HbTouchKeypadButton::setBackground(class QString)
?qt_metacast@HbInputCnKeypad@@UAEPAXPBD@Z @ 772 NONAME ABSENT ; void * HbInputCnKeypad::qt_metacast(char const *)
- ??_EHbInputVirtualRocker@@UAE@I@Z @ 773 NONAME ; HbInputVirtualRocker::~HbInputVirtualRocker(unsigned int)
+ ??_EHbInputVirtualRocker@@UAE@I@Z @ 773 NONAME ABSENT ; HbInputVirtualRocker::~HbInputVirtualRocker(unsigned int)
?aboutToClose@HbQwertyKeyboard@@UAEXPAVHbVkbHost@@@Z @ 774 NONAME ABSENT ; void HbQwertyKeyboard::aboutToClose(class HbVkbHost *)
??0HbInputCnListPreSymbolModel@@QAE@PAVQObject@@H@Z @ 775 NONAME ABSENT ; HbInputCnListPreSymbolModel::HbInputCnListPreSymbolModel(class QObject *, int)
?itemList@HbInputCnListModel@@QBE?AV?$QList@VQVariant@@@@XZ @ 776 NONAME ABSENT ; class QList<class QVariant> HbInputCnListModel::itemList(void) const
?qt_metacast@HbInputSpell@@UAEPAXPBD@Z @ 777 NONAME ABSENT ; void * HbInputSpell::qt_metacast(char const *)
?charInterval@HbWritingBox@@QBEHXZ @ 778 NONAME ABSENT ; int HbWritingBox::charInterval(void) const
?supportsKeyboardType@HbInputCnModel@@QAE_NABVHbInputLanguage@@V?$QFlags@W4HbKeyboardTypeFlag@@@@@Z @ 779 NONAME ABSENT ; bool HbInputCnModel::supportsKeyboardType(class HbInputLanguage const &, class QFlags<enum HbKeyboardTypeFlag>)
- ?type@HbInputVirtualRocker@@UBEHXZ @ 780 NONAME ; int HbInputVirtualRocker::type(void) const
+ ?type@HbInputVirtualRocker@@UBEHXZ @ 780 NONAME ABSENT ; int HbInputVirtualRocker::type(void) const
??0HbInputSettingDialog@@QAE@V?$QFlags@W4HbSettingItem@HbInputSettingDialog@@@@PAVQGraphicsWidget@@@Z @ 781 NONAME ABSENT ; HbInputSettingDialog::HbInputSettingDialog(class QFlags<enum HbInputSettingDialog::HbSettingItem>, class QGraphicsWidget *)
?supportedLanguages@HbInputCnModel@@QBE?AV?$QList@VHbInputLanguage@@@@XZ @ 782 NONAME ABSENT ; class QList<class HbInputLanguage> HbInputCnModel::supportedLanguages(void) const
?qt_metacast@HbStackedRange@@UAEPAXPBD@Z @ 783 NONAME ABSENT ; void * HbStackedRange::qt_metacast(char const *)
@@ -1083,7 +1083,7 @@
?sizeHint@HbInputVkbWidget@@MBE?AVQSizeF@@W4SizeHint@Qt@@ABV2@@Z @ 1082 NONAME ; class QSizeF HbInputVkbWidget::sizeHint(enum Qt::SizeHint, class QSizeF const &) const
?d_func@HbInputSettingList@@ABEPBVHbInputSettingListPrivate@@XZ @ 1083 NONAME ; class HbInputSettingListPrivate const * HbInputSettingList::d_func(void) const
?getStaticMetaObject@HbInputSettingList@@SAABUQMetaObject@@XZ @ 1084 NONAME ; struct QMetaObject const & HbInputSettingList::getStaticMetaObject(void)
- ?closeSettingList@HbInputVkbWidget@@QAEXXZ @ 1085 NONAME ; void HbInputVkbWidget::closeSettingList(void)
+ ?closeSettingList@HbInputVkbWidget@@QAEXXZ @ 1085 NONAME ABSENT ; void HbInputVkbWidget::closeSettingList(void)
?setKeyCode@HbTouchKeypadButton@@QAEXH@Z @ 1086 NONAME ABSENT ; void HbTouchKeypadButton::setKeyCode(int)
?keypadLanguageChangeFinished@HbInputVkbWidget@@QAEXXZ @ 1087 NONAME ; void HbInputVkbWidget::keypadLanguageChangeFinished(void)
?metaObject@HbInputSettingList@@UBEPBUQMetaObject@@XZ @ 1088 NONAME ; struct QMetaObject const * HbInputSettingList::metaObject(void) const
@@ -1144,7 +1144,7 @@
?trUtf8@HbInputCheckBoxList@@SA?AVQString@@PBD0H@Z @ 1143 NONAME ; class QString HbInputCheckBoxList::trUtf8(char const *, char const *, int)
?metaObject@HbInputSettingWidget@@UBEPBUQMetaObject@@XZ @ 1144 NONAME ; struct QMetaObject const * HbInputSettingWidget::metaObject(void) const
?updateAutocompletionState@HbInputSettingWidget@@QAEXV?$QFlags@W4HbKeyboardSettingFlag@@@@_N@Z @ 1145 NONAME ; void HbInputSettingWidget::updateAutocompletionState(class QFlags<enum HbKeyboardSettingFlag>, bool)
- ?gestureEvent@HbInputVirtualRocker@@MAEXPAVQGestureEvent@@@Z @ 1146 NONAME ; void HbInputVirtualRocker::gestureEvent(class QGestureEvent *)
+ ?gestureEvent@HbInputVirtualRocker@@MAEXPAVQGestureEvent@@@Z @ 1146 NONAME ABSENT ; void HbInputVirtualRocker::gestureEvent(class QGestureEvent *)
?canSetModelIndex@HbInputCheckBoxList@@UBE_NABVQModelIndex@@@Z @ 1147 NONAME ; bool HbInputCheckBoxList::canSetModelIndex(class QModelIndex const &) const
?d_func@HbInputCheckBoxList@@AAEPAVHbInputCheckBoxListPrivate@@XZ @ 1148 NONAME ; class HbInputCheckBoxListPrivate * HbInputCheckBoxList::d_func(void)
?setKeypressTimeoutValue@HbInputSettingWidget@@QAEXH@Z @ 1149 NONAME ; void HbInputSettingWidget::setKeypressTimeoutValue(int)
@@ -1368,7 +1368,7 @@
?showInputMethodSelectionDialog@HbInputVkbWidgetPrivate@@QAEXXZ @ 1367 NONAME ABSENT ; void HbInputVkbWidgetPrivate::showInputMethodSelectionDialog(void)
?aboutToActivateCustomAction@HbInputButtonGroup@@IAEXPAVHbAction@@@Z @ 1368 NONAME ; void HbInputButtonGroup::aboutToActivateCustomAction(class HbAction *)
?aboutToActivateCustomAction@HbInputVkbWidget@@IAEXPAVHbAction@@@Z @ 1369 NONAME ; void HbInputVkbWidget::aboutToActivateCustomAction(class HbAction *)
- ?rockerPosition@HbInputVkbWidget@@MAE?AVQPointF@@XZ @ 1370 NONAME ; class QPointF HbInputVkbWidget::rockerPosition(void)
+ ?rockerPosition@HbInputVkbWidget@@MAE?AVQPointF@@XZ @ 1370 NONAME ABSENT; class QPointF HbInputVkbWidget::rockerPosition(void)
?_q_handleRockerChange@HbInputVkbWidgetPrivate@@QAEXHW4RockerSelectionMode@HbInputVirtualRocker@@@Z @ 1371 NONAME ABSENT ; void HbInputVkbWidgetPrivate::_q_handleRockerChange(int, enum HbInputVirtualRocker::RockerSelectionMode)
?layoutTextLine@HbInputButtonGroupPrivate@@MAEXW4HbInputButtonTextType@HbInputButtonGroup@@PBVHbInputButton@@ABVQSizeF@@AAVQTextLine@@2@Z @ 1372 NONAME ; void HbInputButtonGroupPrivate::layoutTextLine(enum HbInputButtonGroup::HbInputButtonTextType, class HbInputButton const *, class QSizeF const &, class QTextLine &, class QSizeF const &)
?fontSize@HbInputButtonGroupPrivate@@MAEMW4HbInputButtonTextType@HbInputButtonGroup@@@Z @ 1373 NONAME ; float HbInputButtonGroupPrivate::fontSize(enum HbInputButtonGroup::HbInputButtonTextType)
@@ -1401,7 +1401,7 @@
?setLandscapeInputMethod@HbInputSettingWidget@@QAEXH@Z @ 1400 NONAME ; void HbInputSettingWidget::setLandscapeInputMethod(int)
?setHwrSpeed@HbInputSettingWidget@@QAEXH@Z @ 1401 NONAME ; void HbInputSettingWidget::setHwrSpeed(int)
?setPortraitInputMethod@HbInputSettingWidget@@QAEXH@Z @ 1402 NONAME ; void HbInputSettingWidget::setPortraitInputMethod(int)
- ?resetChineseInputMode@HbInputSettingWidget@@QAEXXZ @ 1403 NONAME ; void HbInputSettingWidget::resetChineseInputMode(void)
+ ?resetChineseInputMode@HbInputSettingWidget@@QAEXXZ @ 1403 NONAME ABSENT ; void HbInputSettingWidget::resetChineseInputMode(void)
?_q_smileyPickerClosed@HbInputVkbWidgetPrivate@@QAEXXZ @ 1404 NONAME ; void HbInputVkbWidgetPrivate::_q_smileyPickerClosed(void)
?layoutSecondaryText@HbInputButtonGroupPrivate@@MAEXHPAVHbInputButton@@AAVQFontMetricsF@@ABVQSizeF@@W4HbInputButtonTextIndex@2@W4HbInputButtonIconIndex@2@34W4HbInputButtonTextType@HbInputButtonGroup@@@Z @ 1405 NONAME ; void HbInputButtonGroupPrivate::layoutSecondaryText(int, class HbInputButton *, class QFontMetricsF &, class QSizeF const &, enum HbInputButton::HbInputButtonTextIndex, enum HbInputButton::HbInputButtonIconIndex, enum HbInputButton::HbInputButtonTextIndex, enum HbInputButton::HbInputButtonIconIndex, enum HbInputButtonGroup::HbInputButtonTextType)
?setFontSize@HbInputButtonGroupPrivate@@MAEXW4HbInputButtonTextType@HbInputButtonGroup@@M@Z @ 1406 NONAME ; void HbInputButtonGroupPrivate::setFontSize(enum HbInputButtonGroup::HbInputButtonTextType, float)
@@ -1417,4 +1417,8 @@
?keyAtIndex@HbSctKeyboardPrivate@@QAEHH@Z @ 1416 NONAME ; int HbSctKeyboardPrivate::keyAtIndex(int)
?countActiveKeys@HbSctKeyboardPrivate@@QAEHXZ @ 1417 NONAME ; int HbSctKeyboardPrivate::countActiveKeys(void)
?applyEditorConstraints@HbSctKeyboardPrivate@@QAEXPAVHbInputFocusObject@@PAVHbInputButtonGroup@@@Z @ 1418 NONAME ; void HbSctKeyboardPrivate::applyEditorConstraints(class HbInputFocusObject *, class HbInputButtonGroup *)
+ ?closeSettingList@HbInputVkbWidget@@UAEXXZ @ 1419 NONAME ; void HbInputVkbWidget::closeSettingList(void)
+ ?iconDrawer@HbInputVkbWidget@@IAEPAVHbFrameDrawer@@XZ @ 1420 NONAME ; class HbFrameDrawer * HbInputVkbWidget::iconDrawer(void)
+ ?setDefaultLanguageForKeyboardInput@HbInputSettingWidget@@QAEXH@Z @ 1421 NONAME ; void HbInputSettingWidget::setDefaultLanguageForKeyboardInput(int)
+ ?resetChineseInputMode@HbInputSettingWidget@@QAEXVHbInputLanguage@@@Z @ 1422 NONAME ; void HbInputSettingWidget::resetChineseInputMode(class HbInputLanguage)
--- a/src/hbinput/defs/eabi/HbInputu.def Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/defs/eabi/HbInputu.def Thu Sep 02 20:44:51 2010 +0300
@@ -197,10 +197,10 @@
_ZN16HbInputVkbWidget14mappedKeyPressEi @ 196 NONAME ABSENT
_ZN16HbInputVkbWidget14settingsClosedEv @ 197 NONAME
_ZN16HbInputVkbWidget15mousePressEventEP24QGraphicsSceneMouseEvent @ 198 NONAME ABSENT
- _ZN16HbInputVkbWidget15rockerDirectionEiN20HbInputVirtualRocker19RockerSelectionModeE @ 199 NONAME
+ _ZN16HbInputVkbWidget15rockerDirectionEiN20HbInputVirtualRocker19RockerSelectionModeE @ 199 NONAME ABSENT
_ZN16HbInputVkbWidget16asGraphicsWidgetEv @ 200 NONAME
_ZN16HbInputVkbWidget16mappedKeyReleaseEi @ 201 NONAME ABSENT
- _ZN16HbInputVkbWidget16setRockerVisibleEb @ 202 NONAME
+ _ZN16HbInputVkbWidget16setRockerVisibleEb @ 202 NONAME ABSENT
_ZN16HbInputVkbWidget16setupToolClusterEv @ 203 NONAME ABSENT
_ZN16HbInputVkbWidget16staticMetaObjectE @ 204 NONAME DATA 16
_ZN16HbInputVkbWidget17keyboardMinimizedEP9HbVkbHost @ 205 NONAME
@@ -454,23 +454,23 @@
_ZN20HbInputSettingDialogD0Ev @ 453 NONAME ABSENT
_ZN20HbInputSettingDialogD1Ev @ 454 NONAME ABSENT
_ZN20HbInputSettingDialogD2Ev @ 455 NONAME ABSENT
- _ZN20HbInputVirtualRocker11qt_metacallEN11QMetaObject4CallEiPPv @ 456 NONAME
- _ZN20HbInputVirtualRocker11qt_metacastEPKc @ 457 NONAME
- _ZN20HbInputVirtualRocker14mouseMoveEventEP24QGraphicsSceneMouseEvent @ 458 NONAME
- _ZN20HbInputVirtualRocker15mousePressEventEP24QGraphicsSceneMouseEvent @ 459 NONAME
- _ZN20HbInputVirtualRocker15rockerDirectionEiNS_19RockerSelectionModeE @ 460 NONAME
- _ZN20HbInputVirtualRocker16staticMetaObjectE @ 461 NONAME DATA 16
- _ZN20HbInputVirtualRocker17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 462 NONAME
- _ZN20HbInputVirtualRocker19getStaticMetaObjectEv @ 463 NONAME
- _ZN20HbInputVirtualRocker21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent @ 464 NONAME
- _ZN20HbInputVirtualRocker5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget @ 465 NONAME
- _ZN20HbInputVirtualRockerC1EP16HbInputVkbWidget @ 466 NONAME
- _ZN20HbInputVirtualRockerC1ER27HbInputVirtualRockerPrivateP15QGraphicsWidget @ 467 NONAME
- _ZN20HbInputVirtualRockerC2EP16HbInputVkbWidget @ 468 NONAME
- _ZN20HbInputVirtualRockerC2ER27HbInputVirtualRockerPrivateP15QGraphicsWidget @ 469 NONAME
- _ZN20HbInputVirtualRockerD0Ev @ 470 NONAME
- _ZN20HbInputVirtualRockerD1Ev @ 471 NONAME
- _ZN20HbInputVirtualRockerD2Ev @ 472 NONAME
+ _ZN20HbInputVirtualRocker11qt_metacallEN11QMetaObject4CallEiPPv @ 456 NONAME ABSENT
+ _ZN20HbInputVirtualRocker11qt_metacastEPKc @ 457 NONAME ABSENT
+ _ZN20HbInputVirtualRocker14mouseMoveEventEP24QGraphicsSceneMouseEvent @ 458 NONAME ABSENT
+ _ZN20HbInputVirtualRocker15mousePressEventEP24QGraphicsSceneMouseEvent @ 459 NONAME ABSENT
+ _ZN20HbInputVirtualRocker15rockerDirectionEiNS_19RockerSelectionModeE @ 460 NONAME ABSENT
+ _ZN20HbInputVirtualRocker16staticMetaObjectE @ 461 NONAME DATA 16 ABSENT
+ _ZN20HbInputVirtualRocker17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 462 NONAME ABSENT
+ _ZN20HbInputVirtualRocker19getStaticMetaObjectEv @ 463 NONAME ABSENT
+ _ZN20HbInputVirtualRocker21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent @ 464 NONAME ABSENT
+ _ZN20HbInputVirtualRocker5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget @ 465 NONAME ABSENT
+ _ZN20HbInputVirtualRockerC1EP16HbInputVkbWidget @ 466 NONAME ABSENT
+ _ZN20HbInputVirtualRockerC1ER27HbInputVirtualRockerPrivateP15QGraphicsWidget @ 467 NONAME ABSENT
+ _ZN20HbInputVirtualRockerC2EP16HbInputVkbWidget @ 468 NONAME ABSENT
+ _ZN20HbInputVirtualRockerC2ER27HbInputVirtualRockerPrivateP15QGraphicsWidget @ 469 NONAME ABSENT
+ _ZN20HbInputVirtualRockerD0Ev @ 470 NONAME ABSENT
+ _ZN20HbInputVirtualRockerD1Ev @ 471 NONAME ABSENT
+ _ZN20HbInputVirtualRockerD2Ev @ 472 NONAME ABSENT
_ZN21HbInputCnScrollKeypad11keyPositionEi @ 473 NONAME ABSENT
_ZN21HbInputCnScrollKeypad11keypadEventE19HbCnWidgetEventType8QVariant @ 474 NONAME ABSENT
_ZN21HbInputCnScrollKeypad11qt_metacallEN11QMetaObject4CallEiPPv @ 475 NONAME ABSENT
@@ -639,7 +639,7 @@
_ZNK15HbInputCnKeypad10metaObjectEv @ 638 NONAME ABSENT
_ZNK16HbExactWordPopup10metaObjectEv @ 639 NONAME
_ZNK16HbInputVkbWidget10metaObjectEv @ 640 NONAME
- _ZNK16HbInputVkbWidget15isRockerVisibleEv @ 641 NONAME
+ _ZNK16HbInputVkbWidget15isRockerVisibleEv @ 641 NONAME ABSENT
_ZNK16HbInputVkbWidget4modeEv @ 642 NONAME
_ZNK16HbInputVkbWidget5shapeEv @ 643 NONAME
_ZNK16HbQwertyKeyboard10metaObjectEv @ 644 NONAME ABSENT
@@ -683,8 +683,8 @@
_ZNK19HbTouchKeypadButton9isLatchedEv @ 682 NONAME ABSENT
_ZNK20HbInputModeIndicator10metaObjectEv @ 683 NONAME
_ZNK20HbInputSettingDialog10metaObjectEv @ 684 NONAME ABSENT
- _ZNK20HbInputVirtualRocker10metaObjectEv @ 685 NONAME
- _ZNK20HbInputVirtualRocker13selectionModeEv @ 686 NONAME
+ _ZNK20HbInputVirtualRocker10metaObjectEv @ 685 NONAME ABSENT
+ _ZNK20HbInputVirtualRocker13selectionModeEv @ 686 NONAME ABSENT
_ZNK21HbInputCnScrollKeypad10metaObjectEv @ 687 NONAME ABSENT
_ZNK21HbInputCnScrollKeypad5shapeEv @ 688 NONAME ABSENT
_ZNK21HbInputUsedSymbolPane10metaObjectEv @ 689 NONAME ABSENT
@@ -720,7 +720,7 @@
_ZTI19HbTouchKeypadButton @ 719 NONAME ABSENT
_ZTI20HbInputModeIndicator @ 720 NONAME
_ZTI20HbInputSettingDialog @ 721 NONAME ABSENT
- _ZTI20HbInputVirtualRocker @ 722 NONAME
+ _ZTI20HbInputVirtualRocker @ 722 NONAME ABSENT
_ZTI21HbInputCnScrollKeypad @ 723 NONAME ABSENT
_ZTI21HbInputUsedSymbolPane @ 724 NONAME ABSENT
_ZTI22HbInputCnListCandModel @ 725 NONAME ABSENT
@@ -755,7 +755,7 @@
_ZTV19HbTouchKeypadButton @ 754 NONAME ABSENT
_ZTV20HbInputModeIndicator @ 755 NONAME
_ZTV20HbInputSettingDialog @ 756 NONAME ABSENT
- _ZTV20HbInputVirtualRocker @ 757 NONAME
+ _ZTV20HbInputVirtualRocker @ 757 NONAME ABSENT
_ZTV21HbInputCnScrollKeypad @ 758 NONAME ABSENT
_ZTV21HbInputUsedSymbolPane @ 759 NONAME ABSENT
_ZTV22HbInputCnListCandModel @ 760 NONAME ABSENT
@@ -802,8 +802,8 @@
_ZThn16_N19HbTouchKeypadButtonD1Ev @ 801 NONAME ABSENT
_ZThn16_N20HbInputSettingDialogD0Ev @ 802 NONAME ABSENT
_ZThn16_N20HbInputSettingDialogD1Ev @ 803 NONAME ABSENT
- _ZThn16_N20HbInputVirtualRockerD0Ev @ 804 NONAME
- _ZThn16_N20HbInputVirtualRockerD1Ev @ 805 NONAME
+ _ZThn16_N20HbInputVirtualRockerD0Ev @ 804 NONAME ABSENT
+ _ZThn16_N20HbInputVirtualRockerD1Ev @ 805 NONAME ABSENT
_ZThn16_N21HbInputCnScrollKeypadD0Ev @ 806 NONAME ABSENT
_ZThn16_N21HbInputCnScrollKeypadD1Ev @ 807 NONAME ABSENT
_ZThn16_N21HbInputUsedSymbolPaneD0Ev @ 808 NONAME ABSENT
@@ -902,13 +902,13 @@
_ZThn8_N19HbTouchKeypadButtonD1Ev @ 901 NONAME ABSENT
_ZThn8_N20HbInputSettingDialogD0Ev @ 902 NONAME ABSENT
_ZThn8_N20HbInputSettingDialogD1Ev @ 903 NONAME ABSENT
- _ZThn8_N20HbInputVirtualRocker14mouseMoveEventEP24QGraphicsSceneMouseEvent @ 904 NONAME
- _ZThn8_N20HbInputVirtualRocker15mousePressEventEP24QGraphicsSceneMouseEvent @ 905 NONAME
- _ZThn8_N20HbInputVirtualRocker17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 906 NONAME
- _ZThn8_N20HbInputVirtualRocker21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent @ 907 NONAME
- _ZThn8_N20HbInputVirtualRocker5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget @ 908 NONAME
- _ZThn8_N20HbInputVirtualRockerD0Ev @ 909 NONAME
- _ZThn8_N20HbInputVirtualRockerD1Ev @ 910 NONAME
+ _ZThn8_N20HbInputVirtualRocker14mouseMoveEventEP24QGraphicsSceneMouseEvent @ 904 NONAME ABSENT
+ _ZThn8_N20HbInputVirtualRocker15mousePressEventEP24QGraphicsSceneMouseEvent @ 905 NONAME ABSENT
+ _ZThn8_N20HbInputVirtualRocker17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 906 NONAME ABSENT
+ _ZThn8_N20HbInputVirtualRocker21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent @ 907 NONAME ABSENT
+ _ZThn8_N20HbInputVirtualRocker5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget @ 908 NONAME ABSENT
+ _ZThn8_N20HbInputVirtualRockerD0Ev @ 909 NONAME ABSENT
+ _ZThn8_N20HbInputVirtualRockerD1Ev @ 910 NONAME ABSENT
_ZThn8_N21HbInputCnScrollKeypad16sceneEventFilterEP13QGraphicsItemP6QEvent @ 911 NONAME ABSENT
_ZThn8_N21HbInputCnScrollKeypadD0Ev @ 912 NONAME ABSENT
_ZThn8_N21HbInputCnScrollKeypadD1Ev @ 913 NONAME ABSENT
@@ -1392,7 +1392,7 @@
_ZN20HbInputSettingWidgetD0Ev @ 1391 NONAME
_ZN20HbInputSettingWidgetD1Ev @ 1392 NONAME
_ZN20HbInputSettingWidgetD2Ev @ 1393 NONAME
- _ZN20HbInputVirtualRocker12gestureEventEP13QGestureEvent @ 1394 NONAME
+ _ZN20HbInputVirtualRocker12gestureEventEP13QGestureEvent @ 1394 NONAME ABSENT
_ZN25Hb12KeyTouchKeypadPrivate22getAllowedSctCharctersER7QString @ 1395 NONAME ABSENT
_ZNK19HbInputCheckBoxList10metaObjectEv @ 1396 NONAME
_ZNK19HbInputCheckBoxList16canSetModelIndexERK11QModelIndex @ 1397 NONAME
@@ -1607,7 +1607,7 @@
_ZN16HbInputVkbWidget27aboutToActivateCustomActionEP8HbAction @ 1606 NONAME
_ZN18HbInputButtonGroup27aboutToActivateCustomActionEP8HbAction @ 1607 NONAME
_ZN23HbInputVkbWidgetPrivate21_q_handleRockerChangeEiN20HbInputVirtualRocker19RockerSelectionModeE @ 1608 NONAME ABSENT
- _ZN16HbInputVkbWidget14rockerPositionEv @ 1609 NONAME
+ _ZN16HbInputVkbWidget14rockerPositionEv @ 1609 NONAME ABSENT
_ZN18HbInputButtonGroup8fontSizeENS_21HbInputButtonTextTypeE @ 1610 NONAME
_ZN25HbInputButtonGroupPrivate14layoutTextLineEN18HbInputButtonGroup21HbInputButtonTextTypeEPK13HbInputButtonRK6QSizeFR9QTextLineS7_ @ 1611 NONAME
_ZN25HbInputButtonGroupPrivate8fontSizeEN18HbInputButtonGroup21HbInputButtonTextTypeE @ 1612 NONAME
@@ -1638,7 +1638,7 @@
_ZN18HbInputSettingList13closeSettingsERK23HbInputMethodDescriptorRK10QByteArray @ 1637 NONAME
_ZN18HbInputSettingList19inputMethodSelectedERK23HbInputMethodDescriptorRK10QByteArray @ 1638 NONAME
_ZN20HbInputSettingWidget14setCangjieModeEi @ 1639 NONAME
- _ZN20HbInputSettingWidget21resetChineseInputModeEv @ 1640 NONAME
+ _ZN20HbInputSettingWidget21resetChineseInputModeEv @ 1640 NONAME ABSENT
_ZN20HbInputSettingWidget22setPortraitInputMethodEi @ 1641 NONAME
_ZN20HbInputSettingWidget23setLandscapeInputMethodEi @ 1642 NONAME
_ZN20HbInputSettingWidget11setHwrSpeedEi @ 1643 NONAME
@@ -1657,4 +1657,7 @@
_ZN20HbSctKeyboardPrivate10keyAtIndexEi @ 1656 NONAME
_ZN20HbSctKeyboardPrivate15countActiveKeysEv @ 1657 NONAME
_ZN20HbSctKeyboardPrivate22applyEditorConstraintsEP18HbInputFocusObjectP18HbInputButtonGroup @ 1658 NONAME
+ _ZN16HbInputVkbWidget10iconDrawerEv @ 1659 NONAME
+ _ZN20HbInputSettingWidget34setDefaultLanguageForKeyboardInputEi @ 1660 NONAME
+ _ZN20HbInputSettingWidget21resetChineseInputModeE15HbInputLanguage @ 1661 NONAME
--- a/src/hbinput/inputwidgets/hbinputbuttongroup.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputbuttongroup.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -42,6 +42,7 @@
#include <hbwidgetfeedback.h>
#include <hbdeviceprofile.h>
#include <hbinputregioncollector_p.h>
+#include <hbinputsettingproxy.h>
#include "hbframedrawerpool_p.h"
#include "hbinputbutton.h"
@@ -72,6 +73,7 @@
const QString HbButtonPreviewColor("qtc_input_preview_normal");
const QString HbCharacterSelectionPreviewColor("qtc_input_button_accented_normal");
+const QString HbHwrSctKeyboard("hwr_symbol_keypad");
const int HbLongPressTimeout = 600;
const int HbAutoRepeatTimeout = 100;
@@ -347,6 +349,11 @@
qreal cellWidth = q->boundingRect().width() / mGridSize.width();
qreal cellHeight = q->boundingRect().height() / mGridSize.height();
+ Qt::Orientation orientation = Qt::Horizontal;
+ if (q->mainWindow()) {
+ orientation = q->mainWindow()->orientation();
+ }
+
// Calculate text size
QFont font = HbFontSpec(HbFontSpec::Primary).font();
font.setPixelSize(int(group->fontSize(HbInputButtonGroup::ButtonTextTypeLabel)));
@@ -368,6 +375,11 @@
x = q->boundingRect().width() - width;
}
qreal y = item->position().y() * cellHeight - height;
+ if (y < 0 &&
+ orientation == Qt::Horizontal &&
+ q->objectName() == HbHwrSctKeyboard) {
+ y = (item->position().y() + 1)* cellHeight;
+ }
group->setGeometry(QRectF(q->mapToScene(x, y), QSizeF(width, height)));
if (q->parentItem()) {
group->setZValue(q->parentItem()->zValue() + 1);
@@ -1140,9 +1152,6 @@
resetFontSizes();
setAcceptedMouseButtons(Qt::LeftButton);
-
- setFlag(QGraphicsItem::ItemIsPanel, true);
- setActive(false);
}
/*!
--- a/src/hbinput/inputwidgets/hbinputcandidatelist.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputcandidatelist.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -197,12 +197,12 @@
void HbCandidateList::populateList(const QStringList &candidates, bool addSpellQuery)
{
Q_D(HbCandidateList);
- // Only for the first time when we launch candidate list its not setting a layout,
- // Mostly the problem is form Qt side, for the time being to resolve issue related to candidate list
- // making visible property true.
+ // Only for the first time when we launch candidate list its not setting a layout,
+ // Mostly the problem is form Qt side, for the time being to resolve issue related to candidate list
+ // making visible property true.
setVisible(true);
- QEvent event(QEvent::Polish);
- QApplication::sendEvent(this, &event);
+ QEvent event(QEvent::Polish);
+ QApplication::sendEvent(this, &event);
setContentWidget(d->mList);
d->setPriority(HbPopupPrivate::VirtualKeyboard + 1); // Should be shown on top of virtual keyboard.
--- a/src/hbinput/inputwidgets/hbinputmethodselectionlist.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputmethodselectionlist.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -68,8 +68,9 @@
mList->setItemRecycling(false);
HbInputSettingProxy *proxy = HbInputSettingProxy::instance();
- HbInputMethodDescriptor descriptor = proxy->preferredInputMethod();
- QByteArray customData = proxy->preferredInputMethodCustomData(q->mainWindow()->orientation());
+ Qt::Orientation orientation = q->mainWindow()->orientation();
+ HbInputMethodDescriptor descriptor = proxy->preferredInputMethod(orientation);
+ QByteArray customData = proxy->preferredInputMethodCustomData(orientation);
QList<HbInputMethodDescriptor> methodList = HbInputMethod::listCustomInputMethods(q->mainWindow()->orientation(), proxy->globalInputLanguage());
methodList.insert(0, HbInputMethod::defaultInputMethod(q->mainWindow()->orientation()));
--- a/src/hbinput/inputwidgets/hbinputsctkeyboard.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsctkeyboard.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -34,6 +34,7 @@
#include <hbinpututils.h>
#include <hbframedrawer.h>
#include <hbinputsettingproxy.h>
+#include <hbmainwindow.h>
#include "hbinputbuttongroup.h"
#include "hbinputbutton.h"
@@ -156,7 +157,12 @@
HbInputVkbWidgetPrivate::init();
- if (HbInputSettingProxy::instance()->activeKeyboard() & HbQwertyKeyboardMask) {
+ Qt::Orientation orientation = Qt::Horizontal;
+ if (q->mainWindow()) {
+ orientation = q->mainWindow()->orientation();
+ }
+
+ if (HbInputSettingProxy::instance()->activeKeyboard(orientation) & HbQwertyKeyboardMask) {
mType = HbKeyboardSctLandscape;
} else {
mType = HbKeyboardSctPortrait;
@@ -193,7 +199,7 @@
} else if (keyCode(i) == HbInputButton::ButtonKeyCodeAlphabet) {
// Button that is used to return to normal keypad should be shown as latched
item->setState(HbInputButton::ButtonStateLatched);
- if (mType == HbKeyboardSctPortrait || mType == HbKeyboardSctEmail || mType == HbKeyboardSctUrl ) {
+ if (mType == HbKeyboardSctPortrait || mType == HbKeyboardSctEmail || mType == HbKeyboardSctUrl ) {
// Portrait SCT has different symbol icon from the default one
item->setIcon(HbIcon(HbInputButtonIconSymbol2), HbInputButton::ButtonIconIndexPrimary);
}
@@ -275,16 +281,24 @@
void HbSctKeyboardPrivate::updateKeyCodes()
{
Q_Q(HbSctKeyboard);
+
HbInputFocusObject *focusedObject = mOwner->focusObject();
if (!focusedObject) {
return;
}
- if (HbInputSettingProxy::instance()->activeKeyboard() & HbQwertyKeyboardMask){
+ Qt::Orientation orientation = Qt::Horizontal;
+ if (q->mainWindow()) {
+ orientation = q->mainWindow()->orientation();
+ }
+
+ if (HbInputSettingProxy::instance()->activeKeyboard(orientation) & HbQwertyKeyboardMask){
mType = HbKeyboardSctLandscape;
- } else if (focusedObject && focusedObject->editorInterface().editorClass() == HbInputEditorClassEmail) {
+ } else if (focusedObject && focusedObject->editorInterface().editorClass() == HbInputEditorClassEmail &&
+ mKeymap->keyboard(HbKeyboardSctEmail)) {
mType = HbKeyboardSctEmail;
- } else if (focusedObject && focusedObject->editorInterface().editorClass() == HbInputEditorClassUrl) {
+ } else if (focusedObject && focusedObject->editorInterface().editorClass() == HbInputEditorClassUrl &&
+ mKeymap->keyboard(HbKeyboardSctUrl)) {
mType = HbKeyboardSctUrl;
} else {
mType = HbKeyboardSctPortrait;
@@ -309,13 +323,13 @@
if (keyboardMap && key < keyboardMap->keys.count()) {
// Replace space and enter markers with correct keycodes
if (focusedObject->characterAllowedInEditor(keyboardMap->keys.at(key)->characters(HbModifierNone).at(0)) || mType == HbKeyboardSctLandscape){
- if (keyboardMap->keys.at(key)->keycode.unicode() == HbSctSpaceMarker) {
- item->setKeyCode(HbInputButton::ButtonKeyCodeSpace);
- } else if (keyboardMap->keys.at(key)->keycode.unicode() == HbSctEnterMarker) {
- item->setKeyCode(HbInputButton::ButtonKeyCodeEnter);
- } else {
- item->setKeyCode(keyboardMap->keys.at(key)->keycode.unicode());
- }
+ if (keyboardMap->keys.at(key)->keycode.unicode() == HbSctSpaceMarker) {
+ item->setKeyCode(HbInputButton::ButtonKeyCodeSpace);
+ } else if (keyboardMap->keys.at(key)->keycode.unicode() == HbSctEnterMarker) {
+ item->setKeyCode(HbInputButton::ButtonKeyCodeEnter);
+ } else {
+ item->setKeyCode(keyboardMap->keys.at(key)->keycode.unicode());
+ }
} else {
i--;
}
@@ -390,7 +404,7 @@
if (keyboardMap && totalKeys < keyboardMap->keys.count()) {
while (index){
if (focusedObject->characterAllowedInEditor(keyboardMap->keys.at(totalKeys)->characters(HbModifierNone).at(0))){
- index--;
+ index--;
}
totalKeys++;
}
--- a/src/hbinput/inputwidgets/hbinputsettinglist.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsettinglist.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -305,7 +305,7 @@
bool langSupportsPrediction = (predFactory->predictionEngineForLanguage(d->mPrimaryLanguage) != NULL);
HbInputSettingProxy::instance()->setGlobalSecondaryInputLanguage(d->mSecondaryLanguage);
- bool predictionStatus = settings->predictiveInputStatusForActiveKeyboard();
+ bool predictionStatus = settings->predictiveInputStatusForActiveKeyboard();
if (!langSupportsPrediction && predictionStatus) {
d->mIsPredictionDisabled = true;
settings->setPredictiveInputStatusForActiveKeyboard(false);
--- a/src/hbinput/inputwidgets/hbinputsettingwidget.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsettingwidget.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -34,10 +34,14 @@
#include <QPluginLoader>
#include <QDir>
#include <QtAlgorithms>
+#include <hbinputcontextplugin.h>
+#include <hbinputmodeproperties.h>
#include "hbinputcheckboxlist_p.h"
#include "hbinputsettingproxy_p.h"
#include <hbinputmethoddescriptor.h>
+#include <hbinputmethod.h>
+#include <hbmainwindow.h>
const QString statusOff = QObject::tr("Off");
const QString statusOn = QObject::tr("On");
@@ -53,11 +57,18 @@
const QString KCangjieEasyName("CangjieEasy");
const QString KCangjieAdvancedName("CangjieAdvanced");
const QString KHwrName("Handwriting");
-const QString KHwrVerySlowName("VerySlow");
+const QString KHwrVerySlowName("Very Slow");
const QString KHwrSlowName("Slow");
const QString KHwrNormalName("Normal");
const QString KHwrFastName("Fast");
-const QString KHwrVeryFastName("VeryFast");
+const QString KHwrVeryFastName("Very Fast");
+
+// strings used for default language
+const QString KDefaultChineseName("Chinese");
+const QString KDefaultEnglishName("English");
+
+// hwr speed index are exactly saming as enum HbHwrWritingSpeed
+const int KHwrSpeedCount = 5;
// strings used for represent cangjie
const QString KCangjieGeneralName("Cangjie");
@@ -75,36 +86,22 @@
const int KCangjieAdvancedMode = 5;
const int KHwrMode = 6;
-// define chinese input plugin name
-#ifdef Q_OS_WIN
-const QString KCnHwrPluginName("HbChineseHwrd.dll");
-#else
-#ifdef Q_OS_SYMBIAN
-const QString KCnHwrPluginName("HbChineseHwr.qtplugin");
-#else
-const QString KCnHwrPluginName("HbChineseHwr.dll");
-#endif
-#endif
+class HbCnInputModeMap
+{
+public:
+ int mMode;
+ QString mModeName;
+};
-#ifdef Q_OS_WIN
-const QString KCnVItutPluginName("HbChineseVItutd.dll");
-#else
-#ifdef Q_OS_SYMBIAN
-const QString KCnVItutPluginName("HbChineseVItut.qtplugin");
-#else
-const QString KCnVItutPluginName("HbChineseVItut.dll");
-#endif
-#endif
-
-#ifdef Q_OS_WIN
-const QString KCnVkbPluginName("HbChineseVkbd.dll");
-#else
-#ifdef Q_OS_SYMBIAN
-const QString KCnVkbPluginName("HbChineseVkb.qtplugin");
-#else
-const QString KCnVkbPluginName("HbChineseVkb.dll");
-#endif
-#endif
+const HbCnInputModeMap modesMap[] = {
+ {KPinyinMode, KPinyinName},
+ {KStrokeMode, KStrokeName},
+ {KZhuyinMode, KZhuyinName},
+ {KCangjieNormalMode, KCangjieNormalName},
+ {KCangjieEasyMode, KCangjieEasyName},
+ {KCangjieAdvancedMode, KCangjieAdvancedName},
+ {KHwrMode, KHwrName}
+};
class HbInputSettingWidgetPrivate
{
@@ -120,15 +117,16 @@
HbInputLanguage indexToLanguage(int index, const QList<HbInputLanguage> &languageList);
void createSecondaryLanguageList();
void updateContentWidgetData();
+ // following API used by chinese
int inputModeToIndex(const int &inputMode, const QList<int> &inputModeList);
int indexToInputmode(int index, const QList<int> &inputModeList);
void createChineseSettingGroup(HbDataFormModel *model);
+ void createValidModesList(QStringList &imModeNames, QList<int> &imModeList);
+ QString inputModeName(int mode) const;
+ int inputModeByGivenName(const QString& imName) const;
+ int defaultModeByGivenLang(const HbInputLanguage &lang) const;
- QInputContextPlugin *pluginInstance(const QString &pluginFileName) const;
- HbInputMethodDescriptor findInputMethodDescriptor(const QString &inputMethodString);
- void setInputMethodVar(Qt::Orientation orientation, QString &inputMethodString, QByteArray &num);
- QByteArray createHwrSpeedData(QByteArray preferredCustomData, int index);
-public:
+public:
HbDataForm *mForm;
HbDataFormModelItem *mPrimaryLanguageItem;
HbDataFormModelItem *mSecondaryLanguageItem;
@@ -164,7 +162,7 @@
int mCnLandscapeInputMode;
int mCnCangjieInputMode;
- int mHwrSpeed;
+ HbHwrWritingSpeed mHwrSpeed;
QList<int> mCnPortraitInputModeList;
QList<int> mCnLandscapeInputModeList;
QList<int> mCangjieInputModeList;
@@ -172,6 +170,8 @@
QStringList mCnLandscapeInputModeNames;
QStringList mCnCangjieInputModeNames;
QStringList mHwrSpeedNames;
+ QStringList mCnDefaultLanguageNames;
+ HbDataFormModelItem *mCnDefaultLanguageItem;
};
/*!
@@ -190,11 +190,14 @@
q_ptr(0),
mModel(0),
mLanguageGroup(0),
- mChineseInputGroup(0),
+ mChineseInputGroup(0),
mPortraitInputMethodItem(0),
mLandscapeInputMethodItem(0),
mHwrSpeedItem(0),
- mCangjieItem(0)
+ mCangjieItem(0),
+ mCnCangjieInputMode(KCangjieNormalMode),
+ mCnDefaultLanguageItem(0)
+
{
}
@@ -224,7 +227,7 @@
// simply update the settings dependant content widget data of all the items
updateContentWidgetData();
//make sure that the items are not expanded
- QModelIndex index = mModel->indexFromItem(mSecondaryLanguageItem->parent());
+ QModelIndex index = mModel->indexFromItem(mSecondaryLanguageItem ? mSecondaryLanguageItem->parent(): mPrimaryLanguageItem->parent());
mForm->setExpanded(index, false);
index = mModel->indexFromItem(mKeypressTimeoutItem->parent());
mForm->setExpanded(index, false);
@@ -233,88 +236,111 @@
}
}
-void HbInputSettingWidgetPrivate::createChineseSettingGroup(HbDataFormModel *model)
-{
- Q_Q(HbInputSettingWidget);
- int imMode = KChineseInputModeNone;
- QByteArray ba = HbInputSettingProxy::instance()->preferredInputMethodCustomData(Qt::Vertical);
- QString portraitCustomData(ba);
- QString imName = portraitCustomData.split(" ").at(0);
- HbInputLanguage lang = HbInputSettingProxy::instance()->globalInputLanguage();
+void HbInputSettingWidgetPrivate::createValidModesList(QStringList &imModeNames, QList<int> &imModeList)
+{
+ Qt::Orientation orientation = Qt::Horizontal;
+ if (mForm) {
+ orientation = mForm->mainWindow()->orientation();
+ }
- if (imName == KPinyinName) {
- imMode = KPinyinMode;
- } else if (imName == KStrokeName) {
- imMode = KStrokeMode;
- } else if (imName == KZhuyinName) {
- imMode = KZhuyinMode;
- } else if (imName == KHwrName) {
- imMode = KHwrMode;
- } else {
- if (lang.variant() == QLocale::China) {
- imMode = KPinyinMode;
- } else if (lang.variant() == QLocale::HongKong) {
- imMode = KStrokeMode;
- } else if (lang.variant() == QLocale::Taiwan) {
- imMode = KZhuyinMode;
+ QList<HbInputMethodDescriptor> methodList = HbInputMethod::listCustomInputMethods(orientation,
+ HbInputSettingProxy::instance()->globalInputLanguage());
+ methodList.insert(0, HbInputMethod::defaultInputMethod(orientation));
+
+ foreach(const HbInputMethodDescriptor &des, methodList) {
+ QStringList displayNames = des.displayNames();
+ if (!displayNames.isEmpty()) {
+ imModeNames += displayNames;
+ } else {
+ QString displayName = des.displayName();
+ imModeNames.append(displayName);
}
}
- mCnPortraitInputMode = imMode;
+ imModeNames.removeDuplicates();
+ // filter out the input mode that not valid to current screen orientation
+ if (imModeNames.contains(KCangjieGeneralName)) {
+ imModeNames.removeOne(KCangjieGeneralName);
+ }
- ba = HbInputSettingProxy::instance()->preferredInputMethodCustomData(Qt::Horizontal);
- QString landscapeCustomData(ba);
- imName = landscapeCustomData.split(" ").at(0);
+ for (int i = 0; i < imModeNames.count(); ++i) {
+ imModeList.append(inputModeByGivenName(imModeNames.at(i)));
+ }
+}
+
+QString HbInputSettingWidgetPrivate::inputModeName(int mode) const
+{
+ int cnImCnts = sizeof(modesMap) / sizeof(modesMap[0]);
+ if (mode >= 0 && mode < cnImCnts) {
+ return modesMap[mode].mModeName;
+ }
+
+ return QString();
+}
- mCnCangjieInputMode = KCangjieNormalMode;
- if (imName == KPinyinName) {
- mCnLandscapeInputMode = KPinyinMode;
- } else if (imName == KStrokeName) {
- mCnLandscapeInputMode = KStrokeMode;
- } else if (imName == KZhuyinName) {
- mCnLandscapeInputMode = KZhuyinMode;
- } else if (imName == KCangjieNormalName) {
- mCnLandscapeInputMode = KCangjieNormalMode;
- mCnCangjieInputMode = KCangjieNormalMode;
- } else if (imName == KCangjieEasyName) {
- mCnLandscapeInputMode = KCangjieNormalMode;
- mCnCangjieInputMode = KCangjieEasyMode;
- } else if (imName == KCangjieAdvancedName) {
- mCnLandscapeInputMode = KCangjieNormalMode;
- mCnCangjieInputMode = KCangjieAdvancedMode;
- } else if (imName == KHwrName) {
- mCnLandscapeInputMode = KHwrMode;
+int HbInputSettingWidgetPrivate::inputModeByGivenName(const QString& imName) const
+{
+ int cnMode = KChineseInputModeNone;
+
+ if (imName == KCangjieGeneralName) {
+ HbCangjieDetailMode cjDetail = HbInputSettingProxy::instance()->detailedCangjieMode();
+ switch (cjDetail) {
+ case HbCangjieEasy: {
+ cnMode = KCangjieEasyMode;
+ }
+ break;
+ case HbCangjieAdvanced: {
+ cnMode = KCangjieAdvancedMode;
+ }
+ break;
+ case HbCangjieNormal:
+ default: {
+ cnMode = KCangjieNormalMode;
+ }
+ break;
+ }
} else {
- if (lang.variant() == QLocale::China) {
- mCnLandscapeInputMode = KPinyinMode;
- } else if (lang.variant() == QLocale::HongKong) {
- mCnLandscapeInputMode = KStrokeMode;
- } else if (lang.variant() == QLocale::Taiwan) {
- mCnLandscapeInputMode = KZhuyinMode;
+ int cnImCnts = sizeof(modesMap) / sizeof(modesMap[0]);
+ for (int i = 0; i < cnImCnts; ++i) {
+ if (modesMap[i].mModeName == imName) {
+ cnMode = modesMap[i].mMode;
+ }
}
}
- Qt::Orientation orientation = HbInputSettingProxy::instance()->screenOrientation();
- ba = HbInputSettingProxy::instance()->preferredInputMethodCustomData(orientation);
- QString customData(ba);
- if (customData.split(" ").count() > 1) {
- imName = customData.split(" ").at(1);
- if (imName == KHwrVerySlowName) {
- mHwrSpeed = 0;
- } else if (imName == KHwrSlowName) {
- mHwrSpeed = 1;
- } else if (imName == KHwrNormalName) {
- mHwrSpeed = 2;
- } else if (imName == KHwrFastName) {
- mHwrSpeed = 3;
- } else if (imName == KHwrVeryFastName) {
- mHwrSpeed = 4;
- } else {
- mHwrSpeed = 2;
- }
- } else {
- mHwrSpeed = 2;
+ if (KChineseInputModeNone == cnMode) {
+ HbInputLanguage lang = HbInputSettingProxy::instance()->globalInputLanguage();
+ cnMode = defaultModeByGivenLang(lang);
}
+
+ return cnMode;
+}
+
+int HbInputSettingWidgetPrivate::defaultModeByGivenLang(const HbInputLanguage &lang) const
+{
+ int imMode = KChineseInputModeNone;
+ if (lang.variant() == QLocale::China) {
+ imMode = KPinyinMode;
+ } else if (lang.variant() == QLocale::HongKong) {
+ imMode = KStrokeMode;
+ } else if (lang.variant() == QLocale::Taiwan) {
+ imMode = KZhuyinMode;
+ }
+
+ return imMode;
+}
+
+void HbInputSettingWidgetPrivate::createChineseSettingGroup(HbDataFormModel *model)
+{
+ Q_Q(HbInputSettingWidget);
+ QByteArray ba = HbInputSettingProxy::instance()->preferredInputMethodCustomData(Qt::Vertical);
+ QString imName(ba);
+ HbInputLanguage lang = HbInputSettingProxy::instance()->globalInputLanguage();
+ mCnPortraitInputMode = inputModeByGivenName(imName);
+
+ ba = HbInputSettingProxy::instance()->preferredInputMethodCustomData(Qt::Horizontal);
+ imName = QString(ba);
+ mCnLandscapeInputMode = inputModeByGivenName(imName);
mHwrSpeedNames.clear();
mCnPortraitInputModeList.clear();
@@ -322,27 +348,47 @@
mCnPortraitInputModeNames.clear();
mCnLandscapeInputModeNames.clear();
mCnCangjieInputModeNames.clear();
+ mCnDefaultLanguageNames.clear();
- mHwrSpeedNames << "Very slow" << "Slow" << "Normal" << "Fast" << "Very Fast";
- if (mPrimaryInputLanguage == HbInputLanguage(QLocale::Chinese, QLocale::China)) {
- mCnPortraitInputModeList << KPinyinMode << KStrokeMode << KHwrMode;
- mCnLandscapeInputModeList << KPinyinMode << KStrokeMode << KHwrMode;
- mCnPortraitInputModeNames << KPinyinName << KStrokeName << KHwrName;
- mCnLandscapeInputModeNames << KPinyinName << KStrokeName << KHwrName;
- } else if (mPrimaryInputLanguage == HbInputLanguage(QLocale::Chinese, QLocale::HongKong)) {
- mCnPortraitInputModeList << KStrokeMode << KHwrMode;
- mCnLandscapeInputModeList << KStrokeMode << KCangjieNormalMode << KHwrMode;
+ createValidModesList(mCnPortraitInputModeNames, mCnPortraitInputModeList);
+ mCnLandscapeInputModeNames = mCnPortraitInputModeNames;
+ mCnLandscapeInputModeList = mCnPortraitInputModeList;
+
+ // append cangjie to landscape related list if need
+ if (mPrimaryInputLanguage == HbInputLanguage(QLocale::Chinese, QLocale::HongKong) &&
+ !mCnLandscapeInputModeNames.contains(KCangjieGeneralName)) {
+
+ int index = HbInputSettingProxy::instance()->detailedCangjieMode();
+ switch(index) {
+ case 0:
+ mCnCangjieInputMode = KCangjieEasyMode;
+ break;
+ case 1:
+ mCnCangjieInputMode = KCangjieNormalMode;
+ break;
+ case 2:
+ mCnCangjieInputMode = KCangjieAdvancedMode;
+ break;
+ default:
+ break;
+ }
+
+ QStringList tmpInputmodeNames;
+ QList<int> tmpInputmode;
+ tmpInputmodeNames << mCnLandscapeInputModeNames.at(0) << KCangjieGeneralName << mCnLandscapeInputModeNames.at(1);
+ tmpInputmode << mCnLandscapeInputModeList.at(0) << mCnCangjieInputMode << mCnLandscapeInputModeList.at(1);
+ mCnLandscapeInputModeList.clear();
+ mCnLandscapeInputModeNames.clear();
+ mCnLandscapeInputModeList = tmpInputmode;
+ mCnLandscapeInputModeNames = tmpInputmodeNames;
mCangjieInputModeList << KCangjieEasyMode << KCangjieNormalMode << KCangjieAdvancedMode;
- mCnPortraitInputModeNames << KStrokeName << KHwrName;
- mCnLandscapeInputModeNames << KStrokeName << KCangjieGeneralName << KHwrName;
mCnCangjieInputModeNames << KEasy << KNormal << KAdvanced;
- } else if (mPrimaryInputLanguage == HbInputLanguage(QLocale::Chinese, QLocale::Taiwan)) {
- mCnPortraitInputModeList << KZhuyinMode << KHwrMode;
- mCnLandscapeInputModeList << KZhuyinMode << KHwrMode;
- mCnPortraitInputModeNames << KZhuyinName << KHwrName;
- mCnLandscapeInputModeNames << KZhuyinName << KHwrName;
}
+ mHwrSpeed = HbInputSettingProxy::instance()->hwrWritingSpeed();
+ mHwrSpeedNames << KHwrVerySlowName << KHwrSlowName << KHwrNormalName << KHwrFastName << KHwrVeryFastName;
+ mCnDefaultLanguageNames << KDefaultChineseName << KDefaultEnglishName;
+
if (!mChineseInputGroup) {
mChineseInputGroup = model->appendDataFormGroup(QObject::tr("Chinese Input"));
mPortraitInputMethodItem = new HbDataFormModelItem(HbDataFormModelItem::ComboBoxItem, QObject::tr("Portrait mode input method"));
@@ -368,17 +414,24 @@
mHwrSpeedItem = new HbDataFormModelItem(HbDataFormModelItem::ComboBoxItem, QObject::tr("Handwriting speed"));
mChineseInputGroup->appendChild(mHwrSpeedItem);
mHwrSpeedItem->setContentWidgetData(QString("items"), mHwrSpeedNames);
- int hwr = mHwrSpeed;
- mHwrSpeedItem->setContentWidgetData(QString("currentIndex"), hwr);
+ mHwrSpeedItem->setContentWidgetData(QString("currentIndex"), mHwrSpeed);
mHwrSpeedItem->setContentWidgetData(QString("objectName"), QString("handwriting_speed"));
mForm->addConnection(mHwrSpeedItem, SIGNAL(currentIndexChanged(int)), q, SLOT(setHwrSpeed(int)));
+
+ mCnDefaultLanguageItem = new HbDataFormModelItem(HbDataFormModelItem::ComboBoxItem, QObject::tr("Default language for keyboard input"));
+ mChineseInputGroup->appendChild(mCnDefaultLanguageItem);
+ int defaultLanguageIndex = HbInputSettingProxy::instance()->useWesternDefaultKeypadForChinese()?1:0;
+ mCnDefaultLanguageItem->setContentWidgetData(QString("items"), mCnDefaultLanguageNames);
+ mCnDefaultLanguageItem->setContentWidgetData(QString("currentIndex"), defaultLanguageIndex);
+ mCnDefaultLanguageItem->setContentWidgetData(QString("objectName"), QString("default_language_for_keyboard_input"));
+ mForm->addConnection(mCnDefaultLanguageItem, SIGNAL(currentIndexChanged(int)), q, SLOT(setDefaultLanguageForKeyboardInput(int)));
}
+ int cangjieIdx = HbInputSettingProxy::instance()->detailedCangjieMode();
if (mPrimaryInputLanguage == HbInputLanguage(QLocale::Chinese, QLocale::HongKong)) {
mCangjieItem = new HbDataFormModelItem(HbDataFormModelItem::ComboBoxItem, QObject::tr("Cangjie mode"));
mChineseInputGroup->appendChild(mCangjieItem);
mCangjieItem->setContentWidgetData(QString("items"), mCnCangjieInputModeNames);
- int cangjieIdx = inputModeToIndex(mCnCangjieInputMode, mCangjieInputModeList);
QVariant varCang;
varCang.setValue(cangjieIdx);
mCangjieItem->setContentWidgetData(QString("currentIndex"), varCang);
@@ -387,12 +440,14 @@
}
}
-void HbInputSettingWidgetPrivate::updateContentWidgetData()
+void HbInputSettingWidgetPrivate::updateContentWidgetData()
{
// current primary language
mPrimaryLanguageItem->setContentWidgetData(QString("currentIndex"), languageToIndex(mPrimaryInputLanguage, mPrimaryLanguages));
- mSecondaryLanguageItem->setContentWidgetData(QString("currentIndex"), languageToIndex(mSecondaryInputLanguage, mSecondaryLanguages));
+ if (mSecondaryLanguageItem) {
+ mSecondaryLanguageItem->setContentWidgetData(QString("currentIndex"), languageToIndex(mSecondaryInputLanguage, mSecondaryLanguages));
+ }
// key press timeout
mKeypressTimeoutItem->setContentWidgetData(QString("sliderPosition"), mKeypressTimeout);
if (mCharacterPreviewEnabled) {
@@ -419,13 +474,18 @@
mPrimaryCandidateItem->setContentWidgetData(QString("text"), exactTyping);
mPrimaryCandidateItem->setContentWidgetData(QString("additionalText"), bestPrediction);
}
+
+ if(mChineseInputGroup && mCnDefaultLanguageItem) {
+ int defaultLanguageIndex = HbInputSettingProxy::instance()->useWesternDefaultKeypadForChinese()?1:0;
+ mCnDefaultLanguageItem->setContentWidgetData(QString("currentIndex"), defaultLanguageIndex);
+ }
}
/*!
Creates setting items to this widget
*/
void HbInputSettingWidgetPrivate::createSettingItems()
-{
+{
Q_Q(HbInputSettingWidget);
mModel = new HbDataFormModel();
@@ -614,148 +674,6 @@
}
}
-QInputContextPlugin *HbInputSettingWidgetPrivate::pluginInstance(const QString &pluginFileName) const
-{
- if (QLibrary::isLibrary(pluginFileName)) {
- QPluginLoader loader(pluginFileName);
- QObject *plugin = loader.instance();
- if (plugin) {
- return qobject_cast<QInputContextPlugin *>(plugin);
- }
- }
-
- return 0;
-}
-
-HbInputMethodDescriptor HbInputSettingWidgetPrivate::findInputMethodDescriptor(const QString &inputMethodString)
-{
- HbInputMethodDescriptor descriptor;
- // Query plugin paths and scan the folders.
- QStringList folders = HbInputSettingProxy::instance()->inputMethodPluginPaths();
- foreach(const QString &folder, folders) {
- QDir dir(folder);
- for (unsigned int i = 0; i < dir.count(); i++) {
- QString path = QString(dir.absolutePath());
- if (path.right(1) != "\\" && path.right(1) != "/") {
- path += QDir::separator();
- }
- path += inputMethodString;
- QInputContextPlugin *inputContextPlugin = pluginInstance(path);
- if (inputContextPlugin) {
- descriptor.setPluginNameAndPath(dir.absolutePath() + QDir::separator() + inputMethodString);
-
- // For each found plugin, check if there is already a list item for it.
- // If not, then add one.
- QStringList contextKeys = inputContextPlugin->keys();
- foreach(QString key, contextKeys) {
- descriptor.setKey(key);
- descriptor.setDisplayName(inputContextPlugin->displayName(key));
- }
- break;
- }
- }
- }
- return descriptor;
-}
-
-void HbInputSettingWidgetPrivate::setInputMethodVar(Qt::Orientation orientation, QString &inputMethodString, QByteArray &customData)
-{
- int inputMode = KChineseInputModeNone;
- if (orientation == Qt::Vertical) {
- inputMode = mCnPortraitInputMode;
- } else if (orientation == Qt::Horizontal) {
- inputMode = mCnLandscapeInputMode;
- } else {
- return;
- }
-
- switch (inputMode) {
- case KPinyinMode: {
- orientation == Qt::Vertical ? inputMethodString = KCnVItutPluginName : inputMethodString = KCnVkbPluginName;
- customData.append(KPinyinName.toLatin1().data());
- }
- break;
- case KStrokeMode: {
- orientation == Qt::Vertical ? inputMethodString = KCnVItutPluginName : inputMethodString = KCnVkbPluginName;
- customData.append(KStrokeName.toLatin1().data());
- }
- break;
- case KZhuyinMode: {
- orientation == Qt::Vertical ? inputMethodString = KCnVItutPluginName : inputMethodString = KCnVkbPluginName;
- customData.append(KZhuyinName.toLatin1().data());
- }
- break;
- case KHwrMode: {
- inputMethodString = KCnHwrPluginName;
- customData.append(KHwrName.toLatin1().data());
- }
- break;
- case KCangjieNormalMode: {
- inputMethodString = KCnVkbPluginName;
- customData.append(KCangjieNormalName.toLatin1().data());
- }
- break;
- case KCangjieEasyMode: {
- inputMethodString = KCnVkbPluginName;
- customData.append(KCangjieEasyName.toLatin1().data());
- }
- break;
- case KCangjieAdvancedMode: {
- inputMethodString = KCnVkbPluginName;
- customData.append(KCangjieAdvancedName.toLatin1().data());
- }
- break;
- default:
- break;
- }
-
- QByteArray preferredCustomData = HbInputSettingProxy::instance()->preferredInputMethodCustomData(orientation);
- QString imName(preferredCustomData);
- QStringList temp = imName.split(" ");
- if (temp.count() > 1) {
- customData.append(" ");
- customData.append(temp.at(1).toLatin1().data());
- } else {
- customData.append(" ");
- customData.append(KHwrNormalName.toLatin1().data());
- }
- customData.append((char)0);
- return;
-}
-
-QByteArray HbInputSettingWidgetPrivate::createHwrSpeedData(QByteArray preferredCustomData, int index)
-{
- QString imName(preferredCustomData);
- QStringList temp = imName.split(" ");
-
- QByteArray customData;
- customData.append(temp.at(0).toLatin1().data());
- customData.append(" ");
- switch (index) {
- case 0:
- customData.append(KHwrVerySlowName.toLatin1().data());
- break;
- case 1:
- customData.append(KHwrSlowName.toLatin1().data());
- break;
- case 2:
- customData.append(KHwrNormalName.toLatin1().data());
- break;
- case 3:
- customData.append(KHwrFastName.toLatin1().data());
- break;
- case 4:
- customData.append(KHwrVeryFastName.toLatin1().data());
- break;
- default:
- break;
- }
- customData.append((char)0);
- return customData;
-}
-
-/// @endcond
-
/*!
Constructs input setting widget
*/
@@ -945,6 +863,10 @@
HbPredictionFactory *predFactory = HbPredictionFactory::instance();
bool oldPLangSupportsPrediction = (predFactory->predictionEngineForLanguage(d->mPrimaryInputLanguage) != NULL);
d->mPrimaryInputLanguage = d->indexToLanguage(index, d->mPrimaryLanguages);
+ if (d->mPrimaryInputLanguage.language() == QLocale::Chinese) {
+ HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, HbInputMethodDescriptor());
+ HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, HbInputMethodDescriptor());
+ }
HbInputSettingProxy::instance()->setGlobalInputLanguage(d->mPrimaryInputLanguage);
bool langSupportsPrediction = (predFactory->predictionEngineForLanguage(d->mPrimaryInputLanguage) != NULL);
if (oldPLangSupportsPrediction != langSupportsPrediction) {
@@ -980,6 +902,8 @@
if (d->mChineseInputGroup) {
model->removeItem(d->mChineseInputGroup);
d->mChineseInputGroup = NULL;
+ HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, HbInputMethodDescriptor());
+ HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, HbInputMethodDescriptor());
}
} else {
HbDataFormModel *model = qobject_cast<HbDataFormModel *>(d->mForm->model());
@@ -993,7 +917,7 @@
d->mSecondaryLanguageItem = NULL;
}
- resetChineseInputMode();
+ resetChineseInputMode(d->mPrimaryInputLanguage);
d->createChineseSettingGroup(model);
d->mForm->setModel(model);
}
@@ -1097,12 +1021,35 @@
{
Q_D(HbInputSettingWidget);
d->mCnPortraitInputMode = d->indexToInputmode(index, d->mCnPortraitInputModeList);
- QString inputMethodString;
QByteArray customData;
- d->setInputMethodVar(Qt::Vertical, inputMethodString, customData);
+ HbInputMethodDescriptor descriptor;
- const HbInputMethodDescriptor descriptor = d->findInputMethodDescriptor(inputMethodString);
- HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, (const HbInputMethodDescriptor &)descriptor, customData);
+ if (d->mCnPortraitInputMode != KHwrMode) {
+ QString imName = d->inputModeName(d->mCnPortraitInputMode);
+ customData.append(imName.toLatin1().data());
+ customData.append((char)0);
+ descriptor = HbInputMethod::defaultInputMethod(Qt::Vertical);
+ } else {
+ customData.append(KHwrName.toLatin1().data());
+ customData.append((char)0);
+ QList<HbInputMethodDescriptor> methodList = HbInputMethod::listCustomInputMethods(Qt::Vertical, HbInputSettingProxy::instance()->globalInputLanguage());
+ foreach(const HbInputMethodDescriptor &des, methodList) {
+ if (des.displayName() == "Chinese Hand Writing Recognition") {
+ descriptor = des;
+ break;
+ }
+ }
+ }
+
+ Qt::Orientation orientation = Qt::Vertical;
+ if (d->mForm) {
+ orientation = d->mForm->mainWindow()->orientation();
+ }
+
+ HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, descriptor, customData);
+ if (orientation == Qt::Vertical) {
+ HbInputMethod::activeInputMethod()->activateInputMethod(descriptor);
+ }
}
/*!
@@ -1112,12 +1059,43 @@
{
Q_D(HbInputSettingWidget);
d->mCnLandscapeInputMode = d->indexToInputmode(index, d->mCnLandscapeInputModeList);
- QString inputMethodString;
QByteArray customData;
- d->setInputMethodVar(Qt::Horizontal, inputMethodString, customData);
+ HbInputMethodDescriptor descriptor;
+
+ if (d->mCnLandscapeInputMode != KHwrMode) {
+ QString imName;
+ if (d->mCnLandscapeInputMode == KCangjieNormalMode ||
+ d->mCnLandscapeInputMode == KCangjieEasyMode ||
+ d->mCnLandscapeInputMode == KCangjieAdvancedMode) {
+ imName = KCangjieGeneralName;
+ } else {
+ imName = d->inputModeName(d->mCnLandscapeInputMode);
+ }
- const HbInputMethodDescriptor descriptor = d->findInputMethodDescriptor(inputMethodString);
+ customData.append(imName.toLatin1().data());
+ customData.append((char)0);
+ descriptor = HbInputMethod::defaultInputMethod(Qt::Horizontal);
+ } else {
+ customData.append(KHwrName.toLatin1().data());
+ customData.append((char)0);
+ QList<HbInputMethodDescriptor> methodList = HbInputMethod::listCustomInputMethods(Qt::Horizontal, HbInputSettingProxy::instance()->globalInputLanguage());
+ foreach(const HbInputMethodDescriptor &des, methodList) {
+ if (des.displayName() == "Chinese Hand Writing Recognition") {
+ descriptor = des;
+ break;
+ }
+ }
+ }
+
+ Qt::Orientation orientation = Qt::Horizontal;
+ if (d->mForm) {
+ orientation = d->mForm->mainWindow()->orientation();
+ }
+
HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, descriptor, customData);
+ if (orientation == Qt::Horizontal) {
+ HbInputMethod::activeInputMethod()->activateInputMethod(descriptor);
+ }
}
/*!
@@ -1129,69 +1107,62 @@
d->mCnCangjieInputMode = d->indexToInputmode(index, d->mCangjieInputModeList);
d->mCnLandscapeInputMode = d->mCnCangjieInputMode;
- QString inputMethodString;
+ QString imName = KCangjieGeneralName;
QByteArray customData;
- d->setInputMethodVar(Qt::Horizontal, inputMethodString, customData);
+ customData.append(imName.toLatin1().data());
+ customData.append((char)0);
- const HbInputMethodDescriptor descriptor = d->findInputMethodDescriptor(inputMethodString);
+ HbInputMethodDescriptor descriptor;
+ descriptor = HbInputMethod::defaultInputMethod(Qt::Horizontal);
+
HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, descriptor, customData);
+ HbInputSettingProxy::instance()->setDetailedCangjieMode(HbCangjieDetailMode(index));
}
-
/*!
Saves the handwriting speed
*/
void HbInputSettingWidget::setHwrSpeed(int index)
{
- Q_D(HbInputSettingWidget);
- Qt::Orientation currentOrientation = HbInputSettingProxy::instance()->screenOrientation();
- QByteArray portraitCustomData = HbInputSettingProxy::instance()->preferredInputMethodCustomData(Qt::Vertical);
- QByteArray landscapeCustomData = HbInputSettingProxy::instance()->preferredInputMethodCustomData(Qt::Horizontal);
- HbInputMethodDescriptor portraitDes = HbInputSettingProxy::instance()->preferredInputMethod(Qt::Vertical);
- HbInputMethodDescriptor landscapeDes = HbInputSettingProxy::instance()->preferredInputMethod(Qt::Horizontal);
- QByteArray portraitHwrspeed = d->createHwrSpeedData(portraitCustomData, index);
- QByteArray landscapeHwrspeed = d->createHwrSpeedData(landscapeCustomData, index);
-
- if (currentOrientation == Qt::Vertical) {
- HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, landscapeDes, landscapeHwrspeed);
- HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, portraitDes, portraitHwrspeed);
-
- } if (currentOrientation == Qt::Horizontal) {
- HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, portraitDes, portraitHwrspeed);
- HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, landscapeDes, landscapeHwrspeed);
+ // hwr speed index in setting widget are exactly same as enum HbHwrWritingSpeed of setting proxy
+ if (index >= 0 && index < KHwrSpeedCount) {
+ HbInputSettingProxy::instance()->setHwrWritingSpeed(HbHwrWritingSpeed(index));
}
}
/*!
Saves the portrait input method
*/
-void HbInputSettingWidget::resetChineseInputMode()
+void HbInputSettingWidget::resetChineseInputMode(HbInputLanguage lang)
{
Q_D(HbInputSettingWidget);
- HbInputLanguage lang = HbInputSettingProxy::instance()->globalInputLanguage();
+ d->mCnPortraitInputMode = d->defaultModeByGivenLang(lang);
+ d->mCnLandscapeInputMode = d->defaultModeByGivenLang(lang);
+ HbInputSettingProxy::instance()->setDetailedCangjieMode(HbCangjieNormal);
- if (lang.variant() == QLocale::China) {
- d->mCnPortraitInputMode = KPinyinMode;
- d->mCnLandscapeInputMode = KPinyinMode;
- } else if (lang.variant() == QLocale::HongKong) {
- d->mCnPortraitInputMode = KStrokeMode;
- d->mCnLandscapeInputMode = KStrokeMode;
- } else if (lang.variant() == QLocale::Taiwan) {
- d->mCnPortraitInputMode = KZhuyinMode;
- d->mCnLandscapeInputMode = KZhuyinMode;
+ QByteArray portraitCustomData;
+ QByteArray landscapeCustomData;
+ QString imName = d->inputModeName(d->mCnPortraitInputMode);
+ portraitCustomData.append(imName.toLatin1().data());
+ portraitCustomData.append((char)0);
+ HbInputMethodDescriptor portraitDescriptor = HbInputMethod::defaultInputMethod(Qt::Vertical);
+
+ if (d->mCnLandscapeInputMode == KCangjieNormalMode ||
+ d->mCnLandscapeInputMode == KCangjieEasyMode ||
+ d->mCnLandscapeInputMode == KCangjieAdvancedMode) {
+ imName = KCangjieGeneralName;
+ } else {
+ imName = d->inputModeName(d->mCnLandscapeInputMode);
}
- QString portraitInputMethodString;
- QString landscapeInputMethodString;
- QByteArray portraitCustomData;
- QByteArray landscapeCustomData;
- d->setInputMethodVar(Qt::Vertical, portraitInputMethodString, portraitCustomData);
- d->setInputMethodVar(Qt::Horizontal, landscapeInputMethodString, landscapeCustomData);
+ landscapeCustomData.append(imName.toLatin1().data());
+ landscapeCustomData.append((char)0);
+ HbInputMethodDescriptor landscapeDescriptor = HbInputMethod::defaultInputMethod(Qt::Horizontal);
- const HbInputMethodDescriptor portraitDescriptor = d->findInputMethodDescriptor(portraitInputMethodString);
- const HbInputMethodDescriptor landscapeDescriptor = d->findInputMethodDescriptor(landscapeInputMethodString);
HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Vertical, (const HbInputMethodDescriptor &)portraitDescriptor, portraitCustomData);
HbInputSettingProxy::instance()->setPreferredInputMethod(Qt::Horizontal, (const HbInputMethodDescriptor &)landscapeDescriptor, landscapeCustomData);
+
+ return;
}
/*
@@ -1226,4 +1197,16 @@
disconnect(settings, SIGNAL(primaryCandidateModeChanged(HbPrimaryCandidateMode)), this, SLOT(updatePrimaryCandidateMode(HbPrimaryCandidateMode)));
}
+/*!
+Set default language for keyboard input
+*/
+void HbInputSettingWidget::setDefaultLanguageForKeyboardInput(int index)
+{
+ if(index == 1) {
+ HbInputSettingProxy::instance()->setWesternDefaultKeypadForChinese(true);
+ } else {
+ HbInputSettingProxy::instance()->setWesternDefaultKeypadForChinese(false);
+ }
+}
+
// End of file
--- a/src/hbinput/inputwidgets/hbinputsettingwidget.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsettingwidget.h Thu Sep 02 20:44:51 2010 +0300
@@ -47,7 +47,7 @@
void initializeWidget();
void resetWidget();
- void resetChineseInputMode();
+ void resetChineseInputMode(HbInputLanguage lang);
public slots:
void updateGlobalInputLanguage(const HbInputLanguage &newLanguage);
@@ -73,6 +73,8 @@
void setLandscapeInputMethod(int index);
void setHwrSpeed(int index);
void setCangjieMode(int index);
+
+ void setDefaultLanguageForKeyboardInput(int index);
protected:
HbInputSettingWidgetPrivate *const d_ptr;
--- a/src/hbinput/inputwidgets/hbinputsmileypicker.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsmileypicker.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -124,6 +124,7 @@
// Make sure the smiley picker never steals focus.
setFlag(QGraphicsItem::ItemIsPanel, true);
+ d->mActivePopup = false;
setActive(false);
if (!rows || !columns) {
--- a/src/hbinput/inputwidgets/hbinputvirtualrocker.cpp Wed Aug 18 10:05:37 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,317 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (developer.feedback@nokia.com)
-**
-** This file is part of the HbInput module of the UI Extensions for Mobile.
-**
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this file.
-** Please review the following information to ensure the GNU Lesser General
-** Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** If you have questions regarding the use of this file, please contact
-** Nokia at developer.feedback@nokia.com.
-**
-****************************************************************************/
-#include "hbinputvirtualrocker.h"
-
-#include <QGraphicsSceneMouseEvent>
-#include <QPixmap>
-#include <QBitmap>
-#include <QPainter>
-#include <QCoreApplication>
-#include <QDir>
-#include <hbicon.h>
-#include <hbinputsettingproxy.h>
-#include <hbwidgetfeedback.h>
-
-#include "hbinputvkbwidget.h"
-
-/// @cond
-
-const qreal HbRockerXThreshold = 5.0;
-const qreal HbRockerYThreshold = 50.0;
-const qreal HbRockerDimOpacity = 1.0;
-const qreal HbRockerNormalOpacity = 1.0;
-const qreal HbRockerWidth = 50.0;
-const qreal HbNormalSizeInUnits = 5;
-const qreal HbPressedSizeInUnits = 9.5;
-const qreal HbActivatedSizeInUnits = 9.5;
-
-class HbInputVirtualRockerPrivate
-{
-public:
- explicit HbInputVirtualRockerPrivate(HbInputVirtualRocker *rocker);
- ~HbInputVirtualRockerPrivate();
- int rockerEventRepeats(qreal distance);
-
-public:
- HbInputVirtualRocker *q_ptr;
- HbIcon mIconNormal;
- HbIcon mIconPressed;
- HbIcon mIconActivated;
- HbInputVirtualRocker::RockerSelectionMode mShifted;
- QPointF mLastPoint;
- QPointF mMousePressPoint;
- bool mPressed;
-};
-
-HbInputVirtualRockerPrivate::HbInputVirtualRockerPrivate(HbInputVirtualRocker *rocker)
- : q_ptr(rocker),
- mShifted(HbInputVirtualRocker::RockerSelectionModeOff),
- mLastPoint(0.0, 0.0),
- mMousePressPoint(0.0, 0.0),
- mPressed(false)
-{
- mIconNormal = HbIcon("qtg_graf_trackpoint_normal" );
- mIconPressed = HbIcon("qtg_graf_trackpoint_pressed" );
- mIconActivated = HbIcon("qtg_graf_trackpoint_activated" );
-
- q_ptr->grabGesture(Qt::SwipeGesture);
- q_ptr->grabGesture(Qt::TapGesture);
- q_ptr->grabGesture(Qt::PanGesture);
-}
-
-HbInputVirtualRockerPrivate::~HbInputVirtualRockerPrivate()
-{
-}
-
-int HbInputVirtualRockerPrivate::rockerEventRepeats(qreal distance)
-{
- // cursor move multiplier for cursor moving signals, depending on the rocker move speed
- int repeats = 1;
- if (distance > 30) {
- repeats = 30;
- } else if (distance > 20) {
- repeats = 10;
- } else if (distance > 10) {
- repeats = 2;
- }
- return repeats;
-}
-
-/// @endcond
-
-/*!
-@alpha
-@hbinput
-\class HbInputVirtualRocker
-\brief Virtual rocker widget for generating direction events from virtual keyboards.
-
-Virtual rocker is a virtual version of a mouse pointer decive commonly used in many laptop PC keyboards.
-It is typically embedded into virtual keyboards. It generates direction events which can be used for
-moving editor cursor, highlighting text, etc.
-
-User first presses virtual rocker widget and then slides finger to desired direction. The widget
-will emit direction events based on the direction of finger momvement, relative to the starting point.
-When the finger is lifted, rocker widget returns to normal state and stops sending events.
-
-Double clicking will start selection mode. Rocker appearance changes and direction events have shift modifier on
-but otherwise it behaves in similar manner as described above.
-
-\sa HbInputVkbWidget
-*/
-/*!
-\enum HbInputVirtualRocker::RockerDirection
-
-This enum defines virtual rocker directions.
-*/
-/*!
-\enum HbInputVirtualRocker::RockerSelectionMode
-
-This enum defines virtual rocker selection modes.
-*/
-
-/*!
-\deprecated HbInputVirtualRocker::HbInputVirtualRocker(HbInputVkbWidget*)
- is deprecated.
-
-Constructs the object.
-*/
-HbInputVirtualRocker::HbInputVirtualRocker(HbInputVkbWidget *parent)
- : HbWidget(parent), d_ptr(new HbInputVirtualRockerPrivate(this))
-{
- setOpacity(HbRockerDimOpacity);
-}
-
-/*!
-\deprecated HbInputVirtualRocker::HbInputVirtualRocker(HbInputVirtualRockerPrivate&, QGraphicsWidget*)
- is deprecated.
-
-Constructs the object.
-*/
-HbInputVirtualRocker::HbInputVirtualRocker(HbInputVirtualRockerPrivate &dd, QGraphicsWidget *parent)
- : HbWidget(parent), d_ptr(&dd)
-{
- setOpacity(HbRockerDimOpacity);
-}
-
-/*!
-\deprecated HbInputVirtualRocker::~HbInputVirtualRocker()
- is deprecated.
-
-Destroys the widget.
-*/
-HbInputVirtualRocker::~HbInputVirtualRocker()
-{
- delete d_ptr;
-}
-
-/*!
-\deprecated HbInputVirtualRocker::mousePressEvent(QGraphicsSceneMouseEvent*)
- is deprecated.
-*/
-void HbInputVirtualRocker::mousePressEvent(QGraphicsSceneMouseEvent *event)
-{
- Q_D(HbInputVirtualRocker);
-
- QPointF position = event->pos();
- QPointF delta = position - QPointF(HbRockerWidth / 2, HbRockerWidth / 2);
-
- qreal squareDistance = delta.y() * delta.y() + delta.x() * delta.x();
- qreal squareRadius = HbRockerWidth * HbRockerWidth / 4;
- if (squareRadius > squareDistance) {
- // the touch point is inside circle which diameter is HbRockerWidth
- d->mLastPoint = position;
- d->mMousePressPoint = position;
- emit rockerDirection(HbRockerDirectionPress, d->mShifted);
- HbWidgetFeedback::triggered(this, Hb::InstantPressed);
- setOpacity(HbRockerNormalOpacity);
- d->mPressed = true;
- } else {
- // outside of circle: give event to a push button
- event->ignore();
- }
-}
-
-/*!
-\deprecated HbInputVirtualRocker::mouseReleaseEvent(QGraphicsSceneMouseEvent*)
- is deprecated.
-*/
-void HbInputVirtualRocker::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
-{
- Q_UNUSED(event)
- Q_D(HbInputVirtualRocker);
-
- emit rockerDirection(HbRockerDirectionRelease, d->mShifted);
- setOpacity(HbRockerDimOpacity);
- d->mPressed = false;
- update();
- d->mShifted = RockerSelectionModeOff;
- HbWidgetFeedback::triggered(this, Hb::InstantReleased);
-}
-
-/*!
-\deprecated HbInputVirtualRocker::mouseMoveEvent(QGraphicsSceneMouseEvent*)
- is deprecated.
-*/
-void HbInputVirtualRocker::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
-{
- Q_D(HbInputVirtualRocker);
-
- if (event->buttons() != 0) {
- QPointF delta = event->pos() - d->mLastPoint;
- QPointF deltaPressLoc = event->pos() - d->mMousePressPoint;
- int repeats = 1;
-
- HbWidgetFeedback::triggered(this, Hb::InstantDraggedOver);
-
- if (delta.x() > HbRockerXThreshold) {
- repeats = d->rockerEventRepeats(delta.x());
- for (int i = 0; i < repeats; i++) {
- emit rockerDirection(HbRockerDirectionRight, d->mShifted);
- }
- d->mLastPoint = event->pos();
- } else if (delta.x() < -HbRockerXThreshold) {
- repeats = d->rockerEventRepeats(-delta.x());
- for (int i = 0; i < repeats; i++) {
- emit rockerDirection(HbRockerDirectionLeft, d->mShifted);
- }
- d->mLastPoint = event->pos();
- }
-
- if (delta.y() > HbRockerYThreshold) {
- repeats = d->rockerEventRepeats(delta.y());
- emit rockerDirection(HbRockerDirectionDown, d->mShifted);
- d->mLastPoint = event->pos();
- } else if (delta.y() < -HbRockerYThreshold) {
- emit rockerDirection(HbRockerDirectionUp, d->mShifted);
- d->mLastPoint = event->pos();
- }
- update();
- }
-}
-
-/*!
-\deprecated HbInputVirtualRocker::mouseDoubleClickEvent(QGraphicsSceneMouseEvent*)
- is deprecated.
-*/
-void HbInputVirtualRocker::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
-{
- Q_UNUSED(event)
- Q_D(HbInputVirtualRocker);
-
- if (d->mShifted == RockerSelectionModeOff) {
- d->mShifted = RockerSelectionModeOn;
- } else {
- d->mShifted = RockerSelectionModeOff;
- }
-
- emit rockerDirection(HbRockerDirectionDoubleClick, d->mShifted);
- setOpacity(HbRockerNormalOpacity);
-}
-
-/*!
-\deprecated HbInputVirtualRocker::paint(QPainter*, const QStyleOptionGraphicsItem*, QWidget*)
- is deprecated.
-*/
-void HbInputVirtualRocker::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
-{
- Q_UNUSED(option)
- Q_UNUSED(widget)
- Q_D(HbInputVirtualRocker);
-
- painter->setRenderHint(QPainter::Antialiasing, true);
-
- qreal unitValue = HbDeviceProfile::profile(mainWindow()).unitValue();
- if (selectionMode() == RockerSelectionModeOn) {
- d->mIconActivated.setSize(QSizeF(HbActivatedSizeInUnits * unitValue, HbActivatedSizeInUnits * unitValue));
- d->mIconActivated.paint(painter, rect());
- } else if (d->mPressed) {
- d->mIconPressed.setSize(QSizeF(HbPressedSizeInUnits * unitValue, HbPressedSizeInUnits * unitValue));
- d->mIconPressed.paint(painter, rect());
- } else {
- d->mIconNormal.setSize(QSizeF(HbNormalSizeInUnits * unitValue, HbNormalSizeInUnits * unitValue));
- d->mIconNormal.paint(painter, rect());
- }
-}
-
-/*!
-\deprecated HbInputVirtualRocker::selectionMode() const
- is deprecated.
-*/
-HbInputVirtualRocker::RockerSelectionMode HbInputVirtualRocker::selectionMode() const
-{
- Q_D(const HbInputVirtualRocker);
- return d->mShifted;
-}
-
-/*!
-\deprecated HbInputVirtualRocker::gestureEvent(QGestureEvent*)
- is deprecated.
-*/
-void HbInputVirtualRocker::gestureEvent(QGestureEvent *event)
-{
- Q_UNUSED(event);
-}
-
-// End of file
--- a/src/hbinput/inputwidgets/hbinputvirtualrocker.h Wed Aug 18 10:05:37 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,88 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (developer.feedback@nokia.com)
-**
-** This file is part of the HbInput module of the UI Extensions for Mobile.
-**
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this file.
-** Please review the following information to ensure the GNU Lesser General
-** Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** If you have questions regarding the use of this file, please contact
-** Nokia at developer.feedback@nokia.com.
-**
-****************************************************************************/
-#ifndef HB_INPUT_VIRTUAL_ROCKER_H
-#define HB_INPUT_VIRTUAL_ROCKER_H
-
-#include <hbwidget.h>
-#include <hbinputdef.h>
-
-class HbInputVkbWidget;
-class HbInputVirtualRockerPrivate;
-
-class HB_INPUT_EXPORT HbInputVirtualRocker : public HbWidget
-{
- Q_OBJECT
-
-public:
- enum RockerDirection {
- HbRockerDirectionNone = 0,
- HbRockerDirectionLeft,
- HbRockerDirectionRight,
- HbRockerDirectionUp,
- HbRockerDirectionDown,
- HbRockerDirectionPress,
- HbRockerDirectionDoubleClick,
- HbRockerDirectionRelease,
- };
-
- enum RockerSelectionMode {
- RockerSelectionModeOff = 0,
- RockerSelectionModeOn
- };
-
-public:
- explicit HbInputVirtualRocker(HbInputVkbWidget *parent = 0);
- virtual ~HbInputVirtualRocker();
-
- RockerSelectionMode selectionMode() const;
-
- enum { Type = Hb::ItemType_VirtualTrackPoint };
- int type() const {
- return Type;
- }
-
-protected: // From QGraphicsItem
- void mousePressEvent(QGraphicsSceneMouseEvent *event);
- void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
- void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
- void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
- void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
- virtual void gestureEvent(QGestureEvent *event);
-
-signals:
- void rockerDirection(int aDirection, HbInputVirtualRocker::RockerSelectionMode aSelectionMode);
-
-protected:
- HbInputVirtualRocker(HbInputVirtualRockerPrivate &dd, QGraphicsWidget *parent = 0);
- HbInputVirtualRockerPrivate *const d_ptr;
-
-private:
- Q_DISABLE_COPY(HbInputVirtualRocker)
- Q_DECLARE_PRIVATE_D(d_ptr, HbInputVirtualRocker)
-};
-
-#endif // HB_INPUT_VIRTUAL_ROCKER_H
-
-// End of file
--- a/src/hbinput/inputwidgets/hbinputvkbwidget.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputvkbwidget.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -654,28 +654,6 @@
}
/*!
-\deprecated HbInputVkbWidget::setRockerVisible(bool)
- is deprecated.
-
-Sets virtual rocker visibility.
-*/
-void HbInputVkbWidget::setRockerVisible(bool visible)
-{
- Q_UNUSED(visible);
-}
-
-/*!
-\deprecated HbInputVkbWidget::isRockerVisible() const
- is deprecated.
-
-Returns true if virtual rocker is allowed to be visible.
-*/
-bool HbInputVkbWidget::isRockerVisible() const
-{
- return false;
-}
-
-/*!
Returns active keypad mode. Possible values are EModeAbc, EModeNumeric and EModeSct.
*/
HbKeypadMode HbInputVkbWidget::mode() const
@@ -994,18 +972,6 @@
}
/*!
-\deprecated HbInputVkbWidget::rockerPosition()
- is deprecated.
-
-Returns the virtual rocker position. The default position is in the middle
-of keypad button area.
-*/
-QPointF HbInputVkbWidget::rockerPosition()
-{
- return QPointF();
-}
-
-/*!
Sets the status of the background drawing. This method can be used to
optimize vkb widget drawing. If it is known that the widget will cover whole
vkb area and there are no places where the background shows through, then the background
@@ -1017,7 +983,6 @@
d->mDrawbackground = backgroundEnabled;
}
-
/*!
Returns all possible keys that the user could have intended to press
for the last registered touch along with their corresponding probability.
@@ -1307,6 +1272,14 @@
}
}
+/*!
+\reimp
+ */
+HbFrameDrawer* HbInputVkbWidget::iconDrawer()
+{
+ Q_D(HbInputVkbWidget);
+ return d->mIconDrawer;
+}
#include "moc_hbinputvkbwidget.cpp"
// End of file
--- a/src/hbinput/inputwidgets/hbinputvkbwidget.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputvkbwidget.h Thu Sep 02 20:44:51 2010 +0300
@@ -29,7 +29,6 @@
#include <hbdialog.h>
#include <hbinputdef.h>
#include <hbinputvirtualkeyboard.h>
-#include <hbinputvirtualrocker.h>
const int HbRepeatTimeout = 1000;
const int HbRepeatTimeoutShort = 150;
@@ -45,6 +44,7 @@
class HbView;
class HbKeymap;
class HbPanGesture;
+class HbFrameDrawer;
class HB_INPUT_EXPORT HbInputVkbWidget : public HbWidget, public HbVirtualKeyboard
{
@@ -95,9 +95,6 @@
virtual void setContentItem(QGraphicsLayoutItem *item);
virtual QGraphicsLayoutItem *contentItem() const;
- virtual void setRockerVisible(bool visible);
- virtual bool isRockerVisible() const;
-
virtual void setKeyboardDimmed(bool dimmed);
virtual void setBackgroundDrawing(bool backgroundEnabled);
virtual QList<HbKeyPressProbability> probableKeypresses();
@@ -117,15 +114,15 @@
protected:
// layout
- QSizeF keypadButtonAreaSize();
- virtual QPointF rockerPosition();
+ QSizeF keypadButtonAreaSize();
+ HbFrameDrawer* iconDrawer();
public slots:
void showSettingList();
void showSettingsView();
void closeSettingsView();
void executeMethodDialog();
- void closeSettingList();
+ virtual void closeSettingList();
void settingsClosed();
void showSmileyPicker(int rows = 0, int columns = 0);
void keypadLanguageChangeAnimationUpdate(qreal value);
@@ -139,7 +136,6 @@
signals:
void keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod closeMethod);
- void rockerDirection(int direction, HbInputVirtualRocker::RockerSelectionMode selectionMode);
void flickEvent(HbInputVkbWidget::HbFlickDirection direction);
void smileySelected(QString text);
void mouseMovedOutOfButton();
--- a/src/hbinput/inputwidgets/inputwidgets.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbinput/inputwidgets/inputwidgets.pri Thu Sep 02 20:44:51 2010 +0300
@@ -29,7 +29,6 @@
# hb input widget public headers
PUBLIC_HEADERS += $$PWD/hbinputvkbwidget.h
-PUBLIC_HEADERS += $$PWD/hbinputvirtualrocker.h
PUBLIC_HEADERS += $$PWD/hbinputcandidatelist.h
PUBLIC_HEADERS += $$PWD/hbinputmodeindicator.h
PUBLIC_HEADERS += $$PWD/hbinputexactwordpopup.h
@@ -52,7 +51,6 @@
# hb input widget sources
SOURCES += $$PWD/hbinputvkbwidget.cpp
-SOURCES += $$PWD/hbinputvirtualrocker.cpp
SOURCES += $$PWD/hbinputcandidatelist.cpp
SOURCES += $$PWD/hbinputmodeindicator.cpp
SOURCES += $$PWD/hbinputexactwordpopup.cpp
--- a/src/hbplugins/devicedialogs/devicemessageboxplugin/devicemessageboxplugin.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicemessageboxplugin/devicemessageboxplugin.pro Thu Sep 02 20:44:51 2010 +0300
@@ -50,7 +50,7 @@
MMP_RULES += SMPSAFE
hblib.sources = Hb.dll
- hblib.path = \sys\bin
+ hblib.path = /sys/bin
hblib.depends = "(0xEEF9EA38), 1, 0, 0, {\"Hb\"}"
pluginstub.sources = HbDeviceMessageBoxPlugin.dll
--- a/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -24,6 +24,9 @@
****************************************************************************/
#include <QtPlugin>
+#ifdef Q_OS_SYMBIAN
+#include <e32capability.h>
+#endif // Q_OS_SYMBIAN
#include <hbdevicedialog.h>
#include <hbdevicedialogtrace_p.h>
@@ -70,13 +73,20 @@
{
TRACE_ENTRY
Q_UNUSED(deviceDialogType)
+
+#ifdef Q_OS_SYMBIAN
+ // If show group is higher than normal, a swEvent capability is required
+ if (showLevel(parameters) != NormalLevel) {
+ return (securityInfo["sym-caps"].toInt() >> ECapabilitySwEvent) & 1;
+ } else {
+ return true; // all clients are allowed to use.
+ }
+#else
Q_UNUSED(parameters)
Q_UNUSED(securityInfo)
-
- // This plugin doesn't perform operations that may compromise security.
// All clients are allowed to use.
return true;
- TRACE_EXIT
+#endif // Q_OS_SYMBIAN
}
// Create device dialog widget
@@ -128,13 +138,16 @@
const QVariantMap ¶meters, DeviceDialogInfo *info) const
{
TRACE_ENTRY
- Q_UNUSED(parameters)
Q_UNUSED(deviceDialogType)
+ unsigned int level = static_cast<unsigned int>(showLevel(parameters));
+ if (level > CriticalLevel) {
+ return false;
+ }
+
info->group = GenericDeviceDialogGroup;
- info->flags = NoDeviceDialogFlags;
- info->priority = DefaultPriority;
- TRACE_EXIT
+ info->flags = level == NormalLevel ? NoDeviceDialogFlags : SecurityCheck;
+ info->showLevel = static_cast<ShowLevel>(level);
return true;
}
@@ -166,3 +179,14 @@
TRACE_EXIT
return d->mError;
}
+
+// Search parameters for show group
+int HbDeviceMessageBoxPlugin::showLevel(const QVariantMap ¶meters)
+{
+ int level = NormalLevel;
+ const QString propertyName("showLevel");
+ if (parameters.contains(propertyName)) {
+ level = parameters[propertyName].toInt();
+ }
+ return level;
+}
--- a/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxplugin_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxplugin_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -52,6 +52,7 @@
QStringList deviceDialogTypes() const;
PluginFlags pluginFlags() const;
int error() const;
+ static int showLevel(const QVariantMap ¶meters);
private:
Q_DISABLE_COPY(HbDeviceMessageBoxPlugin)
--- a/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxwidget.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxwidget.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -306,6 +306,18 @@
return HbMessageBox::standardButtons();
}
+
+void HbDeviceMessageBoxWidget::setShowLevel(int level)
+{
+ // Show level can only be set on construction
+ Q_UNUSED(level)
+}
+
+int HbDeviceMessageBoxWidget::showLevel() const
+{
+ return 0;
+}
+
// Action (accept or reject) was triggered
void HbDeviceMessageBoxWidget::actionTriggered()
{
--- a/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxwidget_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicemessageboxplugin/hbdevicemessageboxwidget_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -46,6 +46,7 @@
Q_PROPERTY(QString rejectAction READ rejectAction WRITE setRejectAction)
Q_PROPERTY(QString animationDefinition READ animationDefinition WRITE setAnimationDefinition)
Q_PROPERTY(HbMessageBox::StandardButtons standardButtons READ standardButtons WRITE setStandardButtons)
+ Q_PROPERTY(int showLevel READ showLevel WRITE setShowLevel)
public:
HbDeviceMessageBoxWidget(HbMessageBox::MessageBoxType type, const QVariantMap ¶meters);
@@ -90,6 +91,8 @@
QString animationDefinition() const;
void setStandardButtons(HbMessageBox::StandardButtons buttons);
HbMessageBox::StandardButtons standardButtons() const;
+ void setShowLevel(int group);
+ int showLevel() const;
static void parseActionData(QString &data);
QString actionData(ActionIndex index) const;
--- a/src/hbplugins/devicedialogs/devicenotificationdialogplugin/devicenotificationdialogplugin.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicenotificationdialogplugin/devicenotificationdialogplugin.pro Thu Sep 02 20:44:51 2010 +0300
@@ -51,7 +51,7 @@
MMP_RULES += SMPSAFE
hblib.sources = Hb.dll
- hblib.path = \sys\bin
+ hblib.path = /sys/bin
hblib.depends = "(0xEEF9EA38), 1, 0, 0, {\"Hb\"}"
pluginstub.sources = HbDeviceNotificationDialogPlugin.dll
--- a/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -70,13 +70,20 @@
{
TRACE_ENTRY
Q_UNUSED(deviceDialogType)
+
+#ifdef Q_OS_SYMBIAN
+ // If show group is higher than normal, a swEvent capability is required
+ if (showLevel(parameters) != NormalLevel) {
+ return (securityInfo["sym-caps"].toInt() >> ECapabilitySwEvent) & 1;
+ } else {
+ return true; // all clients are allowed to use.
+ }
+#else
Q_UNUSED(parameters)
Q_UNUSED(securityInfo)
-
- // This plugin doesn't perform operations that may compromise security. All clients
- // are allowed to use.
+ // All clients are allowed to use.
return true;
- TRACE_EXIT
+#endif // Q_OS_SYMBIAN
}
// Create device dialog widget
@@ -109,13 +116,14 @@
{
TRACE_ENTRY
Q_UNUSED(deviceDialogType);
- Q_UNUSED(parameters);
+ unsigned int level = static_cast<unsigned int>(showLevel(parameters));
+ if (level > CriticalLevel) {
+ return false;
+ }
info->group = DeviceNotificationDialogGroup;
- info->flags = NoDeviceDialogFlags;
- info->priority = DefaultPriority;
-
- TRACE_EXIT
+ info->flags = level == NormalLevel ? NoDeviceDialogFlags : SecurityCheck;
+ info->showLevel = static_cast<ShowLevel>(level);
return true;
}
@@ -147,3 +155,14 @@
TRACE_EXIT
return d->mError;
}
+
+// Search parameters for show group
+int HbDeviceNotificationDialogPlugin::showLevel(const QVariantMap ¶meters)
+{
+ int level = NormalLevel;
+ const QString propertyName("showLevel");
+ if (parameters.contains(propertyName)) {
+ level = parameters[propertyName].toInt();
+ }
+ return level;
+}
--- a/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogplugin_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogplugin_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -52,6 +52,7 @@
QStringList deviceDialogTypes() const;
PluginFlags pluginFlags() const;
int error() const;
+ static int showLevel(const QVariantMap ¶meters);
private:
Q_DISABLE_COPY(HbDeviceNotificationDialogPlugin)
--- a/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogwidget.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogwidget.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -184,6 +184,17 @@
TRACE_EXIT
}
+void HbDeviceNotificationDialogWidget::setShowLevel(int level)
+{
+ // Show level can only be set on construction
+ Q_UNUSED(level)
+}
+
+int HbDeviceNotificationDialogWidget::showLevel() const
+{
+ return 0;
+}
+
// Widget is about to hide. Closing effect has ended.
void HbDeviceNotificationDialogWidget::hideEvent(QHideEvent *event)
{
--- a/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogwidget_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/devicenotificationdialogplugin/hbdevicenotificationdialogwidget_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -39,6 +39,7 @@
Q_PROPERTY(QString iconName READ iconName WRITE setIconName)
Q_PROPERTY(bool touchActivation READ isTouchActivating WRITE enableTouchActivation)
Q_PROPERTY(QString animationDefinition READ animationDefinition WRITE setAnimationDefinition)
+ Q_PROPERTY(int showLevel READ showLevel WRITE setShowLevel)
public:
HbDeviceNotificationDialogWidget(const QVariantMap ¶meters);
@@ -64,6 +65,9 @@
void hideEvent(QHideEvent *event);
void showEvent(QShowEvent *event);
+ void setShowLevel(int level);
+ int showLevel() const;
+
QString animationDefinition() const;
void setAnimationDefinition(QString &animationDefinition);
--- a/src/hbplugins/devicedialogs/deviceprogressdialogplugin/deviceprogressdialogplugin.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/deviceprogressdialogplugin/deviceprogressdialogplugin.pro Thu Sep 02 20:44:51 2010 +0300
@@ -51,7 +51,7 @@
MMP_RULES += SMPSAFE
hblib.sources = Hb.dll
- hblib.path = \sys\bin
+ hblib.path = /sys/bin
hblib.depends = "(0xEEF9EA38), 1, 0, 0, {\"Hb\"}"
pluginstub.sources = HbDeviceProgressDialogPlugin.dll
--- a/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -70,13 +70,20 @@
{
TRACE_ENTRY
Q_UNUSED(deviceDialogType)
+
+#ifdef Q_OS_SYMBIAN
+ // If show group is higher than normal, a swEvent capability is required
+ if (showLevel(parameters) != NormalLevel) {
+ return (securityInfo["sym-caps"].toInt() >> ECapabilitySwEvent) & 1;
+ } else {
+ return true; // all clients are allowed to use.
+ }
+#else
Q_UNUSED(parameters)
Q_UNUSED(securityInfo)
-
- // This plugin doesn't perform operations that may compromise security. All clients
- // are allowed to use.
+ // All clients are allowed to use.
return true;
- TRACE_EXIT
+#endif // Q_OS_SYMBIAN
}
// Create device dialog widget
@@ -125,13 +132,16 @@
const QVariantMap ¶meters, DeviceDialogInfo *info) const
{
TRACE_ENTRY
- Q_UNUSED(parameters)
Q_UNUSED(deviceDialogType)
+ unsigned int level = static_cast<unsigned int>(showLevel(parameters));
+ if (level > CriticalLevel) {
+ return false;
+ }
+
info->group = GenericDeviceDialogGroup;
- info->flags = NoDeviceDialogFlags;
- info->priority = DefaultPriority;
- TRACE_EXIT
+ info->flags = level == NormalLevel ? NoDeviceDialogFlags : SecurityCheck;
+ info->showLevel = static_cast<ShowLevel>(level);
return true;
}
@@ -163,3 +173,14 @@
TRACE_EXIT
return d->mError;
}
+
+// Search parameters for show group
+int HbDeviceProgressDialogPlugin::showLevel(const QVariantMap ¶meters)
+{
+ int level = 0;
+ const QString propertyName("showLevel");
+ if (parameters.contains(propertyName)) {
+ level = parameters[propertyName].toInt();
+ }
+ return level;
+}
--- a/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogplugin_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogplugin_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -52,6 +52,7 @@
QStringList deviceDialogTypes() const;
PluginFlags pluginFlags() const;
int error() const;
+ static int showLevel(const QVariantMap ¶meters);
private:
Q_DISABLE_COPY(HbDeviceProgressDialogPlugin)
--- a/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogwidget.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogwidget.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -208,7 +208,7 @@
{
TRACE_ENTRY
QAction *act = action(Cancel);
- QString actionData;
+ QString actionData;
if (act) {
actionData.append(actionTextTag);
actionData.append(act->text());
@@ -277,6 +277,17 @@
mAnimationDefinition = animationDefinition;
}
+void HbDeviceProgressDialogWidget::setShowLevel(int level)
+{
+ // Level can only be set on construction
+ Q_UNUSED(level)
+}
+
+int HbDeviceProgressDialogWidget::showLevel() const
+{
+ return 0;
+}
+
// Widget is about to hide. Closing effect has ended.
void HbDeviceProgressDialogWidget::hideEvent(QHideEvent *event)
{
--- a/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogwidget_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/deviceprogressdialogplugin/hbdeviceprogressdialogwidget_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -42,6 +42,7 @@
Q_PROPERTY(QString iconName READ iconName WRITE setIconName)
Q_PROPERTY(QString animationDefinition READ animationDefinition WRITE setAnimationDefinition)
Q_PROPERTY(QString cancelAction READ cancelAction WRITE setCancelAction)
+ Q_PROPERTY(int showLevel READ showLevel WRITE setShowLevel)
public:
HbDeviceProgressDialogWidget(HbProgressDialog::ProgressDialogType progressDialogType, const QVariantMap ¶meters);
@@ -72,6 +73,8 @@
void showEvent(QShowEvent *event);
void setAnimationDefinition(QString &animationDefinition);
QString animationDefinition() const;
+ void setShowLevel(int level);
+ int showLevel() const;
QAction *action(ActionIndex index) const;
static void parseActionData(QString &data);
--- a/src/hbplugins/devicedialogs/indicatormenuplugin/hbindicatormenu_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/indicatormenuplugin/hbindicatormenu_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -85,7 +85,7 @@
Q_DECLARE_PRIVATE_D(d_ptr, HbDialog)
Q_DISABLE_COPY(HbIndicatorMenu)
- int mLastError;
+ int mLastError;
bool mShowEventReceived;
};
--- a/src/hbplugins/devicedialogs/indicatormenuplugin/hbindicatormenuplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/indicatormenuplugin/hbindicatormenuplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -111,7 +111,7 @@
info->group = IndicatorGroup;
info->flags = ReceiveIndicatorStatus;
- info->priority = DefaultPriority;
+ info->showLevel = NormalLevel;
TRACE_EXIT
return true;
--- a/src/hbplugins/devicedialogs/indicatormenuplugin/indicatormenuplugin.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/devicedialogs/indicatormenuplugin/indicatormenuplugin.pro Thu Sep 02 20:44:51 2010 +0300
@@ -54,7 +54,7 @@
MMP_RULES += SMPSAFE
hblib.sources = Hb.dll
- hblib.path = \sys\bin
+ hblib.path = /sys/bin
hblib.depends = "(0xEEF9EA38), 1, 0, 0, {\"Hb\"}"
pluginstub.sources = HbIndicatorMenuPlugin.dll
--- a/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectengine.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectengine.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -38,8 +38,8 @@
#include <hbmainwindow.h>
#include <hbabstractedit.h>
#include "hbmenucontainer_p.h"
-#include "hbinputvirtualrocker.h"
#include <hbnamespace_p.h>
+#include <hbglobal_p.h> // remove with HB_DEPRECATED
/*
Constructor
@@ -105,8 +105,8 @@
case Hb::InstantSelectionChanged:
propertyName = "selectionChangedFeedbackEffect";
break;
- case Hb::InstantMultitouchActivated:
- propertyName = "multitouchActivatedFeedbackEffect";
+ case Hb::InstantAdvancedGestureActivated:
+ propertyName = "advancedGestureActivatedFeedbackEffect";
break;
default:
propertyName = "defaultFeedbackEffect";
@@ -178,8 +178,8 @@
case Hb::InstantSelectionChanged:
propertyName = "selectionChangedFeedbackModalities";
break;
- case Hb::InstantMultitouchActivated:
- propertyName = "multitouchActivatedFeedbackModalities";
+ case Hb::InstantAdvancedGestureActivated:
+ propertyName = "advancedGestureActivatedFeedbackModalities";
break;
default:
propertyName = "defaultFeedbackModalities";
@@ -459,37 +459,6 @@
effect = HbFeedbackEffectUtils::instantOnEditorHighlight(edit, previousCursorPosition) ;
previousCursorPosition = edit->cursorPosition();
}
- }
- else if (const HbInputVirtualRocker *trackPoint = qobject_cast<const HbInputVirtualRocker *>(widget)) {
- if (trackPoint && trackPoint->mainWindow() && trackPoint->mainWindow()->scene() &&
- trackPoint->mainWindow()->scene()->focusItem()) {
-
- QGraphicsItem* graphicsItem = trackPoint->mainWindow()->scene()->focusItem();
-
- if (graphicsItem->isWidget()) {
- if (static_cast<QGraphicsWidget*>(graphicsItem)->inherits("HbAbstractEdit")) {
- if (HbAbstractEdit* edit = static_cast<HbAbstractEdit*>(graphicsItem)) {
- if (edit->cursorPosition() != previousCursorPosition) {
- effect = HbFeedbackEffectUtils::instantOnEditorHighlight(edit, previousCursorPosition);
- previousCursorPosition = edit->cursorPosition();
- }
- }
- }
- else if (static_cast<QGraphicsWidget*>(graphicsItem)->inherits("QGraphicsWebView") )
- {
- // This takes care of the case when the track point is used on a QGraphicsWebView (for e.g. cWRT)
- QVariant v;
- v = graphicsItem->scene()->inputMethodQuery( Qt::ImCursorPosition );
- if ( v.isValid() && v.canConvert<int>()) {
- int currentCursorPosition = v.toInt();
- if (currentCursorPosition != previousCursorPosition) {
- effect = HbFeedbackEffectUtils::instantOnEditorHighlight(trackPoint, previousCursorPosition);
- previousCursorPosition = currentCursorPosition;
- }
- }
- }
- }
- }
} else {
effect = HbFeedbackEffectUtils::instantOnDrag(widget, modifiers());
}
@@ -639,14 +608,23 @@
*/
void HbFeedbackEffectEngine::multitouchActivated(const HbWidget *widget)
{
+ HB_DEPRECATED("HbFeedbackEffectEngine::multitouchActivated(const HbWidget*) is deprecated. Use HbFeedbackEffectEngine::advancedGestureActivated(const HbWidget*) instead");
+ advancedGestureActivated(widget);
+}
+
+/*
+ Called by the feedback manager when a touch gesture with more than one finger is detected.
+*/
+void HbFeedbackEffectEngine::advancedGestureActivated(const HbWidget *widget)
+{
HbFeedback::InstantEffect effect = HbFeedback::None ;
HbFeedback::Modalities modalities = 0 ;
- Hb::InstantInteraction interaction = Hb::InstantMultitouchActivated;
+ Hb::InstantInteraction interaction = Hb::InstantAdvancedGestureActivated;
if(widgetOverridesEffect( widget, interaction)) {
effect = overrider.newInstantEffect;
} else {
- effect = HbFeedback::MultitouchActivate;
+ effect = HbFeedback::AdvancedGestureActivate;
}
if(widgetOverridesModalities(widget,interaction)) {
--- a/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectengine.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectengine.h Thu Sep 02 20:44:51 2010 +0300
@@ -57,7 +57,8 @@
void boundaryReached(const HbWidget *widget);
void rotated90Degrees(const HbWidget *widget);
void selectionChanged(const HbWidget *widget);
- void multitouchActivated(const HbWidget *widget);
+ void multitouchActivated(const HbWidget *widget); // deprecated
+ void advancedGestureActivated(const HbWidget *widget);
void continuousTriggered(const HbWidget *widget, Hb::ContinuousInteraction interaction, QPointF delta);
void continuousStopped(const HbWidget *widget, Hb::ContinuousInteraction interaction);
--- a/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectutils.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/feedback/feedbackeffectplugin/hbfeedbackeffectutils.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -31,7 +31,6 @@
#include <hbabstractedit.h>
#include <hbtextedit.h>
#include <hblineedit.h>
-#include <hbinputvirtualrocker.h>
#include <hbabstractslidercontrol.h>
#include <hbprogressslider.h>
#include <hbscrollbar.h>
@@ -105,7 +104,7 @@
case Hb::ItemType_MenuItem:
case Hb::ItemType_AbstractItemView:
-
+
case Hb::ItemType_ListView:
case Hb::ItemType_ListViewItem:
@@ -712,49 +711,7 @@
}
}
}
- else if (const HbInputVirtualRocker *trackPoint = qobject_cast<const HbInputVirtualRocker *>(widget)) {
- QGraphicsItem* graphicsItem = trackPoint->mainWindow()->scene()->focusItem();
-
- if (graphicsItem->isWidget() && (static_cast<QGraphicsWidget*>(graphicsItem)->inherits("QGraphicsWebView"))) {
- QVariant v;
- v = graphicsItem->scene()->inputMethodQuery( Qt::ImCursorPosition );
- if ( v.isValid() && v.canConvert<int>()) {
- int index;
- index = v.toInt();
- QVariant varSurrText;
- varSurrText = graphicsItem->scene()->inputMethodQuery( Qt::ImSurroundingText );
- if ( varSurrText.isValid() ) {
- QString text = varSurrText.toString();
- // Index (current cursor position) can be equal to the
- // length of the string (for e.g. when the cursor is at the end)
- // So we make sure we bring index within the bounds of the string
- if (!text.isEmpty() && index <= text.count()) {
- dist = abs(index - previousCursorPosition);
-
- if (previousCursorPosition < index || index == text.count()) {
- index--;
- }
- QChar character = text.at(index);
- emptyline = character.category() == QChar::Separator_Paragraph;
-
- if (emptyline) {
- effect = HbFeedback::EmptyLineSelection;
- }
- else if (dist > 1) {
- effect = HbFeedback::LineSelection;
- }
- else if (character.isSpace()) {
- effect = HbFeedback::BlankSelection;
- }
- else {
- effect = HbFeedback::TextSelection;
- }
- }
- }
- }
- }
- }
return effect;
}
@@ -847,8 +804,8 @@
default:
break;
}
- }
- }
+ }
+ }
else if (const HbAbstractItemView* itemView = qobject_cast<const HbAbstractItemView*>(widget)) {
if (itemView->selectionMode() == HbAbstractItemView::MultiSelection && (modifiers & Hb::ModifierScrolling)) {
effect = HbFeedback::MultipleCheckbox;
@@ -1038,7 +995,7 @@
modalities = HbFeedback::Tactile;
break;
- case Hb::InstantMultitouchActivated:
+ case Hb::InstantAdvancedGestureActivated:
modalities = HbFeedback::Tactile | HbFeedback::Audio;
break;
--- a/src/hbplugins/inputengines/hbautocomplete/hbautocomplete.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputengines/hbautocomplete/hbautocomplete.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -214,7 +214,7 @@
*/
QString HbAutoComplete::vendorIdString() const
{
- return HbAutoCompleteVendorIdString;
+ return HbAutoCompleteVendorIdString;
}
/*!
@@ -250,9 +250,9 @@
d->mActiveCollection = 0;
d->mActiveDictionary = HbExtraDictionaryFactory::instance()->createDictionary(aId);
- if (d->mActiveDictionary) {
- d->mActiveDictionary->setHostEngine(this);
- }
+ if (d->mActiveDictionary) {
+ d->mActiveDictionary->setHostEngine(this);
+ }
clear();
}
--- a/src/hbplugins/inputmethods/common/hbinputabstractbase.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputabstractbase.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -41,6 +41,7 @@
HbInputAbstractMethod::HbInputAbstractMethod()
{
mVanillQwertySwitch = new HbAction(QString("QTY"));
+ mIsFocusOnVanillaQtEditor = false;
}
// ---------------------------------------------------------------------------
@@ -163,7 +164,7 @@
bool HbInputAbstractMethod::isSctModeActive() const
{
- return false;
+ return false;
}
@@ -174,16 +175,16 @@
void HbInputAbstractMethod::focusReceived()
{
- bool isVannilaApp = false;
+ mIsFocusOnVanillaQtEditor = false;
QInputContext* context = qApp->inputContext();
if (context && context->focusWidget()) {
QWidget *focusedWidget = context->focusWidget();
if (!focusedWidget->inherits("HbMainWindow")) {
- isVannilaApp = true;
+ mIsFocusOnVanillaQtEditor = true;
}
}
- if(isVannilaApp && focusObject() ) {
+ if(mIsFocusOnVanillaQtEditor && focusObject() ) {
QList<HbAction*> customActions= focusObject()->editorInterface().actions();
if(!customActions.contains(mVanillQwertySwitch)) {
disconnect(mVanillQwertySwitch, SIGNAL(triggered(bool)));
@@ -196,16 +197,8 @@
void HbInputAbstractMethod::focusLost()
{
- bool isVannilaApp = false;
- QInputContext* context = qApp->inputContext();
- if (context && context->focusWidget()) {
- QWidget *focusedWidget = context->focusWidget();
- if (!focusedWidget->inherits("HbMainWindow")) {
- isVannilaApp = true;
- }
- }
- if(isVannilaApp && focusObject()) {
+ if(mIsFocusOnVanillaQtEditor && focusObject()) {
QList<HbAction*> customActions= focusObject()->editorInterface().actions();
if(customActions.contains(mVanillQwertySwitch)) {
disconnect(mVanillQwertySwitch, SIGNAL(triggered(bool)));
@@ -235,7 +228,7 @@
QChar HbInputAbstractMethod ::previousChar()
{
- return QChar();
+ return QChar();
}
--- a/src/hbplugins/inputmethods/common/hbinputabstractbase.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputabstractbase.h Thu Sep 02 20:44:51 2010 +0300
@@ -52,8 +52,8 @@
virtual void starKeySelected();
virtual void getCandidatePositionAndSize(HbCandidateList *candidatePopup,
HbInputVkbWidget *currentKeypad, QPointF & pos,QSizeF & size);
- virtual bool isSctModeActive() const;
- virtual QChar previousChar();
+ virtual bool isSctModeActive() const;
+ virtual QChar previousChar();
virtual HbKeyboardType currentKeyboardType() const;
public: // From HbInputMethod
void focusReceived();
@@ -63,6 +63,7 @@
void switchKeypad(bool isActive);
private:
HbAction *mVanillQwertySwitch;
+ bool mIsFocusOnVanillaQtEditor;
Q_DISABLE_COPY(HbInputAbstractMethod)
};
--- a/src/hbplugins/inputmethods/common/hbinputbasichandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputbasichandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -181,7 +181,7 @@
if(d->mAutoCompleter) {
d->mInputMethod->closeAutoCompletionPopup();
}
- break;
+ break;
default:
ret = HbInputModeHandler::filterEvent(event);
break;
--- a/src/hbplugins/inputmethods/common/hbinputmodehandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputmodehandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -49,6 +49,7 @@
Q_Q(HbInputModeHandler);
mTimer = new QTimer(q);
q->connect(mTimer, SIGNAL(timeout()), q, SLOT(_q_timeout()));
+ mTimer->setSingleShot(true);
}
// A virtual timeout function mode handlers should implement this slot.
@@ -87,7 +88,7 @@
{
allowedChars.clear();
HbInputLanguage language = mInputMethod->inputState().language();
-
+
if (!mKeymap) {
mKeymap = HbKeymapFactory::instance()->keymap(language);
}
@@ -96,13 +97,13 @@
return;
}
QString chars = mappedKey->characters(modifiers);
- // check whether current input language supports native digits. if yes, replace latin digits with native digits
+ // check whether current input language supports native digits. if yes, replace latin digits with native digits
for (int i = 0; i < chars.length(); i++) {
if (chars.at(i) >= '0' && chars.at(i) <= '9') {
chars = chars.replace(chars.at(i), HbInputUtils::findFirstNumberCharacterBoundToKey(mappedKey,
- language, HbInputUtils::inputDigitType(language)));
- }
- }
+ language, HbInputUtils::inputDigitType(language)));
+ }
+ }
// We need to see which of the characters in keyData are allowed to the editor.
// this looks like expensive operation, need to find out a better way/place to do it.
HbInputFocusObject *focusedObject = mInputMethod->focusObject();
@@ -168,8 +169,8 @@
if (event->type() == QEvent::KeyPress || event->type() == QEvent::KeyRelease) {
const QKeyEvent *keyEvent = static_cast<const QKeyEvent *>(event);
return filterEvent(keyEvent);
- }
- }
+ }
+ }
return false;
}
@@ -272,17 +273,17 @@
if (!d->mKeymap) {
d->mKeymap = HbKeymapFactory::instance()->keymap(language);
}
- bool isNumericEditor = d->mInputMethod->focusObject()->editorInterface().isNumericEditor();
- HbInputDigitType digitType = HbInputUtils::inputDigitType(language);
- if (isNumericEditor) {
- QLocale::Language systemLanguage = QLocale::system().language();
- if (language.language() != systemLanguage) {
+ bool isNumericEditor = d->mInputMethod->focusObject()->editorInterface().isNumericEditor();
+ HbInputDigitType digitType = HbInputUtils::inputDigitType(language);
+ if (isNumericEditor) {
+ QLocale::Language systemLanguage = QLocale::system().language();
+ if (language.language() != systemLanguage) {
digitType = HbDigitTypeLatin;
- }
- }
+ }
+ }
QChar numChr = HbInputUtils::findFirstNumberCharacterBoundToKey(
d->mKeymap->keyForKeycode(type, key), language, digitType);
- // when a number is to be entered, it should commit
+ // when a number is to be entered, it should commit
// the previous string and then append the number to the string
if (numChr != 0) {
commitAndAppendString(numChr);
--- a/src/hbplugins/inputmethods/common/hbinputmodehandler.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputmodehandler.h Thu Sep 02 20:44:51 2010 +0300
@@ -72,7 +72,7 @@
HbInputModeActionFocusRecieved, // focus received state
HbInputModeActionFocusLost, // focus lost state
HbInputModeActionCancelButtonPress,
- HbInputModeActionCloseSpellQuery,
+ HbInputModeActionCloseSpellQuery,
HbInputModeActionRestorePreviousState
// more..
};
@@ -92,7 +92,7 @@
virtual void commitAndUpdate(const QString& string, int replaceFrom = 0, int replaceLength = 0, bool isAsync = false);
void sendAndUpdate(QEvent &event);
virtual void setKeymap(const HbKeymap* keymap);
- void togglePrediction();
+ void togglePrediction();
signals:
// incase one mode handler is not capable of processing the events.
@@ -188,7 +188,6 @@
void commitExactWord();
virtual void candidatePopupClosed(QString activatedWord, int closingKey);
virtual void showExactWordPopupIfNeeded();
- void closeSpellQueryDialog();
void spellQueryDialogClosed(QObject *savedFocusObject,HbInputSpellQuery::HbSpellCloseReason closeReason,const QString &string);
void setAutocompletionStatus(bool status);
public slots:
@@ -197,6 +196,7 @@
void sctCharacterSelected(QString character);
void smileySelected(QString smiley);
void launchSpellQueryDialog();
+ void closeSpellQueryDialog();
signals://some useful signals related to popups
void launchInputQueryPopup(QString editWord);
--- a/src/hbplugins/inputmethods/common/hbinputnumerichandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputnumerichandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -73,8 +73,8 @@
commitAndUpdate(qc);
break;
}
- case HbInputButton::ButtonKeyCodeSettings:
- break;
+ case HbInputButton::ButtonKeyCodeSettings:
+ break;
default:
ret = HbInputModeHandler::filterEvent(event);
break;
--- a/src/hbplugins/inputmethods/common/hbinputpredictionhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/common/hbinputpredictionhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -81,14 +81,14 @@
//To prevent showing autocompletion part while deleting the characters using backspace key
mShowTail = false;
mShowTooltip = false;
- bool unused = false;
+ bool unused = false;
mEngine->updateCandidates(mBestGuessLocation, unused);
- //If Input length greater or equal to one then Append the current word to candidate
- if (!mCandidates->count() && mEngine->inputLength() >= 1) {
- mCandidates->append(mEngine->currentWord());
+ //If Input length greater or equal to one then Append the current word to candidate
+ if (!mCandidates->count() && mEngine->inputLength() >= 1) {
+ mCandidates->append(mEngine->currentWord());
}
- mCanContinuePrediction = true;
- // update the editor with the new preedit text.
+ mCanContinuePrediction = true;
+ // update the editor with the new preedit text.
updateEditor();
return;
} else {
@@ -96,7 +96,7 @@
// once the word is committed, we can not bring it back to inline edit.
// so if the engine does not have any data, we just send backspace event to the editor.
Q_Q(HbInputPredictionHandler);
- QKeyEvent event = QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier);
+ QKeyEvent event = QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier);
q->sendAndUpdate(event);
event = QKeyEvent(QEvent::KeyRelease, Qt::Key_Backspace, Qt::NoModifier);
q->sendAndUpdate(event);
@@ -208,7 +208,7 @@
int taillength = mCandidates->at(mBestGuessLocation).length() - mEngine->inputLength();
if (taillength > 0 && mShowTail) {
// TODO: Color from skin should be used
- QColor col = HbColorScheme::color("qtc_input_hint_normal");
+ QColor col = HbColorScheme::color("qtc_input_hint_normal");
QBrush brush(col);
QTextCharFormat gray;
gray.setForeground(brush);
@@ -220,11 +220,11 @@
} else {
list.append(QInputMethodEvent::Attribute(QInputMethodEvent::TextFormat, mEngine->inputLength(), taillength, gray));
}
- list.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, mEngine->inputLength(), 0, 0));
+ list.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, mEngine->inputLength(), 0, 0));
QInputMethodEvent event(mCandidates->at(mBestGuessLocation), list);
focusedObject->sendEvent(event);
} else {
- list.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, mCandidates->at(mBestGuessLocation).length(), 0, 0));
+ list.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, mCandidates->at(mBestGuessLocation).length(), 0, 0));
QInputMethodEvent event(mCandidates->at(mBestGuessLocation).left(mEngine->inputLength()), list);
focusedObject->sendEvent(event);
}
@@ -266,14 +266,14 @@
{
QString currentSelection = focusObject->inputMethodQuery(Qt::ImCurrentSelection).toString();
if(currentSelection.length()) {
- QKeyEvent event = QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier);
+ QKeyEvent event = QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier);
q->sendAndUpdate(event);
event = QKeyEvent(QEvent::KeyRelease, Qt::Key_Backspace, Qt::NoModifier);
q->sendAndUpdate(event);
} else {
deleteOneCharacter();
}
- }
+ }
ret = true;
break;
@@ -381,7 +381,7 @@
//The mouse has been clicked on the pre-editing word, launch candidate list
mInputMethod->launchCandidatePopup(*mCandidates);
- }
+ }
}
}
@@ -408,12 +408,12 @@
void HbInputPredictionHandlerPrivate::commit()
{
if (mEngine && mEngine->inputLength() > 0 && mCandidates->count() > 0) {
-
- // Close exact word pop up in qwerty when the word is committed
- if(HbInputUtils::isQwertyKeyboard(mInputMethod->inputState().keyboard())) {
- mInputMethod->closeExactWordPopup();
- }
-
+
+ // Close exact word pop up in qwerty when the word is committed
+ if(HbInputUtils::isQwertyKeyboard(mInputMethod->inputState().keyboard())) {
+ mInputMethod->closeExactWordPopup();
+ }
+
QString commitString = getCommitString();
// need to update the freq information
@@ -450,9 +450,9 @@
Q_Q(HbInputPredictionHandler);
// Close exact word pop up in qwerty when the word is committed
- if(HbInputUtils::isQwertyKeyboard(mInputMethod->inputState().keyboard())) {
- mInputMethod->closeExactWordPopup();
- }
+ if(HbInputUtils::isQwertyKeyboard(mInputMethod->inputState().keyboard())) {
+ mInputMethod->closeExactWordPopup();
+ }
q->commitAndUpdate(string, 0, 0, isAsync);
@@ -482,10 +482,10 @@
{
Q_Q(HbInputPredictionHandler);
- // Close exact word pop up in qwerty when the word is committed
- if(HbInputUtils::isQwertyKeyboard(mInputMethod->inputState().keyboard())) {
- mInputMethod->closeExactWordPopup();
- }
+ // Close exact word pop up in qwerty when the word is committed
+ if(HbInputUtils::isQwertyKeyboard(mInputMethod->inputState().keyboard())) {
+ mInputMethod->closeExactWordPopup();
+ }
q->sendAndUpdate(event);
@@ -531,7 +531,7 @@
mEngine->deleteKeyPress();
mEngine->updateCandidates(mBestGuessLocation, isCustomWord);
if (mCandidates->count()){
- (*mCandidates)[mBestGuessLocation] = (*mCandidates)[mBestGuessLocation].left(mEngine->inputLength());
+ (*mCandidates)[mBestGuessLocation] = (*mCandidates)[mBestGuessLocation].left(mEngine->inputLength());
(*mCandidates)[mBestGuessLocation].append("?");
} else {
//Should the mBestGuessLocation not be zero.
@@ -555,7 +555,7 @@
{
//update the editor with pre-edit text
mEngine->setWord(string);
- bool used = false;
+ bool used = false;
mEngine->updateCandidates(mBestGuessLocation, used);
if(showAutocompletionPart && mShowTail) {
mShowTail = true;
@@ -731,7 +731,7 @@
void HbInputPredictionHandler::sctCharacterSelected(QString character)
{
Q_D(HbInputPredictionHandler);
- //d->mShowTail = false;
+ //d->mShowTail = false;
d->commit();
HbInputModeHandler::sctCharacterSelected(character);
}
@@ -841,7 +841,7 @@
if(abstractEdit) {
abstractEdit->setCursorPosition(abstractEdit->cursorPosition());
}
- HbInputMethod::activeInputMethod()->setFocusObject(newFocusObject);
+ HbInputMethod::activeInputMethod()->setFocusObject(newFocusObject);
if (closeReason == HbInputSpellQuery::HbOkPressed) {
d->commit(string,true);
--- a/src/hbplugins/inputmethods/hardwareinput/hardwareinput.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hardwareinput.pro Thu Sep 02 20:44:51 2010 +0300
@@ -39,31 +39,31 @@
HEADERS += hardwareinputplugin.h \
hbhardware12key.h \
- hbhardwareqwerty.h \
+ hbhardwareqwerty.h \
hbhardwareinputbasic12keyhandler.h \
- hbhardwareinputbasicqwertyhandler.h \
- hbhardwareinputnumericqwertyhandler.h \
- hbhardwareinputpredictionqwertyhandler.h \
- ..\common\hbinputbasichandler_p.h \
- ..\common\hbinputmodehandler.h \
- ..\common\hbinputmodehandler_p.h \
+ hbhardwareinputbasicqwertyhandler.h \
+ hbhardwareinputnumericqwertyhandler.h \
+ hbhardwareinputpredictionqwertyhandler.h \
+ ../common/hbinputbasichandler_p.h \
+ ../common/hbinputmodehandler.h \
+ ../common/hbinputmodehandler_p.h \
hbhardwareinputnumeric12keyhandler.h \
- ..\common\hbinputnumerichandler_p.h \
+ ../common/hbinputnumerichandler_p.h \
hbhardwareinputprediction12keyhandler.h \
- ..\common\hbinputpredictionhandler_p.h
+ ../common/hbinputpredictionhandler_p.h
SOURCES += hardwareinputplugin.cpp \
hbhardware12key.cpp \
- hbhardwareqwerty.cpp \
+ hbhardwareqwerty.cpp \
hbhardwareinputbasic12keyhandler.cpp \
- hbhardwareinputbasicqwertyhandler.cpp \
- hbhardwareinputnumericqwertyhandler.cpp \
- hbhardwareinputpredictionqwertyhandler.cpp \
- ..\common\hbinputbasichandler.cpp \
- ..\common\hbinputmodehandler.cpp \
+ hbhardwareinputbasicqwertyhandler.cpp \
+ hbhardwareinputnumericqwertyhandler.cpp \
+ hbhardwareinputpredictionqwertyhandler.cpp \
+ ../common/hbinputbasichandler.cpp \
+ ../common/hbinputmodehandler.cpp \
hbhardwareinputnumeric12keyhandler.cpp \
- ..\common\hbinputnumerichandler.cpp \
+ ../common/hbinputnumerichandler.cpp \
hbhardwareinputprediction12keyhandler.cpp \
- ..\common\hbinputpredictionhandler.cpp
+ ../common/hbinputpredictionhandler.cpp
symbian {
TARGET.EPOCALLOWDLLDATA = 1
--- a/src/hbplugins/inputmethods/hardwareinput/hardwareinputplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hardwareinputplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -58,13 +58,13 @@
//
QInputContext* HbHardwareInputPlugin::create(const QString& key)
{
- if (key == QString("HbHardware12key")) {
- return new HbHardware12key();
- } else if (key == QString("HbHardwareQwerty")) {
+ if (key == QString("HbHardware12key")) {
+ return new HbHardware12key();
+ } else if (key == QString("HbHardwareQwerty")) {
return new HbHardwareQwerty();
- } else {
- return 0;
- }
+ } else {
+ return 0;
+ }
}
// ---------------------------------------------------------------------------
@@ -73,14 +73,14 @@
// ---------------------------------------------------------------------------
//
QString HbHardwareInputPlugin::description(const QString& key)
-{
- if (key == QString("HbHardware12key")) {
- return QString("HW phone keypad input");
+{
+ if (key == QString("HbHardware12key")) {
+ return QString("HW phone keypad input");
} else if (key == QString("HbHardwareQwerty")) {
return QString("HW phone Qwerty keypad input");
- } else {
- return QString("");
- }
+ } else {
+ return QString("");
+ }
}
// ---------------------------------------------------------------------------
@@ -90,13 +90,13 @@
//
QString HbHardwareInputPlugin::displayName(const QString& key)
{
- if (key == QString("HbHardware12key")) {
- return QString("HW 12-key");
+ if (key == QString("HbHardware12key")) {
+ return QString("HW 12-key");
} else if (key == QString("HbHardwareQwerty")) {
return QString("HW phone Qwerty keypad input");
- } else {
- return QString("");
- }
+ } else {
+ return QString("");
+ }
}
// ---------------------------------------------------------------------------
@@ -106,10 +106,10 @@
//
QStringList HbHardwareInputPlugin::keys() const
{
- QStringList keys;
- keys.append(QString("HbHardware12key"));
- keys.append(QString("HbHardwareQwerty"));
- return keys;
+ QStringList keys;
+ keys.append(QString("HbHardware12key"));
+ keys.append(QString("HbHardwareQwerty"));
+ return keys;
}
// ---------------------------------------------------------------------------
@@ -119,7 +119,7 @@
//
QStringList HbHardwareInputPlugin::languages(const QString& /*key*/)
{
- return QStringList();
+ return QStringList();
}
//
--- a/src/hbplugins/inputmethods/hardwareinput/hardwareinputplugin.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hardwareinputplugin.h Thu Sep 02 20:44:51 2010 +0300
@@ -30,18 +30,18 @@
class HbHardwareInputPlugin : public QInputContextPlugin
{
- Q_OBJECT
+ Q_OBJECT
public:
- HbHardwareInputPlugin(QObject *parent = 0);
- ~HbHardwareInputPlugin();
+ HbHardwareInputPlugin(QObject *parent = 0);
+ ~HbHardwareInputPlugin();
public: // From QInputContextPlugin
- QInputContext* create(const QString& key);
- QString description(const QString& key);
- QString displayName(const QString& key);
- QStringList keys() const;
- QStringList languages(const QString& key);
+ QInputContext* create(const QString& key);
+ QString description(const QString& key);
+ QString displayName(const QString& key);
+ QStringList keys() const;
+ QStringList languages(const QString& key);
};
#endif // hardwareinputplugin_IMPL_H
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardware12key.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardware12key.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -200,7 +200,7 @@
//activateState(inputState);
//focusedObject->editorInterface().setInputMode(mInputMode);
//focusedObject->syncEditorInterface();
- HbInputFocusObject *focusedObject = focusObject();
+ HbInputFocusObject *focusedObject = focusObject();
if (focusedObject) {
// Just refresh the situation.
inputStateActivated(inputState());
@@ -508,7 +508,7 @@
mCandidatePopup->resize(candListSize);
}
- mCandidatePopup->setBackgroundFaded(false);
+ mCandidatePopup->setBackgroundFaded(false);
mCandidatePopup->show();
} else if (mCandidatePopup->isVisible()) {
mCandidatePopup->hide();
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputbasic12keyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputbasic12keyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -35,24 +35,24 @@
class HbHardwareInputBasic12KeyHandlerPrivate: public HbInputBasicHandlerPrivate
{
- Q_DECLARE_PUBLIC(HbHardwareInputBasic12KeyHandler)
+ Q_DECLARE_PUBLIC(HbHardwareInputBasic12KeyHandler)
public:
- HbHardwareInputBasic12KeyHandlerPrivate();
- ~HbHardwareInputBasic12KeyHandlerPrivate();
+ HbHardwareInputBasic12KeyHandlerPrivate();
+ ~HbHardwareInputBasic12KeyHandlerPrivate();
- void handleAlphaEvent(int buttonId);
- bool keyPressed(const QKeyEvent *keyEvent);
- bool keyReleased(const QKeyEvent *keyEvent);
- bool actionHandler(HbInputModeHandler::HbInputModeAction action);
+ void handleAlphaEvent(int buttonId);
+ bool keyPressed(const QKeyEvent *keyEvent);
+ bool keyReleased(const QKeyEvent *keyEvent);
+ bool actionHandler(HbInputModeHandler::HbInputModeAction action);
- void _q_timeout();
+ void _q_timeout();
public:
- int mLastKey;
- QChar mCurrentChar;
- int mNumChr;
- bool mButtonDown;
- HbInputFocusObject *mCurrentlyFocused;
+ int mLastKey;
+ QChar mCurrentChar;
+ int mNumChr;
+ bool mButtonDown;
+ HbInputFocusObject *mCurrentlyFocused;
};
HbHardwareInputBasic12KeyHandlerPrivate::HbHardwareInputBasic12KeyHandlerPrivate()
@@ -71,92 +71,92 @@
// handles the key press events. It starts a multitap timer as well.
void HbHardwareInputBasic12KeyHandlerPrivate::handleAlphaEvent(int buttonId)
{
- Q_Q(HbHardwareInputBasic12KeyHandler);
- HbInputFocusObject *focusObject = 0;
- focusObject = mInputMethod->focusObject();
- if (!focusObject) {
- return;
- }
+ Q_Q(HbHardwareInputBasic12KeyHandler);
+ HbInputFocusObject *focusObject = 0;
+ focusObject = mInputMethod->focusObject();
+ if (!focusObject) {
+ return;
+ }
- mCurrentChar = q->getNthCharacterInKey(mNumChr, buttonId);
+ mCurrentChar = q->getNthCharacterInKey(mNumChr, buttonId);
- if (mCurrentChar != 0) {
- QString str;
- str += mCurrentChar;
+ if (mCurrentChar != 0) {
+ QString str;
+ str += mCurrentChar;
- QList<QInputMethodEvent::Attribute> list;
- QInputMethodEvent event(str, list);
- focusObject->sendEvent(event);
- mTimer->start(HbMultiTapTimerTimeout);
- }
+ QList<QInputMethodEvent::Attribute> list;
+ QInputMethodEvent event(str, list);
+ focusObject->sendEvent(event);
+ mTimer->start(HbMultiTapTimerTimeout);
+ }
}
bool HbHardwareInputBasic12KeyHandlerPrivate::keyPressed(const QKeyEvent *keyEvent)
{
- Q_Q(HbHardwareInputBasic12KeyHandler);
- HbInputFocusObject *focusObject = 0;
- focusObject = mInputMethod->focusObject();
- if (!focusObject) {
- return false;
- }
+ Q_Q(HbHardwareInputBasic12KeyHandler);
+ HbInputFocusObject *focusObject = 0;
+ focusObject = mInputMethod->focusObject();
+ if (!focusObject) {
+ return false;
+ }
- int buttonId = keyEvent->key();
-
+ int buttonId = keyEvent->key();
+
- if( mLastKey != buttonId) {
- mLastKey = buttonId;
- if(mTimer->isActive()) {
- mTimer->stop();
- mNumChr = 0;
- if (isEnterCharacter(mCurrentChar)) {
- focusObject->sendPreEditString(QString("")); // Make sure the enter character is cleared.
- mCurrentChar = QChar('\n'); // Convert enter character to line feed.
- }
+ if( mLastKey != buttonId) {
+ mLastKey = buttonId;
+ if(mTimer->isActive()) {
+ mTimer->stop();
+ mNumChr = 0;
+ if (isEnterCharacter(mCurrentChar)) {
+ focusObject->sendPreEditString(QString("")); // Make sure the enter character is cleared.
+ mCurrentChar = QChar('\n'); // Convert enter character to line feed.
+ }
- if(mCurrentChar != 0) {
- focusObject->filterAndCommitCharacter(mCurrentChar);
- }
- // For QLineEdit it works fine. For HbLineEdit, need to set the state
- // to lower by calling activateState().
- // This is needed for the scenario - When automatic text case is true
- // click a button and before the multitap timer expires click on
- // another button.
- mInputMethod->updateState();
+ if(mCurrentChar != 0) {
+ focusObject->filterAndCommitCharacter(mCurrentChar);
+ }
+ // For QLineEdit it works fine. For HbLineEdit, need to set the state
+ // to lower by calling activateState().
+ // This is needed for the scenario - When automatic text case is true
+ // click a button and before the multitap timer expires click on
+ // another button.
+ mInputMethod->updateState();
refreshAutoCompleter();
- }
- }
+ }
+ }
- if (buttonId == Qt::Key_Return) {
- mLastKey = buttonId;
- return true;
- } else if (buttonId == Qt::Key_Shift) {
- // For single key press, change the text input case. If the second shift key press is
- // received within long key press time out interval, then activate the next state
- if (mTimer->isActive() && (mLastKey == buttonId)){
- mTimer->stop();
+ if (buttonId == Qt::Key_Return) {
+ mLastKey = buttonId;
+ return true;
+ } else if (buttonId == Qt::Key_Shift) {
+ // For single key press, change the text input case. If the second shift key press is
+ // received within long key press time out interval, then activate the next state
+ if (mTimer->isActive() && (mLastKey == buttonId)){
+ mTimer->stop();
HbInputState rootState;
mInputMethod->editorRootState(rootState);
mInputMethod->activateState(rootState);
- } else {
- updateTextCase();
- mTimer->start(HbLongPressTimerTimeout);
- }
- mCurrentChar = 0;
- mButtonDown = true;
- mCurrentChar = 0;
- return true;
- }
- // Let's see if we can get the handler for this button in the base class.
- if (q->HbInputBasicHandler::filterEvent(keyEvent)) {
- return true;
- }
+ } else {
+ updateTextCase();
+ mTimer->start(HbLongPressTimerTimeout);
+ }
+ mCurrentChar = 0;
+ mButtonDown = true;
+ mCurrentChar = 0;
+ return true;
+ }
+ // Let's see if we can get the handler for this button in the base class.
+ if (q->HbInputBasicHandler::filterEvent(keyEvent)) {
+ return true;
+ }
- mLastKey = buttonId;
- mButtonDown = true;
+ mLastKey = buttonId;
+ mButtonDown = true;
- handleAlphaEvent(buttonId);
- return true;
+ handleAlphaEvent(buttonId);
+ return true;
}
/*!
@@ -165,146 +165,146 @@
*/
bool HbHardwareInputBasic12KeyHandlerPrivate::keyReleased(const QKeyEvent *keyEvent)
{
- Q_Q(HbHardwareInputBasic12KeyHandler);
- mButtonDown = false;
- int buttonId = keyEvent->key();
+ Q_Q(HbHardwareInputBasic12KeyHandler);
+ mButtonDown = false;
+ int buttonId = keyEvent->key();
- if (buttonId == Qt::Key_Asterisk) {
- //Same asterisk key is used for launching candidate list (long key press)
- //and also for SCT. So, do not launch SCT if candidate list is already launched.
- mInputMethod->switchMode(buttonId);
- return true;
- } else if (buttonId == Qt::Key_Delete) {
- QKeyEvent keyEvent(QEvent::KeyRelease, Qt::Key_Backspace, Qt::NoModifier);
- q->sendAndUpdate(keyEvent);
- return true;
- }
+ if (buttonId == Qt::Key_Asterisk) {
+ //Same asterisk key is used for launching candidate list (long key press)
+ //and also for SCT. So, do not launch SCT if candidate list is already launched.
+ mInputMethod->switchMode(buttonId);
+ return true;
+ } else if (buttonId == Qt::Key_Delete) {
+ QKeyEvent keyEvent(QEvent::KeyRelease, Qt::Key_Backspace, Qt::NoModifier);
+ q->sendAndUpdate(keyEvent);
+ return true;
+ }
- return false;
+ return false;
}
void HbHardwareInputBasic12KeyHandlerPrivate::_q_timeout()
{
- Q_Q(HbHardwareInputBasic12KeyHandler);
- mTimer->stop();
- mNumChr = 0;
+ Q_Q(HbHardwareInputBasic12KeyHandler);
+ mTimer->stop();
+ mNumChr = 0;
- HbInputFocusObject *focusedObject = 0;
- focusedObject = mInputMethod->focusObject();
- if (!focusedObject) {
- qDebug("HbHardwareInputBasic12KeyHandler::timeout focusObject == 0");
- return;
- }
+ HbInputFocusObject *focusedObject = 0;
+ focusedObject = mInputMethod->focusObject();
+ if (!focusedObject) {
+ qDebug("HbHardwareInputBasic12KeyHandler::timeout focusObject == 0");
+ return;
+ }
- if (isEnterCharacter(mCurrentChar)) {
- focusedObject->sendPreEditString(QString("")); // Make sure the enter character is cleared.
- mCurrentChar = QChar('\n'); // Convert enter character to line feed.
- }
+ if (isEnterCharacter(mCurrentChar)) {
+ focusedObject->sendPreEditString(QString("")); // Make sure the enter character is cleared.
+ mCurrentChar = QChar('\n'); // Convert enter character to line feed.
+ }
- //Long key press number key is applicable to all keys
- if (mButtonDown) {
- //switch to numeric mode for long key press of Hash key
- if (mLastKey == Qt::Key_Shift){
- updateTextCase();
- mInputMethod->switchMode(Qt::Key_Shift);
- }else {
- q->commitFirstMappedNumber(mLastKey);
- }
- } else if(mLastKey != Qt::Key_Shift){
- if (!focusedObject->characterAllowedInEditor(mCurrentChar)) {
- focusedObject->sendCommitString(QString());
- } else {
- if ( mCurrentChar != 0){
- QString curString;
- curString.append(mCurrentChar);
- focusedObject->sendCommitString(curString);
- }
- mInputMethod->updateState();
- // pass this character to autocompleter.
+ //Long key press number key is applicable to all keys
+ if (mButtonDown) {
+ //switch to numeric mode for long key press of Hash key
+ if (mLastKey == Qt::Key_Shift){
+ updateTextCase();
+ mInputMethod->switchMode(Qt::Key_Shift);
+ }else {
+ q->commitFirstMappedNumber(mLastKey);
+ }
+ } else if(mLastKey != Qt::Key_Shift){
+ if (!focusedObject->characterAllowedInEditor(mCurrentChar)) {
+ focusedObject->sendCommitString(QString());
+ } else {
+ if ( mCurrentChar != 0){
+ QString curString;
+ curString.append(mCurrentChar);
+ focusedObject->sendCommitString(curString);
+ }
+ mInputMethod->updateState();
+ // pass this character to autocompleter.
refreshAutoCompleter();
- }
- }
- return;
+ }
+ }
+ return;
}
bool HbHardwareInputBasic12KeyHandlerPrivate::actionHandler(HbInputModeHandler::HbInputModeAction action)
{
- HbInputFocusObject *focusObject = 0;
- focusObject = mInputMethod->focusObject();
- if (!focusObject) {
- return false;
- }
+ HbInputFocusObject *focusObject = 0;
+ focusObject = mInputMethod->focusObject();
+ if (!focusObject) {
+ return false;
+ }
- bool ret = true;
- switch (action) {
+ bool ret = true;
+ switch (action) {
case HbInputModeHandler::HbInputModeActionReset:
- mLastKey = 0;
- mNumChr = 0;
- if (mTimer->isActive()) {
- mTimer->stop();
- }
- break;
+ mLastKey = 0;
+ mNumChr = 0;
+ if (mTimer->isActive()) {
+ mTimer->stop();
+ }
+ break;
case HbInputModeHandler::HbInputModeActionDeleteAndCommit:{
- mTimer->stop();
- QString empty;
- if(mInputMethod) {
- //In case of the sct the character is already committed
- //We need to remove the committed character.
- QList<QInputMethodEvent::Attribute> list;
- QInputMethodEvent event(QString(), list);
- event.setCommitString(empty, -1, 1);
- focusObject->sendEvent(event);
- } else {
- // Close event was originated from a button press, remove the uncommitted character.
- focusObject->sendCommitString(empty);
- }
- }
- break;
+ mTimer->stop();
+ QString empty;
+ if(mInputMethod) {
+ //In case of the sct the character is already committed
+ //We need to remove the committed character.
+ QList<QInputMethodEvent::Attribute> list;
+ QInputMethodEvent event(QString(), list);
+ event.setCommitString(empty, -1, 1);
+ focusObject->sendEvent(event);
+ } else {
+ // Close event was originated from a button press, remove the uncommitted character.
+ focusObject->sendCommitString(empty);
+ }
+ }
+ break;
case HbInputModeHandler::HbInputModeActionFocusRecieved:
- mTimer->stop();
- mNumChr = 0;
- if (mCurrentlyFocused != focusObject) {
- mCurrentlyFocused = focusObject;
- if (mAutoCompleter) {
- mAutoCompleter->commit();
- }
- }
- // set up auto completer
- setUpAutoCompleter();
- break;
+ mTimer->stop();
+ mNumChr = 0;
+ if (mCurrentlyFocused != focusObject) {
+ mCurrentlyFocused = focusObject;
+ if (mAutoCompleter) {
+ mAutoCompleter->commit();
+ }
+ }
+ // set up auto completer
+ setUpAutoCompleter();
+ break;
case HbInputModeHandler::HbInputModeActionCommit:
case HbInputModeHandler::HbInputModeActionFocusLost:
- if (mTimer->isActive()) {
- mTimer->stop();
- if (mCurrentChar != 0) {
- if (isEnterCharacter(mCurrentChar)) {
- focusObject->sendPreEditString(QString("")); // Make sure the enter character is cleared.
- mCurrentChar = QChar('\n'); // Convert enter character to line feed.
- }
- focusObject->filterAndCommitCharacter(mCurrentChar);
- mCurrentChar = 0;
- }
- mLastKey = 0;
- mNumChr = 0;
- mInputMethod->updateState();
- }
- break;
+ if (mTimer->isActive()) {
+ mTimer->stop();
+ if (mCurrentChar != 0) {
+ if (isEnterCharacter(mCurrentChar)) {
+ focusObject->sendPreEditString(QString("")); // Make sure the enter character is cleared.
+ mCurrentChar = QChar('\n'); // Convert enter character to line feed.
+ }
+ focusObject->filterAndCommitCharacter(mCurrentChar);
+ mCurrentChar = 0;
+ }
+ mLastKey = 0;
+ mNumChr = 0;
+ mInputMethod->updateState();
+ }
+ break;
default: {
- ret = false;
- }
- break;
- };
+ ret = false;
+ }
+ break;
+ };
- return ret;
+ return ret;
}
HbHardwareInputBasic12KeyHandler::HbHardwareInputBasic12KeyHandler(HbInputAbstractMethod* inputMethod)
:HbInputBasicHandler( *new HbHardwareInputBasic12KeyHandlerPrivate, inputMethod)
{
- Q_D(HbHardwareInputBasic12KeyHandler);
- d->q_ptr = this;
+ Q_D(HbHardwareInputBasic12KeyHandler);
+ d->q_ptr = this;
}
HbHardwareInputBasic12KeyHandler::~HbHardwareInputBasic12KeyHandler()
@@ -316,16 +316,16 @@
*/
bool HbHardwareInputBasic12KeyHandler::filterEvent(const QKeyEvent * event)
{
- Q_D(HbHardwareInputBasic12KeyHandler);
+ Q_D(HbHardwareInputBasic12KeyHandler);
- if (event->isAutoRepeat()) {
- // Ignore all repeat events after first repeat event
- return true;
- } else if (event->type() == QEvent::KeyRelease) {
- return d->keyReleased(event);
- } else {
- return d->keyPressed(event);
- }
+ if (event->isAutoRepeat()) {
+ // Ignore all repeat events after first repeat event
+ return true;
+ } else if (event->type() == QEvent::KeyRelease) {
+ return d->keyReleased(event);
+ } else {
+ return d->keyPressed(event);
+ }
}
/*!
@@ -333,8 +333,8 @@
*/
bool HbHardwareInputBasic12KeyHandler::isComposing() const
{
- Q_D(const HbHardwareInputBasic12KeyHandler);
- return d->mTimer->isActive();
+ Q_D(const HbHardwareInputBasic12KeyHandler);
+ return d->mTimer->isActive();
}
/*!
@@ -342,11 +342,11 @@
*/
bool HbHardwareInputBasic12KeyHandler::actionHandler(HbInputModeAction action)
{
- Q_D(HbHardwareInputBasic12KeyHandler);
- if (!d->actionHandler(action)) {
- // no action taken so let's pass it to the base class.
- return HbInputBasicHandler::actionHandler(action);
- }
- return false;
+ Q_D(HbHardwareInputBasic12KeyHandler);
+ if (!d->actionHandler(action)) {
+ // no action taken so let's pass it to the base class.
+ return HbInputBasicHandler::actionHandler(action);
+ }
+ return false;
}
// EOF
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputbasic12keyhandler.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputbasic12keyhandler.h Thu Sep 02 20:44:51 2010 +0300
@@ -30,17 +30,17 @@
class HbHardwareInputBasic12KeyHandlerPrivate;
class HbHardwareInputBasic12KeyHandler: public HbInputBasicHandler
{
- Q_OBJECT
+ Q_OBJECT
public:
- HbHardwareInputBasic12KeyHandler(HbInputAbstractMethod* inputMethod);
- ~HbHardwareInputBasic12KeyHandler();
+ HbHardwareInputBasic12KeyHandler(HbInputAbstractMethod* inputMethod);
+ ~HbHardwareInputBasic12KeyHandler();
- bool isComposing() const;
- bool actionHandler(HbInputModeAction action);
- bool filterEvent(const QKeyEvent * event);
+ bool isComposing() const;
+ bool actionHandler(HbInputModeAction action);
+ bool filterEvent(const QKeyEvent * event);
private:
- Q_DECLARE_PRIVATE(HbHardwareInputBasic12KeyHandler)
+ Q_DECLARE_PRIVATE(HbHardwareInputBasic12KeyHandler)
Q_DISABLE_COPY(HbHardwareInputBasic12KeyHandler)
};
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputbasicqwertyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputbasicqwertyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -63,43 +63,43 @@
bool HbHardwareInputBasicQwertyHandlerPrivate::buttonPressed(const QKeyEvent * event)
{
- mButton = event->key();
- if (!mTimer->isActive()){
- mTimer->start(HbLongPressTimerTimeout);
- }
+ mButton = event->key();
+ if (!mTimer->isActive()){
+ mTimer->start(HbLongPressTimerTimeout);
+ }
- if (event->key() != Qt::Key_Delete && event->key() != Qt::Key_Backspace) {
- return true;
- } else {
- return false;
- }
+ if (event->key() != Qt::Key_Delete && event->key() != Qt::Key_Backspace) {
+ return true;
+ } else {
+ return false;
+ }
}
bool HbHardwareInputBasicQwertyHandlerPrivate::buttonReleased(const QKeyEvent * event)
{
// Kept for handling button released specific logic
-
- Q_Q(HbHardwareInputBasicQwertyHandler);
- HbInputFocusObject *focusObject = 0;
+
+ Q_Q(HbHardwareInputBasicQwertyHandler);
+ HbInputFocusObject *focusObject = 0;
focusObject = mInputMethod->focusObject();
if (!focusObject) {
qDebug("HbHardwareInputBasicQwertyHandler::virtualButtonClicked : no focused editor widget!");
return false;
}
-
- // If the timer is not active and it is alpha mode, it is a long press
+
+ // If the timer is not active and it is alpha mode, it is a long press
// and handled in another function. So just return.
if (mTimer->isActive()) {
mTimer->stop();
}
- int eventKey = event->key();
+ int eventKey = event->key();
- //Handle long key press here
+ //Handle long key press here
switch(eventKey) {
case Qt::Key_Alt:
- //handle function key (fn key) states here using fn & shift handler helper class
- break;
+ //handle function key (fn key) states here using fn & shift handler helper class
+ break;
case Qt::Key_Shift: {
//If the shift key state is EShiftKeyPressed and a second shift key press is received before any other
//key events, then current text case should not be changed.
@@ -125,42 +125,42 @@
}
break;
case Qt::Key_Control:{
- return true;
- }
-
- break;
- case Qt::Key_Backspace:
- case Qt::Key_Delete: {
- // let's pass the backspace event to the focused editor.
- //return q->HbInputBasicHandler::filterEvent(event);
- break;
- }
- case Qt::Key_Return:
- case Qt::Key_Enter:
- case Qt::Key_Space: {
- QChar qc(eventKey);
- if(Qt::Key_Space == eventKey && (event->modifiers() & Qt::ControlModifier)){
- if (HbInputSettingProxy::instance()->predictiveInputStatus()) {
- HbInputSettingProxy::instance()->setPredictiveInputStatus(0);
- } else {
- HbInputSettingProxy::instance()->setPredictiveInputStatus(1);
- }
- break;
- }
+ return true;
+ }
+
+ break;
+ case Qt::Key_Backspace:
+ case Qt::Key_Delete: {
+ // let's pass the backspace event to the focused editor.
+ //return q->HbInputBasicHandler::filterEvent(event);
+ break;
+ }
+ case Qt::Key_Return:
+ case Qt::Key_Enter:
+ case Qt::Key_Space: {
+ QChar qc(eventKey);
+ if(Qt::Key_Space == eventKey && (event->modifiers() & Qt::ControlModifier)){
+ if (HbInputSettingProxy::instance()->predictiveInputStatus()) {
+ HbInputSettingProxy::instance()->setPredictiveInputStatus(0);
+ } else {
+ HbInputSettingProxy::instance()->setPredictiveInputStatus(1);
+ }
+ break;
+ }
- if (qc == Qt::Key_Enter || qc == Qt::Key_Return) {
- qc = QChar('\n'); // Editor expects normal line feed.
- }
- if(focusObject){
- q->commitAndUpdate(qc);
- }
- break;
- }
+ if (qc == Qt::Key_Enter || qc == Qt::Key_Return) {
+ qc = QChar('\n'); // Editor expects normal line feed.
+ }
+ if(focusObject){
+ q->commitAndUpdate(qc);
+ }
+ break;
+ }
default: {
- if (q->HbInputBasicHandler::filterEvent(event)) {
- return true;
- }
- QList<QInputMethodEvent::Attribute> list;
+ if (q->HbInputBasicHandler::filterEvent(event)) {
+ return true;
+ }
+ QList<QInputMethodEvent::Attribute> list;
QString newText;
int currentTextCase = focusObject->editorInterface().textCase();
// If function key is pressed, get the functionized
@@ -194,20 +194,20 @@
mInputMethod->updateState();
}
break;
- }
- return true;
+ }
+ return true;
}
void HbHardwareInputBasicQwertyHandlerPrivate::_q_timeout()
{
mTimer->stop();
- qDebug("Timer stoped");
- if (mButton == Qt::Key_Shift ){
+ qDebug("Timer stoped");
+ if (mButton == Qt::Key_Shift ){
mShiftKeyState = EShiftKeyPressed;
- } else {
- mFnState = HbFnNext;
- }
- return;
+ } else {
+ mFnState = HbFnNext;
+ }
+ return;
}
HbHardwareInputBasicQwertyHandler::HbHardwareInputBasicQwertyHandler(HbInputAbstractMethod* inputMethod)
@@ -228,13 +228,13 @@
{
Q_D(HbHardwareInputBasicQwertyHandler);
- if (!event->isAutoRepeat()) {
- if ((event->type() == QEvent::KeyRelease) ) {
- return d->buttonReleased(event);
- } else {
- return d->buttonPressed(event);
- }
- }
+ if (!event->isAutoRepeat()) {
+ if ((event->type() == QEvent::KeyRelease) ) {
+ return d->buttonReleased(event);
+ } else {
+ return d->buttonPressed(event);
+ }
+ }
return false;
}
@@ -258,7 +258,7 @@
case HbInputModeActionReset:
if (d->mTimer->isActive()) {
d->mTimer->stop();
- qDebug("Timer stoped");
+ qDebug("Timer stoped");
}
break;
default: {
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputnumeric12keyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputnumeric12keyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -35,17 +35,17 @@
class HbHardwareInputNumeric12KeyHandlerPrivate: public HbInputNumericHandlerPrivate
{
- Q_DECLARE_PUBLIC(HbHardwareInputNumeric12KeyHandler)
+ Q_DECLARE_PUBLIC(HbHardwareInputNumeric12KeyHandler)
public:
- HbHardwareInputNumeric12KeyHandlerPrivate();
- ~HbHardwareInputNumeric12KeyHandlerPrivate();
+ HbHardwareInputNumeric12KeyHandlerPrivate();
+ ~HbHardwareInputNumeric12KeyHandlerPrivate();
- bool keyPressed(const QKeyEvent *keyEvent);
- void _q_timeout();
+ bool keyPressed(const QKeyEvent *keyEvent);
+ void _q_timeout();
public:
- int mLastKey;
- bool mButtonDown;
+ int mLastKey;
+ bool mButtonDown;
};
HbHardwareInputNumeric12KeyHandlerPrivate::HbHardwareInputNumeric12KeyHandlerPrivate():
@@ -60,76 +60,76 @@
bool HbHardwareInputNumeric12KeyHandlerPrivate::keyPressed(const QKeyEvent *keyEvent)
{
- Q_Q(HbHardwareInputNumeric12KeyHandler);
- HbInputFocusObject *focusObject = 0;
- focusObject = mInputMethod->focusObject();
- if (!focusObject) {
- qDebug("HbInputModeHandler::buttonClicked no focusObject ... failed!!");
- return false;
- }
+ Q_Q(HbHardwareInputNumeric12KeyHandler);
+ HbInputFocusObject *focusObject = 0;
+ focusObject = mInputMethod->focusObject();
+ if (!focusObject) {
+ qDebug("HbInputModeHandler::buttonClicked no focusObject ... failed!!");
+ return false;
+ }
- int buttonId = keyEvent->key();
+ int buttonId = keyEvent->key();
- if (buttonId == Qt::Key_Return) {
+ if (buttonId == Qt::Key_Return) {
- return true;
- } else if (buttonId == Qt::Key_Shift) {
+ return true;
+ } else if (buttonId == Qt::Key_Shift) {
- if (mTimer->isActive() && (mLastKey == buttonId)){
- mTimer->stop();
- HbHardware12key *hostInputMethod = qobject_cast<HbHardware12key*>(mInputMethod);
- if (hostInputMethod) {
- HbInputState newState;
- mInputMethod->editorRootState(newState);
- mInputMethod->activateState(newState);
- }
- } else {
- mTimer->start(HbLongPressTimerTimeout);
- }
- mLastKey = buttonId;
- mButtonDown = true;
- return true;
- } else if (buttonId == Qt::Key_Asterisk) {
- mInputMethod->switchMode(Qt::Key_Asterisk);
- return true;
- }
+ if (mTimer->isActive() && (mLastKey == buttonId)){
+ mTimer->stop();
+ HbHardware12key *hostInputMethod = qobject_cast<HbHardware12key*>(mInputMethod);
+ if (hostInputMethod) {
+ HbInputState newState;
+ mInputMethod->editorRootState(newState);
+ mInputMethod->activateState(newState);
+ }
+ } else {
+ mTimer->start(HbLongPressTimerTimeout);
+ }
+ mLastKey = buttonId;
+ mButtonDown = true;
+ return true;
+ } else if (buttonId == Qt::Key_Asterisk) {
+ mInputMethod->switchMode(Qt::Key_Asterisk);
+ return true;
+ }
- // Let's see if we can get the handler for this button in the base class.
- if (q->HbInputNumericHandler::filterEvent(keyEvent)) {
- return true;
- }
+ // Let's see if we can get the handler for this button in the base class.
+ if (q->HbInputNumericHandler::filterEvent(keyEvent)) {
+ return true;
+ }
- q->commitFirstMappedNumber(buttonId);
- return true;
+ q->commitFirstMappedNumber(buttonId);
+ return true;
}
void HbHardwareInputNumeric12KeyHandlerPrivate::_q_timeout()
{
- mTimer->stop();
+ mTimer->stop();
- HbInputFocusObject *focusedObject = 0;
- focusedObject = mInputMethod->focusObject();
- if (!focusedObject) {
- qDebug("HbHardwareInputNumeric12KeyHandler::timeout focusObject == 0");
- return;
- }
- //switch to Alpha mode when Long key press of Shift key is received
- if (mButtonDown && (mLastKey == Qt::Key_Shift ))
- {
- mButtonDown = false;
- // If the editor is not a number only editor, then activate the alphanumeric keypad
- if( !focusedObject->editorInterface().isNumericEditor() ){
- mInputMethod->switchMode(mLastKey);
- }
- }
- return;
+ HbInputFocusObject *focusedObject = 0;
+ focusedObject = mInputMethod->focusObject();
+ if (!focusedObject) {
+ qDebug("HbHardwareInputNumeric12KeyHandler::timeout focusObject == 0");
+ return;
+ }
+ //switch to Alpha mode when Long key press of Shift key is received
+ if (mButtonDown && (mLastKey == Qt::Key_Shift ))
+ {
+ mButtonDown = false;
+ // If the editor is not a number only editor, then activate the alphanumeric keypad
+ if( !focusedObject->editorInterface().isNumericEditor() ){
+ mInputMethod->switchMode(mLastKey);
+ }
+ }
+ return;
}
HbHardwareInputNumeric12KeyHandler::HbHardwareInputNumeric12KeyHandler(HbInputAbstractMethod* inputMethod)
:HbInputNumericHandler( *new HbHardwareInputNumeric12KeyHandlerPrivate, inputMethod)
{
- Q_D(HbHardwareInputNumeric12KeyHandler);
- d->q_ptr = this;
+ Q_D(HbHardwareInputNumeric12KeyHandler);
+ d->q_ptr = this;
}
HbHardwareInputNumeric12KeyHandler::~HbHardwareInputNumeric12KeyHandler()
@@ -141,14 +141,14 @@
*/
bool HbHardwareInputNumeric12KeyHandler::filterEvent(const QKeyEvent * event)
{
- Q_D(HbHardwareInputNumeric12KeyHandler);
+ Q_D(HbHardwareInputNumeric12KeyHandler);
- // in numeric mode in itut keypad only KeyPress events are handled.
- if ((event->type() == QEvent::KeyPress )
- || (event->type() == QEvent::KeyRelease && event->key() == Qt::Key_Asterisk)) {
- return d->keyPressed(event);
- }
- return false;
+ // in numeric mode in itut keypad only KeyPress events are handled.
+ if ((event->type() == QEvent::KeyPress )
+ || (event->type() == QEvent::KeyRelease && event->key() == Qt::Key_Asterisk)) {
+ return d->keyPressed(event);
+ }
+ return false;
}
/*!
@@ -156,33 +156,33 @@
*/
bool HbHardwareInputNumeric12KeyHandler::actionHandler(HbInputModeAction action)
{
- bool ret = false;
- switch (action) {
- //In case of the numeric editor the character is already committed.
- //Need to remove the committed character.
+ bool ret = false;
+ switch (action) {
+ //In case of the numeric editor the character is already committed.
+ //Need to remove the committed character.
case HbInputModeHandler::HbInputModeActionDeleteAndCommit:{
- HbInputFocusObject *focusObject = 0;
- Q_D(HbHardwareInputNumeric12KeyHandler);
- focusObject = d->mInputMethod->focusObject();
- if (!focusObject) {
- return false;
- }
- d->mTimer->stop();
- QString empty;
- QList<QInputMethodEvent::Attribute> list;
- QInputMethodEvent event(QString(), list);
- event.setCommitString(empty, -1, 1);
- focusObject->sendEvent(event);
- ret = true;
- }
+ HbInputFocusObject *focusObject = 0;
+ Q_D(HbHardwareInputNumeric12KeyHandler);
+ focusObject = d->mInputMethod->focusObject();
+ if (!focusObject) {
+ return false;
+ }
+ d->mTimer->stop();
+ QString empty;
+ QList<QInputMethodEvent::Attribute> list;
+ QInputMethodEvent event(QString(), list);
+ event.setCommitString(empty, -1, 1);
+ focusObject->sendEvent(event);
+ ret = true;
+ }
default: {
- ret = false;
- }
- }
- if(!ret) {
- ret = HbInputNumericHandler::actionHandler(action);
- }
- return ret;
+ ret = false;
+ }
+ }
+ if(!ret) {
+ ret = HbInputNumericHandler::actionHandler(action);
+ }
+ return ret;
}
// EOF
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputnumeric12keyhandler.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputnumeric12keyhandler.h Thu Sep 02 20:44:51 2010 +0300
@@ -30,17 +30,17 @@
class HbHardwareInputNumeric12KeyHandlerPrivate;
class HbHardwareInputNumeric12KeyHandler: public HbInputNumericHandler
{
- Q_OBJECT
+ Q_OBJECT
public:
- HbHardwareInputNumeric12KeyHandler(HbInputAbstractMethod* inputMethod);
- ~HbHardwareInputNumeric12KeyHandler();
+ HbHardwareInputNumeric12KeyHandler(HbInputAbstractMethod* inputMethod);
+ ~HbHardwareInputNumeric12KeyHandler();
- bool actionHandler(HbInputModeAction action);
- bool filterEvent(const QKeyEvent * event);
+ bool actionHandler(HbInputModeAction action);
+ bool filterEvent(const QKeyEvent * event);
private:
- Q_DECLARE_PRIVATE(HbHardwareInputNumeric12KeyHandler)
- Q_DISABLE_COPY(HbHardwareInputNumeric12KeyHandler)
+ Q_DECLARE_PRIVATE(HbHardwareInputNumeric12KeyHandler)
+ Q_DISABLE_COPY(HbHardwareInputNumeric12KeyHandler)
};
#endif //HB_HARDWARE_INPUT_NUMERIC_12KEY_HANDLER
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputnumericqwertyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputnumericqwertyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -80,9 +80,9 @@
qDebug("HbHardwareInputNumericQwertyHandler::buttonReleased : no focused editor widget!");
return false;
}
- int currentTextCase = focusObject->editorInterface().textCase();
- QChar newChar = QChar(buttonId);
- if (currentTextCase == HbTextCaseLower) {
+ int currentTextCase = focusObject->editorInterface().textCase();
+ QChar newChar = QChar(buttonId);
+ if (currentTextCase == HbTextCaseLower) {
newChar = newChar.toLower();
} else {
newChar = newChar.toUpper();
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputprediction12keyhandler.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputprediction12keyhandler.h Thu Sep 02 20:44:51 2010 +0300
@@ -37,7 +37,7 @@
bool actionHandler(HbInputModeAction action);
bool filterEvent(const QKeyEvent * event);
- bool isActive() const;
+ bool isActive() const;
private:
Q_DECLARE_PRIVATE(HbHardwareInputPrediction12KeyHandler)
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputpredictionqwertyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareinputpredictionqwertyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -162,16 +162,16 @@
case Qt::Key_Down:{
q->actionHandler(HbInputModeHandler::HbInputModeActionLaunchCandidatePopup);
break;
- }
- case Qt::Key_Space:{
- if (event->modifiers() & Qt::ControlModifier){
- if (HbInputSettingProxy::instance()->predictiveInputStatus()) {
- HbInputSettingProxy::instance()->setPredictiveInputStatus(0);
- } else {
- HbInputSettingProxy::instance()->setPredictiveInputStatus(1);
- }
- break;
- }
+ }
+ case Qt::Key_Space:{
+ if (event->modifiers() & Qt::ControlModifier){
+ if (HbInputSettingProxy::instance()->predictiveInputStatus()) {
+ HbInputSettingProxy::instance()->setPredictiveInputStatus(0);
+ } else {
+ HbInputSettingProxy::instance()->setPredictiveInputStatus(1);
+ }
+ break;
+ }
}
default: {
int currentTextCase = focusObject->editorInterface().textCase();
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareqwerty.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareqwerty.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -160,12 +160,12 @@
//
bool HbHardwareQwerty::filterEvent(const QEvent *event)
{
- const QKeyEvent *keyEvent = 0;
+ const QKeyEvent *keyEvent = 0;
keyEvent = static_cast<const QKeyEvent *>(event);
- if(keyEvent->key() == Qt::Key_F8){
- emit flipStatusChange();
- return false;
- }
+ if(keyEvent->key() == Qt::Key_F8){
+ emit flipStatusChange();
+ return false;
+ }
if(handleEvent()){
return mActiveModeHandler->filterEvent(event);
}
@@ -425,7 +425,7 @@
//activateState(inputState);
//focusedObject->editorInterface().setInputMode(mMode);
//focusedObject->syncEditorInterface();
- Q_UNUSED(newStatus);
+ Q_UNUSED(newStatus);
// HbInputFocusObject *focusedObject = focusObject();
/*if (focusedObject)*/ {
@@ -556,26 +556,26 @@
*/
bool HbHardwareQwerty::usePrediction() const
{
- qDebug("in usePrediction()");
+ qDebug("in usePrediction()");
HbInputFocusObject *fo = focusObject();
- if(!fo){
- qDebug("NO Focus object");
- } else {
- qDebug("Yes Focus object");
- }
-
- if (!HbInputSettingProxy::instance()->predictiveInputStatus()){
- qDebug("No HbInputSettingProxy::instance()->predictiveInputStatus()");
- } else {
- qDebug("Yes HbInputSettingProxy::instance()->predictiveInputStatus()");
- }
-
- if(!mPredictionModeHandler->isActive()){
- qDebug("No mPredictionModeHandler->isActive()");
+ if(!fo){
+ qDebug("NO Focus object");
+ } else {
+ qDebug("Yes Focus object");
+ }
+
+ if (!HbInputSettingProxy::instance()->predictiveInputStatus()){
+ qDebug("No HbInputSettingProxy::instance()->predictiveInputStatus()");
+ } else {
+ qDebug("Yes HbInputSettingProxy::instance()->predictiveInputStatus()");
+ }
+
+ if(!mPredictionModeHandler->isActive()){
+ qDebug("No mPredictionModeHandler->isActive()");
- } else {
- qDebug("Yes mPredictionModeHandler->isActive()");
- }
+ } else {
+ qDebug("Yes mPredictionModeHandler->isActive()");
+ }
if (HbInputSettingProxy::instance()->predictiveInputStatus() &&
--- a/src/hbplugins/inputmethods/hardwareinput/hbhardwareqwerty.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/hardwareinput/hbhardwareqwerty.h Thu Sep 02 20:44:51 2010 +0300
@@ -80,7 +80,7 @@
signals:
void flipStatusChange();
protected:
- void predictiveInputStatusChanged(int newStatus);
+ void predictiveInputStatusChanged(int newStatus);
void openKeypad(bool inMinimizedMode = false);
public slots:
--- a/src/hbplugins/inputmethods/touchinput/hbinput12keytouchkeyboard.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinput12keytouchkeyboard.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -29,6 +29,7 @@
#include <hbinputkeymap.h>
#include <hbinpututils.h>
#include <hbframedrawer.h>
+#include <hbinputsettingproxy.h>
#include "hbinput12keytouchkeyboard.h"
#include "hbinput12keytouchkeyboard_p.h"
@@ -199,8 +200,14 @@
const HbKeyboardMap *keyboardMap;
if (mOwner->focusObject() && mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassEmail) {
keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12KeyEmail);
+ if (!keyboardMap) {
+ keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12Key);
+ }
} else if (mOwner->focusObject() && mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassUrl) {
keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12KeyUrl);
+ if (!keyboardMap) {
+ keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12Key);
+ }
} else {
keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12Key);
}
@@ -229,8 +236,14 @@
if (mOwner->focusObject() && mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassEmail) {
keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12KeyEmail);
+ if (!keyboardMap) {
+ keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12Key);
+ }
} else if (mOwner->focusObject() && mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassUrl) {
keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12KeyUrl);
+ if (!keyboardMap) {
+ keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12Key);
+ }
} else {
keyboardMap = mKeymap->keyboard(HbKeyboardVirtual12Key);
}
@@ -283,10 +296,24 @@
item->setText(QString("*"), HbInputButton::ButtonTextIndexPrimary);
item->setText(QString(""), HbInputButton::ButtonTextIndexSecondaryFirstRow);
} else if (mMode == EModeAbc) {
- item->setText(QString("*"), HbInputButton::ButtonTextIndexPrimary);
- item->setText(QString("+"), HbInputButton::ButtonTextIndexSecondaryFirstRow);
+ if (HbInputSettingProxy::instance()->globalInputLanguage().language() == QLocale::Chinese) {
+ QString str = QString(QChar(0x7B26));
+ str.append(QString(QChar(0x53F7)));
+ item->setText(QString(), HbInputButton::ButtonTextIndexSecondaryFirstRow);
+ item->setText(str, HbInputButton::ButtonTextIndexPrimary);
+ } else {
+ item->setText(QString("*"), HbInputButton::ButtonTextIndexPrimary);
+ item->setText(QString("+"), HbInputButton::ButtonTextIndexSecondaryFirstRow);
+ }
}
- }
+ } else if (keyCode(i) == HbInputButton::ButtonKeyCodeSymbol) {
+ if (HbInputSettingProxy::instance()->globalInputLanguage().language() == QLocale::Chinese) {
+ item->setText(QString(QChar(0x4E2D)), HbInputButton::ButtonTextIndexPrimary);
+ item->setIcon(HbIcon(), HbInputButton::ButtonIconIndexPrimary);
+ } else {
+ item->setIcon(HbIcon(HbInputButtonIconSymbol2), HbInputButton::ButtonIconIndexPrimary);
+ }
+ }
}
buttonGroup->setButtons(buttons);
}
@@ -355,11 +382,12 @@
{
Q_D(const Hb12KeyTouchKeyboard);
- if (d->mOwner->focusObject())
- {
- if (d->mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassEmail) {
+ if (d->mOwner->focusObject()) {
+ if (d->mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassEmail &&
+ d->mKeymap && d->mKeymap->keyboard(HbKeyboardVirtual12KeyEmail)) {
return HbKeyboardVirtual12KeyEmail;
- } else if (d->mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassUrl) {
+ } else if (d->mOwner->focusObject()->editorInterface().editorClass() == HbInputEditorClassUrl &&
+ d->mKeymap && d->mKeymap->keyboard(HbKeyboardVirtual12KeyUrl)) {
return HbKeyboardVirtual12KeyUrl;
}
}
--- a/src/hbplugins/inputmethods/touchinput/hbinputbasic12keyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputbasic12keyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -63,15 +63,15 @@
do {
int currCharIndex = 0;
mCurrentChar = 0;
- //This condition is to avoid get the characters mapped to Asterisk
- //Especially for Thai language we have mapped character to Asterisk
+ //This condition is to avoid get the characters mapped to Asterisk
+ //Especially for Thai language we have mapped character to Asterisk
if (buttonId != HbInputButton::ButtonKeyCodeAsterisk ||
mInputMethod->currentKeyboardType() == HbKeyboardSctEmail ||
mInputMethod->currentKeyboardType() == HbKeyboardSctUrl ||
mInputMethod->currentKeyboardType() == HbKeyboardSctPortrait ) {
currCharIndex = mNumChr ;
mCurrentChar = q->getNthCharacterInKey(mNumChr, buttonId, type);
- }
+ }
if (mCurrentChar != 0) {
if (focusObject->characterAllowedInEditor(mCurrentChar)) {
@@ -115,14 +115,18 @@
mInputMethod->currentKeyboardType() != HbKeyboardSctEmail &&
mInputMethod->currentKeyboardType() != HbKeyboardSctUrl )) {
mLongPressHappened = true;
- mInputMethod->selectSpecialCharacterTableMode();
+ if (HbInputSettingProxy::instance()->globalInputLanguage().language() == QLocale::Chinese) {
+ mInputMethod->switchMode(mDownKey);
+ } else {
+ mInputMethod->selectSpecialCharacterTableMode();
+ }
} else if (mDownKey == HbInputButton::ButtonKeyCodeAsterisk &&
- !mInputMethod->isSctModeActive() &&
- (mInputMethod->currentKeyboardType() != HbKeyboardSctPortrait &&
+ !mInputMethod->isSctModeActive() &&
+ (mInputMethod->currentKeyboardType() != HbKeyboardSctPortrait &&
mInputMethod->currentKeyboardType() != HbKeyboardSctUrl &&
mInputMethod->currentKeyboardType() != HbKeyboardSctEmail )) {
// launch the SCT keypad when long press of Asterisk key is
- // received in non-SCT mode
+ // received in non-SCT mode
mLongPressHappened = true;
mInputMethod->switchMode(mDownKey);
} else if (mDownKey != HbInputButton::ButtonKeyCodeDelete &&
@@ -228,7 +232,7 @@
if( HbInputSettingProxy::instance()->globalInputLanguage() == mInputMethod->inputState().language() ||
HbInputSettingProxy::instance()->globalSecondaryInputLanguage() == mInputMethod->inputState().language() ||
((HbEditorConstraintLatinAlphabetOnly | HbEditorConstraintAutoCompletingField)==focusObject->editorInterface().inputConstraints())){
- // in latin variants , double tap of shift key toggles the prediction status
+ // in latin variants , double tap of shift key toggles the prediction status
// revert back to the old case as this is a double tap
// (the case was changed on the single tap)
updateTextCase();
@@ -271,7 +275,7 @@
return true;
}
// switch the keypad mode when the short key press of Asterisk key in non-SCT mode
- // or SYM button or Alphabet button is received
+ // or SYM button or Alphabet button is received
if ((buttonId == HbInputButton::ButtonKeyCodeAsterisk &&
!mInputMethod->isSctModeActive()) || buttonId == HbInputButton::ButtonKeyCodeSymbol ||
buttonId == HbInputButton::ButtonKeyCodeAlphabet) {
--- a/src/hbplugins/inputmethods/touchinput/hbinputbasic12keyhandler.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputbasic12keyhandler.h Thu Sep 02 20:44:51 2010 +0300
@@ -43,7 +43,7 @@
void cursorPositionChanged(int oldPos, int newPos);
protected:
- HbInputBasic12KeyHandler(HbInputBasic12KeyHandlerPrivate &dd, HbInputAbstractMethod* inputMethod);
+ HbInputBasic12KeyHandler(HbInputBasic12KeyHandlerPrivate &dd, HbInputAbstractMethod* inputMethod);
private:
Q_DECLARE_PRIVATE_D(d_ptr, HbInputBasic12KeyHandler)
--- a/src/hbplugins/inputmethods/touchinput/hbinputbasic12keyhandler_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputbasic12keyhandler_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -47,6 +47,6 @@
int mDownKey;
HbInputFocusObject *mCurrentlyFocused;
bool mLongPressHappened;
- bool mShiftKeyDoubleTapped;
+ bool mShiftKeyDoubleTapped;
};
--- a/src/hbplugins/inputmethods/touchinput/hbinputnumeric12keyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputnumeric12keyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -41,7 +41,7 @@
HbInputNumeric12KeyHandlerPrivate();
~HbInputNumeric12KeyHandlerPrivate();
- void handleMultitapStarKey();
+ void handleMultitapStarKey();
bool handleAlphaEvent(int buttonId, HbKeyboardType type);
bool buttonPressed(const QKeyEvent *keyEvent);
bool buttonReleased(const QKeyEvent *keyEvent);
@@ -50,15 +50,15 @@
int mLastKey;
bool mLongPressHappened;
int mButtonDown;
- int mMultiTapNum;
- QChar mCurrentMultitapChar;
+ int mMultiTapNum;
+ QChar mCurrentMultitapChar;
};
HbInputNumeric12KeyHandlerPrivate::HbInputNumeric12KeyHandlerPrivate():
mLastKey(0), mLongPressHappened(false),
mButtonDown(false),
- mMultiTapNum(0),
- mCurrentMultitapChar(0)
+ mMultiTapNum(0),
+ mCurrentMultitapChar(0)
{
}
@@ -68,27 +68,27 @@
void HbInputNumeric12KeyHandlerPrivate::handleMultitapStarKey()
{
- HbInputFocusObject *focusObject = mInputMethod->focusObject();
- if (!focusObject) {
- return;
- }
- QChar MultitapStarKeyArray[] = {'*','+','p','w','\0'};
-
+ HbInputFocusObject *focusObject = mInputMethod->focusObject();
+ if (!focusObject) {
+ return;
+ }
+ QChar MultitapStarKeyArray[] = {'*','+','p','w','\0'};
+
int index = mMultiTapNum;
do {
mCurrentMultitapChar = MultitapStarKeyArray[mMultiTapNum];
mMultiTapNum = (++mMultiTapNum)%4;
- if (mCurrentMultitapChar != 0) {
+ if (mCurrentMultitapChar != 0) {
if (focusObject->characterAllowedInEditor(mCurrentMultitapChar)) {
- QString str;
- str += mCurrentMultitapChar;
+ QString str;
+ str += mCurrentMultitapChar;
- QList<QInputMethodEvent::Attribute> list;
- QInputMethodEvent event(str,list);
- focusObject->sendEvent(event);
+ QList<QInputMethodEvent::Attribute> list;
+ QInputMethodEvent event(str,list);
+ focusObject->sendEvent(event);
return;
}
- }
+ }
} while (index != mMultiTapNum);
}
@@ -103,13 +103,13 @@
}
QChar character = 0;
- //This condition is to avoid get the characters mapped to Asterisk
- //Especially for Thai language we have mapped character to Asterisk
+ //This condition is to avoid get the characters mapped to Asterisk
+ //Especially for Thai language we have mapped character to Asterisk
if (buttonId != HbInputButton::ButtonKeyCodeAsterisk ||
mInputMethod->currentKeyboardType() == HbKeyboardSctPortrait) {
int index = 0;
character = q->getNthCharacterInKey(index, buttonId, type);
- }
+ }
if (character != 0) {
q->commitAndUpdate(character);
@@ -122,13 +122,13 @@
{
Q_Q(HbInputNumeric12KeyHandler);
mLongPressHappened = false;
- HbInputFocusObject *focusObject = 0;
+ HbInputFocusObject *focusObject = 0;
focusObject = mInputMethod->focusObject();
if (!focusObject) {
return false;
}
int buttonId = keyEvent->key();
- mButtonDown = buttonId;
+ mButtonDown = buttonId;
if (keyEvent->isAutoRepeat() && mLastKey == buttonId) {
if (buttonId == HbInputButton::ButtonKeyCodeShift) {
// If the editor is not a number only editor, then activate the alphanumeric keypad
@@ -147,33 +147,33 @@
mCurrentMultitapChar = QChar(HbInputButton::ButtonKeyCodeAsterisk);
HbInputFocusObject *focusedObject = mInputMethod->focusObject();
if (focusedObject) {
- focusedObject->filterAndCommitCharacter(mCurrentMultitapChar);
+ focusedObject->filterAndCommitCharacter(mCurrentMultitapChar);
}
- mCurrentMultitapChar = 0;
+ mCurrentMultitapChar = 0;
}
if (mLongPressHappened) {
mLastKey = 0;
return true;
}
- }
+ }
- if (mInputMethod) {
- if (mLastKey != buttonId) {
- if (mCurrentMultitapChar !=0) {
+ if (mInputMethod) {
+ if (mLastKey != buttonId) {
+ if (mCurrentMultitapChar !=0) {
if (!focusObject->characterAllowedInEditor(mCurrentMultitapChar)) {
- focusObject->sendCommitString(QString());
+ focusObject->sendCommitString(QString());
} else {
- QChar commitChar(mCurrentMultitapChar);
- mCurrentMultitapChar = 0;
- q->commitAndUpdate(commitChar);
- }
- }
- }
- if (buttonId == HbInputButton::ButtonKeyCodeAsterisk) {
- mTimer->stop();
- mTimer->start(HbMultiTapTimerTimeout);
- }
- }
+ QChar commitChar(mCurrentMultitapChar);
+ mCurrentMultitapChar = 0;
+ q->commitAndUpdate(commitChar);
+ }
+ }
+ }
+ if (buttonId == HbInputButton::ButtonKeyCodeAsterisk) {
+ mTimer->stop();
+ mTimer->start(HbMultiTapTimerTimeout);
+ }
+ }
mLastKey = buttonId;
return false;
@@ -192,7 +192,7 @@
qDebug("HbInputModeHandler::buttonReleased no focusObject ... failed!!");
return false;
}
-
+
int buttonId = keyEvent->key();
if (mLongPressHappened) {
@@ -204,30 +204,30 @@
mTimer->stop();
}
if (mLastKey != buttonId) {
- mMultiTapNum = 0;
+ mMultiTapNum = 0;
}
- mButtonDown = 0;
+ mButtonDown = 0;
if (buttonId == HbInputButton::ButtonKeyCodeAsterisk &&
mInputMethod->currentKeyboardType() != HbKeyboardSctPortrait) {
//Asterisk Key will multitap bettween *,+,p,w
//mInputMethod->switchMode(buttonId);
- mLastKey = buttonId;
- handleMultitapStarKey();
+ mLastKey = buttonId;
+ handleMultitapStarKey();
return true;
} else if (buttonId == HbInputButton::ButtonKeyCodeSymbol) {
mInputMethod->switchMode(buttonId);
} else if (buttonId == HbInputButton::ButtonKeyCodeAlphabet) {
- mInputMethod->switchMode(buttonId);
- mLastKey = buttonId;
- return true;
- } else if (buttonId == Qt::Key_Return) {
+ mInputMethod->switchMode(buttonId);
+ mLastKey = buttonId;
+ return true;
+ } else if (buttonId == Qt::Key_Return) {
mInputMethod->closeKeypad();
return true;
- } else if (buttonId == HbInputButton::ButtonKeyCodeShift) {
+ } else if (buttonId == HbInputButton::ButtonKeyCodeShift) {
//Let's commit character "#" on single tap and double tap of shift Key
- mLastKey = buttonId;
+ mLastKey = buttonId;
QChar qc = QChar('#');
q->commitAndUpdate(qc);
return true;
@@ -237,7 +237,9 @@
return true;
}
mLastKey = buttonId;
- if (mInputMethod->currentKeyboardType() == HbKeyboardSctPortrait &&
+ if ((mInputMethod->currentKeyboardType() == HbKeyboardSctPortrait ||
+ mInputMethod->currentKeyboardType() == HbKeyboardSctUrl ||
+ mInputMethod->currentKeyboardType() == HbKeyboardSctEmail) &&
handleAlphaEvent(buttonId, mInputMethod->currentKeyboardType())) {
return true;
}
@@ -250,7 +252,7 @@
void HbInputNumeric12KeyHandlerPrivate::_q_timeout()
{
mTimer->stop();
- mMultiTapNum = 0;
+ mMultiTapNum = 0;
HbInputFocusObject *focusedObject = mInputMethod->focusObject();
if (!focusedObject) {
@@ -260,10 +262,10 @@
if (!mButtonDown) {
if (mCurrentMultitapChar != 0) {
- focusedObject->filterAndCommitCharacter(mCurrentMultitapChar);
+ focusedObject->filterAndCommitCharacter(mCurrentMultitapChar);
}
- }
- mCurrentMultitapChar = 0;
+ }
+ mCurrentMultitapChar = 0;
}
HbInputNumeric12KeyHandler::HbInputNumeric12KeyHandler(HbInputAbstractMethod* inputMethod)
@@ -304,7 +306,7 @@
case HbInputModeHandler::HbInputModeActionCancelButtonPress:
case HbInputModeHandler::HbInputModeActionReset:
d->mLastKey = 0;
- d->mButtonDown = false;
+ d->mButtonDown = false;
break;
//In case of the numeric editor the character is already committed.
//Need to remove the committed character.
--- a/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -83,13 +83,13 @@
if (keyEvent->isAutoRepeat() && mLastKey == buttonId) {
// mode switch should happen only when Qt::Key_Asterisk key is pressed in non-SCT
- // keypad.
+ // keypad.
if (buttonId == HbInputButton::ButtonKeyCodeAsterisk &&
!mInputMethod->isSctModeActive()) {
//Remove the "?" mark if present
if (!mCanContinuePrediction) {
chopQMarkAndUpdateEditor();
- }
+ }
mInputMethod->switchMode(buttonId);
mLongPressHappened = true;
} else if (buttonId == HbInputButton::ButtonKeyCodeShift) {
@@ -112,7 +112,7 @@
mLongPressHappened = true;
}
// commit the first mapped number character when long key press
- // of character key received in alphanumeric mode
+ // of character key received in alphanumeric mode
if (buttonId != HbInputButton::ButtonKeyCodeDelete &&
!mInputMethod->isSctModeActive()) {
q->commitFirstMappedNumber(buttonId, mInputMethod->currentKeyboardType());
@@ -156,13 +156,13 @@
mButtonDown = false;
int buttonId = keyEvent->key();
- // short key press of character keys should not be handled when "?" is displayed
+ // short key press of character keys should not be handled when "?" is displayed
if (!mCanContinuePrediction && !mLongPressHappened &&
- buttonId >= Qt::Key_1 && buttonId <= Qt::Key_9) {
+ buttonId >= Qt::Key_1 && buttonId <= Qt::Key_9) {
return false;
- }
+ }
// Sym key is handled in this class it self, so not passing it to
- // the base mode handlers.
+ // the base mode handlers.
if (buttonId == HbInputButton::ButtonKeyCodeSymbol ||
buttonId == HbInputButton::ButtonKeyCodeAlphabet) {
//Remove the "?" mark if present
@@ -176,11 +176,11 @@
- Behavior of Short Press of Asterisk Key when not in inline editing state
- Should launch SCT
- Behaviour of Short Press of Asterisk Key in SCT keypad
- - Should input the * character and should not change the keypad mode
+ - Should input the * character and should not change the keypad mode
*/
else if (buttonId == HbInputButton::ButtonKeyCodeAsterisk &&
!mInputMethod->isSctModeActive()) {
- if(!mCanContinuePrediction && (*mCandidates)[mBestGuessLocation].endsWith('?')) {
+ if(!mCanContinuePrediction && (*mCandidates)[mBestGuessLocation].endsWith('?')) {
//Remove the "?" mark
(*mCandidates)[mBestGuessLocation].chop(1);
updateEditor();
@@ -201,7 +201,7 @@
mShiftKeyDoubleTap = false;
//mShowTail = false;
if (HbInputSettingProxy::instance()->globalInputLanguage()== mInputMethod->inputState().language()) {
- // in latin variants , double tap of shift key toggles the prediction status
+ // in latin variants , double tap of shift key toggles the prediction status
// revert back to the old case as this is a double tap
// (the case was changed on the single tap)
updateTextCase();
@@ -224,7 +224,7 @@
}
return true;
}
- // ButtonKeyCodeSettings should not be propagated to the engine
+ // ButtonKeyCodeSettings should not be propagated to the engine
if(buttonId == HbInputButton::ButtonKeyCodeSettings) {
return true;
}
@@ -238,7 +238,7 @@
// text input happens on button release
if (q->HbInputPredictionHandler::filterEvent(keyEvent)) {
return true;
- }
+ }
return false;
}
@@ -285,6 +285,7 @@
int eventKey = event->key();
switch(eventKey) {
case Qt::Key_0:
+ case HbInputButton::ButtonKeyCodeSettings:
case HbInputButton::ButtonKeyCodeSpace: {
if(d->mCandidates->size() && focusObject) {
//Remove the "?" mark
--- a/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputprediction12keyhandler.h Thu Sep 02 20:44:51 2010 +0300
@@ -40,7 +40,7 @@
bool isActive() const;
void mouseHandler(int cursorPosition, QMouseEvent* mouseEvent);
protected:
- HbInputPrediction12KeyHandler(HbInputPrediction12KeyHandlerPrivate &dd, HbInputAbstractMethod* inputMethod);
+ HbInputPrediction12KeyHandler(HbInputPrediction12KeyHandlerPrivate &dd, HbInputAbstractMethod* inputMethod);
private:
Q_DECLARE_PRIVATE_D(d_ptr, HbInputPrediction12KeyHandler)
Q_DISABLE_COPY(HbInputPrediction12KeyHandler)
--- a/src/hbplugins/inputmethods/touchinput/hbinputpredictionqwertyhandler.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputpredictionqwertyhandler.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -115,29 +115,29 @@
else {
currentTextCase = HbTextCaseAutomatic;
}
- break;
- case HbTextCaseUpper:
- currentTextCase = HbTextCaseLower;
+ break;
+ case HbTextCaseUpper:
+ currentTextCase = HbTextCaseLower;
break;
case HbTextCaseAutomatic:
- currentTextCase = HbTextCaseUpper;
+ currentTextCase = HbTextCaseUpper;
break;
default:
break;
}
HbInputState state = mInputMethod->inputState();
- state.setTextCase(currentTextCase);
+ state.setTextCase(currentTextCase);
mInputMethod->activateState(state);
}
break;
case HbInputButton::ButtonKeyCodeSymbol: { // Ctrl/Chr
case HbInputButton::ButtonKeyCodeAlphabet:
mInputMethod->switchSpecialCharacterTable();
- }
+ }
break;
case HbInputButton::ButtonKeyCodeSettings:
mInputMethod->closeExactWordPopup();
- break;
+ break;
default: {
HbTextCase currentTextCase = focusObject->editorInterface().textCase();
Qt::KeyboardModifiers modifiers = Qt::NoModifier;
@@ -288,7 +288,7 @@
}
void HbInputPredictionQwertyHandler::sctCharacterSelected(QString character)
-{
+{
HbInputPredictionHandler::sctCharacterSelected(character);
}
@@ -358,7 +358,7 @@
// once the word is committed, we can not bring it back to inline edit.
// so if the engine does not have any data, we just send backspace event to the editor.
Q_Q(HbInputPredictionQwertyHandler);
- QKeyEvent event = QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier);
+ QKeyEvent event = QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier);
q->sendAndUpdate(event);
event = QKeyEvent(QEvent::KeyRelease, Qt::Key_Backspace, Qt::NoModifier);
q->sendAndUpdate(event);
@@ -434,7 +434,7 @@
list.append(QInputMethodEvent::Attribute(QInputMethodEvent::TextFormat, 0, QInputMethodEvent::TextFormat, gray));
} else {
list.append(QInputMethodEvent::Attribute(QInputMethodEvent::TextFormat, mEngine->inputLength(), taillength, gray));
- }
+ }
list.append(QInputMethodEvent::Attribute(QInputMethodEvent::Cursor, mEngine->inputLength(), 0, 0));
// the best guess word is sent to the editor
QInputMethodEvent event(bestGuessWord, list);
--- a/src/hbplugins/inputmethods/touchinput/hbinputqwertynumerictouchkeyboard.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/hbinputqwertynumerictouchkeyboard.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -190,7 +190,7 @@
if (charKeyCount < 10) {
item->setText(numberCharacterBoundToKey((charKeyCount + 1) % 10),
HbInputButton::ButtonTextIndexPrimary);
- charKeyCount++;
+ charKeyCount++;
} else {
if (key < characters.count()) {
item->setText(characters.at(key), HbInputButton::ButtonTextIndexPrimary);
@@ -198,7 +198,7 @@
item->setText(QString(), HbInputButton::ButtonTextIndexPrimary);
}
++key;
- }
+ }
}
}
buttonGroup->setButtons(buttons);
@@ -213,7 +213,7 @@
return;
}
QString chars;
-
+
foreach (const HbMappedKey* mappedKey, keyboardMap->keys) {
chars.append(mappedKey->characters(HbModifierNone));
}
@@ -225,8 +225,8 @@
// Remove digits from it ( digits always come in the first row )
for (int i=0; i < 10; i++) {
allowedChars.remove(numberCharacterBoundToKey(i));
- }
-
+ }
+
foreach (QChar sctChar, allowedChars) {
if (!characters.contains(sctChar)) {
characters.append(sctChar);
--- a/src/hbplugins/inputmethods/touchinput/touchinput.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/touchinput.pro Thu Sep 02 20:44:51 2010 +0300
@@ -42,19 +42,19 @@
HEADERS += touchinputplugin.h
HEADERS += hbinputbasic12keyhandler.h
HEADERS += hbinputprediction12keyhandler.h
-HEADERS += ..\common\hbinputbasichandler_p.h
-HEADERS += ..\common\hbinputmodehandler.h
-HEADERS += ..\common\hbinputmodehandler_p.h
-HEADERS += ..\common\hbinputpredictionhandler_p.h
+HEADERS += ../common/hbinputbasichandler_p.h
+HEADERS += ../common/hbinputmodehandler.h
+HEADERS += ../common/hbinputmodehandler_p.h
+HEADERS += ../common/hbinputpredictionhandler_p.h
HEADERS += hbinputbasicqwertyhandler.h
HEADERS += hbinputpredictionqwertyhandler.h
-HEADERS += ..\common\hbinputnumerichandler_p.h
+HEADERS += ../common/hbinputnumerichandler_p.h
HEADERS += hbinputnumericqwertyhandler.h
HEADERS += hbinputnumeric12keyhandler.h
-HEADERS += ..\common\hbinputabstractbase.h
+HEADERS += ../common/hbinputabstractbase.h
HEADERS += hbinputprediction12keyhandler_p.h
HEADERS += hbinputbasic12keyhandler_p.h
-HEADERS += ..\common\hbinputspellquerydialog.h
+HEADERS += ../common/hbinputspellquerydialog.h
HEADERS += hbinput12keytouchkeyboard.h
HEADERS += hbinput12keytouchkeyboard_p.h
HEADERS += hbinputqwerty10x4touchkeyboard.h
@@ -69,20 +69,20 @@
SOURCES += touchinputplugin.cpp
SOURCES += hbinputbasic12keyhandler.cpp
SOURCES += hbinputprediction12keyhandler.cpp
-SOURCES += ..\common\hbinputbasichandler.cpp
-SOURCES += ..\common\hbinputmodehandler.cpp
-SOURCES += ..\common\hbinputpredictionhandler.cpp
+SOURCES += ../common/hbinputbasichandler.cpp
+SOURCES += ../common/hbinputmodehandler.cpp
+SOURCES += ../common/hbinputpredictionhandler.cpp
SOURCES += hbinputbasicqwertyhandler.cpp
SOURCES += hbinputpredictionqwertyhandler.cpp
-SOURCES += ..\common\hbinputnumerichandler.cpp
+SOURCES += ../common/hbinputnumerichandler.cpp
SOURCES += hbinputnumericqwertyhandler.cpp
SOURCES += hbinputnumeric12keyhandler.cpp
-SOURCES += ..\common\hbinputabstractbase.cpp
+SOURCES += ../common/hbinputabstractbase.cpp
SOURCES += hbinput12keytouchkeyboard.cpp
SOURCES += hbinputqwerty10x4touchkeyboard.cpp
SOURCES += hbinputqwerty11x4touchkeyboard.cpp
SOURCES += hbinputqwertynumerictouchkeyboard.cpp
-SOURCES += ..\common\hbinputspellquerydialog.cpp
+SOURCES += ../common/hbinputspellquerydialog.cpp
symbian {
TARGET.EPOCALLOWDLLDATA = 1
--- a/src/hbplugins/inputmethods/touchinput/virtual12key.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/virtual12key.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -68,8 +68,7 @@
mKeymap(0),
mCandidatePopup(0),
mCurrentlyFocused(0),
- mVkbHost(0),
- mKeyboardChangeAlreadyInprogress(false)
+ mVkbHost(0)
{
initializeModeHandlers();
}
@@ -79,7 +78,7 @@
mBasicModeHandler = new HbInputBasic12KeyHandler(this);
mPredictionModeHandler = new HbInputPrediction12KeyHandler(this);
mNumericModeHandler = new HbInputNumeric12KeyHandler(this);
-
+
mActiveModeHandler = mBasicModeHandler;
mBasicModeHandler->actionHandler(HbInputModeHandler::HbInputModeActionInit);
@@ -123,7 +122,7 @@
delete mPredictionModeHandler;
mPredictionModeHandler = 0;
delete mNumericModeHandler;
- mNumericModeHandler = 0;
+ mNumericModeHandler = 0;
}
/*!
@@ -173,13 +172,11 @@
Hb12KeyTouchKeyboard *tempKeypad = new Hb12KeyTouchKeyboard(this, mKeymap);
connect(tempKeypad, SIGNAL(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)),
this, SLOT(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)));
- connect(tempKeypad, SIGNAL(rockerDirection(int, HbInputVirtualRocker::RockerSelectionMode)),
- this, SLOT(rockerDirection(int, HbInputVirtualRocker::RockerSelectionMode)));
//FLICKDISABLED connect(tempKeypad, SIGNAL(flickEvent(HbInputVkbWidget::FlickDirection)), this, SLOT(flickEvent(HbInputVkbWidget::FlickDirection)));
connect(tempKeypad, SIGNAL(smileySelected(QString)), this, SLOT(smileySelected(QString)));
connect(tempKeypad, SIGNAL(mouseMovedOutOfButton()), this, SLOT(mouseMovedOutOfButton()));
connect(tempKeypad, SIGNAL(settingsListClosed()), this, SLOT(restorePreviousState()));
- tempKeypad->setRockerVisible(true);
+
return tempKeypad;
}
@@ -291,10 +288,6 @@
return;
}
- mKeyboardChangeAlreadyInprogress = true;
- HbInputSettingProxy::instance()->setActiveKeyboard(HbKeyboardVirtual12Key);
- mKeyboardChangeAlreadyInprogress = false;
-
bool disableAnimation = false;
// see if we are trying to open a different keypad than what is already opened.
if (mCurrentKeypad != keypadToOpen) {
@@ -422,51 +415,6 @@
}
/*!
-The rocker widget emits the signal rockerDirection when there is any rocker movement. This method catches the emitted
-signal and makes the cursor movements according to the rcker movement.
-*/
-void HbVirtual12Key::rockerDirection(int aDirection, HbInputVirtualRocker::RockerSelectionMode aSelectionMode)
-{
- Qt::KeyboardModifiers modifiers = 0;
- if (aSelectionMode == HbInputVirtualRocker::RockerSelectionModeOn) {
- modifiers = Qt::ShiftModifier;
- }
- // commit any character/word which is in inline edit.
- mActiveModeHandler->actionHandler(HbInputModeHandler::HbInputModeActionCommit);
-
- HbInputLanguage inputlang = HbInputSettingProxy::instance()->globalInputLanguage();
-
- switch (aDirection) {
- case HbInputVirtualRocker::HbRockerDirectionLeft:
- if (inputlang.isRightToLeftLanguage()) {
- focusObject()->cursorRight(modifiers);
- } else {
- focusObject()->cursorLeft(modifiers);
- }
- break;
- case HbInputVirtualRocker::HbRockerDirectionRight:
- if (inputlang.isRightToLeftLanguage()) {
- focusObject()->cursorLeft(modifiers);
- } else {
- focusObject()->cursorRight(modifiers);
- }
- break;
- case HbInputVirtualRocker::HbRockerDirectionUp: {
- QKeyEvent keyEvent(QEvent::KeyPress, Qt::Key_Up, modifiers);
- focusObject()->sendEvent(keyEvent);
- }
- break;
- case HbInputVirtualRocker::HbRockerDirectionDown: {
- QKeyEvent keyEvent(QEvent::KeyPress, Qt::Key_Down, modifiers);
- focusObject()->sendEvent(keyEvent);
- }
- break;
- default:
- break;
- }
-}
-
-/*!
Notification from the generic input method framework indicating a change of input language.
The VKB keypad needs to refreshed to show the renewed key mapping.
*/
@@ -509,7 +457,7 @@
*/
void HbVirtual12Key::inputStateActivated(const HbInputState& newState)
{
- if (!isActiveMethod() || mKeyboardChangeAlreadyInprogress) {
+ if (!isActiveMethod()) {
return; // Just to be sure...
}
@@ -527,12 +475,12 @@
}
HbInputModeHandler *previousModeHandler = mActiveModeHandler;
- if (newState.inputMode() == HbInputModeDefault && usePrediction()) {
+ if (newState.inputMode() == HbInputModeDefault && usePrediction()) {
mActiveModeHandler = mPredictionModeHandler;
// by passing HbInputModeActionFocusRecieved we will be setting the candidate list and keypad
mActiveModeHandler->actionHandler(HbInputModeHandler::HbInputModeActionFocusRecieved);
- /* The below line should be added in orientationChanged Slot, however currently it is not working correctly
- hence this fix is temporarily added here */
+ /* The below line should be added in orientationChanged Slot, however currently it is not working correctly
+ hence this fix is temporarily added here */
mPredictionModeHandler->setAutocompletionStatus(HbInputSettingProxy::instance()->isAutocompletionEnabled(HbKeyboardSetting12key));
} else if (newState.inputMode() == HbInputModeDefault) {
mActiveModeHandler = mBasicModeHandler;
@@ -593,7 +541,7 @@
}
if(mNumericModeHandler) {
mNumericModeHandler->setKeymap(mKeymap);
- }
+ }
}
}
}
@@ -636,8 +584,16 @@
// if sct is active keypad, then launch itu-t keypad
switchToAlphaMode();
} else {
- // launch special character keypad
- displaySpecialCharacterTable(this);
+ if (keyCode == HbInputButton::ButtonKeyCodeSymbol && HbInputSettingProxy::instance()->globalInputLanguage().language() == QLocale::Chinese) {
+ HbInputLanguage primaryInputLanguage = HbInputSettingProxy::instance()->globalInputLanguage();
+ HbInputMethod::activeInputMethod()->activateState(HbInputState(HbInputModeDefault,
+ HbTextCaseAutomatic,
+ HbKeyboardTouchPortrait,
+ primaryInputLanguage));
+ } else {
+ // launch special character keypad
+ displaySpecialCharacterTable(this);
+ }
}
} else if (keyCode == HbInputButton::ButtonKeyCodeShift) {
HbInputState nextState = inputState();
@@ -663,8 +619,7 @@
connect(mSctKeypad, SIGNAL(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)),
this, SLOT(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)));
connect(mSctKeypad, SIGNAL(smileySelected(QString)),
- this, SLOT(smileySelected(QString)));
- mSctKeypad->setRockerVisible(false);
+ this, SLOT(smileySelected(QString)));
}
mSctKeypad->setMode(EModeAbc, HbModifierNone);
//Open the keypad
@@ -789,7 +744,7 @@
mCandidatePopup = new HbCandidateList(this);
connect(mCandidatePopup, SIGNAL(candidatePopupCancelled()), this, SLOT(restorePreviousState()));
connect(mCandidatePopup, SIGNAL(candidateSelected(int,QString)), this, SLOT(candidatePopupClosed(int,QString)));
- QObject::connect(mCandidatePopup,SIGNAL(launchSpellQueryDialog()),mPredictionModeHandler,SLOT(launchSpellQueryDialog()));
+ QObject::connect(mCandidatePopup,SIGNAL(launchSpellQueryDialog()),mPredictionModeHandler,SLOT(launchSpellQueryDialog()));
}
if (candidates.count() > 0) {
--- a/src/hbplugins/inputmethods/touchinput/virtual12key.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/virtual12key.h Thu Sep 02 20:44:51 2010 +0300
@@ -28,7 +28,6 @@
#include <QPointer>
#include <hbinputabstractbase.h>
-#include <hbinputvirtualrocker.h>
#include <hbinputvkbwidget.h>
class HbKeymap;
@@ -101,8 +100,7 @@
public slots:
void keypadClosed();
void keypadOpened();
- void keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod vkbCloseMethod);
- void rockerDirection(int direction, HbInputVirtualRocker::RockerSelectionMode selectionMode);
+ void keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod vkbCloseMethod);
void orientationChanged();
void candidatePopupClosed(int closingKey, const QString &candidate);
void flickEvent(HbInputVkbWidget::HbFlickDirection direction);
@@ -134,9 +132,8 @@
HbInputPrediction12KeyHandler *mPredictionModeHandler;
HbInputBasic12KeyHandler *mBasicModeHandler;
HbInputNumeric12KeyHandler *mNumericModeHandler;
-
- QPointer<HbVkbHost> mVkbHost;
- bool mKeyboardChangeAlreadyInprogress;
+
+ QPointer<HbVkbHost> mVkbHost;
};
#endif // _Virtual12Key_H
--- a/src/hbplugins/inputmethods/touchinput/virtualqwerty.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/virtualqwerty.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -35,7 +35,6 @@
#include <hbinputcandidatelist.h>
#include <hbinputsettingproxy.h>
#include <hbinpututils.h>
-#include <hbinputvirtualrocker.h>
#include <hbinputsctkeyboard.h>
#include <hbinputeditorinterface.h>
#include <hbinputdef.h>
@@ -88,7 +87,7 @@
connect(this, SIGNAL(autoCompletionPopupClosed(QString, int)), mBasicModeHandler, SLOT(autoCompletionPopupClosed(QString, int)));
connect(HbInputSettingProxy::instance(), SIGNAL(predictiveInputStateChanged(HbKeyboardSettingFlags,bool)), this, SLOT(predictiveInputStateChanged(HbKeyboardSettingFlags,bool)));
- connect(HbInputSettingProxy::instance(), SIGNAL(primaryCandidateModeChanged(HbPrimaryCandidateMode)), this, SLOT(primaryCandidateModeChanged(HbPrimaryCandidateMode)));
+ connect(HbInputSettingProxy::instance(), SIGNAL(primaryCandidateModeChanged(HbPrimaryCandidateMode)), this, SLOT(primaryCandidateModeChanged(HbPrimaryCandidateMode)));
connect(HbInputSettingProxy::instance(), SIGNAL(autocompletionStateChanged(HbKeyboardSettingFlags,bool)), this, SLOT(autocompletionStateChanged(HbKeyboardSettingFlags,bool)));
connect(HbInputSettingProxy::instance(), SIGNAL(typingCorrectionLevelChanged(HbTypingCorrectionLevel)), this, SLOT(typingCorrectionLevelChanged(HbTypingCorrectionLevel)));
mPredictionModeHandler->setPrimaryCandidateMode(HbInputSettingProxy::instance()->primaryCandidateMode());
@@ -339,7 +338,6 @@
connect(keyboard, SIGNAL(rockerDirection(int, HbInputVirtualRocker::RockerSelectionMode)),
this, SLOT(rockerDirection(int, HbInputVirtualRocker::RockerSelectionMode)));
connect(keyboard, SIGNAL(mouseMovedOutOfButton()), this, SLOT(mouseMovedOutOfButton()));
- keyboard->setRockerVisible(true);
return keyboard;
}
@@ -353,7 +351,7 @@
{
if (mVkbHost->keypadStatus() == HbVkbHost::HbVkbStatusMinimized) {
closeExactWordPopup();
- }
+ }
}
void HbVirtualQwerty::keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod vkbCloseMethod)
@@ -379,7 +377,7 @@
void HbVirtualQwerty::inputLanguageChanged(const HbInputLanguage &aNewLanguage)
{
mPredictionModeHandler->actionHandler(HbInputModeHandler::HbInputModeActionCommit);
- if (mExactWordPopup && mExactWordPopup->isVisible())
+ if (mExactWordPopup && mExactWordPopup->isVisible())
closeExactWordPopup();
// move keypad off screen
if (mCurrentKeypad){
@@ -420,10 +418,10 @@
mActiveModeHandler = mNumericModeHandler;
} else if (newState.inputMode() == HbInputModeDefault && usePrediction()) {
mActiveModeHandler = mPredictionModeHandler;
- // by passing HbInputModeActionFocusRecieved we will be setting the candidate list and keypad
+ // by passing HbInputModeActionFocusRecieved we will be setting the candidate list and keypad
mActiveModeHandler->actionHandler(HbInputModeHandler::HbInputModeActionFocusRecieved);
- /* The below line should be added in orientationChanged Slot, however currently it is not working correctly
- hence this fix is temporarily added here */
+ /* The below line should be added in orientationChanged Slot, however currently it is not working correctly
+ hence this fix is temporarily added here */
mPredictionModeHandler->setAutocompletionStatus(HbInputSettingProxy::instance()->isAutocompletionEnabled(HbKeyboardSettingQwerty));
} else if (newState.inputMode() == HbInputModeDefault) {
mActiveModeHandler = mBasicModeHandler;
@@ -514,10 +512,7 @@
if (!mSctKeypad) {
mSctKeypad = new HbSctKeyboard(this, mKeymap);
connect(mSctKeypad, SIGNAL(smileySelected(QString)), this, SLOT(smileySelected(QString)));
- connect(mSctKeypad, SIGNAL(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)), this, SLOT(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)));
- connect(mSctKeypad, SIGNAL(rockerDirection(int, HbInputVirtualRocker::RockerSelectionMode)),
- this, SLOT(rockerDirection(int, HbInputVirtualRocker::RockerSelectionMode)));
- mSctKeypad->setRockerVisible(true);
+ connect(mSctKeypad, SIGNAL(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)), this, SLOT(keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod)));
}
mSctKeypad->setMode(EModeAbc, HbModifierNone);
//open the keypad
@@ -648,49 +643,6 @@
}
/*!
-Slot used by virtual rocker to move cursor.
-*/
-void HbVirtualQwerty::rockerDirection(int aDirection, HbInputVirtualRocker::RockerSelectionMode aSelectionMode)
-{
- Qt::KeyboardModifiers modifiers = 0;
- if (aSelectionMode == HbInputVirtualRocker::RockerSelectionModeOn) {
- modifiers = Qt::ShiftModifier;
- }
- // commit any character/word which is in inline edit.
- mActiveModeHandler->actionHandler(HbInputModeHandler::HbInputModeActionCommit);
- HbInputLanguage inputlang = HbInputSettingProxy::instance()->globalInputLanguage();
-
- switch (aDirection) {
- case HbInputVirtualRocker::HbRockerDirectionLeft:
- if(inputlang.isRightToLeftLanguage()) {
- focusObject()->cursorRight(modifiers);
- } else {
- focusObject()->cursorLeft(modifiers);
- }
- break;
- case HbInputVirtualRocker::HbRockerDirectionRight:
- if(inputlang.isRightToLeftLanguage()) {
- focusObject()->cursorLeft(modifiers);
- } else {
- focusObject()->cursorRight(modifiers);
- }
- break;
- case HbInputVirtualRocker::HbRockerDirectionUp: {
- QKeyEvent keyEvent(QEvent::KeyPress, Qt::Key_Up, modifiers);
- focusObject()->sendEvent(keyEvent);
- }
- break;
- case HbInputVirtualRocker::HbRockerDirectionDown: {
- QKeyEvent keyEvent(QEvent::KeyPress, Qt::Key_Down, modifiers);
- focusObject()->sendEvent(keyEvent);
- }
- break;
- default:
- break;
- }
-}
-
-/*!
The framework calls this method when the predictive input status changes.
*/
void HbVirtualQwerty::predictiveInputStateChanged(HbKeyboardSettingFlags keyboardType, bool newStatus)
@@ -708,7 +660,7 @@
void HbVirtualQwerty::primaryCandidateModeChanged(HbPrimaryCandidateMode mode)
{
- mPredictionModeHandler->setPrimaryCandidateMode(mode);
+ mPredictionModeHandler->setPrimaryCandidateMode(mode);
}
void HbVirtualQwerty::autocompletionStateChanged(HbKeyboardSettingFlags keyboardType, bool newState)
--- a/src/hbplugins/inputmethods/touchinput/virtualqwerty.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbplugins/inputmethods/touchinput/virtualqwerty.h Thu Sep 02 20:44:51 2010 +0300
@@ -29,7 +29,6 @@
#include <QPointer>
#include <hbinputabstractbase.h>
#include <hbinputpredictioncallback.h>
-#include <hbinputvirtualrocker.h>
#include <hbinputvkbwidget.h>
class QTimer;
@@ -65,8 +64,7 @@
bool filterEvent(const QEvent* event);
public slots:
- void orientationAboutToChange();
- void rockerDirection(int aDirection, HbInputVirtualRocker::RockerSelectionMode aSelectionMode);
+ void orientationAboutToChange();
// keypad related slots
void keypadClosed();
void keypadCloseEventDetected(HbInputVkbWidget::HbVkbCloseMethod vkbCloseMethod);
@@ -107,7 +105,7 @@
HbKeyboardType currentKeyboardType() const;
private slots:
- void primaryCandidateModeChanged(HbPrimaryCandidateMode mode);
+ void primaryCandidateModeChanged(HbPrimaryCandidateMode mode);
void restorePreviousState();
private:
--- a/src/hbservers/hbsplashgenerator/hbsplashdirs_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashdirs_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -27,6 +27,7 @@
#define HBSPLASHDIRS_P_H
#include <QStringList>
+#include "hbsplashdefs_p.h"
#ifdef Q_OS_SYMBIAN
#include <driveinfo.h>
@@ -46,9 +47,9 @@
CCoeEnv *env = CCoeEnv::Static();
if (env) {
TUint driveStatus;
- qDebug("[hbsplash] dir selection: trying drive %d %c", drive, (char) driveLetter);
+ splDebug("[hbsplash] dir selection: trying drive %d %c", drive, (char) driveLetter);
if (DriveInfo::GetDriveStatus(env->FsSession(), drive, driveStatus) == KErrNone) {
- qDebug("[hbsplash] drive status is %x", driveStatus);
+ splDebug("[hbsplash] drive status is %x", driveStatus);
// Check if the drive is really internal (devices without internal mass
// storage will return the memory card which is not what we want here).
if (!(driveStatus & DriveInfo::EDriveInternal)
@@ -56,11 +57,11 @@
|| !(driveStatus & DriveInfo::EDriveFormatted)
|| (driveStatus & DriveInfo::EDriveCorrupt)
|| (driveStatus & DriveInfo::EDriveInUse)) {
- qDebug("[hbsplash] drive not usable, skipping");
+ splDebug("[hbsplash] drive not usable, skipping");
driveUsable = false;
}
} else {
- qDebug("[hbsplash] GetDriveStatus failed, skipping");
+ splDebug("[hbsplash] GetDriveStatus failed, skipping");
driveUsable = false;
}
}
--- a/src/hbservers/hbsplashgenerator/hbsplashgen_server_symbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgen_server_symbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,7 +36,6 @@
#include <QDir>
#include <QList>
#include <QPair>
-#include <QDebug>
const int bitmap_cache_limit = 4; // Must be at least 1. Each bitmap consumes ~1 MB.
@@ -54,7 +53,7 @@
CEikAppUi *HbSplashGenDocument::CreateAppUiL()
{
- qDebug() << PRE << "using custom appui";
+ splDeb() << PRE << "using custom appui";
return new(ELeave) HbSplashGenAppUi;
}
@@ -137,8 +136,8 @@
void HbSplashGenServer::onOutputDirContentsUpdated(const QString &dir,
const QStringList &entries)
{
- qDebug() << PRE << "splash screen dir contents received" << dir;
- qDebug() << PRE << entries;
+ splDeb() << PRE << "splash screen dir contents received" << dir;
+ splDeb() << PRE << entries;
mServer->setSplashScreenDir(dir);
mServer->setSplashScreenDirContents(entries);
}
@@ -166,7 +165,7 @@
mFs.ShareProtected();
TRAP(err, StartL(hbsplash_server_name));
if (err == KErrNone) {
- qDebug() << PRE << "server started";
+ splDeb() << PRE << "server started";
} else {
qWarning() << PRE << "server start failed" << err;
}
@@ -244,14 +243,14 @@
if (wantsBitmap) {
const BitmapCacheData *cachedBitmapData = getCachedBitmap(fileName);
if (cachedBitmapData) {
- qDebug() << PRE << "returning cached bitmap for" << fileName;
+ splDeb() << PRE << "returning cached bitmap for" << fileName;
completeWithBitmap(message, *cachedBitmapData);
return true;
}
}
QDir splashScreenDir(mSplashScreenDir);
QString nativeName = QDir::toNativeSeparators(splashScreenDir.filePath(fileName));
- qDebug() << PRE << "trying to read" << nativeName;
+ splDeb() << PRE << "trying to read" << nativeName;
TPtrC nativeNameDes(static_cast<const TUint16 *>(nativeName.utf16()), nativeName.length());
RFile f;
if (f.Open(mFs, nativeNameDes, EFileRead | EFileShareReadersOrWriters) == KErrNone) {
@@ -319,7 +318,7 @@
QString orientation = QString::fromUtf16(orientationDes.Ptr(), orientationDes.Length());
QString appId = QString::fromUtf16(appIdDes.Ptr(), appIdDes.Length());
QString screenId = QString::fromUtf16(screenIdDes.Ptr(), screenIdDes.Length());
- qDebug() << PRE << "getSplash request" << orientation << appId << screenId;
+ splDeb() << PRE << "getSplash request" << orientation << appId << screenId;
// Do not allow accessing app-specific splash screens of other applications.
if (!appId.isEmpty() || !screenId.isEmpty()) {
@@ -381,7 +380,7 @@
}
}
- qDebug() << PRE << "getSplash request completed";
+ splDeb() << PRE << "getSplash request completed";
if (!cachedEntryListValid) {
// Set the splash dir back to empty so future invocations can also
// recognize that the generator has not notified us yet.
@@ -393,12 +392,12 @@
HbSplashGenServerSession::HbSplashGenServerSession(HbSplashGenServerSymbian *server)
: mServer(server)
{
- qDebug() << PRE << "new session";
+ splDeb() << PRE << "new session";
}
HbSplashGenServerSession::~HbSplashGenServerSession()
{
- qDebug() << PRE << "session destroyed";
+ splDeb() << PRE << "session destroyed";
}
void HbSplashGenServerSession::ServiceL(const RMessage2 &message)
@@ -420,7 +419,7 @@
param 3 [out] CFbsBitmap handle
*/
- qDebug() << PRE << "ServiceL" << message.Function() << QString::number(message.SecureId().iId, 16);
+ splDeb() << PRE << "ServiceL" << message.Function() << QString::number(message.SecureId().iId, 16);
switch (message.Function()) {
case HbSplashSrvGetSplashFile: // fallthrough
case HbSplashSrvGetSplashData:
--- a/src/hbservers/hbsplashgenerator/hbsplashgenerator.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgenerator.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -108,7 +108,7 @@
{
const char *fmt = PRE " %s ('%s' '%s')";
QString oriName = orientationName(static_cast<Qt::Orientation>(orientation));
- qDebug(fmt, qPrintable(msg), qPrintable(theme), qPrintable(oriName));
+ splDebug(fmt, qPrintable(msg), qPrintable(theme), qPrintable(oriName));
}
// To be called on startup and after each fully completed regeneration.
@@ -129,7 +129,7 @@
void HbSplashGenerator::doStart()
{
- qDebug() << PRE << "accessing theme";
+ splDeb() << PRE << "accessing theme";
// Start listening to the theme-change-finished signal.
HbTheme *theme = hbInstance->theme();
connect(theme, SIGNAL(changeFinished()), SLOT(regenerate()));
@@ -145,6 +145,12 @@
}
}
+ // Regenerate screens, if needed.
+ scheduleRegen();
+}
+
+void HbSplashGenerator::scheduleRegen()
+{
// Regenerate screens on startup only when the theme, the language, the
// number of files in the splash screen directory, or the splash screen
// directory path is different than the recorded values. (or when
@@ -153,7 +159,7 @@
QString lastLang = mSettings->value(QLatin1String(last_lang_key)).toString();
int lastFileCount = mSettings->value(QLatin1String(last_file_count_key)).toInt();
QString lastOutputDir = mSettings->value(QLatin1String(last_output_dir_key)).toString();
- QString currentTheme = theme->name();
+ QString currentTheme = hbInstance->theme()->name();
QString currentLang = QLocale::system().name();
QString currentOutputDir = hbsplash_output_dir();
int currentFileCount = updateOutputDirContents(currentOutputDir);
@@ -166,6 +172,7 @@
|| currentFileCount != lastFileCount
|| currentOutputDir != lastOutputDir) {
QMetaObject::invokeMethod(this, "regenerate", Qt::QueuedConnection);
+ mForceRegen = false;
}
}
@@ -216,7 +223,7 @@
queueAppSpecificItems(themeName, Qt::Vertical);
queueAppSpecificItems(themeName, Qt::Horizontal);
mSaveSplFailed = false;
- qDebug() << PRE << "queue preparation time (ms):" << queuePrepTime.elapsed();
+ splDeb() << PRE << "queue preparation time (ms):" << queuePrepTime.elapsed();
QMetaObject::invokeMethod(this, "processQueue", Qt::QueuedConnection);
} catch (const std::bad_alloc &) {
cleanup();
@@ -260,13 +267,13 @@
image.fill(QColor(Qt::transparent).rgba());
QPainter painter(&image);
mMainWindow->render(&painter);
- qDebug() << PRE << "rendering time (ms):" << t.elapsed();
+ splDeb() << PRE << "rendering time (ms):" << t.elapsed();
return image;
}
void HbSplashGenerator::processQueue()
{
- qDebug() << PRE << "processQueue()";
+ splDeb() << PRE << "processQueue()";
// If the queue is empty then the splash regeneraton is complete so store
// the current theme and language names as the last fully processed ones in
// the settings and stop.
@@ -280,22 +287,31 @@
// ...but store zero if some file writing failed at some point
// so there will be a regeneration on next boot at least.
if (mSaveSplFailed) {
+ qWarning() << PRE << "some files not ok, ignoring file count";
fileCount = 0;
- qDebug() << PRE << "some files not ok, ignoring file count";
+ // Waiting until next boot is not always the best solution so try
+ // again a bit later. This has to be limited, though, to prevent
+ // continously flooding the system with regenerate requests in case
+ // of an unusable drive. So retry only for a limited number of
+ // times, if all else fails we will try again on next boot.
+ static int retriesLeft = 3;
+ if (retriesLeft-- > 0) {
+ QTimer::singleShot(60000, this, SLOT(scheduleRegen())); // 1 min
+ }
} else {
- qDebug() << PRE << "all files ok";
+ splDeb() << PRE << "all files ok";
}
mSettings->setValue(last_file_count_key, fileCount);
mSettings->setValue(last_output_dir_key, outDir);
emit finished();
- qDebug() << PRE << "processQueue() over";
+ splDeb() << PRE << "processQueue() over";
return;
}
// If a previous splash generation is still in progress or a compositor is
// working then do nothing.
if (!lockMainWindow()) {
mProcessQueuePending = true;
- qDebug() << PRE << "still busy processQueue() over";
+ splDeb() << PRE << "still busy processQueue() over";
return;
}
try {
@@ -306,12 +322,12 @@
ensureMainWindow();
mMainWindow->setOrientation(mItem.mOrientation, false);
- qDebug() << PRE << "mainwindow init time (ms):" << mItemTime.elapsed();
+ splDeb() << PRE << "mainwindow init time (ms):" << mItemTime.elapsed();
QTime setupTime;
setupTime.start();
setupAppSpecificWindow();
- qDebug() << PRE << "content setup time (ms):" << setupTime.elapsed();
+ splDeb() << PRE << "content setup time (ms):" << setupTime.elapsed();
// The async call chain goes like this:
// processQueue -> finishWindow -> processWindow -> processQueue -> ...
@@ -322,7 +338,7 @@
} catch (const std::bad_alloc &) {
cleanup();
}
- qDebug() << PRE << "processQueue() over";
+ splDeb() << PRE << "processQueue() over";
}
HbMainWindow *HbSplashGenerator::ensureMainWindow()
@@ -343,7 +359,7 @@
// Take the screenshot, remove content, and move on to the next request in the queue.
log("processWindow() rendering splash screen", mItem.mThemeName, mItem.mOrientation);
takeScreenshot();
- qDebug() << PRE << "total time for screen (ms):" << mItemTime.elapsed();
+ splDeb() << PRE << "total time for screen (ms):" << mItemTime.elapsed();
QList<HbView *> views = mMainWindow->views();
foreach(HbView * view, views) {
@@ -372,7 +388,7 @@
QTime t;
t.start();
QString splashFile = splashFileName();
- qDebug() << PRE << "saving to" << splashFile;
+ splDeb() << PRE << "saving to" << splashFile;
if (saveSpl(splashFile, image, mItem.mFlagsToStore)) {
#if !defined(Q_OS_SYMBIAN) && defined(QT_DEBUG)
image.save(splashFile + QLatin1String(".png"));
@@ -380,8 +396,12 @@
} else {
qWarning() << PRE << "file write failed for" << splashFile;
mSaveSplFailed = true;
+ // After setting the fail flag, clear the queue to stop processing
+ // further screens because file writes would probably fail anyway.
+ // Instead, processQueue() will schedule a retry at a later time.
+ mQueue.clear();
}
- qDebug() << PRE << "save time (ms):" << t.elapsed();
+ splDeb() << PRE << "save time (ms):" << t.elapsed();
log("takeScreenshot() over", mItem.mThemeName, mItem.mOrientation);
} catch (const std::bad_alloc &) {
cleanup();
@@ -392,11 +412,29 @@
{
QString outDirName = hbsplash_output_dir();
QDir dir(outDirName);
+#ifdef Q_OS_SYMBIAN
+ // Do not use QDir::mkpath() on Symbian. It is not able to create the
+ // 'private' directory itself in case it does not exist (which is possible
+ // during first boot because splashgen is started relatively early and the
+ // eMMC may be totally empty at that point). RFs::MkDirAll() works better in
+ // this respect.
+ QString nativeOutPath = QDir::toNativeSeparators(outDirName);
+ if (!nativeOutPath.endsWith('\\')) {
+ nativeOutPath.append('\\');
+ }
+ TPtrC nativeOutPathDes(static_cast<const TUint16 *>(nativeOutPath.utf16()),
+ nativeOutPath.length());
+ TInt err = CCoeEnv::Static()->FsSession().MkDirAll(nativeOutPathDes);
+ if (err != KErrNone && err != KErrAlreadyExists) {
+ qWarning() << PRE << "MkDirAll failed with" << err << "for" << nativeOutPath;
+ }
+#else
if (!dir.exists()) {
if (!QDir(".").mkpath(outDirName)) {
qWarning() << PRE << "mkpath failed for" << outDirName;
}
}
+#endif
// "splash_<orientation>_<appid>_<screenid>"
QString splashFile = dir.filePath("splash_");
splashFile.append(orientationName(mItem.mOrientation));
@@ -499,17 +537,17 @@
// Skip if a file with the same name has already been processed from
// a different location.
if (processedFileNames.contains(entry)) {
- qDebug() << PRE << "skipping splashml (already found at other location)" << dir.filePath(entry);
+ splDeb() << PRE << "skipping splashml (already found at other location)" << dir.filePath(entry);
continue;
}
processedFileNames.insert(entry);
QString fullName = dir.filePath(entry);
- qDebug() << PRE << "parsing splashml" << fullName;
+ splDeb() << PRE << "parsing splashml" << fullName;
if (mParsedSplashmls.contains(fullName)) {
QueueItem item(mParsedSplashmls.value(fullName));
item.mThemeName = themeName;
item.mOrientation = orientation;
- qDebug() << PRE << "splashml already parsed queuing request" << item;
+ splDeb() << PRE << "splashml already parsed queuing request" << item;
addSplashmlItemToQueue(item);
continue;
}
@@ -522,7 +560,7 @@
// Add the full path to the filename. The docml is supposed to
// be in the same directory as the splashml.
item.mDocmlFileName = dir.filePath(item.mDocmlFileName);
- qDebug() << PRE << "queuing request" << item;
+ splDeb() << PRE << "queuing request" << item;
addSplashmlItemToQueue(item);
mParsedSplashmls.insert(fullName, item);
} else {
@@ -668,7 +706,7 @@
{
QObject *obj = HbDocumentLoader::createObject(type, name);
if (!obj) {
- qDebug() << PRE << "unsupported object" << type << name;
+ splDeb() << PRE << "unsupported object" << type << name;
// Cannot let parsing fail because of unknown custom widgets
// so provide an empty HbWidget (or HbView if the splashml
// prefers that).
@@ -717,12 +755,12 @@
}
}
sections << mItem.mForcedSections;
- qDebug() << PRE << "loading" << mItem.mDocmlFileName << "common section";
+ splDeb() << PRE << "loading" << mItem.mDocmlFileName << "common section";
bool ok;
loader.load(mItem.mDocmlFileName, &ok);
if (ok && !sections.isEmpty()) {
foreach(const QString & section, sections) {
- qDebug() << PRE << "loading" << mItem.mDocmlFileName << "section" << section;
+ splDeb() << PRE << "loading" << mItem.mDocmlFileName << "section" << section;
loader.load(mItem.mDocmlFileName, section, &ok);
}
}
@@ -732,7 +770,7 @@
// Find the root view and add it to the mainwindow.
QGraphicsWidget *widget = loader.findWidget(mItem.mDocmlWidgetName);
if (widget) {
- qDebug() << PRE << "widget created from" << mItem;
+ splDeb() << PRE << "widget created from" << mItem;
mMainWindow->addView(widget);
} else {
qWarning() << PRE << "widget creation failed from" << mItem;
@@ -753,7 +791,7 @@
}
HbWidget *widget = qobject_cast<HbWidget *>(loader.findWidget(req.mTargetWidgetName));
if (widget) {
- qDebug() << PRE << "setting background item" << req.mFrameGraphicsName
+ splDeb() << PRE << "setting background item" << req.mFrameGraphicsName
<< "for" << req.mTargetWidgetName;
widget->setBackgroundItem(
new HbFrameItem(req.mFrameGraphicsName, req.mFrameGraphicsType),
@@ -847,7 +885,7 @@
// Hide dynamic content from status bar (clock, indicators).
setStatusBarElementsVisible(mMainWindow, false);
- qDebug() << PRE << "time spent in finishWindow() (ms):" << prepTime.elapsed();
+ splDeb() << PRE << "time spent in finishWindow() (ms):" << prepTime.elapsed();
// Continue with rendering the graphics view in processWindow().
QMetaObject::invokeMethod(this, "processWindow", Qt::QueuedConnection);
@@ -887,7 +925,7 @@
// may still pick up another suitable file based on this name.
if (translator->load(fullName)) {
QCoreApplication::installTranslator(translator);
- qDebug() << PRE << "translator installed:" << fullName;
+ splDeb() << PRE << "translator installed:" << fullName;
ok = true;
break;
}
--- a/src/hbservers/hbsplashgenerator/hbsplashgenerator_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/hbsplashgenerator_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -73,6 +73,7 @@
private slots:
void doStart();
+ void scheduleRegen();
void processQueue();
void finishWindow();
void processWindow();
--- a/src/hbservers/hbsplashgenerator/main.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbsplashgenerator/main.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -71,7 +71,7 @@
HbApplication app(argc, argv, Hb::NoSplash);
#endif
- qDebug("[hbsplashgenerator] initializing generator");
+ splDebug("[hbsplashgenerator] initializing generator");
HbSplashGenerator gen;
bool forceRegen = false;
char **args = argv;
@@ -85,7 +85,7 @@
#if defined(Q_OS_SYMBIAN) || defined(HB_Q_WS_MAEMO)
app.setQuitOnLastWindowClosed(false);
#else
- qDebug("[hbsplashgenerator] initializing ui");
+ splDebug("[hbsplashgenerator] initializing ui");
QMainWindow mw;
QPushButton *btnRegen = new QPushButton("Regenerate");
gen.connect(btnRegen, SIGNAL(clicked()), SLOT(uncachedRegenerate()));
@@ -99,16 +99,16 @@
// The server must be initialized before calling HbSplashGenerator::start().
#if defined(Q_OS_SYMBIAN)
- qDebug("[hbsplashgenerator] starting server");
+ splDebug("[hbsplashgenerator] starting server");
HbSplashGenServer server(&gen);
// If there was an error then exit right away.
if (!server.startupSuccess()) {
- qDebug("[hbsplashgenerator] exiting due to failed server startup");
+ splDebug("[hbsplashgenerator] exiting due to failed server startup");
return 0;
}
#endif
- qDebug("[hbsplashgenerator] starting generator");
+ splDebug("[hbsplashgenerator] starting generator");
gen.start(forceRegen);
HbSplashIndicatorCompositor indiCompositor(&gen);
@@ -116,15 +116,15 @@
#if defined(Q_OS_SYMBIAN)
server.addCompositor(&indiCompositor);
if (mutexToSignal) {
- qDebug("[hbsplashgenerator] signaling mutex");
+ splDebug("[hbsplashgenerator] signaling mutex");
static_cast<RMutex *>(mutexToSignal)->Signal();
}
#endif
- qDebug("[hbsplashgenerator] entering event loop");
+ splDebug("[hbsplashgenerator] entering event loop");
int ret = app.exec();
- qDebug("[hbsplashgenerator] exiting");
+ splDebug("[hbsplashgenerator] exiting");
return ret;
}
@@ -143,7 +143,7 @@
mutex.Wait();
mutexToSignal = &mutex;
} else {
- qDebug("[hbsplashgenerator] failed to open/create mutex");
+ qWarning("[hbsplashgenerator] failed to open/create mutex");
}
// Due to the mutex-based synchronization we should now be able to
// use TFindServer to safely check if there is another instance
@@ -151,7 +151,7 @@
TFindServer findServer(hbsplash_server_name);
TFullName serverName;
if (findServer.Next(serverName) == KErrNone) {
- qDebug("[hbsplashgenerator] found another instance, exiting");
+ splDebug("[hbsplashgenerator] found another instance, exiting");
canStart = false;
RProcess::Rendezvous(KErrAlreadyExists);
}
@@ -162,7 +162,7 @@
try {
result = runMain(argc, argv, mutexToSignal);
} catch (...) {
- qDebug("[hbsplashgenerator] exiting due to exception in main()");
+ qWarning("[hbsplashgenerator] exiting due to exception in main()");
}
}
--- a/src/hbservers/hbthemeserver/hbicondatacache_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbicondatacache_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -189,7 +189,7 @@
cache->clear();
// close the sgimage driver after all the
- // sgimage items and its memory were deleted.
+ // sgimage items and its memory were deleted.
#ifdef HB_SGIMAGE_ICON
if (!goodMemory && (currentGpuCacheSize <= 0) ) {
HbSgImageRenderer::global()->terminate();
@@ -726,7 +726,7 @@
}
}
// close the sgimage driver after all the
- // sgimage items and its memory were deleted.
+ // sgimage items and its memory were deleted.
#ifdef HB_SGIMAGE_ICON
if (!goodMemory && (currentGpuCacheSize <= 0) ) {
HbSgImageRenderer::global()->terminate();
@@ -841,7 +841,22 @@
}
}
return sgImagesCount;
+}
+int HbIconDataCache::totalSgImagesCost() const
+{
+ int sgImagesCost = 0;
+ QHash<HbIconKey, HbIconCacheItem*>::const_iterator itEnd(cache->constEnd());
+ for (QHash<HbIconKey,
+ HbIconCacheItem *>::const_iterator iter = cache->constBegin();
+ iter != itEnd;
+ ++iter) {
+ HbIconCacheItem *temp = iter.value();
+ if( temp->rasterIconData.type == SGIMAGE ){
+ sgImagesCost += temp->rasterIconDataCost;
+ }
+ }
+ return sgImagesCost;
}
int HbIconDataCache::cachedPixmapCount() const
--- a/src/hbservers/hbthemeserver/hbicondatacache_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbicondatacache_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -73,6 +73,7 @@
int vectorLruCount();
#endif
int cachedSgImagesCount() const;
+ int totalSgImagesCost() const;
int cachedPixmapCount() const;
private:
--- a/src/hbservers/hbthemeserver/hbiconprocessor_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbiconprocessor_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -50,7 +50,7 @@
mode(m),
mirrored(mir),
color(clr),
- renderMode(rMode)
+ renderMode(rMode)
{
}
@@ -77,7 +77,7 @@
mirrored = other.mirrored;
filename = other.filename;
color = other.color;
- renderMode = other.renderMode;
+ renderMode = other.renderMode;
}
return *this;
}
--- a/src/hbservers/hbthemeserver/hbpixmapiconprocessor_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbpixmapiconprocessor_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -128,7 +128,7 @@
isIconCreated = renderPicToPixmap(iconPath);
} else if (iconType == "NVG") {
#if defined (HB_NVG_CS_ICON)
- isIconCreated = renderNvgToPixmap(iconPath);
+ isIconCreated = renderNvgToPixmap(iconPath);
#endif //HB_NVG_CS_ICON
} else {
isIconCreated = renderOtherFormatsToPixmap(iconPath);
@@ -267,7 +267,7 @@
}
HbIconSource *source = HbThemeServerUtils::getIconSource(iconPath);
- pixmap = *source->pixmap();
+ pixmap = QPixmap::fromImage(*source->image());
if (pixmap.isNull()) {
return isIconCreated;
@@ -308,7 +308,7 @@
isIconCreated = true;
// Delete original pixmap if its size is large
- source->deletePixmapIfLargerThan(PIXMAP_SIZE_LIMIT);
+ source->deleteImageIfLargerThan(IMAGE_SIZE_LIMIT);
return isIconCreated;
}
@@ -366,7 +366,7 @@
painter.drawPixmap(multiPieceIconParams.multiPartIconData.targets[i].topLeft(), pixmap, pixmap.rect());
}
#if defined (HB_NVG_CS_ICON)
- }
+ }
#endif
}
@@ -495,7 +495,7 @@
//Copy the data from the surface
err = VGICopyToTarget(format, stride, imageBuffer, 0, NULL, VGI_COPY_TRANSPARENT_PIXELS);
#ifdef __DEBUG
- qDebug() << "error code for VGICopyToTarget()"<< err;
+ qDebug() << "error code for VGICopyToTarget()"<< err;
#endif
//Get Pixmap from the Qimage.
pixmap = QPixmap::fromImage(img);
--- a/src/hbservers/hbthemeserver/hbpixmapiconprocessor_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbpixmapiconprocessor_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -81,7 +81,7 @@
bool renderNvgToPixmap(const QString& iconPath);
bool pixmapFromByteArray(const QByteArray &byteArray, const QSize iconSize, Qt::AspectRatioMode aspectRatioMode);
HbNvgAspectRatioSettings mapKeyAspectRatioToNvgAspectRatio(
- Qt::AspectRatioMode aspectRatio) const;
+ Qt::AspectRatioMode aspectRatio) const;
#endif //HB_NVG_CS_ICON
private:
QPixmap pixmap;
--- a/src/hbservers/hbthemeserver/hbthemeserver_symbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver_symbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -502,6 +502,11 @@
return cache->cachedSgImagesCount();
}
+int HbThemeServerPrivate::totalSgImagesCost() const
+{
+ return cache->totalSgImagesCost();
+}
+
int HbThemeServerPrivate::cachedPixmapCount() const
{
return cache->cachedPixmapCount();
@@ -710,9 +715,14 @@
unLoadIcon(aMessage);
break;
+ case EBatchUnloadIcon:
+ batchUnLoadIcon(aMessage);
+ break;
+
case EUnloadMultiIcon:
unloadMultiIcon(aMessage);
break;
+
case ENotifyForegroundLost:
#if defined(HB_SGIMAGE_ICON) || defined(HB_NVG_CS_ICON)
freeClientGpuResources();
@@ -864,6 +874,12 @@
aMessage.WriteL(1, out);
break;
}
+ case ETotalSgImagesCost: {
+ TInt cachedSgImagesCost = iServer->totalSgImagesCost();
+ TPckg<TInt> out(cachedSgImagesCost);
+ aMessage.WriteL(1, out);
+ break;
+ }
case ECachedPixmapImages: {
TInt cachedPixImages = iServer->cachedPixmapCount();
TPckg<TInt> out(cachedPixImages);
@@ -1701,23 +1717,43 @@
}
+void HbThemeServerSession::performUnload(const TIconParams ¶ms)
+{
+ QString filename((QChar*) params.fileName.Ptr(), params.fileName.Length());
+ HbIconKey key(filename,
+ QSizeF(params.width, params.height),
+ (Qt::AspectRatioMode) params.aspectRatioMode,
+ (QIcon::Mode) params.mode,
+ params.mirrored,
+ GetColorFromRgba(params.rgba, params.colorflag),
+ (HbRenderingMode) params.renderMode);
+ iServer->CleanupSessionIconItem(key);
+ sessionData.removeOne(key);
+}
+
void HbThemeServerSession::unLoadIcon(const RMessage2& aMessage)
{
TIconParams params = ReadMessageAndRetrieveParams(aMessage);
- QString filename((QChar*)params.fileName.Ptr(), params.fileName.Length());
- QColor color = GetColorFromRgba(params.rgba, params.colorflag);
- HbIconKey key(filename, QSizeF(params.width, params.height),
- (Qt::AspectRatioMode)params.aspectRatioMode,
- (QIcon::Mode)params.mode, params.mirrored, color, (HbRenderingMode)params.renderMode);
- iServer->CleanupSessionIconItem(key);
- sessionData.removeOne(key);
+ performUnload(params);
+}
+
+void HbThemeServerSession::batchUnLoadIcon(const RMessage2& aMessage)
+{
+ typedef TIconParams Params[BATCH_SIZE_LIMIT];
+ Params paramList;
+ TPckg<Params> paramsPckg(paramList);
+ aMessage.ReadL(0, paramsPckg);
+ for (int i = 0; i < BATCH_SIZE_LIMIT; ++i) {
+ const TIconParams ¶ms(paramList[i]);
+ if (params.fileName.Length()) {
+ performUnload(params);
+ }
+ }
}
void HbThemeServerSession::unloadMultiIcon(const RMessage2& aMessage)
{
TIconListParams params;
-
- TInt deslen = aMessage.GetDesLength(0);
TPckg<TIconListParams> paramPckg(params);
// Copy the client's descriptor data into our buffer.
aMessage.ReadL(0, paramPckg, 0);
@@ -1747,7 +1783,7 @@
void HbThemeServerSession::freeClientGpuResources()
{
#if defined(HB_SGIMAGE_ICON) || defined(HB_NVG_CS_ICON)
- QList<HbIconKey> tempSessionData(sessionData);
+ QList<HbIconKey> tempSessionData(sessionData);
QList<HbIconKey>::const_iterator itEnd( tempSessionData.constEnd() );
for ( QList<HbIconKey>::const_iterator iter = tempSessionData.constBegin();
iter != itEnd;
--- a/src/hbservers/hbthemeserver/hbthemeserver_symbian_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserver/hbthemeserver_symbian_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -110,6 +110,7 @@
unsigned long freeGPUMemory();
unsigned long totalGPUMemory();
int cachedSgImagesCount() const;
+ int totalSgImagesCost() const;
int cachedPixmapCount() const;
//Debug Code for Test Purpose
#ifdef HB_ICON_CACHE_DEBUG
@@ -195,14 +196,17 @@
HbSharedIconInfoList &iconInfoList);
void HandleTypefaceReqL(const RMessage2& aMessage);
void unLoadIcon(const RMessage2& aMessage);
+ void batchUnLoadIcon(const RMessage2& aMessage);
void unloadMultiIcon(const RMessage2& aMessage);
void freeClientGpuResources();
void ClearSessionData();
void freeGpuResources();
void SwitchRenderingMode(HbRenderingMode aRenderMode);
+
protected:
TIconParams ReadMessageAndRetrieveParams(const RMessage2 & aMessage);
void PanicClient(const RMessage2 & aMessage, TInt aPanic) const;
+ void performUnload(const TIconParams ¶ms);
private:
HbThemeServerPrivate *iServer;
--- a/src/hbservers/hbthemeserveroogmplugin/hbthemeclientoogm.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserveroogmplugin/hbthemeclientoogm.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -150,8 +150,8 @@
}
if (connected) {
- TPckg<TBool> usingSwRendering(isUsingSwRendering);
- TIpcArgs args(&usingSwRendering, 0);
+ TPckg<TBool> usingSwRendering(isUsingSwRendering);
+ TIpcArgs args(&usingSwRendering, 0);
TInt err = SendReceive(EMemoryGood, args);
if (KErrNone != err) {
RDebug::Print(_L("ThemeServerPlugin: Good Memory notification sent to ThemeServer"));
--- a/src/hbservers/hbthemeserveroogmplugin/hbthemeserveroogmplugin.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserveroogmplugin/hbthemeserveroogmplugin.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -25,7 +25,7 @@
// Include Files
-#include "hbthemeserveroogmplugin_p.h" // CThemeSrvOogmPlugin
+#include "hbthemeserveroogmplugin_p.h" // CThemeSrvOogmPlugin
--- a/src/hbservers/hbthemeserveroogmplugin/hbthemeserveroogmplugin.pro Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbservers/hbthemeserveroogmplugin/hbthemeserveroogmplugin.pro Thu Sep 02 20:44:51 2010 +0300
@@ -54,9 +54,9 @@
myrssrules = \
"START RESOURCE hbthemeserveroogmplugin.rss" \
- "TARGETPATH resource/plugins" \
- "TARGET hbthemeserveroogmplugin.rsc" \
- "END"
+ "TARGETPATH resource/plugins" \
+ "TARGET hbthemeserveroogmplugin.rsc" \
+ "END"
MMP_RULES += myrssrules
--- a/src/hbtools/hbbincssmaker/hboffsetmapbuilder.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbtools/hbbincssmaker/hboffsetmapbuilder.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -39,8 +39,8 @@
qptrdiff offsets[])
{
if (!fileInfo) {
- return true;
- }
+ return true;
+ }
bool retValue = true;
quint32 nameHash = HbSharedCache::hash(QStringRef(&className));
HbBinMakerOffsetItem mapItem = mMapItems.value(nameHash, HbBinMakerOffsetItem());
--- a/src/hbutils/document/hbdocumentloader.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbutils/document/hbdocumentloader.h Thu Sep 02 20:44:51 2010 +0300
@@ -63,7 +63,7 @@
void reset();
static QString version();
-
+
protected:
virtual QObject *createObject(const QString& type, const QString &name);
--- a/src/hbutils/theme/hbthemeservices.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbutils/theme/hbthemeservices.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -70,7 +70,7 @@
themeRequestProp.Close();
#else
HbThemeClient::global()->setTheme(themePath);
-#endif
+#endif
}
/*!
--- a/src/hbwidgets/dataform/hbdataform.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataform.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -610,9 +610,9 @@
slot of receiver object.
\param item - %Data form model item.
- \param signal - The signal of content widget object.
- \param receiver - The object whose slot is called.
- \param slot - The slot of \a receiver object which is called when \a signal is emitted.
+ \param signal - The signal of content widget object.
+ \param receiver - The object whose slot is called.
+ \param slot - The slot of \a receiver object which is called when \a signal is emitted.
\sa addConnection and removeAllConnection
*/
--- a/src/hbwidgets/dataform/hbdataformviewitem_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/dataform/hbdataformviewitem_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -372,7 +372,7 @@
{
mSelected = index;
if( index > -1 && mItems.count() < index ) {
- emit valueChanged(mViewItem->modelIndex(), mItems.at(index));
+ emit valueChanged(mViewItem->modelIndex(), mItems.at(index));
}
// Disconnect modelchanged signal since visualization is already updated by user
// so if not disconnected , this will trigger visualization change again
--- a/src/hbwidgets/dataform/hbdatagroup_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroup_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -321,10 +321,10 @@
if(mPageCombo) {
// if we are removing the last page then set current page as 0
if( mPageCombo->findText(page) + 1 == mPageCombo->count()) {
- mPageCombo->setCurrentIndex(0);
- } else {// set next page as the currrent page
- mPageCombo->setCurrentIndex(mPageCombo->findText(page) + 1);
- }
+ mPageCombo->setCurrentIndex(0);
+ } else {// set next page as the currrent page
+ mPageCombo->setCurrentIndex(mPageCombo->findText(page) + 1);
+ }
// remove the text from ombobox
mPageCombo->removeItem(mPageCombo->findText(page));
}
--- a/src/hbwidgets/dataform/hbdatagroup_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroup_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -68,7 +68,7 @@
void initStyleOption( HbStyleOptionDataGroup *option );
virtual QSizeF sizeHint( Qt::SizeHint which, const QSizeF &constraint ) const;
virtual void pressStateChanged( bool value, bool animate );
- virtual QVariant itemChange( GraphicsItemChange change, const QVariant &value );
+ virtual QVariant itemChange( GraphicsItemChange change, const QVariant &value );
private:
Q_DECLARE_PRIVATE_D( d_ptr, HbDataGroup )
--- a/src/hbwidgets/dataform/hbdatagroup_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/dataform/hbdatagroup_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -53,8 +53,8 @@
int activePage();
bool setExpanded( bool expanded );
void setEnabled( bool enabled );
- int pageIndex(const QModelIndex &index) const ;
- QModelIndex pageModelIndex(int index) const ;
+ int pageIndex(const QModelIndex &index) const ;
+ QModelIndex pageModelIndex(int index) const ;
public:
static HbDataGroupPrivate *d_ptr( HbDataGroup *item ) {
--- a/src/hbwidgets/defs/bwins/HbWidgetsu.def Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/defs/bwins/HbWidgetsu.def Thu Sep 02 20:44:51 2010 +0300
@@ -45,7 +45,7 @@
?staticMetaObject@HbVolumeSliderPopup@@2UQMetaObject@@B @ 44 NONAME ; struct QMetaObject const HbVolumeSliderPopup::staticMetaObject
?setOffset@HbTrajectory@@QAEXM@Z @ 45 NONAME ABSENT ; void HbTrajectory::setOffset(float)
?setItems@HbRadioButtonList@@QAEXABVQStringList@@@Z @ 46 NONAME ; void HbRadioButtonList::setItems(class QStringList const &)
- ?mouseReleaseEvent@HbRadioButtonList@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 47 NONAME ; void HbRadioButtonList::mouseReleaseEvent(class QGraphicsSceneMouseEvent *)
+ ?mouseReleaseEvent@HbRadioButtonList@@MAEXPAVQGraphicsSceneMouseEvent@@@Z @ 47 NONAME ABSENT ; void HbRadioButtonList::mouseReleaseEvent(class QGraphicsSceneMouseEvent *)
??_EHbGlobalConfirmationQuery@@UAE@I@Z @ 48 NONAME ABSENT ; HbGlobalConfirmationQuery::~HbGlobalConfirmationQuery(unsigned int)
?itemChange@HbProgressSlider@@MAE?AVQVariant@@W4GraphicsItemChange@QGraphicsItem@@ABV2@@Z @ 49 NONAME ; class QVariant HbProgressSlider::itemChange(enum QGraphicsItem::GraphicsItemChange, class QVariant const &)
?text@HbDeviceNotificationDialog@@QBE?AVQString@@XZ @ 50 NONAME ; class QString HbDeviceNotificationDialog::text(void) const
@@ -4096,4 +4096,12 @@
?modelChanged@HbSelectionDialogContentWidget@@AAEXABVQModelIndex@@HH@Z @ 4095 NONAME ; void HbSelectionDialogContentWidget::modelChanged(class QModelIndex const &, int, int)
?setMaximumLines@HbLabel@@QAEXH@Z @ 4096 NONAME ; void HbLabel::setMaximumLines(int)
?maximumLines@HbLabel@@QBEHXZ @ 4097 NONAME ; int HbLabel::maximumLines(void) const
+ ?recreatePrimitives@HbMessageBox@@UAEXXZ @ 4098 NONAME ; void HbMessageBox::recreatePrimitives(void)
+ ?initPrimitiveData@HbMessageBox@@IAEXPAVHbStylePrimitiveData@@PBVQGraphicsObject@@@Z @ 4099 NONAME ; void HbMessageBox::initPrimitiveData(class HbStylePrimitiveData *, class QGraphicsObject const *)
+ ?setModel@HbSelectionDialogContentWidget@@QAEXPAVQAbstractItemModel@@@Z @ 4100 NONAME ; void HbSelectionDialogContentWidget::setModel(class QAbstractItemModel *)
+ ?_q_selectionChanged@HbSelectionDialogContentWidget@@AAEXABVQItemSelection@@0@Z @ 4101 NONAME ; void HbSelectionDialogContentWidget::_q_selectionChanged(class QItemSelection const &, class QItemSelection const &)
+ ?gestureEvent@HbProgressSlider@@MAEXPAVQGestureEvent@@@Z @ 4102 NONAME ; void HbProgressSlider::gestureEvent(class QGestureEvent *)
+ ?SetShowLevel@HbDeviceDialogsExtensionSymbian@@SAXPAVCHbDeviceProgressDialogSymbian@@H@Z @ 4103 NONAME ; void HbDeviceDialogsExtensionSymbian::SetShowLevel(class CHbDeviceProgressDialogSymbian *, int)
+ ?SetShowLevel@HbDeviceDialogsExtensionSymbian@@SAXPAVCHbDeviceNotificationDialogSymbian@@H@Z @ 4104 NONAME ; void HbDeviceDialogsExtensionSymbian::SetShowLevel(class CHbDeviceNotificationDialogSymbian *, int)
+ ?SetShowLevel@HbDeviceDialogsExtensionSymbian@@SAXPAVCHbDeviceMessageBoxSymbian@@H@Z @ 4105 NONAME ; void HbDeviceDialogsExtensionSymbian::SetShowLevel(class CHbDeviceMessageBoxSymbian *, int)
--- a/src/hbwidgets/defs/eabi/HbWidgetsu.def Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/defs/eabi/HbWidgetsu.def Thu Sep 02 20:44:51 2010 +0300
@@ -837,7 +837,7 @@
_ZN17HbRadioButtonList14setPreviewModeENS_11PreviewModeE @ 836 NONAME
_ZN17HbRadioButtonList16selectionCommandEPK18HbAbstractViewItemPK6QEventb @ 837 NONAME ABSENT
_ZN17HbRadioButtonList16staticMetaObjectE @ 838 NONAME DATA 16
- _ZN17HbRadioButtonList17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 839 NONAME
+ _ZN17HbRadioButtonList17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 839 NONAME ABSENT
_ZN17HbRadioButtonList19getStaticMetaObjectEv @ 840 NONAME
_ZN17HbRadioButtonList5eventEP6QEvent @ 841 NONAME
_ZN17HbRadioButtonList5resetEv @ 842 NONAME
@@ -2046,7 +2046,7 @@
_ZThn8_N16HbProgressSlider17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 2045 NONAME
_ZThn8_N16HbProgressSliderD0Ev @ 2046 NONAME
_ZThn8_N16HbProgressSliderD1Ev @ 2047 NONAME
- _ZThn8_N17HbRadioButtonList17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 2048 NONAME
+ _ZThn8_N17HbRadioButtonList17mouseReleaseEventEP24QGraphicsSceneMouseEvent @ 2048 NONAME ABSENT
_ZThn8_N17HbRadioButtonListD0Ev @ 2049 NONAME
_ZThn8_N17HbRadioButtonListD1Ev @ 2050 NONAME
_ZThn8_N17HbSettingFormItemD0Ev @ 2051 NONAME ABSENT
@@ -4539,21 +4539,29 @@
_ZThn144_NK23HbProgressSliderPrivate5styleEv @ 4538 NONAME ABSENT
_ZThn144_NK23HbProgressSliderPrivate7maximumEv @ 4539 NONAME ABSENT
_ZThn144_NK23HbProgressSliderPrivate7minimumEv @ 4540 NONAME ABSENT
- _ZThn148_N23HbProgressSliderPrivate11orientationEv @ 4541 NONAME
- _ZThn148_N23HbProgressSliderPrivate15emitSliderMovedEi @ 4542 NONAME
- _ZThn148_N23HbProgressSliderPrivate17emitSliderPressedEv @ 4543 NONAME
- _ZThn148_N23HbProgressSliderPrivate18emitSliderReleasedEv @ 4544 NONAME
- _ZThn148_N23HbProgressSliderPrivateD0Ev @ 4545 NONAME
- _ZThn148_N23HbProgressSliderPrivateD1Ev @ 4546 NONAME
- _ZThn148_NK23HbProgressSliderPrivate11textVisibleEv @ 4547 NONAME
- _ZThn148_NK23HbProgressSliderPrivate11toolTipTextEv @ 4548 NONAME
- _ZThn148_NK23HbProgressSliderPrivate12boundingRectEv @ 4549 NONAME
- _ZThn148_NK23HbProgressSliderPrivate13progressValueEv @ 4550 NONAME
- _ZThn148_NK23HbProgressSliderPrivate13textAlignmentEv @ 4551 NONAME
- _ZThn148_NK23HbProgressSliderPrivate18invertedAppearanceEv @ 4552 NONAME
- _ZThn148_NK23HbProgressSliderPrivate18parentGraphicsItemEv @ 4553 NONAME
- _ZThn148_NK23HbProgressSliderPrivate20parentGraphicsWidgetEv @ 4554 NONAME
- _ZThn148_NK23HbProgressSliderPrivate5styleEv @ 4555 NONAME
- _ZThn148_NK23HbProgressSliderPrivate7maximumEv @ 4556 NONAME
- _ZThn148_NK23HbProgressSliderPrivate7minimumEv @ 4557 NONAME
+ _ZThn148_N23HbProgressSliderPrivate11orientationEv @ 4541 NONAME ABSENT
+ _ZThn148_N23HbProgressSliderPrivate15emitSliderMovedEi @ 4542 NONAME ABSENT
+ _ZThn148_N23HbProgressSliderPrivate17emitSliderPressedEv @ 4543 NONAME ABSENT
+ _ZThn148_N23HbProgressSliderPrivate18emitSliderReleasedEv @ 4544 NONAME ABSENT
+ _ZThn148_N23HbProgressSliderPrivateD0Ev @ 4545 NONAME ABSENT
+ _ZThn148_N23HbProgressSliderPrivateD1Ev @ 4546 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate11textVisibleEv @ 4547 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate11toolTipTextEv @ 4548 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate12boundingRectEv @ 4549 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate13progressValueEv @ 4550 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate13textAlignmentEv @ 4551 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate18invertedAppearanceEv @ 4552 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate18parentGraphicsItemEv @ 4553 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate20parentGraphicsWidgetEv @ 4554 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate5styleEv @ 4555 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate7maximumEv @ 4556 NONAME ABSENT
+ _ZThn148_NK23HbProgressSliderPrivate7minimumEv @ 4557 NONAME ABSENT
+ _ZN12HbMessageBox17initPrimitiveDataEP20HbStylePrimitiveDataPK15QGraphicsObject @ 4558 NONAME
+ _ZN12HbMessageBox18recreatePrimitivesEv @ 4559 NONAME
+ _ZN16HbProgressSlider12gestureEventEP13QGestureEvent @ 4560 NONAME
+ _ZN30HbSelectionDialogContentWidget19_q_selectionChangedERK14QItemSelectionS2_ @ 4561 NONAME
+ _ZN30HbSelectionDialogContentWidget8setModelEP18QAbstractItemModel @ 4562 NONAME
+ _ZN31HbDeviceDialogsExtensionSymbian12SetShowLevelEP26CHbDeviceMessageBoxSymbiani @ 4563 NONAME
+ _ZN31HbDeviceDialogsExtensionSymbian12SetShowLevelEP30CHbDeviceProgressDialogSymbiani @ 4564 NONAME
+ _ZN31HbDeviceDialogsExtensionSymbian12SetShowLevelEP34CHbDeviceNotificationDialogSymbiani @ 4565 NONAME
--- a/src/hbwidgets/devicedialogs/devicedialogs.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/devicedialogs.pri Thu Sep 02 20:44:51 2010 +0300
@@ -34,6 +34,7 @@
PUBLIC_HEADERS += $$PWD/hbdevicenotificationdialogsymbian.h
PUBLIC_HEADERS += $$PWD/hbdevicemessageboxsymbian.h
PUBLIC_HEADERS += $$PWD/hbdeviceprogressdialogsymbian.h
+RESTRICTED_HEADERS += $$PWD/hbdevicedialogsextensionsymbian_r.h
PRIVATE_HEADERS += $$PWD/hbdevicenotificationdialog_p.h $$PWD/hbdeviceprogressdialog_p.h $$PWD/hbdevicemessagebox_p.h
@@ -44,5 +45,6 @@
SOURCES += $$PWD/hbdevicenotificationdialogsymbian.cpp
SOURCES += $$PWD/hbdevicemessageboxsymbian.cpp
SOURCES += $$PWD/hbdeviceprogressdialogsymbian.cpp
+SOURCES += $$PWD/hbdevicedialogsextensionsymbian.cpp
}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbwidgets/devicedialogs/hbdevicedialogsextensionsymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,125 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbWidgets module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#include "hbdevicedialogsextensionsymbian_r.h"
+#include "hbdevicemessageboxsymbian.h"
+#include "hbdeviceprogressdialogsymbian.h"
+#include "hbdevicenotificationdialogsymbian.h"
+
+class CHbDeviceMessageBoxPrivate;
+class CHbDeviceProgressDialogSymbianPrivate;
+class CHbDeviceNotificationDialogSymbianPrivate;
+void SetShowLevel(CHbDeviceMessageBoxPrivate *aBox, TInt aLevel);
+void SetShowLevel(CHbDeviceProgressDialogSymbianPrivate *aDialog, TInt aLevel);
+void SetShowLevel(CHbDeviceNotificationDialogSymbianPrivate *aDialog, TInt aLevel);
+
+#define ARG_UNUSED(x) (void)x;
+
+/*!
+ \class HbDeviceDialogsExtensionSymbian
+ \brief HbDeviceDialogsExtensionSymbian extends property set of stock device dialogs.
+
+ HbDeviceDialogsExtensionSymbian is a restricted API. It is intended for platform applications
+ to set rarely needed properties of CHbDeviceMessageBoxSymbian, CHbDeviceProgressDialogSymbian
+ and CHbDeviceNotificationDialogSymbian.
+
+ Use of API functions maybe limited for applications having certain platform security
+ capabilities.
+
+ \sa CHbDeviceMessageBoxSymbian, CHbDeviceProgressDialogSymbian, CHbDeviceNotificationDialogSymbian
+
+ @alpha
+ @hbwidgets
+*/
+
+/*!
+ Sets a device message box to show on top of normal device-dialogs.
+
+ \param aDialog Device message box.
+ \param aLevel Show level. Values are defined in HbDeviceDialogPlugin::ShowLevel.
+ Symbian capability swEvent is required to set level higher than
+ HbDeviceDialogPlugin::NormalLevel.
+
+ \code
+ // Show a message box on top of device lock
+ const TInt KCriticalLevel = 2;
+ CHbDeviceMessageBoxSymbian *box =
+ CHbDeviceMessageBoxSymbian::NewL(CHbDeviceMessageBoxSymbian::EQuestion);
+ HbDeviceDialogsExtensionSymbian::SetShowLevel(box, KCriticalLevel);
+ \endcode
+
+ \sa HbDeviceDialogPlugin::ShowLevel
+*/
+EXPORT_C void HbDeviceDialogsExtensionSymbian::SetShowLevel(CHbDeviceMessageBoxSymbian *aDialog,
+ TInt aLevel)
+{
+ ::SetShowLevel(aDialog->d, aLevel);
+}
+
+/*!
+ Sets a device progress dialog to show on top of normal device-dialogs.
+
+ \param aDialog Device progress dialog.
+ \param aLevel Show level. Values are defined in HbDeviceDialogPlugin::ShowLevel.
+ Symbian capability swEvent is required to set level higher than
+ HbDeviceDialogPlugin::NormalLevel.
+
+ \code
+ // Show a progress dialog on top of device lock
+ const TInt KCriticalLevel = 2;
+ CHbDeviceProgressDialogSymbian *dialog = CHbDeviceProgressDialogSymbian::NewL();
+ HbDeviceDialogsExtensionSymbian::SetShowLevel(dialog, KCriticalLevel);
+ \endcode
+
+ \sa HbDeviceDialogPlugin::ShowLevel
+*/
+EXPORT_C void HbDeviceDialogsExtensionSymbian::SetShowLevel(CHbDeviceProgressDialogSymbian *aDialog,
+ TInt aLevel)
+{
+ ::SetShowLevel(aDialog->d, aLevel);
+}
+
+/*!
+ Sets a device notification dialog to show on top of normal device-dialogs.
+
+ \param aDialog Device notification dialog.
+ \param aLevel Show level. Values are defined in HbDeviceDialogPlugin::ShowLevel.
+ Symbian capability swEvent is required to set level higher than
+ HbDeviceDialogPlugin::NormalLevel.
+
+ \code
+ // Show a notification dialog on top of device lock
+ const TInt KCriticalLevel = 2;
+ CHbDeviceNotificationDialogSymbian *dialog = CHbDeviceNotificationDialogSymbian::NewL();
+ HbDeviceDialogsExtensionSymbian::SetShowLevel(dialog, KCriticalLevel);
+ \endcode
+
+ \sa HbDeviceDialogPlugin::ShowLevel
+*/
+EXPORT_C void HbDeviceDialogsExtensionSymbian::SetShowLevel(CHbDeviceNotificationDialogSymbian *aDialog,
+ TInt aLevel)
+{
+ ::SetShowLevel(aDialog->d, aLevel);
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hbwidgets/devicedialogs/hbdevicedialogsextensionsymbian_r.h Thu Sep 02 20:44:51 2010 +0300
@@ -0,0 +1,46 @@
+/****************************************************************************
+**
+** Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (developer.feedback@nokia.com)
+**
+** This file is part of the HbWidgets module of the UI Extensions for Mobile.
+**
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this file.
+** Please review the following information to ensure the GNU Lesser General
+** Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at developer.feedback@nokia.com.
+**
+****************************************************************************/
+
+#ifndef HBDEVICEDIALOGSEXTENSIONSYMBIAN_R_H
+#define HBDEVICEDIALOGSEXTENSIONSYMBIAN_R_H
+
+#if defined(__SYMBIAN32__) || defined(SYMBIAN) || defined(HB_DOXYGEN)
+
+#include <e32base.h>
+
+class CHbDeviceMessageBoxSymbian;
+class CHbDeviceProgressDialogSymbian;
+class CHbDeviceNotificationDialogSymbian;
+
+class HbDeviceDialogsExtensionSymbian
+{
+public:
+ IMPORT_C static void SetShowLevel(CHbDeviceMessageBoxSymbian *aDialog, TInt aLevel);
+ IMPORT_C static void SetShowLevel(CHbDeviceProgressDialogSymbian *aDialog, TInt aLevel);
+ IMPORT_C static void SetShowLevel(CHbDeviceNotificationDialogSymbian *aDialog, TInt aLevel);
+};
+
+#endif // defined(__SYMBIAN32__) || defined(SYMBIAN) || defined(HB_DOXYGEN)
+#endif // HBDEVICEDIALOGSEXTENSIONSYMBIAN_R_H
--- a/src/hbwidgets/devicedialogs/hbdevicemessageboxsymbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicemessageboxsymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -81,6 +81,7 @@
EIconVisible,
ETimeout,
EStandardButtons,
+ EShowLevel,
EDismissPolicy,
ELastIntProperty = EDismissPolicy,
EFirstStringProperty,
@@ -385,7 +386,7 @@
if (i == EAcceptText || i == ERejectText) {
HBufC *actionData = CreateActionDataLC(property.IsNullAction(), property.StringValue());
parameter = CHbSymbianVariant::NewL(actionData, CHbSymbianVariant::EDes);
- CleanupStack::PopAndDestroy(actionData);
+ CleanupStack::PopAndDestroy(); // actionData
} else if (property.Type() == TMessageBoxProperty::EIntProperty) {
TInt value = property.IntValue();
parameter = CHbSymbianVariant::NewL(&value, CHbSymbianVariant::EInt);
@@ -396,7 +397,7 @@
CleanupStack::PushL(parameter);
User::LeaveIfError(parameters->Add(
PropertyName(static_cast<TPropertyId>(i)), parameter));
- CleanupStack::Pop(parameter);
+ CleanupStack::Pop(); // parameter
property.SetModified(false);
}
}
@@ -416,7 +417,7 @@
User::Leave(error); // error can be positive or negative
}
}
- CleanupStack::PopAndDestroy(parameters);
+ CleanupStack::PopAndDestroy(); // parameters
}
// Close message box
@@ -446,6 +447,7 @@
L"iconVisible",
L"timeout",
L"standardButtons",
+ L"showLevel",
L"dismissPolicy",
L"text",
L"iconName",
@@ -538,6 +540,12 @@
}
}
+// Set dialog show level
+void SetShowLevel(CHbDeviceMessageBoxPrivate *aBox, TInt aLevel)
+{
+ aBox->SetPropertyValue(CHbDeviceMessageBoxPrivate::EShowLevel, aLevel);
+}
+
/*!
\class CHbDeviceMessageBoxSymbian
\brief CHbDeviceMessageBoxSymbian is a Symbian implementation of HbDeviceMessageBox.
@@ -763,7 +771,7 @@
CleanupStack::PushL(mboxPrivate);
mboxPrivate->ConstructL(aType, aObserver);
messageBox->d = mboxPrivate;
- CleanupStack::Pop(2, messageBox); // mboxPrivate, messageBox
+ CleanupStack::Pop(2); // messageBox, mboxPrivate
messageBox->SetObserver(aObserver);
return messageBox;
}
@@ -794,7 +802,7 @@
messageBox->SetButtonTextL(ERejectButton, aRejectButtonText);
}
TButtonId buttonId = messageBox->ExecL();
- CleanupStack::PopAndDestroy(messageBox);
+ CleanupStack::PopAndDestroy(); // messageBox
return buttonId;
}
@@ -821,7 +829,7 @@
}
messageBox->SetStandardButtons(aStandardButtons);
TButtonId buttonId = messageBox->ExecL();
- CleanupStack::PopAndDestroy(messageBox);
+ CleanupStack::PopAndDestroy(); // messageBox
return buttonId;
}
@@ -837,7 +845,7 @@
CleanupStack::PushL(messageBox);
messageBox->SetTextL(aText);
messageBox->ShowL();
- CleanupStack::PopAndDestroy(messageBox);
+ CleanupStack::PopAndDestroy(); // messageBox
}
/*!
@@ -852,7 +860,7 @@
CleanupStack::PushL(messageBox);
messageBox->SetTextL(aText);
messageBox->ShowL();
- CleanupStack::PopAndDestroy(messageBox);
+ CleanupStack::PopAndDestroy(); // messageBox
}
/*!
@@ -1000,7 +1008,7 @@
*/
EXPORT_C void CHbDeviceMessageBoxSymbian::SetAnimationDefinitionL(const TDesC& aAnimationDefinition)
{
- d->SetPropertyValueL(CHbDeviceMessageBoxPrivate::EAnimationDefinition, aAnimationDefinition);
+ d->SetPropertyValueL(CHbDeviceMessageBoxPrivate::EAnimationDefinition, aAnimationDefinition);
}
/*!
@@ -1010,7 +1018,7 @@
*/
EXPORT_C TPtrC CHbDeviceMessageBoxSymbian::AnimationDefinition() const
{
- return d->mProperties[CHbDeviceMessageBoxPrivate::EAnimationDefinition].StringValue();
+ return d->mProperties[CHbDeviceMessageBoxPrivate::EAnimationDefinition].StringValue();
}
/*!
--- a/src/hbwidgets/devicedialogs/hbdevicemessageboxsymbian.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicemessageboxsymbian.h Thu Sep 02 20:44:51 2010 +0300
@@ -100,6 +100,7 @@
private:
friend class CHbDeviceMessageBoxPrivate;
+ friend class HbDeviceDialogsExtensionSymbian;
CHbDeviceMessageBoxSymbian();
CHbDeviceMessageBoxPrivate* d;
};
--- a/src/hbwidgets/devicedialogs/hbdevicenotificationdialog.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicenotificationdialog.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -119,8 +119,8 @@
</animations>
\endcode
- After this, create a HbDeviceNotificationDialog as described above and
- set the definition file and the logical name of the animation:
+ After this, create a HbDeviceNotificationDialog as described above and
+ set the definition file and the logical name of the animation:
\code
QString animationDefinitionXML("c:\animation.axml");
--- a/src/hbwidgets/devicedialogs/hbdevicenotificationdialogsymbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicenotificationdialogsymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -37,6 +37,7 @@
_LIT(KPluginIdentifier, "com.nokia.hb.devicenotificationdialog/1.0");
_LIT(KKeyTitleTextWrapping, "titleTextWrapping");
_LIT(KKeyAnimationDefinition, "animationDefinition");
+_LIT(KKeyShowLevel, "showLevel");
NONSHARABLE_CLASS(CHbDeviceNotificationDialogSymbianPrivate) : public CBase,
public MHbDeviceDialogObserver
@@ -68,6 +69,7 @@
TBool iEnable;
TInt iTimeout;
+ TInt iShowLevel;
CHbDeviceNotificationDialogSymbian::TextWrapping iWrap;
};
@@ -99,6 +101,10 @@
AddVariantL(KKeyTouchActivation, &iEnable, CHbSymbianVariant::EBool);
AddVariantL(KKeyTimeOut, &iTimeout, CHbSymbianVariant::EInt);
AddVariantL(KKeyTitleTextWrapping, &iWrap, CHbSymbianVariant::EInt);
+ if (iShowLevel) { // send only if non-default
+ AddVariantL(KKeyShowLevel, &iShowLevel, CHbSymbianVariant::EInt);
+ }
+
TInt error = iDeviceDialog->Show(KPluginIdentifier, *iVariantMap, this);
if (error != KErrNone) {
User::Leave(error); // error can be positive or negative
@@ -162,6 +168,12 @@
}
}
+// Set dialog show level
+void SetShowLevel(CHbDeviceNotificationDialogSymbianPrivate *aDialog, TInt aLevel)
+{
+ aDialog->iShowLevel = aLevel;
+}
+
/*!
\class MHbDeviceNotificationDialogObserver
\brief MHbDeviceNotificationDialogObserver is an observer interface for observing CHbDeviceNotificationDialogSymbian.
@@ -289,36 +301,36 @@
- GIF (.gif)
- MNG (.mng)
- - Frame animations
-
- There is a built-in support for GIF and MNG animations.
-
- Frame animations can be created by following way:
-
- \code
- Create an animation definition file.
-
- <animations>
- <icon name="frame_anim_looping" playmode="loop">
- <frame duration="100">c:\icon1.svg</frame>
- <frame duration="200">c:\icon2.svg</frame>
- <frame duration="300">c:\icon3.svg</frame>
- </icon>
- </animations>
-
- Create CHbDeviceNotificationDialogSymbian in a way described before and
- set definition file and animation's logical name.
-
- _LIT(KAnimationDefinitionXML, "C:\animation.axml");
- _LIT(KLogicalIconName, "frame_anim_looping");
-
- iDialog->SetAnimationDefinitionL(KAnimationDefinitionXML);
- iDialog->SetIconNameL(KLogicalIconName);
- iDialog->ShowL();
- \endcode
- \sa HbIconAnimationManager::addDefinitionFile
- \note Animation definition files must be stored to a place where they
- can be accessed.
+ - Frame animations
+
+ There is a built-in support for GIF and MNG animations.
+
+ Frame animations can be created by following way:
+
+ \code
+ Create an animation definition file.
+
+ <animations>
+ <icon name="frame_anim_looping" playmode="loop">
+ <frame duration="100">c:\icon1.svg</frame>
+ <frame duration="200">c:\icon2.svg</frame>
+ <frame duration="300">c:\icon3.svg</frame>
+ </icon>
+ </animations>
+
+ Create CHbDeviceNotificationDialogSymbian in a way described before and
+ set definition file and animation's logical name.
+
+ _LIT(KAnimationDefinitionXML, "C:\animation.axml");
+ _LIT(KLogicalIconName, "frame_anim_looping");
+
+ iDialog->SetAnimationDefinitionL(KAnimationDefinitionXML);
+ iDialog->SetIconNameL(KLogicalIconName);
+ iDialog->ShowL();
+ \endcode
+ \sa HbIconAnimationManager::addDefinitionFile
+ \note Animation definition files must be stored to a place where they
+ can be accessed.
\stable
\hbwidgets
@@ -419,7 +431,7 @@
*/
EXPORT_C void CHbDeviceNotificationDialogSymbian::SetAnimationDefinitionL(const TDesC& aAnimationDefinition)
{
- d->AddVariantL(KKeyAnimationDefinition, &aAnimationDefinition, CHbSymbianVariant::EDes);
+ d->AddVariantL(KKeyAnimationDefinition, &aAnimationDefinition, CHbSymbianVariant::EDes);
}
/*!
--- a/src/hbwidgets/devicedialogs/hbdevicenotificationdialogsymbian.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdevicenotificationdialogsymbian.h Thu Sep 02 20:44:51 2010 +0300
@@ -94,6 +94,7 @@
CHbDeviceNotificationDialogSymbianPrivate* d;
friend class CHbDeviceNotificationDialogSymbianPrivate;
+ friend class HbDeviceDialogsExtensionSymbian;
};
#endif // (__SYMBIAN32__) || defined(SYMBIAN) || defined(HB_DOXYGEN)
--- a/src/hbwidgets/devicedialogs/hbdeviceprogressdialogsymbian.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdeviceprogressdialogsymbian.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -38,6 +38,7 @@
_LIT(KCancelAction, "cancelAction");
_LIT(KPluginIdentifier, "com.nokia.hb.deviceprogressdialog/1.0");
_LIT(KAnimationDefinition, "animationDefinition");
+_LIT(KShowLevel, "showLevel");
NONSHARABLE_CLASS(CHbDeviceProgressDialogSymbianPrivate) : public CBase,
public MHbDeviceDialogObserver
@@ -80,6 +81,7 @@
RBuf iText;
RBuf iIconName;
RBuf iAnimationDefinition;
+ TInt iShowLevel;
struct {
RBuf iText;
struct {
@@ -134,6 +136,9 @@
AddVariantL(KDialogMinimum, &iMinimum, CHbSymbianVariant::EInt, iVariantMap);
AddVariantL(KDialogAutoClose, &iAutoClose, CHbSymbianVariant::EBool, iVariantMap);
AddVariantL(KDialogValue, &iProgressValue, CHbSymbianVariant::EInt, iVariantMap);
+ if (iShowLevel) { // send only if non-default
+ AddVariantL(KShowLevel, &iShowLevel, CHbSymbianVariant::EInt, iVariantMap);
+ }
if (iText.Length() > 0)
{
@@ -153,7 +158,7 @@
iButton.iFlags.iIsNullModified = false;
HBufC *actionData = CreateActionDataLC(iButton.iFlags.iIsNull, iButton.iText);
AddVariantL(KCancelAction, actionData, CHbSymbianVariant::EDes, iVariantMap);
- CleanupStack::PopAndDestroy(actionData);
+ CleanupStack::PopAndDestroy(); // actionData
}
iButton.iFlags.iPressed = false;
TInt error = iDeviceDialog->Show(KPluginIdentifier, *iVariantMap, this);
@@ -235,7 +240,7 @@
iButton.iFlags.iIsNullModified = false;
HBufC *actionData = CreateActionDataLC(iButton.iFlags.iIsNull, iButton.iText);
AddVariantL(KCancelAction, actionData, CHbSymbianVariant::EDes, iVariantMap);
- CleanupStack::PopAndDestroy(actionData);
+ CleanupStack::PopAndDestroy(); // actionData
}
TInt error = iDeviceDialog->Update(*map);
@@ -319,6 +324,12 @@
return actionData;
}
+// Set dialog show level
+void SetShowLevel(CHbDeviceProgressDialogSymbianPrivate *aDialog, TInt aLevel)
+{
+ aDialog->iShowLevel = aLevel;
+}
+
/*!
\class MHbDeviceProgressDialogObserver
\brief MHbDeviceProgressDialogObserver is an observer interface for observing CHbDeviceProgressDialogSymbian.
@@ -402,36 +413,36 @@
- GIF (.gif)
- MNG (.mng)
- - Frame animations
+ - Frame animations
- There is a built-in support for GIF and MNG animations.
+ There is a built-in support for GIF and MNG animations.
- Frame animations can be created by following way:
+ Frame animations can be created by following way:
- \code
- Create an animation definition file.
+ \code
+ Create an animation definition file.
- <animations>
- <icon name="frame_anim_looping" playmode="loop">
- <frame duration="100">c:\icon1.svg</frame>
- <frame duration="200">c:\icon2.svg</frame>
- <frame duration="300">c:\icon3.svg</frame>
- </icon>
- </animations>
+ <animations>
+ <icon name="frame_anim_looping" playmode="loop">
+ <frame duration="100">c:\icon1.svg</frame>
+ <frame duration="200">c:\icon2.svg</frame>
+ <frame duration="300">c:\icon3.svg</frame>
+ </icon>
+ </animations>
- Create CHbDeviceProgressDialogSymbian in a way described before and
- set definition file and animation's logical name.
+ Create CHbDeviceProgressDialogSymbian in a way described before and
+ set definition file and animation's logical name.
- _LIT(KAnimationDefinitionXML, "C:\animation.axml");
- _LITK(KLogicalIconName, "frame_anim_looping");
+ _LIT(KAnimationDefinitionXML, "C:\animation.axml");
+ _LITK(KLogicalIconName, "frame_anim_looping");
- iDialog->SetAnimationDefinitionL(KAnimationDefinitionXML);
- iDialog->SetIconNameL(KIconName);
- iDialog->ShowL();
- \endcode
- \sa HbIconAnimationManager::addDefinitionFile
- \note Animation definition files must be stored to a place where they
- can be accessed.
+ iDialog->SetAnimationDefinitionL(KAnimationDefinitionXML);
+ iDialog->SetIconNameL(KIconName);
+ iDialog->ShowL();
+ \endcode
+ \sa HbIconAnimationManager::addDefinitionFile
+ \note Animation definition files must be stored to a place where they
+ can be accessed.
\sa HbDeviceProgressDialog, HbDeviceDialog
\stable
@@ -711,9 +722,9 @@
\sa SetAnimationDefinitionL()
*/
EXPORT_C TPtrC CHbDeviceProgressDialogSymbian::AnimationDefinition() const
- {
- return d->iAnimationDefinition;
- }
+ {
+ return d->iAnimationDefinition;
+ }
/*!
Sets progress dialog box button text. The dialog gets updated next time ShowL() or UpdateL()
--- a/src/hbwidgets/devicedialogs/hbdeviceprogressdialogsymbian.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/devicedialogs/hbdeviceprogressdialogsymbian.h Thu Sep 02 20:44:51 2010 +0300
@@ -89,6 +89,7 @@
void ConstructL(TType aType);
CHbDeviceProgressDialogSymbianPrivate* d;
friend class CHbDeviceProgressDialogSymbianPrivate;
+ friend class HbDeviceDialogsExtensionSymbian;
};
class MHbDeviceProgressDialogObserver
--- a/src/hbwidgets/editors/hbabstractedit_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/editors/hbabstractedit_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -115,7 +115,7 @@
HbEditItem(HbAbstractEdit *parent) : HbWidget(parent), edit(parent)
{
- setFlag(QGraphicsItem::ItemUsesExtendedStyleOption, true);
+ setFlag(QGraphicsItem::ItemUsesExtendedStyleOption, true);
};
virtual ~HbEditItem() {};
@@ -813,7 +813,7 @@
HbStyleOption opt;
q->initStyleOption(&opt);
- if (qApp->style()->styleHint(QStyle::SH_RichText_FullWidthSelection, &opt, 0)) {
+ if (qApp->style()->styleHint(QStyle::SH_RichText_FullWidthSelection, &opt, 0)) {
selection.format.setProperty(QTextFormat::FullWidthSelection, true);
}
ctx.selections.append(selection);
--- a/src/hbwidgets/itemviews/hbabstractitemcontainer_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractitemcontainer_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -530,7 +530,7 @@
{
Q_D(HbAbstractItemContainer);
- d->q_ptr = this;
+ d->q_ptr = this;
d->init();
}
@@ -717,8 +717,8 @@
}
// if items have been added/removed in the middle of the buffer, there might be items
- // that can be reused at the end of the buffer. The following block will scan for
- // those items and move them in correct position
+ // that can be reused at the end of the buffer. The following block will scan for
+ // those items and move them in correct position
int lastUsedItem = -1;
for (int indexCounter = 0; indexCounter < indexList.count(); ++indexCounter) {
HbAbstractViewItem *item = d->mItems.at(indexCounter);
--- a/src/hbwidgets/itemviews/hbabstractitemcontainer_p_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractitemcontainer_p_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -93,7 +93,7 @@
void restoreItemPosition(HbAbstractViewItem *item, const QPointF &position);
void insertItem(HbAbstractViewItem *item, int pos, const QModelIndex &index, bool animate);
-
+
inline HbModelIterator *modelIterator() const;
inline void adjustContent() const;
--- a/src/hbwidgets/itemviews/hbabstractitemview.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractitemview.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -197,7 +197,7 @@
\var HbAbstractItemView::Disappear
Animation related to item removal. Disable this animation in cases you expect many model items to disappear,
- for example in cases like filtering or removal of a data source, and you do not wish to see animations.
+ for example in cases like filtering or removal of a data source, and you do not wish to see animations.
*/
/*!
--- a/src/hbwidgets/itemviews/hbabstractitemview_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractitemview_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -498,7 +498,7 @@
When orientation switch occurs, 1) or 2) is applied to view after layout switch:
1) if last item is wholly visible, it will be visible
2) if last item is not fully visible, the first fully visible item before layout switch is made the
- first fully visible item
+ first fully visible item
*/
void HbAbstractItemViewPrivate::saveIndexMadeVisibleAfterMetricsChange()
{
--- a/src/hbwidgets/itemviews/hbabstractviewitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractviewitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -68,7 +68,7 @@
The HbAbstractViewItem class provides an item that is used by HbAbstractItemView class to
visualize content within single model index. By default HbAbstractViewItem supports QString and QStringList
stored into Qt::DisplayRole role and QIcon, HbIcon or list of them in QVariantList stored into
- Qt::DecoratorRole role.
+ Qt::DecoratorRole role.
This class is provided mainly for customization purposes but it also acts as a default
item prototype inside HbAbstractItemView. See HbAbstractItemView how to set customized class as a item prototype.
@@ -428,63 +428,80 @@
if (!child->isVisible() || child == mNonCachableItem || child == mFrontPixmapPainter || child == mBackPixmapPainter) {
continue;
}
-
+
if (!itemPainted && child->zValue() >= 0) {
- painter->save();
option->exposedRect = q->boundingRect();
q->paint(painter, option, 0);
- painter->restore();
itemPainted = true;
}
- painter->save();
if (child == mFrame) {
+ QPainter::CompositionMode mode = painter->compositionMode();
painter->setCompositionMode(QPainter::CompositionMode_Source);
+ painter->translate(child->pos());
+ option->exposedRect = child->boundingRect();
+ child->paint(painter, option, 0);
+ painter->setCompositionMode(mode);
+ painter->translate(-child->pos());
+ continue;
}
-
- painter->translate(child->pos());
-
- option->exposedRect = child->boundingRect();
- child->paint(painter, option, 0);
-
- painter->restore();
+ paintChildItemsRecursively(child,painter,option);
}
-
mInPaintItems = false;
}
+void HbAbstractViewItemPrivate::paintChildItemsRecursively(QGraphicsItem *child, QPainter *painter,QStyleOptionGraphicsItem *option)
+{
+ if (!child->isVisible())
+ return;
+ int i = 0;
+ QList<QGraphicsItem *> children = child->childItems();
+ int count(children.size());
+ painter->translate(child->pos());
+ // Draw children behind
+ for (i = 0; i < count; ++i) {
+ QGraphicsItem *subChild = children.at(i);
+ if (!(subChild->flags() & QGraphicsItem::ItemStacksBehindParent))
+ break;
+ paintChildItemsRecursively(subChild, painter,option);
+ }
+ option->exposedRect = child->boundingRect();
+ child->paint(painter, option, 0);
+ // Draw children in front
+ for (; i < count; ++i) {
+ QGraphicsItem *subChild = children.at(i);
+ paintChildItemsRecursively(subChild, painter,option);
+ }
+ painter->translate(-child->pos());
+}
+
+
void HbAbstractViewItemPrivate::setChildFlags(QGraphicsItem *child, bool pixmapCacheEnabled)
{
- Q_Q(HbAbstractViewItem);
+ QGraphicsItem::GraphicsItemFlags itemFlags = child->flags();
+ if (pixmapCacheEnabled) {
+ itemFlags |= QGraphicsItem::ItemHasNoContents;
+ itemFlags |= QGraphicsItem::ItemIgnoresParentOpacity;
+ }
+ else {
+ itemFlags &= ~QGraphicsItem::ItemHasNoContents;
+ itemFlags &= ~QGraphicsItem::ItemIgnoresParentOpacity;
+ }
+ child->setFlags(itemFlags);
+ foreach (QGraphicsItem *subChild, child->childItems()) {
+ setChildFlags(subChild,pixmapCacheEnabled);
+ }
+}
- if (child) {
- QGraphicsItem::GraphicsItemFlags itemFlags = child->flags();
- if (pixmapCacheEnabled) {
- itemFlags |= QGraphicsItem::ItemHasNoContents;
- itemFlags |= QGraphicsItem::ItemIgnoresParentOpacity;
- }
- else {
- itemFlags &= ~QGraphicsItem::ItemHasNoContents;
- itemFlags &= ~QGraphicsItem::ItemIgnoresParentOpacity;
- }
- child->setFlags(itemFlags);
- } else {
- foreach (QGraphicsItem *child, q->childItems()) {
- if (child == mNonCachableItem || child == mFrontPixmapPainter || child == mBackPixmapPainter) {
- continue;
- }
-
- QGraphicsItem::GraphicsItemFlags itemFlags = child->flags();
- if (pixmapCacheEnabled) {
- itemFlags |= QGraphicsItem::ItemHasNoContents;
- itemFlags |= QGraphicsItem::ItemIgnoresParentOpacity;
- }
- else {
- itemFlags &= ~QGraphicsItem::ItemHasNoContents;
- itemFlags &= ~QGraphicsItem::ItemIgnoresParentOpacity;
- }
- child->setFlags(itemFlags);
+void HbAbstractViewItemPrivate::setChildFlagRecursively(bool pixmapCacheEnabled)
+{
+ Q_Q(HbAbstractViewItem);
+ foreach (QGraphicsItem *subChild, q->childItems()) {
+ if (subChild == mNonCachableItem || subChild == mFrontPixmapPainter ||
+ subChild == mBackPixmapPainter) {
+ continue;
}
+ setChildFlags(subChild, pixmapCacheEnabled);
}
}
@@ -512,20 +529,10 @@
void HbAbstractViewItemPrivate::releasePixmaps()
{
- if (mFrontCachePixmap) {
- delete mFrontCachePixmap;
- mFrontCachePixmap = 0;
- }
-
if (mFrontPixmapPainter) {
mFrontPixmapPainter->setPixmap(0);
}
- if (mBackCachePixmap) {
- delete mBackCachePixmap;
- mBackCachePixmap = 0;
- }
-
if (mBackPixmapPainter) {
mBackPixmapPainter->setPixmap(0);
}
@@ -587,8 +594,6 @@
if (d && !d->isPrototype()) {
sd->mCloneItems.removeOne(this);
}
- delete d->mFrontCachePixmap;
- delete d->mBackCachePixmap;
}
/*!
@@ -774,11 +779,7 @@
{
switch (e->type()) {
case QEvent::GraphicsSceneResize: {
- Q_D(HbAbstractViewItem );
- d->releasePixmaps();
-
- updatePixmapCache();
-
+ Q_D(HbAbstractViewItem );
QGraphicsSceneResizeEvent *resizeEvent = static_cast<QGraphicsSceneResizeEvent *>(e);
if (d->mFrontPixmapPainter) {
@@ -852,27 +853,22 @@
QVariant HbAbstractViewItem::itemChange(GraphicsItemChange change, const QVariant &value)
{
switch (change) {
- case ItemTransformHasChanged: {
- Q_D(HbAbstractViewItem);
-
+ case ItemTransformHasChanged: {
QGraphicsLayoutItem *parentLayoutItem = this->parentLayoutItem();
if (parentLayoutItem && parentLayoutItem->isLayout()) {
QGraphicsLayout *parentLayout = static_cast<QGraphicsLayout *>(parentLayoutItem);
parentLayout->invalidate();
}
- d->releasePixmaps();
-
- updatePixmapCache();
break;
}
- case ItemEnabledHasChanged: {
+ case ItemEnabledHasChanged: {
updateChildItems();
break;
}
- case ItemVisibleHasChanged: {
+ case ItemVisibleHasChanged: {
Q_D(HbAbstractViewItem);
if (!value.toBool() && d->usePixmapCache()) {
- d->setChildFlags(0, false);
+ d->setChildFlagRecursively(false);
d->releasePixmaps();
d->mResetPixmapCache = true;
}
@@ -885,8 +881,8 @@
}
break;
}
- default:
- break;
+ default:
+ break;
}
return HbWidget::itemChange(change, value);
@@ -956,7 +952,7 @@
if (d->mFocusItem) {
HbStylePrivate::updatePrimitive(d->mFocusItem, HbStylePrivate::P_ItemViewItem_focus, d->mSharedData->mStyleOption);
}
-
+
updatePixmapCache();
}
@@ -1242,10 +1238,6 @@
return;
}
- if (d->polished && !d->repolishOutstanding && !d->mRepolishRequested) {
- return;
- }
-
if (sd->mItemView) {
setProperty("layoutName", sd->mItemView->layoutName());
}
@@ -1348,7 +1340,6 @@
Q_UNUSED(widget);
Q_D(HbAbstractViewItem);
-
if (!d->mInPaintItems) {
bool usePixmapCache = d->usePixmapCache();
@@ -1356,12 +1347,16 @@
QRectF deviceBounds = painter->worldTransform().mapRect(boundingRect());
QRect deviceRect = deviceBounds.toRect().adjusted(-1, -1, 1, 1);
+ if (deviceRect.size() != d->mFrontPixmapPainter->pixmapSize()) {
+ d->mResetPixmapCache = true;
+ d->releasePixmaps();
+ }
+
if (d->mResetPixmapCache) {
- if (!d->mFrontCachePixmap) {
- d->setChildFlags(0, true);
-
- d->mFrontCachePixmap = new QPixmap(deviceRect.size());
- d->mFrontPixmapPainter->setPixmap(d->mFrontCachePixmap);
+ if (!d->mFrontPixmapPainter->pixmap()) {
+ d->setChildFlagRecursively(true);
+ QPixmap *pixmap = new QPixmap(deviceRect.size());
+ d->mFrontPixmapPainter->setPixmap(pixmap);
}
// Construct an item-to-pixmap transform.
@@ -1370,14 +1365,14 @@
if (!p.isNull())
itemToPixmap *= QTransform::fromTranslate(-p.x(), -p.y());
- d->updatePixmap(d->mFrontCachePixmap, painter, itemToPixmap, option, d->mNonCachableItem, 0);
+ d->updatePixmap(d->mFrontPixmapPainter->pixmap(), painter, itemToPixmap, option, d->mNonCachableItem, 0);
if (d->mNonCachableItem) {
- if (!d->mBackCachePixmap) {
- d->mBackCachePixmap = new QPixmap(deviceRect.size());
+ if (!d->mBackPixmapPainter->pixmap()) {
+ QPixmap *pixmap = new QPixmap(deviceRect.size());
+ d->mBackPixmapPainter->setPixmap(pixmap);
}
- d->mBackPixmapPainter->setPixmap(d->mBackCachePixmap);
- d->updatePixmap(d->mBackCachePixmap, painter, itemToPixmap, option, 0, d->mNonCachableItem);
+ d->updatePixmap(d->mBackPixmapPainter->pixmap(), painter, itemToPixmap, option, 0, d->mNonCachableItem);
} else if (d->mBackPixmapPainter) {
d->mBackPixmapPainter->setPixmap(0);
}
@@ -1393,9 +1388,8 @@
d->mFrontPixmapPainter->setDeviceRect(deviceRect);
}
} else {
- if (d->mFrontCachePixmap) {
- d->setChildFlags(0, false);
-
+ if (d->mFrontPixmapPainter->pixmap()) {
+ d->setChildFlagRecursively(false);
d->releasePixmaps();
}
}
@@ -1412,7 +1406,7 @@
{
Q_D(HbAbstractViewItem);
- if (d->usePixmapCache()) {
+ if (!d->mResetPixmapCache && d->usePixmapCache()) {
d->mResetPixmapCache = true;
update();
}
--- a/src/hbwidgets/itemviews/hbabstractviewitem.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractviewitem.h Thu Sep 02 20:44:51 2010 +0300
@@ -119,7 +119,7 @@
virtual void changeEvent(QEvent *event);
protected slots:
-
+
void updatePixmapCache();
private:
--- a/src/hbwidgets/itemviews/hbabstractviewitem_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbabstractviewitem_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -61,6 +61,11 @@
setZValue(zValue);
}
+ ~HbViewItemPixmapPainter()
+ {
+ delete mPixmap;
+ }
+
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0)
{
Q_UNUSED(option);
@@ -83,17 +88,25 @@
void setPixmap(QPixmap *pixmap)
{
- if (pixmap) {
- if (!mPixmap) {
- setFlag(QGraphicsItem::ItemHasNoContents, false);
+ if (pixmap != mPixmap) {
+ if (pixmap) {
+ if (!mPixmap) {
+ setFlag(QGraphicsItem::ItemHasNoContents, false);
+ }
+ } else {
+ if (mPixmap) {
+ setFlag(QGraphicsItem::ItemHasNoContents, true);
+ }
}
- } else {
- if (mPixmap) {
- setFlag(QGraphicsItem::ItemHasNoContents, true);
- }
+
+ delete mPixmap;
+ mPixmap = pixmap;
}
+ }
- mPixmap = pixmap;
+ inline QPixmap *pixmap() const
+ {
+ return mPixmap;
}
void setDeviceRect(const QRect &deviceRect) {
@@ -105,6 +118,11 @@
mBoundingRect = QRectF(QPointF(), size);
}
+ inline QSize pixmapSize() const
+ {
+ return mDeviceRect.size();
+ }
+
private:
QPixmap *mPixmap;
@@ -189,8 +207,6 @@
mSharedData(shared),
mBackPixmapPainter(0),
mFrontPixmapPainter(0),
- mBackCachePixmap(0),
- mFrontCachePixmap(0),
mInPaintItems(false),
mNonCachableItem(0),
mResetPixmapCache(true)
@@ -218,8 +234,6 @@
mSharedData(source.mSharedData),
mBackPixmapPainter(0),
mFrontPixmapPainter(0),
- mBackCachePixmap(0),
- mFrontCachePixmap(0),
mInPaintItems(false),
mNonCachableItem(source.mNonCachableItem),
mResetPixmapCache(true)
@@ -244,8 +258,6 @@
mMultiSelectionTouchArea = 0;
mBackPixmapPainter = 0;
mFrontPixmapPainter = 0;
- mBackCachePixmap = 0;
- mFrontCachePixmap = 0;
mInPaintItems = false;
mNonCachableItem = source.mNonCachableItem;
mResetPixmapCache = true;
@@ -278,8 +290,10 @@
void setPressed(bool pressed, bool animate);
void paintItems(QPainter *painter, QStyleOptionGraphicsItem *option, QGraphicsItem *startItem, QGraphicsItem *endItem);
+ void paintChildItemsRecursively(QGraphicsItem *child, QPainter *painter,QStyleOptionGraphicsItem *option);
void setChildFlags(QGraphicsItem *child, bool pixmapCacheEnabled);
+ void setChildFlagRecursively(bool pixmapCacheEnabled);
inline bool usePixmapCache() const;
@@ -321,9 +335,6 @@
HbViewItemPixmapPainter *mBackPixmapPainter;
HbViewItemPixmapPainter *mFrontPixmapPainter;
- QPixmap *mBackCachePixmap;
- QPixmap *mFrontCachePixmap;
-
bool mInPaintItems;
QGraphicsItem *mNonCachableItem;
--- a/src/hbwidgets/itemviews/hbdatepickerview_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbdatepickerview_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -631,7 +631,7 @@
return;
}
Q_Q(HbDatePickerView);
- mContainer->layout()->activate();//call this to get proper item;
+ mContainer->layout()->activate();//call this to get proper item;
slectItemAt(q->boundingRect().center(),q);
}
--- a/src/hbwidgets/itemviews/hbgridlayout_p_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbgridlayout_p_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -449,9 +449,9 @@
QRectF extRect(data->startScenePos, data->item->boundingRect().size());
HbEffect::start(data->item, "gridviewitem", "reposition", q_ptr, "effectFinished", QVariant(), extRect);
} else {
- data->startDelay -= ANIMATION_DELAY_RESOLUTION;
+ data->startDelay -= ANIMATION_DELAY_RESOLUTION;
stopTimer = false;
- }
+ }
} else {
QPointF delta = data->startPos - data->item->pos();
data->item->setTransform(QTransform::fromTranslate(delta.x(), delta.y()), false);
--- a/src/hbwidgets/itemviews/hbgridview.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbgridview.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -120,11 +120,11 @@
{
Q_D(HbGridView);
- d->mVisibleIndex = d->indexInTheCenter();
+ d->mVisibleIndex = d->firstFullyVisibleIndex();
d->itemContainer()->setRowCount(rowCount);
- scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtCenter);
+ scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtTop);
}
/*!
@@ -147,11 +147,11 @@
{
Q_D(HbGridView);
- d->mVisibleIndex = d->indexInTheCenter();
+ d->mVisibleIndex = d->firstFullyVisibleIndex();
d->itemContainer()->setColumnCount(columnCount);
- scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtCenter);
+ scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtTop);
}
@@ -279,7 +279,7 @@
void HbGridView::orientationAboutToBeChanged()
{
Q_D(HbGridView);
- d->mVisibleIndex = d->indexInTheCenter();
+ d->mVisibleIndex = d->firstFullyVisibleIndex();
}
/*!
@@ -291,10 +291,21 @@
d->mContainer->setPos(0,0);
if (d->mSwapDimensionsOnOrientationChange) {
d->itemContainer()->orientationChanged(newOrientation);
+ int indexPosition = d->mModelIterator->indexPosition(d->mVisibleIndex);
+ int columnsCount = 0;
+ if (d->mScrollDirections == Qt::Vertical) {
+ columnsCount = columnCount();
+ } else {
+ columnsCount = rowCount();
+ }
+ int remainder = indexPosition % columnsCount;
+ if (remainder > columnsCount / 2) {
+ d->mVisibleIndex = d->mModelIterator->index(indexPosition + columnsCount - remainder);
+ }
}
// abstract part is enough - container update buffer
- HbAbstractItemView::scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtCenter);
+ HbAbstractItemView::scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtTop);
d->mVisibleIndex = QModelIndex();
}
@@ -395,13 +406,12 @@
{
Q_D(HbGridView);
// scroll direction changed, calculations need to be done on old value
- d->mVisibleIndex = d->indexInTheCenter((d->mScrollDirections == Qt::Vertical)
- ? Qt::Horizontal : Qt::Vertical);
+ d->mVisibleIndex = d->firstFullyVisibleIndex();
d->mContainer->setPos(0,0);
d->itemContainer()->scrollDirectionChanged(scrollDirection);
// abstract part is enough - container update buffer
- HbAbstractItemView::scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtCenter);
+ HbAbstractItemView::scrollTo(d->mVisibleIndex, HbAbstractItemView::PositionAtTop);
d->mVisibleIndex = QModelIndex();
}
--- a/src/hbwidgets/itemviews/hbgridview_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbgridview_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -223,41 +223,9 @@
}
}
-QModelIndex HbGridViewPrivate::indexInTheCenter(Qt::Orientations scrollDirection) const
+QModelIndex HbGridViewPrivate::firstFullyVisibleIndex() const
{
- Q_Q(const HbGridView);
- QModelIndex centerViewModelIndex; // nearest to center of the screen
- if (!mContainer->items().isEmpty()) {
- qreal centerPos;
- HbGridItemContainer *container = itemContainer();
- if (scrollDirection == Qt::Vertical) {
- // calculating row:
- centerPos = -container->pos().y() + q->boundingRect().height() / 2
- // take rather item that is just above of view center instead of bottom one
- - container->viewLayout()->effectiveSizeHint(Qt::MinimumSize).height() / 2;
- // calculate item row
- centerPos /= container->viewLayout()->effectiveSizeHint(Qt::MinimumSize).height();
- //calculate item index
- centerPos *= itemContainer()->columnCount();
- // go to center column
- centerPos += itemContainer()->columnCount() / 2;
- } else {
- // calculating row:
- centerPos = -container->pos().x() + q->boundingRect().width() / 2
- // take rather item that is just on the left of view center instead of right one
- - container->viewLayout()->effectiveSizeHint(Qt::MinimumSize).width() / 2;
- // calculate buffer row
- centerPos /= container->viewLayout()->effectiveSizeHint(Qt::MinimumSize).width();
- //calculate item index
- centerPos *= itemContainer()->rowCount();
- // go to center row
- centerPos += itemContainer()->rowCount() / 2;
- }
- int centerIndex = qRound(centerPos);
- if (centerIndex >= container->items().size()) {
- centerIndex = container->items().size() / 2;
- }
- centerViewModelIndex = container->items().at(centerIndex)->modelIndex();
- }
- return centerViewModelIndex;
+ QModelIndex first, last;
+ mContainer->firstAndLastVisibleModelIndex(first, last, true);
+ return first;
}
--- a/src/hbwidgets/itemviews/hbgridview_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbgridview_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -59,8 +59,7 @@
inline qreal getScrollDirectionContainerPos() const;
inline qreal getScrollDirectionItemSize() const;
- inline QModelIndex indexInTheCenter() const;
- QModelIndex indexInTheCenter(Qt::Orientations scrollDirection) const;
+ QModelIndex firstFullyVisibleIndex() const;
public:
bool mIconVisible;
@@ -119,9 +118,4 @@
: mContainer->items().first()->size().width();
}
-QModelIndex HbGridViewPrivate::indexInTheCenter() const
-{
- return indexInTheCenter(mScrollDirections);
-}
-
#endif /*HBGRIDVIEW_P_H*/
--- a/src/hbwidgets/itemviews/hblistitemcontainer_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistitemcontainer_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -254,7 +254,7 @@
/*!
Sets the modelIndexes of \a count container items starting from item at \a containerStartRow row of the container
- to model's indexes starting from \a modelStartRow
+ to model's indexes starting from \a modelStartRow
*/
void HbListItemContainer::setItemModelIndexes(int containerStartRow, int modelStartRow, int count)
{
--- a/src/hbwidgets/itemviews/hblistlayout_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistlayout_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -258,9 +258,9 @@
}
/*!
- \reimp
-
- Invalidates the smallest item cache.
+ \reimp
+
+ Invalidates the smallest item cache.
*/
void HbListLayout::invalidate()
{
--- a/src/hbwidgets/itemviews/hblistview_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistview_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -250,7 +250,7 @@
}
}
case Qt::GestureFinished:
- case Qt::GestureCanceled: {
+ case Qt::GestureCanceled: {
if (arrangeModeEnabled && mDraggedItem) {
QObject::disconnect(q, SIGNAL(scrollPositionChanged(QPointF)), q, SLOT(scrolling(QPointF)));
--- a/src/hbwidgets/itemviews/hblistviewitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hblistviewitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -579,7 +579,7 @@
/*!
Returns secondary text item maximum and minimum row counts.
- The default maximum row count is 1 and minimum row count is 1.
+ The default maximum row count is 1 and minimum row count is 1.
\note This function does not return values from .css although they were effective.
--- a/src/hbwidgets/itemviews/hbradiobuttonlist.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbradiobuttonlist.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -126,14 +126,12 @@
QModelIndex mCurrentIndex; //Note that this is not the same as d->mHitItem
HbRadioButtonList::PreviewMode mPreviewMode;
- bool mPreviewGoingOn;
bool mStartUp;
};
HbRadioButtonListPrivate::HbRadioButtonListPrivate() :
HbListViewPrivate(),
mPreviewMode(HbRadioButtonList::NoPreview),
- mPreviewGoingOn(false),
mStartUp(true)
{
}
@@ -314,7 +312,26 @@
Q_D( HbRadioButtonList );
if(d->mPreviewMode == HbRadioButtonList::Preview && d->mCurrentIndex != modelIndex){
- QTimer::singleShot(HB_RADIOBUTTONLIST_PREVIEW_TIMER, this, SLOT(_q_itemPreviewTimerExpired()));
+ QTimer::singleShot(HB_RADIOBUTTONLIST_PREVIEW_TIMER, this, SLOT(_q_itemPreviewTimerExpired()));
+ QModelIndexList selected;
+
+ if (d->mCurrentIndex.isValid()) {
+ selected.append(d->mCurrentIndex);
+ } else {
+ selected = d->mSelectionModel->selectedIndexes();
+ }
+ int count = selected.count();
+ for (int i=0; i<count; i++) {
+ HbAbstractViewItem* item = itemByIndex(selected.at(i));
+ if (item) {
+ item->setCheckState(Qt::Unchecked);
+ }
+ }
+
+ HbAbstractViewItem *item = itemByIndex(modelIndex);
+ if (item) {
+ itemByIndex(modelIndex)->setCheckState(Qt::Checked);
+ }
d->mCurrentIndex=modelIndex;
}else {
//Now we let the activate signal go to the application
@@ -326,25 +343,6 @@
/*!
\reimp
*/
-void HbRadioButtonList::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
-{
- Q_D(HbRadioButtonList);
- if(d->mPreviewMode == HbRadioButtonList::Preview ){
- HbAbstractViewItem *hitItem = d->itemAt(event->scenePos());
- if (hitItem){
- if (hitItem->modelIndex() == d->mCurrentIndex) {
- d->mPreviewGoingOn=false;
- } else {
- d->mPreviewGoingOn=true;
- }
- }
- }
- HbListView::mouseReleaseEvent(event);
-}
-
-/*!
- \reimp
-*/
QItemSelectionModel::SelectionFlags HbRadioButtonList::selectionCommand(const HbAbstractViewItem *item,
const QEvent *event)
{
@@ -355,7 +353,7 @@
|| event->type() != QEvent::GraphicsSceneMouseRelease){
return QItemSelectionModel::NoUpdate;
} else {
- if(d->mPreviewGoingOn==true) {
+ if(d->mPreviewMode == HbRadioButtonList::Preview && d->mCurrentIndex != item->modelIndex()){
return QItemSelectionModel::NoUpdate;
} else {
return QItemSelectionModel::ClearAndSelect;
--- a/src/hbwidgets/itemviews/hbradiobuttonlist.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbradiobuttonlist.h Thu Sep 02 20:44:51 2010 +0300
@@ -82,7 +82,6 @@
HbRadioButtonList(HbRadioButtonListPrivate &dd, HbAbstractItemContainer *container, QGraphicsItem *parent);
void emitActivated(const QModelIndex &modelIndex);
- void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
QItemSelectionModel::SelectionFlags selectionCommand(
const HbAbstractViewItem *item,
const QEvent *event);
--- a/src/hbwidgets/itemviews/hbtreeitemcontainer_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbtreeitemcontainer_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -565,6 +565,7 @@
newPos.setY(newPos.y() - item->preferredHeight());
setPos(newPos);
}
+ d->adjustContent();
} else {
item->deleteLater();
}
--- a/src/hbwidgets/itemviews/hbtreeitemcontainer_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbtreeitemcontainer_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -65,7 +65,7 @@
virtual HbAbstractViewItem *createDefaultPrototype() const;
virtual QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint) const;
-
+
protected slots:
void animationFinished(const HbEffect::EffectStatus &status);
--- a/src/hbwidgets/itemviews/hbtreelayout_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbtreelayout_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -315,9 +315,9 @@
}
/*!
- \reimp
-
- Invalidates smallest item height cache.
+ \reimp
+
+ Invalidates smallest item height cache.
*/
void HbTreeLayout::invalidate()
{
--- a/src/hbwidgets/itemviews/hbtreeviewitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/itemviews/hbtreeviewitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -288,7 +288,7 @@
if (d->mExpanded != expanded) {
d->mExpanded = expanded;
- if (sd->mItemView != 0) {
+ if (sd->mItemView != 0) {
HbTreeView *treeView = qobject_cast<HbTreeView *>(sd->mItemView);
if (treeView) {
treeView->setExpanded(this->modelIndex(), expanded);
--- a/src/hbwidgets/popups/hbcolorgridviewitem.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbcolorgridviewitem.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -149,7 +149,7 @@
void HbColorGridViewItemPrivate::updateChildItems()
{
createPrimitives();
- updatePrimitives();
+ updatePrimitives();
}
HbColorGridViewItem::HbColorGridViewItem(QGraphicsItem *parent) :
--- a/src/hbwidgets/popups/hbmessagebox.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbmessagebox.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -39,6 +39,8 @@
#include <QTimer>
#include <QGraphicsLinearLayout>
#include <QTextDocument>
+#include <hbstyleprimitivedata.h>
+#include <hbstyleiconprimitivedata.h>
#ifdef Q_OS_SYMBIAN
#include <systemtoneservice.h>
@@ -50,12 +52,11 @@
{
Q_OBJECT
public:
- HbLabel *mTextEdit;
HbMessageBoxWidget(QGraphicsItem* parent =0):HbLabel(parent){
setTextWrapping(Hb::TextWordWrap);
}
HbMessageBoxWidget(const QString& text, QGraphicsItem *parent=0):HbLabel(text, parent){
- HbStyle::setItemName(this, "text");
+ HbStyle::setItemName(this, "text");
}
};
class HbMessageBoxScrollArea : public HbScrollArea
@@ -85,17 +86,16 @@
Q_OBJECT
public:
HbMessageBoxPrivate *d;
- QGraphicsItem *mIconItem;
+ QGraphicsObject *mIconItem;
HbMessageBoxScrollArea *mScrollArea;
HbMessageBoxContentWidget(HbMessageBoxPrivate *priv,
QGraphicsItem* parent =0) : HbWidget(parent),d(priv),mIconItem(0),mScrollArea(0)
{
mScrollArea = new HbMessageBoxScrollArea(this);
- mIconItem = HbStylePrivate::createPrimitive(HbStylePrivate::P_MessageBox_icon, this);
+ mIconItem = style()->createPrimitive(HbStyle::PT_IconItem, "icon", this);
setProperty("hasIcon",true);
HbStyle::setItemName(mScrollArea, "scrollArea");
- HbStyle::setItemName(mIconItem, "icon");
}
void triggerPolish()
@@ -367,6 +367,44 @@
option->messageBoxType = d->mMessageBoxType;
}
+void HbMessageBox::initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive)
+{
+ Q_D(HbMessageBox);
+ HbWidgetBase::initPrimitiveData(primitiveData, primitive);
+ QString itemName = HbStyle::itemName(primitive);
+ if (itemName == QLatin1String("icon")) {
+ HbStyleIconPrimitiveData *data = hbstyleprimitivedata_cast<HbStyleIconPrimitiveData*>(primitiveData);
+ data->icon = icon();
+
+ if (data->icon.value().isNull()) {
+ switch (d->mMessageBoxType) {
+ case HbStyleOptionMessageBox::MessageTypeInformation:
+ data->icon = HbIcon(QLatin1String("qtg_large_info"));
+ break;
+ case HbStyleOptionMessageBox::MessageTypeQuestion:
+ data->icon = HbIcon(QLatin1String("qtg_large_help"));
+ break;
+ case HbStyleOptionMessageBox::MessageTypeWarning:
+ data->icon = HbIcon(QLatin1String("qtg_large_warning"));
+ break;
+ default:
+ break;
+ }
+ }
+ }
+}
+
+void HbMessageBox::recreatePrimitives()
+{
+ Q_D(HbMessageBox);
+ if (d->mMessageBoxContentWidget->mIconItem) {
+ delete d->mMessageBoxContentWidget->mIconItem;
+ d->mMessageBoxContentWidget->mIconItem = 0;
+ d->mMessageBoxContentWidget->mIconItem = style()->createPrimitive(HbStyle::PT_IconItem, "icon",d->mMessageBoxContentWidget);
+ d->mMessageBoxContentWidget->setProperty("hasIcon",true);
+ }
+}
+
/*!
\reimp
*/
@@ -374,11 +412,13 @@
{
Q_D(HbMessageBox);
HbDialog::updatePrimitives();
- HbStyleOptionMessageBox option;
- initStyleOption(&option);
+
if (d->mMessageBoxContentWidget->mIconItem) {
- HbStylePrivate::updatePrimitive(d->mMessageBoxContentWidget->mIconItem, HbStylePrivate::P_MessageBox_icon, &option);
+ HbStyleIconPrimitiveData data;
+ initPrimitiveData(&data, d->mMessageBoxContentWidget->mIconItem);
+ style()->updatePrimitive(d->mMessageBoxContentWidget->mIconItem, &data, this);
}
+
}
/*!
@@ -426,16 +466,15 @@
if (icon != d->mIcon){
d->mIcon = icon;
if (d->mMessageBoxContentWidget->mIconItem) {
- HbStyleOptionMessageBox option;
- initStyleOption(&option);
- HbStylePrivate::updatePrimitive(d->mMessageBoxContentWidget->mIconItem, HbStylePrivate::P_MessageBox_icon, &option);
+ HbStyleIconPrimitiveData data;
+ initPrimitiveData(&data, d->mMessageBoxContentWidget->mIconItem);
+ style()->updatePrimitive(d->mMessageBoxContentWidget->mIconItem, &data, this);
}
if(iconVisible() ) {
d->mMessageBoxContentWidget->mIconItem->show();
d->mMessageBoxContentWidget->setProperty("hasIcon",true);
}
}
-
}
/*!
--- a/src/hbwidgets/popups/hbmessagebox.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbmessagebox.h Thu Sep 02 20:44:51 2010 +0300
@@ -139,11 +139,13 @@
QGraphicsItem *parent = 0 );
public slots:
+ void recreatePrimitives();
void updatePrimitives();
protected:
HbMessageBox(HbMessageBoxPrivate &dd, QGraphicsItem *parent);
void initStyleOption(HbStyleOptionMessageBox *option) const;
+ void initPrimitiveData(HbStylePrimitiveData *primitiveData, const QGraphicsObject *primitive);
private:
Q_PRIVATE_SLOT(d_func(), void _q_buttonClicked())
--- a/src/hbwidgets/popups/hbmessagebox_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbmessagebox_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -41,14 +41,14 @@
~HbMessageBoxPrivate();
void init();
- void _q_appearEffectEnded(HbEffect::EffectStatus status);
+ void _q_appearEffectEnded(HbEffect::EffectStatus status);
HbIcon mIcon;
HbMessageBoxContentWidget *mMessageBoxContentWidget;
HbMessageBox::MessageBoxType mMessageBoxType;
- bool mIconVisible;
+ bool mIconVisible;
QMap <HbAction* , HbMessageBox::StandardButton> mActionList;
HbMessageBox::StandardButtons mStandardButtons;
- QString mBoxText;
+ QString mBoxText;
public slots:
void _q_buttonClicked();
};
--- a/src/hbwidgets/popups/hbnotificationdialog.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbnotificationdialog.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -104,7 +104,7 @@
HbNotificationDialog is a concrete class. For the content, you can use the default content
widgets which provides two rows of text (title spanning both lines, or title and text) and optionally an icon.
- You can use the default content widget by invoking the HbNotificationDialog with its
+ You can use the default content widget by invoking the HbNotificationDialog with its
static launch-methods or by using the methods setText(), setTitle() and setIcon().
Alternatively, you can create a separate widget, and set it to the dialog with the inherited method
--- a/src/hbwidgets/popups/hbselectiondialog.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbselectiondialog.h Thu Sep 02 20:44:51 2010 +0300
@@ -41,30 +41,30 @@
class HB_WIDGETS_EXPORT HbSelectionDialog : public HbDialog
{
- Q_OBJECT
+ Q_OBJECT
Q_PROPERTY(HbAbstractItemView::SelectionMode selectionMode READ selectionMode WRITE setSelectionMode)
Q_PROPERTY(QStringList items READ stringItems WRITE setStringItems)
Q_PROPERTY(QList<QVariant> selectedItems READ selectedItems WRITE setSelectedItems)
public:
- enum { Type = Hb::ItemType_SelectionDialog };
- int type() const { return Type; }
-
- explicit HbSelectionDialog(QGraphicsItem* parent=0);
+ enum { Type = Hb::ItemType_SelectionDialog };
+ int type() const { return Type; }
+
+ explicit HbSelectionDialog(QGraphicsItem* parent=0);
~HbSelectionDialog();
void setSelectionMode(HbAbstractItemView::SelectionMode mode);
HbAbstractItemView::SelectionMode selectionMode() const;
- void setStringItems(const QStringList &items,int currentIndex = 0);
+ void setStringItems(const QStringList &items,int currentIndex = 0);
QStringList stringItems() const;
-
+
void setWidgetItems(const QList<HbListWidgetItem*> &items,bool transferOwnership = false,int currentIndex = 0);
- QList<HbListWidgetItem*> widgetItems() const;
+ QList<HbListWidgetItem*> widgetItems() const;
- void setModel(QAbstractItemModel* model);
- QAbstractItemModel* model() const;
-
+ void setModel(QAbstractItemModel* model);
+ QAbstractItemModel* model() const;
+
QList<QVariant> selectedItems() const;
void setSelectedItems(const QList<QVariant> items);
--- a/src/hbwidgets/popups/hbselectiondialog_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbselectiondialog_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -36,12 +36,12 @@
#include <hbstyleoption_p.h>
HbSelectionDialogMarkWidget::HbSelectionDialogMarkWidget(QGraphicsItem *parent):HbWidget(parent),mBackgroundItem(0){
- chkMark = new HbCheckBox(this);
- chkMark->setText(hbTrId("txt_common_list_mark_all_items"));
- lbCounter = new HbTextItem(this);
- HbStyle::setItemName(chkMark,"checkbox");
- HbStyle::setItemName(lbCounter,"counter");
- createPrimitives();
+ chkMark = new HbCheckBox(this);
+ chkMark->setText(hbTrId("txt_common_list_mark_all_items"));
+ lbCounter = new HbTextItem(this);
+ HbStyle::setItemName(chkMark,"checkbox");
+ HbStyle::setItemName(lbCounter,"counter");
+ createPrimitives();
}
void HbSelectionDialogMarkWidget::createPrimitives()
@@ -69,7 +69,7 @@
{
switch ( change ) {
case ItemVisibleHasChanged: {
- updatePrimitives( );
+ updatePrimitives( );
}
break;
@@ -108,13 +108,13 @@
void HbSelectionDialogContentWidget::_q_listWidgetItemSelected(HbListWidgetItem *item)
{
- Q_UNUSED(item)
+ Q_UNUSED(item)
}
void HbSelectionDialogContentWidget::_q_listItemSelected(QModelIndex index)
{
Q_UNUSED(index)
- if(mListView->selectionMode()== HbAbstractItemView::SingleSelection){
+ if(mListView->selectionMode()== HbAbstractItemView::SingleSelection){
d->close();
}
updateCounter();
@@ -123,32 +123,44 @@
int HbSelectionDialogContentWidget::selectedItemCount() const
{
int selectedItems = 0;
- if(mListView){
- QItemSelectionModel* selectionModel = mListView->selectionModel();
- if(selectionModel){
- selectedItems = selectionModel->selectedRows().count();
- }
- }
+ if(mListView){
+ QItemSelectionModel* selectionModel = mListView->selectionModel();
+ if(selectionModel){
+ selectedItems = selectionModel->selectedRows().count();
+ }
+ }
return selectedItems;
}
int HbSelectionDialogContentWidget::totalItemCount() const
{
- int nCount = 0;
- if(mListView && mListView->model()){
- nCount = mListView->model()->rowCount();
- }
- return nCount;
+ int nCount = 0;
+ if(mListView && mListView->model()){
+ nCount = mListView->model()->rowCount();
+ }
+ return nCount;
}
+void HbSelectionDialogContentWidget::setModel(QAbstractItemModel* model)
+{
+ if(mListView){
+ HbListWidget* mView = qobject_cast<HbListWidget*>(mListView);
+ if(!mView){ //can not set model on HbListWidget
+ QObject::disconnect(mListView->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),this,SLOT(_q_selectionChanged(const QItemSelection&, const QItemSelection&)));
+ mListView->setModel(model);
+ if(model)
+ QObject::connect(mListView->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),this,SLOT(_q_selectionChanged(const QItemSelection&, const QItemSelection&)));
+ }
+ }
+}
void HbSelectionDialogContentWidget::updateCounter()
{
- if(!mListView) return;
+ if(!mListView) return;
if(mListView->selectionMode()!= HbAbstractItemView::MultiSelection) return;
if(markWidget){
int totalItems = totalItemCount();
int selectedItems = selectedItemCount();
- markWidget->updatePrimitives();
+ markWidget->updatePrimitives();
markWidget->lbCounter->setText(QString(QString::number(selectedItems) + "/" + QString::number(totalItems)));
//update checked state of "MarkAll" checkbox
if (totalItems > 0 && (selectedItems == totalItems)){
@@ -191,21 +203,24 @@
void HbSelectionDialogContentWidget::showMarkWidget(bool bShow)
{
- if(bShow){
- if(!markWidget){
- markWidget = new HbSelectionDialogMarkWidget(this);
- HbStyle::setItemName(markWidget,"markwidget");
- setProperty("multiSelection",true);
- connect(markWidget->chkMark,SIGNAL(stateChanged ( int )),this,SLOT(_q_checkboxclicked(int)));
- repolish();
- updateCounter();
- }
+ if(bShow){
+ if(!markWidget){
+ markWidget = new HbSelectionDialogMarkWidget(this);
+ }
+ else{
+ markWidget->show();
+ }
+ HbStyle::setItemName(markWidget,"markwidget");
+ connect(markWidget->chkMark,SIGNAL(stateChanged ( int )),this,SLOT(_q_checkboxclicked(int)));
+ repolish();
+ updateCounter();
}
else{
- delete markWidget; markWidget = 0;
- HbStyle::setItemName(markWidget,"");
- setProperty("multiSelection",false);
- repolish();
+ if(markWidget){
+ HbStyle::setItemName(markWidget,"");
+ markWidget->hide();
+ repolish();
+ }
}
}
@@ -216,60 +231,73 @@
QObject::connect(mListView->model(),SIGNAL(rowsInserted(const QModelIndex& ,int,int)),this,SLOT(modelChanged(const QModelIndex&,int,int)));
}
+void HbSelectionDialogContentWidget::_q_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)
+{
+ Q_UNUSED(selected);
+ Q_UNUSED(deselected);
+ updateCounter();
+}
+
void HbSelectionDialogContentWidget::modelChanged(const QModelIndex &parent, int start,int end)
{
- Q_UNUSED(parent);
- Q_UNUSED(start);
- Q_UNUSED(end);
- updateCounter();
+ Q_UNUSED(parent);
+ Q_UNUSED(start);
+ Q_UNUSED(end);
+ updateCounter();
}
void HbSelectionDialogContentWidget::createListWidget()
{
- if(mListView){
- HbListWidget* mView = qobject_cast<HbListWidget*>(mListView);
- if(!mView){
- delete mListView;
- mListView = new HbListWidget(this);
- HbStyle::setItemName(mListView, "list");
- connectSlots();
- }
- }
- else{
- mListView = new HbListWidget(this);
- HbStyle::setItemName(mListView, "list");
- connectSlots();
- }
+ if(mListView){
+ QObject::disconnect(mListView->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),this,SLOT(_q_selectionChanged(const QItemSelection&, const QItemSelection&)));
+ HbListWidget* mView = qobject_cast<HbListWidget*>(mListView);
+ if(!mView){
+ delete mListView;
+ mListView = new HbListWidget(this);
+ HbStyle::setItemName(mListView, "list");
+ connectSlots();
+ repolish();
+ }
+ }
+ else{
+ mListView = new HbListWidget(this);
+ HbStyle::setItemName(mListView, "list");
+ connectSlots();
+ repolish();
+ }
+ QObject::connect(mListView->selectionModel(),SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)),this,SLOT(_q_selectionChanged(const QItemSelection&, const QItemSelection&)));
}
void HbSelectionDialogContentWidget::createListView()
{
- if(mListView){
- HbListView* mView = qobject_cast<HbListView*>(mListView);
- if(!mView){
- delete mListView;
- mListView = new HbListView(this);
- HbStyle::setItemName(mListView, "list");
- connectSlots();
- }
- }
- else{
- mListView = new HbListView(this);
- HbStyle::setItemName(mListView, "list");
- connectSlots();
- }
+ if(mListView){
+ HbListWidget* mView = qobject_cast<HbListWidget*>(mListView);
+ if(mView){
+ delete mListView;
+ mListView = new HbListView(this);
+ HbStyle::setItemName(mListView, "list");
+ connectSlots();
+ repolish();
+ }
+ }
+ else{
+ mListView = new HbListView(this);
+ HbStyle::setItemName(mListView, "list");
+ connectSlots();
+ repolish();
+ }
}
HbSelectionDialogPrivate::HbSelectionDialogPrivate()
:HbDialogPrivate()
{
bOwnItems = false;
- action1 = action2 = 0;
+ action1 = action2 = 0;
}
HbSelectionDialogPrivate::~HbSelectionDialogPrivate()
{
- clearItems(bOwnItems);
+ clearItems(bOwnItems);
}
void HbSelectionDialogPrivate::init()
@@ -278,14 +306,14 @@
Q_Q(HbSelectionDialog);
bOwnItems = false;
- mSelectionMode = HbAbstractItemView::SingleSelection;
+ mSelectionMode = HbAbstractItemView::SingleSelection;
HbSelectionDialogContentWidget* contentWidget = new HbSelectionDialogContentWidget(this);
q->setContentWidget(contentWidget);
q->setDismissPolicy(HbPopup::NoDismiss);
q->setTimeout(HbPopup::NoTimeout);
q->setModal(true);
- showActions(mSelectionMode);
+ showActions(mSelectionMode);
}
void HbSelectionDialogPrivate::showActions(HbAbstractItemView::SelectionMode selectionMode)
@@ -332,49 +360,49 @@
HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
if(cWidget && cWidget->mListView){
cWidget->mListView->setSelectionMode(mSelectionMode);
- if(mode == HbAbstractItemView::MultiSelection)
- cWidget->showMarkWidget(true);
- else
- cWidget->showMarkWidget(false);
- }
- showActions(mSelectionMode);
+ if(mode == HbAbstractItemView::MultiSelection)
+ cWidget->showMarkWidget(true);
+ else
+ cWidget->showMarkWidget(false);
+ }
+ showActions(mSelectionMode);
}
break;
case HbAbstractItemView::NoSelection:
- break;
- }
+ break;
+ }
}
void HbSelectionDialogPrivate::clearItems(bool keepItems)
{
- Q_Q(HbSelectionDialog);
- HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
- if(cWidget){
- HbListWidget* mWidget = qobject_cast<HbListWidget*>(cWidget->mListView);
- if(mWidget){
- if(keepItems){
- int nRows = 0;
- QAbstractItemModel* itemModel = mWidget->model();
- if(itemModel){
- nRows = itemModel->rowCount();
- while(nRows){
- mWidget->takeItem(0);
- nRows = itemModel->rowCount();
- }
- }
- }
- else{
- mWidget->clear();
- }
- bOwnItems = false;
- return;
- }
- HbListView* mView = qobject_cast<HbListView*>(cWidget->mListView);
- if(mView){
- cWidget->mListView->setModel(0);
- }
- }
+ Q_Q(HbSelectionDialog);
+ HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
+ if(cWidget){
+ HbListWidget* mWidget = qobject_cast<HbListWidget*>(cWidget->mListView);
+ if(mWidget){
+ if(keepItems){
+ int nRows = 0;
+ QAbstractItemModel* itemModel = mWidget->model();
+ if(itemModel){
+ nRows = itemModel->rowCount();
+ while(nRows){
+ mWidget->takeItem(0);
+ nRows = itemModel->rowCount();
+ }
+ }
+ }
+ else{
+ mWidget->clear();
+ }
+ bOwnItems = false;
+ return;
+ }
+ HbListView* mView = qobject_cast<HbListView*>(cWidget->mListView);
+ if(mView){
+ cWidget->setModel(0);
+ }
+ }
}
QList<HbListWidgetItem*> HbSelectionDialogPrivate::widgetItems() const
@@ -406,16 +434,16 @@
if(!cWidget) return;
int nRows = 0;
- cWidget->createListWidget();
- setSelectionMode(mSelectionMode);
+ cWidget->createListWidget();
+ setSelectionMode(mSelectionMode);
if(cWidget->mListView){
int count = items.size();
- if(count > 0) clearItems(bOwnItems); //Clear the existing items first
+ if(count > 0) clearItems(bOwnItems); //Clear the existing items first
for (int i = 0; i < count; ++i) {
HbListWidgetItem* modelItem = new HbListWidgetItem();
QString str = items.at(i);
modelItem->setText(str);
- HbListWidget* widget = (HbListWidget*)cWidget->mListView;
+ HbListWidget* widget = (HbListWidget*)cWidget->mListView;
widget->addItem(modelItem);
QAbstractItemModel* itemModel = cWidget->mListView->model();
@@ -451,11 +479,10 @@
HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
if(cWidget){
- cWidget->createListView();
- setSelectionMode(mSelectionMode);
- cWidget->mListView->setModel(model);
- cWidget->updateCounter();
- cWidget->connectSlots();
+ cWidget->createListView();
+ setSelectionMode(mSelectionMode);
+ cWidget->setModel(model);
+ cWidget->updateCounter();
}
}
@@ -465,12 +492,12 @@
HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
if(cWidget){
- cWidget->createListWidget();
- setSelectionMode(mSelectionMode);
+ cWidget->createListWidget();
+ setSelectionMode(mSelectionMode);
if(cWidget->mListView){
- HbListWidget* widget = (HbListWidget*)cWidget->mListView;
+ HbListWidget* widget = (HbListWidget*)cWidget->mListView;
int count = items.count();
- if(count > 0) clearItems(bOwnItems); //Clear the existing items first
+ if(count > 0) clearItems(bOwnItems); //Clear the existing items first
for(int i = 0; i < count; i++){
widget->addItem(items[i]);
}
@@ -478,7 +505,7 @@
}
bOwnItems = transferOwnership;
- cWidget->updateCounter();
+ cWidget->updateCounter();
}
}
@@ -488,7 +515,7 @@
HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
if(cWidget && cWidget->mListView){
- return cWidget->mListView->model();
+ return cWidget->mListView->model();
}
return 0;
}
@@ -510,16 +537,16 @@
QItemSelectionModel *model = 0;
model = selectionModel();
if(model){
- model->clearSelection();
+ model->clearSelection();
Q_FOREACH(QVariant i,items) {
model->select(model->model()->index(i.toInt(),0),
QItemSelectionModel::Select);
}
- HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
- if(cWidget){
- cWidget->updateCounter();
- }
- }
+ HbSelectionDialogContentWidget* cWidget = qobject_cast<HbSelectionDialogContentWidget*>(q->contentWidget());
+ if(cWidget){
+ cWidget->updateCounter();
+ }
+ }
}
QList<QVariant> HbSelectionDialogPrivate::selectedItems() const
@@ -554,6 +581,6 @@
void HbSelectionDialogPrivate::close()
{
Q_Q(HbSelectionDialog);
- q->accept(); //emit the signal
+ q->accept(); //emit the signal
}
--- a/src/hbwidgets/popups/hbselectiondialog_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/popups/hbselectiondialog_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -42,7 +42,7 @@
class HbSelectionDialogPrivate : public HbDialogPrivate
{
- Q_DECLARE_PUBLIC(HbSelectionDialog)
+ Q_DECLARE_PUBLIC(HbSelectionDialog)
public:
HbSelectionDialogPrivate();
~HbSelectionDialogPrivate();
@@ -51,79 +51,81 @@
private:
void init();
- void setStringItems(const QStringList &items,int currentIndex);
+ void setStringItems(const QStringList &items,int currentIndex);
QStringList stringItems() const;
- void setWidgetItems(const QList<HbListWidgetItem*> &items,bool transferOwnership,int currentIndex);
+ void setWidgetItems(const QList<HbListWidgetItem*> &items,bool transferOwnership,int currentIndex);
QList<HbListWidgetItem*> widgetItems() const;
void setSelectedItems(const QList<QVariant> items);
QList<QVariant> selectedItems() const;
- void setModel(QAbstractItemModel* model);
- QAbstractItemModel* model() const;
+ void setModel(QAbstractItemModel* model);
+ QAbstractItemModel* model() const;
QItemSelectionModel* selectionModel() const;
QModelIndexList selectedModelIndexes() const;
- void clearItems(bool keepItems);
- void showActions(HbAbstractItemView::SelectionMode selectionMode);
+ void clearItems(bool keepItems);
+ void showActions(HbAbstractItemView::SelectionMode selectionMode);
public:
bool bOwnItems;
- HbAbstractItemView::SelectionMode mSelectionMode;
+ HbAbstractItemView::SelectionMode mSelectionMode;
void close();
private:
- HbAction *action1;
- HbAction *action2;
+ HbAction *action1;
+ HbAction *action2;
};
class HbSelectionDialogMarkWidget : public HbWidget
{
- Q_OBJECT
+ Q_OBJECT
public:
QGraphicsItem *mBackgroundItem;
HbCheckBox* chkMark;
- HbTextItem* lbCounter;
- HbSelectionDialogMarkWidget(QGraphicsItem *parent = 0);
- ~HbSelectionDialogMarkWidget();
- void createPrimitives();
- void updatePrimitives();
- QVariant itemChange( GraphicsItemChange change, const QVariant &value );
- QGraphicsItem* primitive(HbStyle::Primitive primitive) const;
+ HbTextItem* lbCounter;
+ HbSelectionDialogMarkWidget(QGraphicsItem *parent = 0);
+ ~HbSelectionDialogMarkWidget();
+ void createPrimitives();
+ void updatePrimitives();
+ QVariant itemChange( GraphicsItemChange change, const QVariant &value );
+ QGraphicsItem* primitive(HbStyle::Primitive primitive) const;
};
class HB_AUTOTEST_EXPORT HbSelectionDialogContentWidget :public HbWidget
{
- Q_OBJECT
- Q_PROPERTY( bool multiSelection READ multiSelection WRITE setMultiSelection )
+ Q_OBJECT
+ Q_PROPERTY( bool multiSelection READ multiSelection WRITE setMultiSelection )
private:
- int selectedItemCount() const;
- int totalItemCount() const;
+ int selectedItemCount() const;
+ int totalItemCount() const;
public:
- void createListWidget();
- void createListView();
- void connectSlots();
- HbListView* mListView;
+ void createListWidget();
+ void createListView();
+ void connectSlots();
+ HbListView* mListView;
HbSelectionDialogPrivate* d;
HbSelectionDialogContentWidget(HbSelectionDialogPrivate *priv);
enum { Type = Hb::ItemType_SelectionDialogContentWidget };
int type() const { return Type; }
- void showMarkWidget(bool bShow);
- bool multiSelection(){return bMultiSelection;};
- void setMultiSelection(bool bValue){bMultiSelection = bValue;};
- bool bMultiSelection;
- void updateCounter();
+ void showMarkWidget(bool bShow);
+ bool multiSelection(){return bMultiSelection;};
+ void setMultiSelection(bool bValue){bMultiSelection = bValue;};
+ bool bMultiSelection;
+ void updateCounter();
+ void setModel(QAbstractItemModel* model);
private:
- HbSelectionDialogMarkWidget* markWidget;
+ HbSelectionDialogMarkWidget* markWidget;
private slots:
- void _q_listWidgetItemSelected(HbListWidgetItem *item);
- void _q_listItemSelected(QModelIndex index);
- void _q_checkboxclicked(int value);
- void modelChanged(const QModelIndex &parent, int start,int end);
+ void _q_listWidgetItemSelected(HbListWidgetItem *item);
+ void _q_listItemSelected(QModelIndex index);
+ void _q_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
+ void _q_checkboxclicked(int value);
+ void modelChanged(const QModelIndex &parent, int start,int end);
};
class HbMarkWidget : public HbWidget
{
public:
HbCheckBox* chkMark;
- HbTextItem* lbCounter;
+ HbTextItem* lbCounter;
};
#endif //HBSELECTIONDIALOGPRIVATE_H
--- a/src/hbwidgets/sliders/hbabstractslidercontrol.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbabstractslidercontrol.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -574,12 +574,12 @@
d->position = position;
if (!d->tracking)
update();
- if (d->pressed) {
+ if (d->pressed) {
emit sliderMoved(position);
if(singleStep() != 0 ) {
HbWidgetFeedback::continuousTriggered(this, Hb::ContinuousDragged);
}
- }
+ }
if (d->tracking && !d->blocktracking)
triggerAction(SliderMove);
}
--- a/src/hbwidgets/sliders/hbabstractslidercontrol_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbabstractslidercontrol_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -58,7 +58,7 @@
Q_Q(HbAbstractSliderControl);
// NOTE: the widget parameter is not used by
// QStyle::styleHint(QStyle::SH_Slider_StopMouseOverSlider)
- if (qApp->style()->styleHint(QStyle::SH_Slider_StopMouseOverSlider, 0, 0)) {
+ if (qApp->style()->styleHint(QStyle::SH_Slider_StopMouseOverSlider, 0, 0)) {
if (qAbs(position - pressValue) < step) {
repeatAction = HbAbstractSliderControl::SliderNoAction;
q->setSliderPosition(pressValue);
--- a/src/hbwidgets/sliders/hbprogressbar_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogressbar_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -47,8 +47,8 @@
void createTextPrimitives();
virtual void setRange(int minimum, int maximum);
virtual void setOrientation(Qt::Orientation orientation);
- virtual void setProgressValue(int value);
- virtual void setEnableFlag(bool flag);
+ virtual void setProgressValue(int value);
+ virtual void setEnableFlag(bool flag);
#ifdef HB_EFFECTS
void _q_delayedHide(HbEffect::EffectStatus status);
--- a/src/hbwidgets/sliders/hbprogressslider.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogressslider.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -29,7 +29,7 @@
#include <hbtooltip.h>
#include <hbwidgetfeedback.h>
#include "hbglobal_p.h"
-
+#include <hbtoucharea.h>
#include <QGraphicsSceneMouseEvent>
#include <QApplication>
@@ -39,6 +39,10 @@
#define HB_PRGRESSSLIDER_ITEM_TYPE "HB_PROGRESSSLIDER"
#endif
+#ifdef HB_GESTURE_FW
+#include <hbtapgesture.h>
+#endif
+
HbProgressSliderPrivate::HbProgressSliderPrivate()
{
mDownState=false;
@@ -109,11 +113,11 @@
HbEffectInternal::add(HB_PRGRESSSLIDER_ITEM_TYPE,"progressslider_trackrelease", "progressslider_trackrelease");
#endif
- q->grabGesture(Qt::TapGesture);
-
+#ifdef HB_GESTURE_FW
if(QGraphicsObject *touchArea = mTouchAreaItem->toGraphicsObject()) {
touchArea->grabGesture(Qt::TapGesture);
}
+#endif
}
void HbProgressSliderPrivate::emitSliderPressed()
@@ -125,6 +129,20 @@
void HbProgressSliderPrivate::emitSliderReleased()
{
Q_Q(HbProgressSlider);
+ if(mDownState){
+ mDownState = false;
+ HbStyleOptionProgressSlider option;
+ q->initStyleOption(&option);
+ if (mFrame) {
+ HbStylePrivate::updatePrimitive(mFrame, HbStylePrivate::P_ProgressSlider_frame, &option);
+ }
+ HbWidgetFeedback::triggered(q, Hb::InstantReleased);
+
+#ifdef HB_EFFECTS
+ // HbEffect::start(q, HB_PRGRESSSLIDER_ITEM_TYPE, "progressslider_trackrelease");
+#endif
+ }
+
emit q->sliderReleased();
}
@@ -295,6 +313,7 @@
HbProgressSlider::HbProgressSlider(QGraphicsItem *parent) :
HbProgressBar(*new HbProgressSliderPrivate,parent)
{
+ HbEffect::disable(this);
Q_D( HbProgressSlider );
d->q_ptr = this;
d->init();
@@ -315,6 +334,8 @@
else{
d->handle->setPos(0,boundingRect().height());
}
+
+ HbEffect::disable(this);
}
@@ -326,6 +347,7 @@
HbProgressSlider::HbProgressSlider(HbProgressSliderPrivate &dd,QGraphicsItem *parent) :
HbProgressBar( dd,parent)
{
+ HbEffect::disable(this);
Q_D( HbProgressSlider );
d->init();
@@ -339,6 +361,8 @@
else{
d->handle->setPos(0,boundingRect().height());
}
+
+ HbEffect::disable(this);
}
@@ -437,6 +461,7 @@
*/
void HbProgressSlider::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
+#ifndef HB_GESTURE_FW
Q_D(HbProgressSlider);
QRectF rect = d->mTouchAreaItem->sceneBoundingRect( );
@@ -456,7 +481,7 @@
HbWidgetFeedback::triggered(this, Hb::InstantPressed);
d->handle->handleTrackPress(event);
- emit trackPressed();
+ emit trackPressed();
event->accept();
#ifdef HB_EFFECTS
HbEffect::start(this, HB_PRGRESSSLIDER_ITEM_TYPE, "progressslider_trackpress");
@@ -464,6 +489,9 @@
} else {
event->ignore();
}
+#else
+ Q_UNUSED(event)
+#endif
}
/*!
@@ -471,6 +499,7 @@
*/
void HbProgressSlider::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
+#ifndef HB_GESTURE_FW
Q_D(HbProgressSlider);
if(flags().testFlag(ItemIsFocusable)) {
@@ -484,7 +513,7 @@
HbWidgetFeedback::triggered(this, Hb::InstantReleased);
d->handle->handleTrackRelease(event);
- emit trackReleased();
+ emit trackReleased();
event->accept();
#ifdef HB_EFFECTS
HbEffect::start(this, HB_PRGRESSSLIDER_ITEM_TYPE, "progressslider_trackrelease");
@@ -492,7 +521,86 @@
} else {
event->ignore();
}
+#else
+ Q_UNUSED(event)
+#endif
}
+
+#ifdef HB_GESTURE_FW
+void HbProgressSlider::gestureEvent(QGestureEvent *event)
+{
+ Q_D (HbProgressSlider);
+
+ if(event->gesture(Qt::TapGesture)) {
+
+ HbTapGesture *tapGesture = static_cast<HbTapGesture *>(event->gesture(Qt::TapGesture));
+ switch(tapGesture->state()) {
+ case Qt::GestureStarted :{
+ QRectF rect = d->mTouchAreaItem->sceneBoundingRect( );
+ // return if point is outside track touch area
+ if ( !rect.contains( event->mapToGraphicsScene(tapGesture->position( ) ) ) ) {
+ event->ignore( );
+ return;
+ }
+ if(flags().testFlag(ItemIsFocusable)) {
+ #ifdef HB_EFFECTS
+ HbEffect::start(this, HB_PRGRESSSLIDER_ITEM_TYPE, "progressslider_trackpress");
+ #endif
+ d->mDownState = true;
+ HbStyleOptionProgressSlider option;
+ initStyleOption(&option);
+ d->handle->setPressedState();
+ if (d->mFrame) {
+ HbStylePrivate::updatePrimitive(d->mFrame, HbStylePrivate::P_ProgressSlider_frame, &option);
+ }
+
+ HbWidgetFeedback::triggered(this, Hb::InstantPressed);
+ d->handle->handleTrackPress(event);
+ emit trackPressed();
+ event->accept();
+
+ }
+ else {
+ event->ignore();
+ }
+ }
+ break;
+
+ case Qt::GestureFinished:{
+ if(flags().testFlag(ItemIsFocusable)) {
+ #ifdef HB_EFFECTS
+ HbEffect::start(this, HB_PRGRESSSLIDER_ITEM_TYPE, "progressslider_trackrelease");
+ #endif
+
+ d->mDownState = false;
+
+ HbStyleOptionProgressSlider option;
+ initStyleOption(&option);
+ if (d->mFrame) {
+ HbStylePrivate::updatePrimitive(d->mFrame, HbStylePrivate::P_ProgressSlider_frame, &option);
+ }
+
+ HbWidgetFeedback::triggered(this, Hb::InstantReleased);
+ d->handle->setReleasedState();
+ d->handle->handleTrackRelease(event);
+ emit trackReleased();
+ event->accept();
+
+
+ } else {
+ event->ignore();
+ }
+
+ }
+ break;
+ default:break;
+ }
+ }
+
+}
+#endif
+
+
/*!
\reimp
*/
@@ -597,6 +705,7 @@
*/
void HbProgressSlider::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
+#ifndef HB_GESTURE_FW
Q_D(HbProgressSlider);
QRectF rect = d->mTouchAreaItem->sceneBoundingRect( );
// return if point is outside track touch area
@@ -611,35 +720,10 @@
} else {
event->ignore();
}
-
+#else
+ Q_UNUSED(event)
+#endif
}
-/*!
- \reimp
- */
-bool HbProgressSlider::sceneEventFilter(QGraphicsItem *obj,QEvent *event)
-{
- Q_D(HbProgressSlider);
- if( obj == d->mTouchAreaItem) {
- if (!isEnabled() ) {
- return false;
- }
- if (event->type() == QEvent::GraphicsSceneMousePress){
- mousePressEvent((QGraphicsSceneMouseEvent *) event);
- return true;
- }
- else if (event->type() == QEvent::GraphicsSceneMouseRelease){
- mouseReleaseEvent((QGraphicsSceneMouseEvent *) event);
- return true;
- }
-
- else if (event->type() == QEvent::GraphicsSceneMouseMove){
- mouseMoveEvent((QGraphicsSceneMouseEvent *) event);
- return true;
- }
- }
- return false;
-}
-
/*!
@beta
@@ -734,3 +818,20 @@
}
}
+bool HbProgressSlider::sceneEventFilter(QGraphicsItem *obj,QEvent *event)
+{
+ Q_D(HbProgressSlider);
+ bool accepted = false;
+
+ if( obj == d->mTouchAreaItem)
+ if (!isEnabled() ) {
+ return false;
+ }
+
+ if(obj == static_cast<HbTouchArea*>(d->mTouchAreaItem)) {
+ if(event->type() == QEvent::Gesture ) {
+ gestureEvent(static_cast<QGestureEvent *>( event ));
+ }
+ }
+ return accepted;
+}
--- a/src/hbwidgets/sliders/hbprogressslider.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogressslider.h Thu Sep 02 20:44:51 2010 +0300
@@ -66,8 +66,8 @@
void sliderPressed();
void sliderReleased();
void sliderMoved(int value);
- void trackPressed();
- void trackReleased();
+ void trackPressed();
+ void trackReleased();
public slots :
void setSliderValue(int value);
@@ -77,8 +77,9 @@
HbProgressSlider(HbProgressSliderPrivate &dd,QGraphicsItem *parent = 0);
void mousePressEvent(QGraphicsSceneMouseEvent *event);
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
- void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
- void showEvent( QShowEvent * event );
+ void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
+ void gestureEvent(QGestureEvent *event);
+ void showEvent( QShowEvent *event );
QVariant itemChange(GraphicsItemChange change,const QVariant & value);
bool sceneEventFilter(QGraphicsItem *obj,QEvent *event);
--- a/src/hbwidgets/sliders/hbprogressslider_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogressslider_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -44,7 +44,7 @@
void emitSliderReleased();
void setProgressValue(int value);
void emitSliderMoved(int newValue);
- void setEnableFlag(bool flag);
+ void setEnableFlag(bool flag);
QRectF boundingRect() const;
HbStyle* style() const;
QGraphicsItem* parentGraphicsItem() const;
@@ -56,7 +56,7 @@
QString toolTipText() const;
Qt::Alignment textAlignment() const;
bool textVisible()const;
- bool mToolTipTextVisibleUser;
+ bool mToolTipTextVisibleUser;
Qt::Orientation orientation();
void setRange(int minimum, int maximum);
--- a/src/hbwidgets/sliders/hbprogresssliderhandle_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogresssliderhandle_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -60,6 +60,7 @@
q(parent),
mHandleIcon()
{
+ HbEffect::disable(this);
mFlags = 0;
mFlags |= TextVisible;
@@ -102,14 +103,10 @@
}
-void HbProgressSliderHandle::gestureEvent(QGestureEvent *event)
-{
- Q_UNUSED(event);
- // HbWidgetBase::gestureEvent() ignores, overriding to accept
-}
void HbProgressSliderHandle::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
+#ifndef HB_GESTURE_FW
HbWidget::mousePressEvent(event);
#ifdef HB_EFFECTS
@@ -144,10 +141,14 @@
HbToolTip::showText(locale.toString(slider->sliderValue()),this, QRectF(mItemCurPos,QSize(0,0)),q->textAlignment());
}
+#else
+ Q_UNUSED(event)
+#endif
}
void HbProgressSliderHandle::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
+#ifndef HB_GESTURE_FW
HbWidget::mouseReleaseEvent(event);
HbStyleOptionProgressSliderHandle option;
@@ -170,33 +171,14 @@
event->accept();
setHandlePosForValue(q->progressValue());
q->emitSliderReleased();
-}
-
-void HbProgressSliderHandle::handleTrackRelease(QGraphicsSceneMouseEvent * event)
-{
- Q_UNUSED(event);
- setHandlePosForValue(q->progressValue());
-}
-
-void HbProgressSliderHandle::handleTrackPress(QGraphicsSceneMouseEvent * event)
-{
- QPointF newPos = q->parentGraphicsItem()->mapFromScene(event->scenePos());
- if((newPos.x() >= q->boundingRect().x()) && (newPos.x() <= q->boundingRect().width())) {
- if(q->orientation() == Qt::Horizontal){
- mItemCurPos = QPointF(newPos.x() - boundingRect().width()/2, pos().y());
- }
- else{
- mItemCurPos = QPointF(pos().x(), newPos.y()-boundingRect().height()/2);
- }
-
- mItemCurPos = normalizedPos(mItemCurPos,false);
- setPos(mItemCurPos);
- processItemChange(mItemCurPos);
- }
+#else
+ Q_UNUSED(event)
+#endif
}
void HbProgressSliderHandle::mouseMoveEvent ( QGraphicsSceneMouseEvent * event )
{
+#ifndef HB_GESTURE_FW
HbWidget::mouseMoveEvent(event);
mFlags |=HandleMoving;
QPointF scenePos = event->scenePos();
@@ -241,6 +223,171 @@
HbToolTip::showText(locale.toString(slider->sliderValue()),this, QRectF(mItemCurPos,QSize(0,0)),q->textAlignment());
}
+#else
+ Q_UNUSED(event)
+#endif
+}
+
+void HbProgressSliderHandle::handleTrackRelease(QGestureEvent *event)
+{
+ Q_UNUSED(event);
+ setHandlePosForValue(q->progressValue());
+}
+
+void HbProgressSliderHandle::handleTrackPress(QGestureEvent *event)
+{
+ HbTapGesture *gesture = static_cast<HbTapGesture *>(event->gesture(Qt::TapGesture));
+ QPointF newPos = q->parentGraphicsItem()->mapFromScene(event->mapToGraphicsScene(gesture->position()));
+
+ //QPointF newPos = q->parentGraphicsItem()->mapFromScene(event->scenePos());
+ if((newPos.x() >= q->boundingRect().x()) && (newPos.x() <= q->boundingRect().width())) {
+ if(q->orientation() == Qt::Horizontal){
+ mItemCurPos = QPointF(newPos.x() - boundingRect().width()/2, pos().y());
+ }
+ else{
+ mItemCurPos = QPointF(pos().x(), newPos.y()-boundingRect().height()/2);
+ }
+
+ mItemCurPos = normalizedPos(mItemCurPos,false);
+ setPos(mItemCurPos);
+ processItemChange(mItemCurPos);
+ }
+}
+
+
+/*!
+ reimp
+
+*/
+void HbProgressSliderHandle::gestureEvent(QGestureEvent *event)
+{
+ if(HbTapGesture *tap = qobject_cast<HbTapGesture *>(event->gesture(Qt::TapGesture))) {
+ switch(tap->state()) {
+ case Qt::GestureStarted: {
+ mMousePressPos = mapFromScene(event->mapToGraphicsScene(tap->position( )));
+ if(q->textVisible()) { // User called it
+ if(!q->toolTipText().isNull()) {
+ HbToolTip::showText(q->toolTipText(),this, QRectF(mMousePressPos,QSize(0,0)),q->textAlignment());
+ }
+ }
+ else { // show default
+ HbExtendedLocale locale;
+ HbProgressSlider *slider = (HbProgressSlider*)q->parentGraphicsWidget();
+ HbToolTip::showText(locale.toString(slider->sliderValue()),this, QRectF(mMousePressPos,QSize(0,0)),q->textAlignment());
+ }
+ #ifdef HB_EFFECTS
+ HbEffect::start(this, HB_PRGRESSSLIDERHANDLE_ITEM_TYPE, "progressslider_handlepress");
+ #endif
+ mFlags |= HbProgressSliderHandle::MousePressed;
+ HbStyleOptionProgressSliderHandle option;
+ initStyleOption(&option);
+ option.pressedState = true;
+ if (mHandleIconItem) {
+ HbStylePrivate::updatePrimitive(mHandleIconItem, HbStylePrivate::P_ProgressSliderHandle_icon, &option);
+ }
+ mMousePressPos = mapFromScene(event->mapToGraphicsScene(tap->position( )));
+ HbWidgetFeedback::triggered(q->parentGraphicsWidget(), Hb::InstantPressed, Hb::ModifierSliderHandle);
+ event->accept();
+
+ q->emitSliderPressed();
+ }
+ break;
+ case Qt::GestureFinished:{
+ HbStyleOptionProgressSliderHandle option;
+ initStyleOption(&option);
+ option.pressedState = false;
+ if (mHandleIconItem) {
+ HbStylePrivate::updatePrimitive(mHandleIconItem, HbStylePrivate::P_ProgressSliderHandle_icon, &option);
+ }
+ if (isHandleMoving()) {
+ HbWidgetFeedback::continuousStopped(q->parentGraphicsWidget(), Hb::ContinuousDragged);
+ }
+ HbWidgetFeedback::triggered(q->parentGraphicsWidget(), Hb::InstantReleased, Hb::ModifierSliderHandle);
+ #ifdef HB_EFFECTS
+ HbEffect::start(this, HB_PRGRESSSLIDERHANDLE_ITEM_TYPE, "progressslider_handlerelease");
+ #endif
+ mFlags &= ~HbProgressSliderHandle::MousePressed;
+ mFlags &=~HandleMoving;
+ event->accept();
+ setHandlePosForValue(q->progressValue());
+ q->emitSliderReleased();
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ if (HbPanGesture *panGesture = qobject_cast<HbPanGesture*>(event->gesture(Qt::PanGesture))) {
+ switch(panGesture->state( )) {
+ case Qt::GestureStarted:
+ case Qt::GestureUpdated:{
+ mFlags |=HandleMoving;
+ QPointF scenePos =mapToParent( mapFromScene(panGesture->sceneOffset( )+panGesture->sceneStartPos( )));
+ if(scenePos.x() == oldCord.x()) {
+ return;
+ }
+ oldCord = scenePos;
+ //if(q->orientation() == Qt::Horizontal){
+ mItemCurPos = QPointF((scenePos.x() - mMousePressPos.x()), pos().y());
+ HbWidgetFeedback::continuousTriggered(qobject_cast<HbWidget*>(q->parentGraphicsWidget()), Hb::ContinuousDragged);
+ if(mItemCurPos.x()+boundingRect().width() < q->boundingRect().width() && mItemCurPos.x()>q->boundingRect().topLeft().x() ){
+ setPos(mItemCurPos);
+ //}
+ //else{
+ // processItemChange(mItemCurPos);
+ //}
+ }
+ if (!mTouchItem->boundingRect().contains(parentItem()->mapFromScene(scenePos))) {
+ #ifdef HB_EFFECTS
+ HbEffect::start(this, HB_PRGRESSSLIDERHANDLE_ITEM_TYPE, "progressslider_handleoutofbound");
+ #endif
+ }
+ event->accept();
+ if(q->textVisible()) { // User called it
+ if(q->toolTipText().isNull()) {
+ // Dont show any tooltip.
+ }
+ else {
+ HbToolTip::showText(q->toolTipText(),this, QRectF(mItemCurPos,QSize(0,0)),q->textAlignment());
+ }
+ }
+ else { // show default
+ HbExtendedLocale locale;
+ HbProgressSlider *slider = (HbProgressSlider*)q->parentGraphicsWidget();
+ HbToolTip::showText(locale.toString(slider->sliderValue()),this, QRectF(mItemCurPos,QSize(0,0)),q->textAlignment());
+ }
+ q->emitSliderMoved(pointToValue(mItemCurPos));
+ }
+ break;
+ case Qt::GestureFinished:
+ case Qt::GestureCanceled: {
+ HbStyleOptionProgressSliderHandle option;
+ option.pressedState = false;
+ initStyleOption(&option);
+ if (mHandleIconItem) {
+ HbStylePrivate::updatePrimitive(mHandleIconItem, HbStylePrivate::P_ProgressSliderHandle_icon, &option);
+ }
+ if (isHandleMoving()) {
+ HbWidgetFeedback::continuousStopped(q->parentGraphicsWidget(), Hb::ContinuousDragged);
+ }
+ else {
+ HbWidgetFeedback::triggered(q->parentGraphicsWidget(), Hb::InstantReleased, Hb::ModifierSliderHandle);
+ }
+ #ifdef HB_EFFECTS
+ HbEffect::start(this, HB_PRGRESSSLIDERHANDLE_ITEM_TYPE, "progressslider_handlerelease");
+ #endif
+ mFlags &= ~HbProgressSliderHandle::MousePressed;
+ mFlags &=~HandleMoving;
+ event->accept();
+ setHandlePosForValue(q->progressValue());
+ q->emitSliderReleased();
+ }
+ break;
+ default:
+ break;
+ }
+ }
+
}
int HbProgressSliderHandle::pointToValue(QPointF point) const
@@ -249,15 +396,10 @@
qreal effectiveWidth;
point = normalizedPos(point,q->invertedAppearance());
qreal givenPixel;
- if(q->orientation() == Qt::Horizontal){
- effectiveWidth = rect.width() - boundingRect().width();
- givenPixel = point.x();
- }
- else{
- effectiveWidth = rect.height() - boundingRect().height();
- givenPixel = effectiveWidth-point.y();
- }
-
+
+ effectiveWidth = rect.width() - boundingRect().width();
+ givenPixel = point.x();
+
qreal tickPerPixel = (qreal)(q->maximum()-q->minimum())/effectiveWidth;
qreal tickForGivenPixel = givenPixel * tickPerPixel;
tickForGivenPixel = qRound(tickForGivenPixel);
@@ -285,24 +427,12 @@
QRectF r2 = boundingRect();
qreal width;
- if(q->orientation()== Qt::Horizontal){
- width = r1.width() - r2.width();
-
- }
- else{
- width = r1.height() - r2.height();
-
- }
+ width = r1.width() - r2.width();
if(q->maximum() != q->minimum()){
qreal pixelpertick = width/(qreal)(q->maximum()-q->minimum());
qreal noOfTicks = qreal(value - q->minimum());
qreal xpos = noOfTicks * pixelpertick;
- if(q->orientation() == Qt::Horizontal){
- return QPointF(xpos, r1.top());
- }
- else{
- return QPointF(r1.left(),width-xpos);
- }
+ return QPointF(xpos, r1.top());
}
else{
return QPointF(0,0);
@@ -312,25 +442,17 @@
QPointF HbProgressSliderHandle::normalizedPos(const QPointF& pos,bool inverted) const
{
Q_UNUSED(inverted);
+
QPointF newPos = pos;
- if(q->orientation() == Qt::Horizontal){
- if (newPos.x() < HandleMargin) {
+
+ if (newPos.x() < HandleMargin) {
newPos.setX( HandleMargin );
- }
-
- if (newPos.x() > q->boundingRect().width() - boundingRect().width() - HandleMargin) {
- newPos.setX(q->boundingRect().width() - boundingRect().width() - HandleMargin);
- }
}
- else{
- if (newPos.y() < HandleMargin) {
- newPos.setY( HandleMargin );
- }
- if (newPos.y() > q->boundingRect().height() - boundingRect().height() - HandleMargin) {
- newPos.setY(q->boundingRect().height() - boundingRect().height() - HandleMargin);
- }
+ if (newPos.x() > q->boundingRect().width() - boundingRect().width() - HandleMargin) {
+ newPos.setX(q->boundingRect().width() - boundingRect().width() - HandleMargin);
}
+
return newPos;
}
@@ -350,12 +472,7 @@
// value is the new position
QPointF pt = value.toPointF();
int newValue = pointToValue(pt);
- if(q->orientation() == Qt::Horizontal){
- pt.setY(q->boundingRect().top());
- }
- else{
- pt.setX(q->boundingRect().left());
- }
+ pt.setY(q->boundingRect().top());
q->emitSliderMoved(newValue);
QPointF newPos = pt;
return normalizedPos(newPos,false);
@@ -368,21 +485,12 @@
QPointF newPos = valueToHandlePos(progressValue);
QPointF pos = normalizedPos(newPos,q->invertedAppearance());
if(q->invertedAppearance()) {
- if(q->orientation() == Qt::Horizontal){
qreal xVal = q->boundingRect().width() - pos.x() - boundingRect().width();
pos.setX(xVal);
- }
- else{
- qreal yVal = q->boundingRect().height() - pos.y() - boundingRect().height();
- pos.setY(yVal);
- }
-
}
-
qreal yPos = qreal (q->boundingRect().height()-boundingRect().height()) /2 ;
setPos(pos.x(),yPos);
- }
-
+ }
}
@@ -424,4 +532,22 @@
option->handleIcon = mHandleIcon;
option->pressedState = false;
}
+void HbProgressSliderHandle::setPressedState()
+{
+ HbStyleOptionProgressSliderHandle option;
+ initStyleOption(&option);
+ option.pressedState = true;
+ if (mHandleIconItem) {
+ HbStylePrivate::updatePrimitive(mHandleIconItem, HbStylePrivate::P_ProgressSliderHandle_icon, &option);
+ }
+}
+void HbProgressSliderHandle::setReleasedState()
+{
+ HbStyleOptionProgressSliderHandle option;
+ initStyleOption(&option);
+ option.pressedState = false;
+ if (mHandleIconItem) {
+ HbStylePrivate::updatePrimitive(mHandleIconItem, HbStylePrivate::P_ProgressSliderHandle_icon, &option);
+ }
+}
--- a/src/hbwidgets/sliders/hbprogresssliderhandle_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbprogresssliderhandle_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -77,16 +77,16 @@
enum { Type = HbPrivate::ItemType_ProgressSliderHandle };
int type() const { return Type; }
void setHandleIcon(const HbIcon &icon);
- void handleTrackRelease(QGraphicsSceneMouseEvent * event);
- void handleTrackPress(QGraphicsSceneMouseEvent * event);
+ void handleTrackRelease(QGestureEvent *event);
+ void handleTrackPress(QGestureEvent *event);
QVariant processItemChange(const QVariant &value);
void setHandlePosForValue(int progressValue);
QPointF normalizedPos(const QPointF& pos,bool inverted) const;
bool isHandlePressed() const;
bool isHandleMoving() const;
-
QGraphicsItem* primitive(HbStyle::Primitive primitive) const;
-
+ void setPressedState();
+ void setReleasedState();
public slots:
void updatePrimitives();
@@ -106,6 +106,7 @@
QGraphicsItem *mHandleIconItem;
QGraphicsItem *mTouchItem;
HbIcon mHandleIcon;
+ QPointF oldCord;
};
#endif //HBPROGRESSSLIDERHANDLE_P_H
--- a/src/hbwidgets/sliders/hbratingslider.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbratingslider.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -741,6 +741,12 @@
option->progressValue = d->mCurrentValue;
option->disableState = !isEnabled();
option->pressedState = d->mMousePressed;
+ if(layoutDirection() == Qt::RightToLeft) {
+ option->inverted = true;
+ }
+ else {
+ option->inverted = false;
+ }
}
}
@@ -773,14 +779,21 @@
*/
void HbRatingSlider::changeEvent(QEvent *event)
{
+ Q_D(HbRatingSlider);
HbWidget::changeEvent(event);
switch (event->type()) {
case QEvent::LayoutDirectionChange:
- updatePrimitives();
+ {
+ HbStyleOptionRatingSlider option;
+ initStyleOption(&option);
+ if (d->mTrack) {
+ HbStylePrivate::updatePrimitive(d->mTrack, HbStylePrivate::P_RatingSlider_track, &option);
+ }
+ }
break;
case QEvent::EnabledChange:
updatePrimitives();
- break;
+ break;
default:
break;
}
--- a/src/hbwidgets/sliders/hbratingslider_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbratingslider_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -35,20 +35,20 @@
HbRatingSliderPrivate();
~HbRatingSliderPrivate();
void init();
- int calculateProgressValue(qreal pos);
- void createLookupTable();
- bool mMousePressed;
- int *mLookupValues;
- bool mReadOnly;
- int mNumberOfIcons;
- int mStepCount;
- int mCurrentValue;
+ int calculateProgressValue(qreal pos);
+ void createLookupTable();
+ bool mMousePressed;
+ int *mLookupValues;
+ bool mReadOnly;
+ int mNumberOfIcons;
+ int mStepCount;
+ int mCurrentValue;
QGraphicsItem *mFrame;
QGraphicsItem *mTrack;
QGraphicsItem *mLayoutItem;
- QString mUnratedIconName;
- QGraphicsItem *mTouchArea;
- QString mRatedIconName;
+ QString mUnratedIconName;
+ QGraphicsItem *mTouchArea;
+ QString mRatedIconName;
};
#endif //HBRATINGSLIDER_P_H
--- a/src/hbwidgets/sliders/hbslider.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbslider.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -637,11 +637,11 @@
void HbSliderPrivate::updateTickMarks( )
{
if (tickmarksLeft) {
- tickmarksLeft->createTicks();
+ tickmarksLeft->createTicks();
tickmarksLeft->updateTicks();
}
if (tickmarksRight) {
- tickmarksRight->createTicks();
+ tickmarksRight->createTicks();
tickmarksRight->updateTicks();
}
}
@@ -1725,7 +1725,7 @@
case 5: If you want to remove the whole tickLabel then set the empty string as the argument.
Note:: if the major tickinterval of the slider is very small, the tick labels may overlap,
- application needs to take care of this.
+ application needs to take care of this.
\sa majorTickLabels( )
*/
@@ -1757,8 +1757,8 @@
@beta
Sets the minor ticklabels of the slider.
see setMajorTickLabels for detailed description.
- Note:: if the minor tickinterval of the slider is very small, the tick labels may overlap,
- application needs to take care of this.
+ Note:: if the minor tickinterval of the slider is very small, the tick labels may overlap,
+ application needs to take care of this.
\sa minorTickLabels( ),setMajorTickLabels( )
--- a/src/hbwidgets/sliders/hbslider.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbslider.h Thu Sep 02 20:44:51 2010 +0300
@@ -162,7 +162,7 @@
bool isTrackFilled() const;
virtual QGraphicsItem * primitive(HbStyle::Primitive primitive) const;
- virtual void gestureEvent(QGestureEvent *event);
+ virtual void gestureEvent(QGestureEvent *event);
public slots:
void setOrientation(Qt::Orientation orientation);
--- a/src/hbwidgets/sliders/hbslidercontrol.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidercontrol.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -302,7 +302,7 @@
Protected constructor for initialization from derived ctor.
*/
HbSliderControl::HbSliderControl(HbSliderControlPrivate &dd,QGraphicsItem *parent)
- :HbAbstractSliderControl(dd,parent)
+ :HbAbstractSliderControl(dd,parent)
{
}
@@ -906,7 +906,7 @@
case Qt::GestureStarted:
case Qt::GestureUpdated:{
QPointF startPoint = event->mapToGraphicsScene(panGesture->offset()+panGesture->startPos( ) );
- //if the position is on thumb , then start moving the thumb
+ //if the position is on thumb , then start moving the thumb
if( ( d->onHandle( startPoint) && d->grooveTouchArea->sceneBoundingRect( ).contains( startPoint))||isSliderDown( ) ) {
qreal handlePos = 0;
qreal span = 0;
@@ -966,7 +966,7 @@
updatePrimitives( );
d->handle->updatePrimitives();
d->handleMoving = false;
- int pressValue = sliderPosition();
+ int pressValue = sliderPosition();
setRepeatAction( SliderNoAction,static_cast<int>( pressValue ) );
event->ignore();
HbWidgetFeedback::triggered(this, Hb::InstantReleased);
@@ -989,21 +989,21 @@
if (!isEnabled() ) {
return false;
}
- if (event->type() == QEvent::Gesture){
+ if (event->type() == QEvent::Gesture){
gestureEvent( (QGestureEvent *) (event));
return true;
}
}
else if ( obj == d->handle) {
event->ignore();
- if (event->type() == QEvent::Gesture){
+ if (event->type() == QEvent::Gesture){
QGestureEvent *gestureEvent = static_cast<QGestureEvent *> (event);
foreach(QGesture *g, gestureEvent->gestures()) {
gestureEvent->ignore(g);
}
}
}
- return false;
+ return false;
}
@@ -1131,26 +1131,26 @@
QGraphicsItem* HbSliderControl::handleItem( ) const
{
Q_D( const HbSliderControl );
- if(d->handle) {
- return d->handle->handleItem();
- }
- return NULL;
+ if(d->handle) {
+ return d->handle->handleItem();
+ }
+ return NULL;
}
void HbSliderControl::setHandleVisible(bool isVisible)
{
Q_D( HbSliderControl );
- if(isVisible) {
- d->handle->setVisible(true);
- } else {
- d->handle->setVisible(false);
- }
+ if(isVisible) {
+ d->handle->setVisible(true);
+ } else {
+ d->handle->setVisible(false);
+ }
}
bool HbSliderControl::handleVisible( ) const
{
Q_D( const HbSliderControl );
- return d->handle->isVisible();
+ return d->handle->isVisible();
}
/*!
--- a/src/hbwidgets/sliders/hbsliderhandle.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbsliderhandle.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -107,9 +107,9 @@
*/
HbSliderHandle::~HbSliderHandle()
{
- if(mHandleItem) {
- mHandleItem->removeSceneEventFilter(this);
- }
+ if(mHandleItem) {
+ mHandleItem->removeSceneEventFilter(this);
+ }
}
@@ -149,19 +149,19 @@
void HbSliderHandle::setHandleItem(QGraphicsItem *item)
{
- if(!item) {
- return;
- }
- if(mHandleItem) {
- delete mHandleItem;
+ if(!item) {
+ return;
+ }
+ if(mHandleItem) {
+ delete mHandleItem;
mHandleItem =0;
- }
+ }
setHandlesChildEvents(false);
mHandleItem = item;
- mHandleItem->setParentItem(this);
- HbStyle::setItemName(mHandleItem,"widget");
+ mHandleItem->setParentItem(this);
+ HbStyle::setItemName(mHandleItem,"widget");
//((QGraphicsWidget*)mHandleItem)->setGeometry(gItem->geometry());//TODO:geometry from css
if(scene()) {
@@ -194,7 +194,7 @@
bool HbSliderHandle::sceneEventFilter(QGraphicsItem *obj,QEvent *event)
{
//TODO: touch area does not work with the current filtering mechanism. find better solution
- if( obj == mHandleItem) {
+ if( obj == mHandleItem) {
if(event->type() == QEvent::GraphicsSceneMouseMove){
mouseMoveEvent ((QGraphicsSceneMouseEvent *) event) ;
return true;
@@ -205,12 +205,12 @@
mouseReleaseEvent((QGraphicsSceneMouseEvent *) event);
return true;
}
- }
+ }
if( obj == touchItem ) {
if (!isEnabled() ) {
return false;
}
- if (event->type() == QEvent::Gesture){
+ if (event->type() == QEvent::Gesture){
gestureEvent( (QGestureEvent *) (event));
return true;
}
--- a/src/hbwidgets/sliders/hbslidertickmarks.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidertickmarks.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -243,7 +243,7 @@
iconItem->update();
}
}
- update(boundingRect());
+ update(boundingRect());
}
/* !
@@ -283,17 +283,17 @@
Q_D (HbSliderTickmarks);
if (d->majorTickHeight == 0 || d->sliderOrientation!= d->slider->orientation() ) {
d->sliderOrientation = d->slider->orientation();
- params.addParameter("fixed-width-major");
- params.addParameter("fixed-height-major");
- params.addParameter("fixed-width-minor");
- params.addParameter("fixed-height-minor");
- HbWidget::polish(params);
- d->majorTickWidth = params.value("fixed-width-major").toReal();
- d->majorTickHeight = params.value("fixed-height-major").toReal();
- d->minorTickWidth = params.value("fixed-width-minor").toReal();
- d->minorTickHeight = params.value("fixed-height-minor").toReal();
+ params.addParameter("fixed-width-major");
+ params.addParameter("fixed-height-major");
+ params.addParameter("fixed-width-minor");
+ params.addParameter("fixed-height-minor");
+ HbWidget::polish(params);
+ d->majorTickWidth = params.value("fixed-width-major").toReal();
+ d->majorTickHeight = params.value("fixed-height-major").toReal();
+ d->minorTickWidth = params.value("fixed-width-minor").toReal();
+ d->minorTickHeight = params.value("fixed-height-minor").toReal();
} else {
- HbWidget::polish(params);
+ HbWidget::polish(params);
updateTicks();
}
}
--- a/src/hbwidgets/sliders/hbslidertickmarkslabel.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/sliders/hbslidertickmarkslabel.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -156,7 +156,7 @@
opt.orientation = d->slider->orientation();
opt.text = (d->slider->majorTickLabels( )).at(i);
HbStylePrivate::updatePrimitive(textItem,HbStylePrivate::P_SliderTickMark_majorlabel,&opt);
- }
+ }
int minimum = d->slider->minimum();
int maximum = d->slider->maximum();
int majorTickInterval = d->slider->majorTickInterval ( );
--- a/src/hbwidgets/widgets/hbcheckbox.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbcheckbox.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -40,37 +40,6 @@
#include <hbtapgesture.h>
#endif
-
-/*
- Spacer class.
-*/
-class HbCheckBoxSpacer: public HbWidgetBase
-{
-
-public:
- HbCheckBoxSpacer( QGraphicsItem *parent = 0 );
- QSizeF sizeHint( Qt::SizeHint which, const QSizeF &constraint = QSizeF( ) ) const;
-};
-
-HbCheckBoxSpacer::HbCheckBoxSpacer( QGraphicsItem *parent )
- : HbWidgetBase( parent )
-{
-#if QT_VERSION >= 0x040600
- setFlag(QGraphicsItem::ItemHasNoContents, true);
-#endif
-}
-
-QSizeF HbCheckBoxSpacer::sizeHint( Qt::SizeHint which, const QSizeF &constraint ) const
-{
- Q_UNUSED( constraint );
-
- if ( which == Qt::MaximumSize ) {
- return QSizeF( QWIDGETSIZE_MAX, QWIDGETSIZE_MAX );
- }
- return QSizeF( 0.f, 0.f );
-}
-
-
/*
private class
*/
@@ -169,7 +138,8 @@
toggle state.
Checkbox has default icon for checked,unchecked and partiallyChecked states.
- The text can be set in the constructor or with setText().
+ The text can be set in the constructor or with setText().For long text checkbox will show
+ multiline text,default checkbox will have text up to three lines.
Example usage:
\code
@@ -202,9 +172,6 @@
d->q_ptr = this;
setCheckable( true );
d->createPrimitives( );
- // creattion of top and bottom spacer.
- HbStyle::setItemName( new HbCheckBoxSpacer( this ), "topSpacer" );
- HbStyle::setItemName( new HbCheckBoxSpacer( this ), "bottomSpacer" );
#ifdef HB_GESTURE_FW
grabGesture( Qt::TapGesture );
#endif
@@ -225,10 +192,6 @@
d->mText = text;
setCheckable( true );
d->createPrimitives( );
- // creattion of top and bottom spacer.
- HbStyle::setItemName( new HbCheckBoxSpacer(this), "topSpacer");
- HbStyle::setItemName( new HbCheckBoxSpacer(this), "bottomSpacer");
-
}
/*!
--- a/src/hbwidgets/widgets/hbdatetimepicker.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbdatetimepicker.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -311,14 +311,14 @@
<TR><TD><b><b>Expression </b></TD><TD><b>Output</b> </TD></b></TR>
<TR><TD> h </TD><TD>The hour without a leading zero (0 to 23 or 1 to 12).</TD></TR>
<TR><TD> hh </TD><TD>The hour with a leading zero (00 to 23 or 01 to 12). </TD></TR>
- <TR><TD>H </TD><TD>The hour without a leading zero (0 to 23, even with AM/PM display).</TD></TR>
- <TR><TD>HH </TD><TD>The hour with a leading zero (00 to 23, even with AM/PM display).</TD></TR>
+ <TR><TD>H </TD><TD>The hour without a leading zero (0 to 23, even with AM/PM display).</TD></TR>
+ <TR><TD>HH </TD><TD>The hour with a leading zero (00 to 23, even with AM/PM display).</TD></TR>
<TR><TD> m </TD><TD>The minute without a leading zero (0 to 59).</TD></TR>
<TR><TD> mm </TD><TD>The minute with a leading zero (00 to 59).</TD></TR>
<TR><TD> s </TD><TD>The second without a leading zero (0 to 59).</TD></TR>
<TR><TD> ss </TD><TD>The second with a leading zero (00 to 59).</TD></TR>
- <TR><TD>AP or A </TD><TD>Displays AM and PM.</i></TD></TR>
- <TR><TD>ap or a </TD><TD>Displays am and pm.</TD></TR>
+ <TR><TD>AP or A </TD><TD>Displays AM and PM.</i></TD></TR>
+ <TR><TD>ap or a </TD><TD>Displays am and pm.</TD></TR>
</TABLE>
\note Currently you must include separators in the format; for example, 'dd.mm.yy'.
@@ -329,9 +329,9 @@
{
Q_D(HbDateTimePicker);
- if(d->isFormatValid(format)){
+ if(d->isFormatValid(format)){
d->mFormat = format;
- d->parseDisplayFormat(format);
+ d->processDisplaySections();
d->rearrangeTumbleViews();
d->emitDateTimeChange();
}//End If format is valid
--- a/src/hbwidgets/widgets/hbdatetimepicker_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbdatetimepicker_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -127,6 +127,9 @@
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & hour) {
+ return false; // error in format
+ }
newDisplay |= hour;
}
break;
@@ -137,6 +140,9 @@
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & MinuteSection) {
+ return false; // error in format
+ }
newDisplay |= MinuteSection;
}
break;
@@ -147,6 +153,9 @@
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & SecondSection) {
+ return false; // error in format
+ }
newDisplay |= SecondSection;
}
break;
@@ -158,6 +167,9 @@
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & MSecSection) {
+ return false; // error in format
+ }
newDisplay |= MSecSection;
}
break;
@@ -168,6 +180,9 @@
const SectionNode sn = { AmPmSection, i - add, (cap ? 1 : 0) };
newSectionNodes.append(sn);
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
+ if(newDisplay & AmPmSection) {
+ return false; // error in format
+ }
newDisplay |= AmPmSection;
if (i + 1 < format.size()
&& format.at(i+1) == (cap ? QLatin1Char('P') : QLatin1Char('p'))) {
@@ -186,6 +201,9 @@
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & sn.type) {
+ return false; //error in format
+ }
newDisplay |= sn.type;
}
}
@@ -197,6 +215,9 @@
newSeparators.append(unquote(format.mid(index, i - index)));
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & MonthSection) {
+ return false; // error in format
+ }
newDisplay |= MonthSection;
}
break;
@@ -208,6 +229,9 @@
appendSeparator(&newSeparators, format, index, i - index, lastQuote);
i += sn.count - 1;
index = i + 1;
+ if(newDisplay & (DayOfWeekSection | DaySection)) {
+ return false; // error in format, dd and ddd not yet supported in same format
+ }
newDisplay |= sn.type;
}
break;
@@ -350,10 +374,13 @@
mIntervals[QDateTimeEdit::MinuteSection]=1;
//read the format from locale
- mFormat = localeDateTimeFormat(dateTimeMode);
+ QString newFormat = localeDateTimeFormat(dateTimeMode);
//parse the format and set the sections in order
- parseDisplayFormat(mFormat);
+ if(isFormatValid(newFormat)) {
+ mFormat=newFormat;
+ processDisplaySections();
+ }
//create primitives
createPrimitives();
@@ -382,16 +409,16 @@
if(newDisplayFormat == mFormat) {
return false;
}
- return true;
+
+ return mParser.parseFormat(newDisplayFormat);
}
/*
this will reset the display sections and re add them in order
mentioned in the display format passed. this also sets the mIs24HourFormat var.
*/
-void HbDateTimePickerPrivate::parseDisplayFormat(const QString &format)
+void HbDateTimePickerPrivate::processDisplaySections()
{
- if(mParser.parseFormat(format)) {
for(int i=0;i<mParser.mSectionNodes.count();++i) {
switch(mParser.mSectionNodes[i].type) {
case HbDateTimeParser::DaySection:
@@ -436,7 +463,6 @@
/*case HbDateTimeParser::DayOfWeekSection: not supported */
}
}
- }
}
/*
@@ -449,7 +475,7 @@
Q_Q(HbDateTimePicker);
if(!(mParser.mDisplaySections & (HbDateTimeParser::YearSection|
- HbDateTimeParser::YearSection2Digits))) {
+ HbDateTimeParser::YearSection2Digits))) {
deleteAndNull(mYearPicker);
mYearModel = 0;
}
@@ -462,7 +488,7 @@
mDayModel = 0;
}
if(!(mParser.mDisplaySections & (HbDateTimeParser::Hour12Section|
- HbDateTimeParser::Hour24Section))) {
+ HbDateTimeParser::Hour24Section))) {
deleteAndNull(mHourPicker);
mHourModel = 0;
}
@@ -1065,10 +1091,10 @@
}
resizeModel(mMinuteModel,
- mMinuteOffset,mMinuteModel->index(mMinuteModel->rowCount() - 1).data().toInt(),
- start,end,
- &HbDateTimePickerPrivate::localeMinute,
- mIntervals[QDateTimeEdit::MinuteSection]);
+ mMinuteOffset,mMinuteModel->index(mMinuteModel->rowCount() - 1).data().toInt(),
+ start,end,
+ &HbDateTimePickerPrivate::localeMinute,
+ mIntervals[QDateTimeEdit::MinuteSection]);
mMinuteOffset = start;
//Select the nearest value when the range is set.
@@ -1226,7 +1252,7 @@
<< newStart << " newEnd=" << newEnd
<< " interval=" << interval;
#endif
- bool b1=false,b2=false;
+ bool b1=false,b2=false;
int oldinterval=model->rowCount()>1 ? (model->index(1,0).data().toInt(&b1)-model->index(0,0).data().toInt(&b2)):0;
#ifdef HBDATETIMEPICKER_DEBUG
qDebug() << "resizeModel:sameoldInterval=" << oldinterval;
@@ -1260,10 +1286,10 @@
}
return;//optimizing inserts when interval is set
} else {
- if(b1 && b2) {
- model->removeRows(0,model->rowCount());
+ if(b1 && b2) {
+ model->removeRows(0,model->rowCount());
oldStart = oldEnd = 0;
- }
+ }
}
if((model->rowCount() == 0) && (newEnd-newStart>=0)) {
@@ -1627,7 +1653,7 @@
qDebug() << "_q_minutesChanged:" << index;
qDebug() << mLocale.toInt(mMinuteModel->index(mMinuteOffset+index,0).data().toString(),bOk, 10);
#endif
- QTime newTime(mDateTime.time().hour(),mLocale.toInt(mMinuteModel->index(index,0).data().toString(),bOk, 10),mDateTime.time().second());
+ QTime newTime(mDateTime.time().hour(),mLocale.toInt(mMinuteModel->index(index,0).data().toString(),bOk, 10),mDateTime.time().second());
if(newTime.isValid()) {
mDateTime.setTime(newTime);
}
--- a/src/hbwidgets/widgets/hbdatetimepicker_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbdatetimepicker_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -117,7 +117,7 @@
void init(QVariant::Type type = QVariant::Date);
QString localeDateTimeFormat(const QVariant::Type &mode);
bool isFormatValid(const QString &newFormat);
- void parseDisplayFormat(const QString &format);
+ void processDisplaySections();
void rearrangeTumbleViews();
void makeConnections();
void removeConnections();
--- a/src/hbwidgets/widgets/hbgroupbox.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupbox.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -456,7 +456,7 @@
Q_D ( const HbGroupBox );
if(d->mGroupBoxType == GroupBoxCollapsingContainer)
return d->collapsed;
-
+
return false;
}
@@ -495,7 +495,7 @@
Q_D( const HbGroupBox );
if(d->mHeadingWidget && d->mGroupBoxType == GroupBoxSimpleLabel)
return d->mHeadingWidget->marqueeEnabled;
-
+
return false;
}
@@ -555,7 +555,7 @@
Returns groupbox content widget
- There is no default content widget.
+ There is no default content widget.
GroupBox takes care of the ownership of the content widget being set
@@ -599,7 +599,7 @@
default:
return 0;
}
- return 0;
+ return 0;
}
/*!
--- a/src/hbwidgets/widgets/hbgroupbox_p.h Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupbox_p.h Thu Sep 02 20:44:51 2010 +0300
@@ -38,11 +38,11 @@
GroupBoxCollapsingContainer = 0x03,
GroupBoxTypeUnknown = 0x04
};
-
+
/*
private class definition
*/
-class HbGroupBoxPrivate : public HbWidgetPrivate
+class HbGroupBoxPrivate : public HbWidgetPrivate
{
Q_DECLARE_PUBLIC(HbGroupBox)
--- a/src/hbwidgets/widgets/hbgroupboxcontentwidget_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupboxcontentwidget_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -252,7 +252,7 @@
// set dynamic property for contentwidget, if it is scrollable content
// if content is scrollable, then groupBox leaves out margin spacing b/w heading
// and content area, otherwise zero margin spacing will be taken
- HbScrollArea* scrollContent = qobject_cast<HbScrollArea*>( mContent );
+ HbScrollArea* scrollContent = qobject_cast<HbScrollArea*>( mContent );
if(scrollContent)
setProperty("scrollableContent",true);
else
--- a/src/hbwidgets/widgets/hbgroupboxheadingwidget_p.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupboxheadingwidget_p.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -184,7 +184,7 @@
if( groupBoxType == GroupBoxSimpleLabel ){
// marquee is disabled by default for simple label
- marqueeEnabled = false;
+ marqueeEnabled = false;
}
}
--- a/src/hbwidgets/widgets/hbpushbutton.cpp Wed Aug 18 10:05:37 2010 +0300
+++ b/src/hbwidgets/widgets/hbpushbutton.cpp Thu Sep 02 20:44:51 2010 +0300
@@ -48,69 +48,116 @@
/*!
@beta
@hbwidgets
+
\class HbPushButton
- \brief The HbPushButton widget provides a button with command.
+ \brief The HbPushButton class provides a push button widget, which enables the
+ user to perform a command.
+
+ A push button widget enables a user to perform an important command.
+ A push button has a rectangular shape and typically there is a text
+ describing its command, an icon, and a tooltip shown on the button as in the
+ following picture.
- \image html hbpushbutton.png A pushbutton with text ,icon and tooltip provided .
+ \image html hbpushbutton.png A push button with a text, an icon, and a tooltip.
+
+ You can set the text and the icon of a push button with HbPushButton()
+ constructors and change them later with setText() and setIcon(). A push
+ button also can have an additional text which you can set with
+ setAdditionalText(). You can set the alignment of the text and additional text
+ with setTextAlignment() and setAdditionalTextAlignment(). The default value
+ for the alignment of the text and additional text is the horizontally and vertically
+ centered alignment. The push button layouts with \a stretched value \c true
+ and \c false (default) are the following:
- A push button enable users to perform important commands easily.
- A push button has a rectangular shape and typically displays a text label describing its command.
- Push Button can appear in any container except toolbars where ToolButton HbToolButton is used and palettes.
- A simple push button can be created as shown in the example below.
- \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,16}
-
- A Push buttons display a textual label. Pushbutton also
- can have icon.These can be set using the constructors and changed later using setText(),setIcon( ).
- In addition to this a push button also displays additional text label.
- Additional text can be set using setAdditionalText().
- Aligning of icon , text and additional text can be changed using setStretched()true/false property.
- Default with setStretched()=false it will place icon and text vertically.
-
- \image html buttonIconTextV.png A pushbutton with icon ,text.
-
- and along with additional text will place icon horizontally to both texts ,where both text comes vertically aligned.
-
- \image html buttonIconTextAdditionalTextV.png A pushbutton with icon ,text and additional text.
+ - Icon and text:
+ - \a stretched = \c true: The icon and the text are horizontally aligned.
+ \image html buttonIconTextH.png A stretched push button with an icon and a text.
+ - \a stretched = \c false: The icon and the text are vertically aligned.
+ \image html buttonIconTextV.png A non-stretched push button with an icon and a text.
+ - Icon, text and additional text:
+ - \a stretched = \c true: The icon and both texts are horizontally aligned in one
+ line.
+ \image html buttonIconTextAdditionalTextH.png A stretched push button with an icon, a text and an additional text.
+ - \a stretched = \c false: Both texts are vertically aligned and an icon is
+ horizontally aligned in relation to the texts.
+ \image html buttonIconTextAdditionalTextV.png A non-stretched push button with an icon, a text and an additional text.
+ - Text and additional text
+ - \a stretched = \c true: Not applicable.
+ - \a stretched = \c false: Both texts are vertically aligned. You can use this
+ layout for a dialer or a virtual keypad button, for example.
+ \image html buttonTextAdditional.png A non-stretched push button with a text and an additional text.
+
+ Note that a push button does not have a stretched layout by default.
- For setStretched()=true, it will stretch layout to have icon and text horizontally,side by side.
-
- \image html buttonIconTextH.png A pushbutton with icon ,text.
+ A toggle button is a special type of a push button. The push button becomes
+ a 'toggle button' -type push button, a 'toggle button' for short, if you set
+ the \c Checkable property value of a push button to \c true. A toggle button
+ can be in \c normal, \c highlighted , \c disabled, or \c latched state (see
+ state descriptions below). Normally you use a toggle button as an on-off
+ button that varies between \c normal (off) and \c latched (on) states as the
+ user presses the toggle button.
- and along with additional text will place all of them to Horizontally in one line .
-
- \image html buttonIconTextAdditionalTextH.png A pushbutton with custom icon ,text and additional text.
+ A push button can have the following states:
+ - normal: the push button does not have focus (i.e. it is not highlighted)
+ but the user can press it down.
+ - highlighted: the push button has focus.
+ - pressed: the push button is pressed down.
+ - latched: the push button stays pressed down even though the user does not
+ press it.
+ - disabled: the user cannot press down the push button.
- Pushbutton can have both text and additoinal text placed vertically,this can be used in case Dialer button or
- Virtual key pad buttons with stretched = false.Pushbutton doesn't supports both text in one line
- stretched = true is not valid.
- Pushbutton will not have stretch layout by default.
-
- \image html buttonTextAdditional.png A pushbutton with additional text and text.
+ A push button emits the pressed(), released(), clicked() and toggled()
+ signals which are inherited from HbAbstractButton as well as
+ HbPushButton::longPress() signal when a push button is pressed for a long
+ time. You can use a push button in any container except toolbars with
+ HbToolButton objects and palettes.
+
+
+ \section _usecases_hbpushbutton Using the HbPushButton class
+
+ \subsection _uc_hbpushbutton_001 Creating a push button.
+
+ The following code snippet creates a simple push button.
+
+ \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,16}
+
+ \subsection _uc_hbpushbutton_002 Adding buttons to the layout.
+
+ The push button is derived from HbWidget so it can be added to any
+ QGraphicsLayout object for defining the layout. The following code snippet
+ adds a button with "Stop" text and an another button with an image and "Play"
+ text to a QGraphicsLinearLayout object. Note that QGraphicsLinearLayout
+ inherits QGraphicsLayout.
- Pushbutton can have different states like normal, pressed, disabled, latched and focused.
- A push button emits the signal clicked() when it is activated by tapping it.
- Push buttons also provide less commonly used signals, for example, pressed() and
- released() and emits longPress() on long press.
-
- Alignment of the text within the text and additionaltext items can be set using
- setTextAlignment() and setAdditionalText(), default text alignment is Qt::AlignHCenter | Qt::AlignVCenter
-
- The push button is derived from HbWidget so it can be added to any QGraphicsLayout
- instance for layouting.
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,17}
- Push button can also be used as toggle button , following is code snippet
- \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,30}
+ \subsection _uc_hbpushbutton_003 Using a push button as a toggle button.
+
+ The following code snippet creates a push button which is used as a toggle
+ button. The button has a text, an icon, a tooltip, and its \c Checkable
+ property value is set to \c true.
+
+ \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,30}
- and onOffButton as
- \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,29}
+ \subsection _uc_hbpushbutton_004 Using a push button as an on-off button.
+
+ The following code snippet creates a push button which is used as an on-off
+ button. The button has an icon, a text, and a tooltip.
- Push button will come up with additional text following is code snippet.
- 1. Push button with icon , text and additionalText
+ \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,29}
+
+ \subsection _uc_hbpushbutton_005 Creating a push button with an icon, a text, and an additional text.
+
+ The following code snippet creates a push button with with an icon, a text
+ and, an additional text.
+
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,35}
- 2. Pushbutton with additionalText and text.
+ \subsection _uc_hbpushbutton_006 Creating a push button with a text and an additional text.
+
+ The following code snippet creates a push button with a text, and an additional text.
+
\snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,36}
\sa HbAbstractButton , HbToolButton
@@ -118,13 +165,15 @@
/*!
- \reimp
+
\fn int HbPushButton::type() const
*/
/*!
\fn void HbPushButton::longPress( QPointF )
- This signal is emitted in case of longpress.
+
+ This signal is emitted when the user presses the push button for a long
+ time.
*/
HbPushButtonPrivate::HbPushButtonPrivate() :
@@ -235,8 +284,7 @@
}
/*!
- @beta
- Constructs a new HbPushButton with \a parent.
+ Constructs a push button with \a parent.
*/
HbPushButton::HbPushButton( QGraphicsItem *parent )
: HbAbstractButton( *new HbPushButtonPrivate, parent )
@@ -249,8 +297,7 @@
}
/*!
- @beta
- Constructs a new HbPushButton with \a text and \a parent.
+ Constructs a push button with \a text and \a parent.
*/
HbPushButton::HbPushButton( const QString &text, QGraphicsItem *parent )
: HbAbstractButton( *new HbPushButtonPrivate, parent )
@@ -265,8 +312,7 @@
}
/*!
- @beta
- Constructs a new HbPushButton with \a icon, \a text and \a parent.
+ Constructs a push button with \a icon, \a text, and \a parent.
*/
HbPushButton::HbPushButton( const HbIcon &icon, const QString &text, QGraphicsItem *parent )
: HbAbstractButton( *new HbPushButtonPrivate, parent )
@@ -281,7 +327,7 @@
}
/*!
- Destructs the push button.
+ Destructor.
*/
HbPushButton::~HbPushButton( )
{
@@ -289,10 +335,8 @@
}
/*!
- @beta
- Sets the \a background of the button.
-
- \note The background can contain different images for pressed and released states.
+ Sets the \a background shown on a push button. The background of a push
+ button can have different images for pressed and released states.
\sa background()
*/
@@ -309,8 +353,7 @@
}
/*!
- @beta
- Returns the background of the button.
+ Returns the background shown on a push button.
\sa setBackground()
*/
@@ -321,11 +364,10 @@
}
/*!
- @beta
- Sets the \a framebackground of the button.
-
- \note The background can contain different types of frame drawers(Nine piece,
- three piece or single).Ownership is transferred to the Pushbutton
+ Sets the \a frame background shown on a push button. The frame background
+ of a push button can have the following types of frame drawers: 9-piece, 3-
+ piece horizontal, 3-piece vertical, and single. The ownership is transferred
+ to the push button.
\sa frameBackground()
*/
@@ -342,8 +384,7 @@
}
/*!
- @beta
- Returns the background of the button.
+ Returns the background shown on a push button.
\sa setBackground()
*/
@@ -355,8 +396,7 @@
/*!
- @beta
- Sets the \a text shown on the button.
+ Sets the \a text shown on a push button.
\sa text()
*/
@@ -384,8 +424,7 @@
/*!
- @beta
- Returns the text shown on the button.
+ Returns the text shown on a push button.
\sa setText()
*/
@@ -397,15 +436,18 @@
/*!
- @beta
- Sets the \a additional text shown on the button.
- Additional text is only shown in case
- 1. with icon and text in Qt::Horizontal alignment.
- 2. with icon and text where both the texts are aligned vertically and icon placed horizontally in relation to texts.
- 3. with additionalText and text in Qt::Vertical alignment.
+ Sets the additional text shown on a push button, defined by \a
+ additionalText. Additional text is only shown on the button in the following
+ cases:
+
+ - Icon, text, and additional text are horizontally aligned in one line.
+ - Text and additional text are vertically aligned and icon is horizontally
+ aligned in relation to the texts.
+ - Text and additional text are vertically aligned.
\sa additionalText()
*/
+
void HbPushButton::setAdditionalText( const QString &additionalText )
{
Q_D( HbPushButton );
@@ -429,8 +471,7 @@
}
/*!
- @beta
- Returns the additional text shown on the button.
+ Returns the additional text shown on a push button.
\sa setAdditionalText()
*/
@@ -441,10 +482,9 @@
}
/*!
- @beta
- Sets the \a icon shown on the button.
-
- \note The icon can contain images for different modes.
+
+ Sets the \a icon shown on a push button. Each icon mode can have a
+ different image.
\sa icon()
*/
@@ -474,8 +514,8 @@
}
/*!
- @beta
- Returns the icon shown on the button.
+ Returns the icon shown on a push button.
+
\sa setIcon()
*/
@@ -486,21 +526,21 @@
}
/*!
- @beta
- Set the text alignment for primarytext.
- The default alignment is Qt::AlignHCenter | Qt::AlignVCenter.
+ Sets the alignment for the text. The default alignment is
+ horizontally and vertically aligned.
+
\sa textAlignment()
*/
void HbPushButton::setTextAlignment( Qt::Alignment alignment )
{
Q_D( HbPushButton );
- //HbWidgetBase* textItem = static_cast<HbWidgetBase*>(d->textItem);
+ //HbWidgetBase* textItem = static_cast<HbWidgetBase*>(d->textItem);
if( !d->textItem ) {
//need to create text item if user call alignment api before setText.
d->textItem = HbStylePrivate::createPrimitive( HbStylePrivate::P_PushButton_text, this);
}
- //HbWidgetBasePrivate *textItem_p = HbWidgetBasePrivate::d_ptr(textItem);
+ //HbWidgetBasePrivate *textItem_p = HbWidgetBasePrivate::d_ptr(textItem);
// check for textitem and api protection flag
if( alignment != d->textAlignment ){
//take the alignment
@@ -517,8 +557,8 @@
}
/*!
- @beta
- Returns the text alignment for primary text.
+ Returns the text alignment for the text.
+
\sa setTextAlignment()
*/
Qt::Alignment HbPushButton::textAlignment( ) const
@@ -529,16 +569,16 @@
/*!
- @beta
- Set the text alignment for additional text.
- The default alignment is Qt::AlignHCenter | Qt::AlignVCenter.
+ Sets the \a alignment for the additional text. The default alignment is
+ horizontally and vertically centered alignment.
+
\sa additionalTextAlignment()
*/
void HbPushButton::setAdditionalTextAlignment( Qt::Alignment alignment )
{
Q_D( HbPushButton );
- //HbWidgetBase* additionalTextItem = static_cast<HbWidgetBase*>(d->additionalTextItem);
+ //HbWidgetBase* additionalTextItem = static_cast<HbWidgetBase*>(d->additionalTextItem);
if(!d->additionalTextItem) {
//need to create text item if user call alignment api before setAdditionalText.
d->additionalTextItem = HbStylePrivate::createPrimitive( HbStylePrivate::P_PushButton_additionaltext, this);
@@ -558,8 +598,8 @@
}
/*!
- @beta
- Returns the text alignment for additional text
+ Returns the text alignment for the additional text.
+
\sa setAdditionalTextAlignment()
*/
Qt::Alignment HbPushButton::additionalTextAlignment( ) const
@@ -569,16 +609,20 @@
}
/*!
- @beta
- Sets the stretched layout for button by default it set to true. setStretched true/false.
- For the case icon and text with value false will appear icon and text vertically aligned.
- and with value true will appear icon and text horizontally aligned.
- For the case icon , text and additional text with value false will appear like
- both text will be vertically aligned and icon will be horizontally.
- and with value true icon , text and additionaltext will come horizontally aligned in one line
- For the case text and additonaltext(dialer button case ) only value false is applicable and both texts will
- appeare vertically
-
+ Sets the alignment of an icon, a text and an additional text for stretched and non-
+ stretched layouts of a push button. The push button layouts with \a
+ stretched value \c true and \c false (default) are the following:
+
+ - Icon and text:
+ - \c true: Icon and text are horizontally aligned.
+ - \c false: Icon and text are vertically aligned.
+ - Icon, text and additional text:
+ - \c true: Icon and both texts are horizontally aligned in one line.
+ - \c false: Both texts are vertically aligned and icon is horizontally aligned.
+ - Text and additonal text (a dialer push button case):
+ - \c true: Not applicable.
+ - \c false: Both texts are vertically aligned.
+
\sa isStretched()
*/
void HbPushButton::setStretched( bool stretched )
@@ -591,8 +635,9 @@
}
/*!
- @beta
- Returns the whether button has streteched layout or not.
+ Returns \c true if the push button has streteched layout, otherwise returns
+ \c false.
+
\sa setStretched ()
*/
bool HbPushButton::isStretched() const
@@ -603,10 +648,9 @@
/*!
- \deprecated HbPushButton::primitive(HbStyle::Primitive)
- is deprecated.
+ \deprecated HbPushButton::primitive(HbStyle::Primitive) is deprecated.
- \reimp
+
*/
QGraphicsItem *HbPushButton::primitive( HbStyle::Primitive primitive ) const
{
@@ -631,12 +675,12 @@
}
/*!
- \reimp
+
*/
void HbPushButton::recreatePrimitives()
{
Q_D( HbPushButton );
- HbWidget::recreatePrimitives();
+ HbWidget::recreatePrimitives();
delete d->frameItem;
d->frameItem = 0;
@@ -654,8 +698,9 @@
d->createPrimitives( );
setFrameBackground( 0 );
}
+
/*!
- \reimp
+
*/
void HbPushButton::updatePrimitives()
{
@@ -694,11 +739,13 @@
{
}
-/*!
- \reimp
- Initializes \a option with the values from this HbPushButton.
- This method is useful for subclasses when they need a HbStyleOptionPushButton,
- but don't want to fill in all the information themselves.
+/*!
+
+ Initializes the style option push button defined by \a option with the push
+ button values. This method is useful for setting the style option push button
+ values of the subclasses.
+
+ \param option Style option push button to be initialized.
*/
void HbPushButton::initStyleOption( HbStyleOptionPushButton *option ) const
{
@@ -724,7 +771,7 @@
}
/*!
- \reimp
+
*/
void HbPushButton::keyPressEvent(QKeyEvent *event)
{
@@ -760,7 +807,7 @@
/*!
- \reimp
+
*/
void HbPushButton::keyReleaseEvent(QKeyEvent *event)
{
@@ -792,7 +839,7 @@
}
/*!
- \reimp
+
*/
void HbPushButton::mousePressEvent( QGraphicsSceneMouseEvent *event )
{
@@ -817,7 +864,7 @@
#ifndef HB_GESTURE_FW
/*!
- \reimp
+
*/
void HbPushButton::mouseReleaseEvent( QGraphicsSceneMouseEvent *event )
{
@@ -837,7 +884,7 @@
}
/*!
- \reimp
+
*/
void HbPushButton::mouseMoveEvent( QGraphicsSceneMouseEvent *event )
{
@@ -858,6 +905,7 @@
#ifdef HB_GESTURE_FW
+
void HbPushButton::gestureEvent( QGestureEvent *event )
{
Q_D(HbPushButton);
@@ -907,14 +955,15 @@
/*!
- \reimp
+
*/
void HbPushButton::resizeEvent( QGraphicsSceneResizeEvent *event )
{
HbAbstractButton::resizeEvent( event );
}
+
/*!
- reimp
+
*/
void HbPushButton::polish( HbStyleParameters ¶ms )
@@ -929,7 +978,7 @@
/*!
- \reimp
+
*/
void HbPushButton::focusInEvent( QFocusEvent *event )
{
@@ -951,7 +1000,7 @@
}
/*!
- \reimp
+
*/
void HbPushButton::focusOutEvent( QFocusEvent *event )
{
@@ -963,7 +1012,7 @@
}
/*!
- \reimp
+
*/
QVariant HbPushButton::itemChange(GraphicsItemChange change, const QVariant &value)
{
@@ -984,7 +1033,7 @@
}
/*!
- Overloaded hit detection to include touch area
+ Overloaded hit detection to include touch area.
*/
bool HbPushButton::hitButton( const QPointF &pos ) const
{
--- a/src/platforms/symbian/configurations/symbian_configurations.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/platforms/symbian/configurations/symbian_configurations.pri Thu Sep 02 20:44:51 2010 +0300
@@ -28,15 +28,15 @@
# Backup registration files
symbian {
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/backup_20022E82/backup_registration.xml $${EPOCROOT}epoc32/winscw/c/private/20022E82/backup_registration.xml"
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/backup_20022E82/backup_registration.xml $${EPOCROOT}epoc32/data/z/private/20022E82/backup_registration.xml"
+ hbPrjExport("$${PWD}/backup_20022E82/backup_registration.xml", "$${EPOCROOT}epoc32/winscw/c/private/20022E82/backup_registration.xml")
+ hbPrjExport("$${PWD}/backup_20022E82/backup_registration.xml", "$${EPOCROOT}epoc32/data/z/private/20022E82/backup_registration.xml")
}
# Configuration files
symbian {
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/hbtheme_confml/hbtheme.confml MW_LAYER_CONFML(hbtheme.confml)
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/hbtheme_confml/CI_hbtheme.confml MW_LAYER_CONFML(CI_hbtheme.confml)
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/hbtheme_confml/hbtheme.implml MW_LAYER_CRML(hbtheme.implml)
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/hbtheme_confml/hbtheme.py MW_LAYER_CRML(scripts/hbtheme.py)
- BLD_INF_RULES.prj_exports += "$$section(PWD, ":", 1)/hbtheme_confml/hbtheme_20022e82.crml MW_LAYER_CRML(hbtheme_20022e82.crml)
+ hbPrjExport("$${PWD}/hbtheme_confml/hbtheme.confml", "MW_LAYER_CONFML(hbtheme.confml)")
+ hbPrjExport("$${PWD}/hbtheme_confml/CI_hbtheme.confml", "MW_LAYER_CONFML(CI_hbtheme.confml)")
+ hbPrjExport("$${PWD}/hbtheme_confml/hbtheme.implml", "MW_LAYER_CRML(hbtheme.implml)")
+ hbPrjExport("$${PWD}/hbtheme_confml/hbtheme.py", "MW_LAYER_CRML(scripts/hbtheme.py)")
+ hbPrjExport("$${PWD}/hbtheme_confml/hbtheme_20022e82.crml", "MW_LAYER_CRML(hbtheme_20022e82.crml)")
}
--- a/src/platforms/symbian/installs/symbian_deployment.pri Wed Aug 18 10:05:37 2010 +0300
+++ b/src/platforms/symbian/installs/symbian_deployment.pri Thu Sep 02 20:44:51 2010 +0300
@@ -40,8 +40,8 @@
orbitBinaries.pkg_prerules = vendorinfo orbitHeader
orbitBinaries.sources = hbthemechanger.exe hbsplashgenerator.exe hbdevicedialogappserver.exe \
- HbDeviceNotificationDialogPlugin.dll HbIndicatorMenuPlugin.dll HbDeviceProgressDialogPlugin.dll HbDeviceMessageBoxPlugin.dll \
- hbthemeserveroogmplugin.dll hbthemeserver.exe HbIm.dll
+ HbDeviceNotificationDialogPlugin.dll HbIndicatorMenuPlugin.dll HbDeviceProgressDialogPlugin.dll HbDeviceMessageBoxPlugin.dll \
+ hbthemeserveroogmplugin.dll hbthemeserver.exe HbIm.dll
orbitBinaries.path = !:/sys/bin
DEPLOYMENT += orbitBinaries